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

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/create
diff options
context:
space:
mode:
authorContinuous Integration <ci@zabbix.com>2021-11-09 18:30:49 +0300
committerContinuous Integration <ci@zabbix.com>2021-11-09 18:30:49 +0300
commitb07e17de0abf0006ddd56c2eb39d3dacda0ba2eb (patch)
treeed271cd56c8e4d44ae8246c546f4bddcbeb6ee9a /create
parentec3c5dc66ba5152808d233a6b87c02d66a8eaad5 (diff)
.......... [ZBXNEXT-826] automatic deployment of official Zabbix templates and media types6.0.0alpha6
Diffstat (limited to 'create')
-rw-r--r--create/src/data.tmpl6
-rw-r--r--create/src/templates.tmpl12540
2 files changed, 6320 insertions, 6226 deletions
diff --git a/create/src/data.tmpl b/create/src/data.tmpl
index ad731c6cbd0..8180b54e2d5 100644
--- a/create/src/data.tmpl
+++ b/create/src/data.tmpl
@@ -66,7 +66,7 @@ ROW |5 |4 |Mattermost | | |
ROW |6 |4 |Opsgenie | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Media = {&eol; params: {},&eol; name: '',&eol; labels: [],&eol; HTTPProxy: '',&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Media.params = params;&eol; Media.params.api += Media.params.api.endsWith('/') ? '' : '/';&eol; Media.params.web += Media.params.web.endsWith('/') ? '' : '/';&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; if (typeof HTTPProxy !== 'undefined' && HTTPProxy.trim() !== '') {&eol; Media.HTTPProxy = HTTPProxy;&eol; }&eol; },&eol;&eol; setTags: function(event_tags_json) {&eol; if (typeof event_tags_json !== 'undefined' && event_tags_json !== ''&eol; && event_tags_json !== '{EVENT.TAGSJSON}') {&eol;&eol; try {&eol; var tags = JSON.parse(event_tags_json),&eol; label;&eol;&eol; tags.forEach(function (tag) {&eol; if (typeof tag.tag === 'string') {&eol; label = (tag.tag + (typeof tag.value !== 'undefined'&eol; && tag.value !== '' ? (':' + tag.value) : '')).replace(/\s/g, '_');&eol; Media.labels.push(label);&eol; }&eol; });&eol; }&eol; catch (error) {&eol; Zabbix.log(4, '[ ' + Media.name + ' Webhook ] Failed to parse "event_tags_json" param');&eol; }&eol; }&eol; },&eol;&eol; request: function (method, query, data, allow_404) {&eol; if (typeof(allow_404) === 'undefined') {&eol; allow_404 = false;&eol; }&eol;&eol; ['api', 'token'].forEach(function (field) {&eol; if (typeof Media.params !== 'object' &pipe;&pipe; typeof Media.params[field] === 'undefined'&eol; &pipe;&pipe; Media.params[field] === '') {&eol; throw 'Required ' + Media.name + ' param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Media.params.api + query,&eol; request = new HttpRequest();&eol;&eol; request.addHeader('Content-Type: application/json');&eol; request.addHeader('Authorization: ' + Media.params.token);&eol; request.setProxy(Media.HTTPProxy);&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.log(4, '[ ' + Media.name + ' Webhook ] Sending request: ' +&eol; url + ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.log(4, '[ ' + Media.name + ' Webhook ] Received response with status code ' +&eol; request.getStatus() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.log(4, '[ ' + Media.name + ' Webhook ] Failed to parse response.');&eol; response = null;&eol; }&eol; }&eol;&eol; if ((request.getStatus() < 200 &pipe;&pipe; request.getStatus() >= 300)&eol; && (!allow_404 &pipe;&pipe; request.getStatus() !== 404)) {&eol; var message = 'Request failed with status code ' + request.getStatus();&eol;&eol; if (response !== null) {&eol; if (typeof response.errors === 'object' && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (typeof response.errorMessages === 'object' && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol; else if (typeof response.message === 'string') {&eol; message += ': ' + response.message;&eol; }&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.getStatus(),&eol; response: response&eol; };&eol; },&eol;&eol; getAlertId: function (requestId) {&eol; do {&eol; resp = Media.request('get', 'requests/' + requestId, undefined, true);&eol; }&eol; while (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.data === 'undefined'&eol; &pipe;&pipe; resp.response.data.success === false);&eol;&eol; if (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.data === 'undefined') {&eol; throw 'Cannot get ' + Media.name + ' issue ID. Check debug log for more information.';&eol; }&eol;&eol; return resp;&eol; }&eol;};&eol;&eol;try {&eol; var result = {tags: {}},&eol; params = JSON.parse(value),&eol; media = {},&eol; fields = {},&eol; resp = {},&eol; responders = [],&eol; tags = [],&eol; required_params = [&eol; 'alert_subject',&eol; 'alert_message',&eol; 'event_id',&eol; 'event_source',&eol; 'event_value',&eol; 'event_update_status',&eol; 'opsgenie_api',&eol; 'opsgenie_web',&eol; 'opsgenie_token'&eol; ],&eol; severities = [&eol; 'not_classified',&eol; 'information',&eol; 'warning',&eol; 'average',&eol; 'high',&eol; 'disaster',&eol; 'resolved',&eol; 'default'&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter "' + key + '" cannot be empty.';&eol; }&eol; if (key.startsWith('opsgenie_')) {&eol; media[key.substring(9)] = params[key];&eol; }&eol; });&eol;&eol; // Possible values of event_source:&eol; // 0 - Trigger, 1 - Discovery, 2 - Autoregistration, 3 - Internal.&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; // Check event_value for trigger-based and internal events.&eol; // Possible values: 1 for problem, 0 for recovering&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check event_update_status only for trigger-based events.&eol; // Possible values: 0 - Webhook was called because of problem/recovery event, 1 - Update operation.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check event_id for a numeric value.&eol; if (isNaN(parseInt(params.event_id)) &pipe;&pipe; params.event_id < 1) {&eol; throw 'Incorrect "event_id" parameter given: ' + params.event_id + '\nMust be a positive number.';&eol; }&eol;&eol; if ((params.event_source === '1' &pipe;&pipe; params.event_source === '2') && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for Trigger and Internal actions.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['severity_' + severities[params.event_nseverity]];&eol; params.zbxurl = params.zbxurl + (params.zbxurl.endsWith('/') ? '' : '/');&eol;&eol; Media.name = 'Opsgenie';&eol; Media.setParams(media);&eol; Media.params.token = 'GenieKey ' + Media.params.token;&eol; Media.setProxy(params.HTTPProxy);&eol; Media.setTags(params.event_tags_json); // Set Media.labels&eol;&eol; // Create an issue.&eol; // Numeric value of the event that triggered an action (1 for problem, 0 for recovering).&eol; // Numeric value of of the problem update status. Possible values:&eol; // 0 - Webhook was called because of problem/recovery event, 1 - Update operation.&eol; if ((params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0)&eol; &pipe;&pipe; (params.event_source == 3 && params.event_value == 1)&eol; &pipe;&pipe; params.event_source == 1 &pipe;&pipe; params.event_source == 2) {&eol; fields.message = params.alert_subject;&eol; fields.alias = params.event_id;&eol; fields.description = params.alert_message;&eol; fields.priority = priority;&eol; fields.source = 'Zabbix';&eol;&eol; if (params.event_source === '0') {&eol; fields.details = {&eol; 'Zabbix server': params.zbxurl,&eol; Problem: params.zbxurl + 'tr_events.php?triggerid=' + params.trigger_id + '&eventid=' + params.event_id&eol; };&eol; }&eol; else {&eol; fields.details = {'Zabbix server': params.zbxurl};&eol; }&eol;&eol; if (typeof params.opsgenie_teams === 'string') {&eol; responders = params.opsgenie_teams.split(',');&eol; fields.responders = responders.map(function(team) {&eol; return {type: 'team', name: team.trim()};&eol; });&eol; }&eol;&eol; fields.tags = Media.labels;&eol; if (typeof params.opsgenie_tags === 'string') {&eol; tags = params.opsgenie_tags.split(',');&eol; tags.forEach(function(item) {&eol; fields.tags.push(item.trim());&eol; });&eol; }&eol;&eol; resp = Media.request('post', '', fields);&eol; if (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.result === 'undefined') {&eol; throw 'Cannot create ' + Media.name + ' issue. Check debug log for more information.';&eol; }&eol;&eol; if (resp.status === 202) {&eol; resp = Media.getAlertId(resp.response.requestId);&eol; if (params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0) {&eol; result.tags.__zbx_ops_issuekey = resp.response.data.alertId;&eol; result.tags.__zbx_ops_issuelink = Media.params.web + 'alert/detail/' + resp.response.data.alertId;&eol; }&eol; }&eol; else {&eol; throw Media.name + ' response code is unexpected. Check debug log for more information.';&eol; }&eol; }&eol; // Update a created issue.&eol; else {&eol; fields.user = (params.event_value != 0) ? params.zbxuser : '';&eol; fields.note = params.alert_message;&eol;&eol; resp = Media.request('post', params.event_id + '/notes?identifierType=alias', fields);&eol; if (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.result === 'undefined') {&eol; throw 'Cannot update ' + Media.name + ' issue. Check debug log for more information.';&eol; }&eol;&eol; if (resp.status === 202) {&eol; resp = Media.getAlertId(resp.response.requestId);&eol; }&eol; else {&eol; throw Media.name + ' response code is unexpected. Check debug log for more information.';&eol; }&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.log(3, '[ ' + Media.name + ' Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_ops_issuelink} |Opsgenie: {EVENT.TAGS.__zbx_ops_issuekey} |Please refer to https://docs.opsgenie.com/docs/alert-api and https://www.zabbix.com/documentation/6.0/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/6.0/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; 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 = {&eol; ['__message_ts_' + params.channel]: resp.ts,&eol; ['__channel_id_' + params.channel]: resp.channel,&eol; ['__message_link_' + params.channel]: getPermalink(resp.channel, resp.ts),&eol; };&eol;&eol; }&eol; else if (isEventUpdate(params)) {&eol; try {&eol; var channel_event_tags = JSON.parse(params.event_tags);&eol; } catch (error) {&eol; throw 'Can't process event tags: ' + error;&eol; }&eol;&eol; if (Array.isArray(channel_event_tags)) {&eol; for (i in channel_event_tags) {&eol; if (channel_event_tags[i].tag.includes('__message_ts_' + params.channel)) {&eol; fields.thread_ts = channel_event_tags[i].value;&eol; break;&eol; }&eol; }&eol; }&eol;&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;&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;&eol; fields.text = '';&eol;&eol; try {&eol; var channel_event_tags = JSON.parse(params.event_tags);&eol; } catch (error) {&eol; throw 'Can't process event tags: ' + error;&eol; }&eol;&eol; if (Array.isArray(channel_event_tags)) {&eol; for (i in channel_event_tags) {&eol; if (channel_event_tags[i].tag.includes('__channel_id_' + params.channel)) {&eol; fields.channel = channel_event_tags[i].value;&eol; continue;&eol; }&eol; if (channel_event_tags[i].tag.includes('__message_ts_' + params.channel)) {&eol; fields.ts = channel_event_tags[i].value;&eol; }&eol; }&eol; }&eol;&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 = {&eol; ['__message_link_' + params.channel]: getPermalink(resp.channel, resp.ts)&eol; }&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: JSON.parse(params.event_tags).filter(function (e) { return !e.tag.includes('__') }).map(function (e) { return e.tag + ': ' + e.value }).join('\n') &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 |0 | | | |
+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 = {&eol; ['__message_ts_' + params.channel]: resp.ts,&eol; ['__channel_id_' + params.channel]: resp.channel,&eol; ['__message_link_' + params.channel]: getPermalink(resp.channel, resp.ts),&eol; };&eol;&eol; }&eol; else if (isEventUpdate(params)) {&eol; try {&eol; var channel_event_tags = JSON.parse(params.event_tags);&eol; } catch (error) {&eol; throw 'Cannot process event tags: ' + error;&eol; }&eol;&eol; if (Array.isArray(channel_event_tags)) {&eol; for (i in channel_event_tags) {&eol; if (channel_event_tags[i].tag.includes('__message_ts_' + params.channel)) {&eol; fields.thread_ts = channel_event_tags[i].value;&eol; break;&eol; }&eol; }&eol; }&eol;&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;&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;&eol; fields.text = '';&eol;&eol; try {&eol; var channel_event_tags = JSON.parse(params.event_tags);&eol; } catch (error) {&eol; throw 'Cannot process event tags: ' + error;&eol; }&eol;&eol; if (Array.isArray(channel_event_tags)) {&eol; for (i in channel_event_tags) {&eol; if (channel_event_tags[i].tag.includes('__channel_id_' + params.channel)) {&eol; fields.channel = channel_event_tags[i].value;&eol; continue;&eol; }&eol; if (channel_event_tags[i].tag.includes('__message_ts_' + params.channel)) {&eol; fields.ts = channel_event_tags[i].value;&eol; }&eol; }&eol; }&eol;&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 = {&eol; ['__message_link_' + params.channel]: getPermalink(resp.channel, resp.ts)&eol; }&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: JSON.parse(params.event_tags).filter(function (e) { return !e.tag.includes('__') }).map(function (e) { return e.tag + ': ' + e.value }).join('\n') &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 |0 | | | |
ROW |10 |4 |Discord | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', // Not classified.&eol; '#7499FF', // Information.&eol; '#FFC859', // Warning.&eol; '#FFA059', // Average.&eol; '#E97659', // High.&eol; '#E45959', // Disaster.&eol; '#009900' // Resolved.&eol;];&eol;&eol;function stringTruncate(str, len) {&eol; return str.length > len ? str.substring(0, len - 3) + '...' : str;&eol;}&eol;&eol;try {&eol; Zabbix.log(4, '[ Discord Webhook ] Executed with params: ' + value);&eol;&eol; var params = JSON.parse(value);&eol;&eol; if (!params.discord_endpoint) {&eol; throw 'Cannot get discord_endpoint';&eol; }&eol; else {&eol; params.discord_endpoint = params.discord_endpoint.replace('/api/', '/api/v7/') + '?wait=True';&eol; }&eol;&eol; params.zabbix_url = (params.zabbix_url.endsWith('/'))&eol; ? params.zabbix_url.slice(0, -1) : params.zabbix_url;&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; // Set params to true for non trigger-based events.&eol; if (params.event_source !== '0') {&eol; params.use_default_message = 'true';&eol; params.event_nseverity = '0';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: "' + params.event_value + '".\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: "' + params.event_update_status + '".\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value == 0) {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; if (!SEVERITY_COLORS[params.event_nseverity]) {&eol; throw 'Incorrect "event_nseverity" parameter given: ' + params.event_nseverity + '\nMust be 0-5.';&eol; }&eol;&eol; var color = parseInt(SEVERITY_COLORS[params.event_nseverity].replace('#', ''), 16),&eol; fields = [],&eol; body = {&eol; embeds: [&eol; {&eol; color: color &pipe;&pipe; 0,&eol; url: (params.event_source === '0')&eol; ? params.zabbix_url + '/tr_events.php?triggerid=' + params.trigger_id +&eol; '&eventid=' + params.event_id&eol; : params.zabbix_url&eol; }&eol; ]&eol; };&eol;&eol; // Default message from {ALERT.MESSAGE}.&eol; if (params.use_default_message.toLowerCase() == 'true') {&eol; body.embeds[0].title = stringTruncate(params.alert_subject, 256);&eol; body.embeds[0].description = stringTruncate(params.alert_message, 2048);&eol; }&eol; else {&eol; fields.push(&eol; {&eol; name: 'Host',&eol; value: params.host_name + ' [' + params.host_ip + ']'&eol; }&eol; );&eol;&eol; // Resolved message.&eol; if (params.event_value == 0 && params.event_update_status == 0) {&eol; body.embeds[0].title = stringTruncate('OK: ' + params.event_name, 256);&eol; fields.push(&eol; {&eol; name: 'Recovery time',&eol; value: params.event_recovery_time + ' ' + params.event_recovery_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; // Problem message.&eol; else if (params.event_value == 1 && params.event_update_status == 0) {&eol; body.embeds[0].title = stringTruncate('PROBLEM: ' + params.event_name, 256);&eol; fields.push(&eol; {&eol; name: 'Event time',&eol; value: params.event_time + ' ' + params.event_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; // Update message.&eol; else if (params.event_update_status == 1) {&eol; body.embeds[0].title = stringTruncate('UPDATE: ' + params.event_name, 256);&eol; body.embeds[0].description = params.event_update_user + ' ' + params.event_update_action + '.';&eol;&eol; if (params.event_update_message) {&eol; body.embeds[0].description += ' Comment:\n>>> ' + params.event_update_message;&eol; }&eol;&eol; body.embeds[0].description = stringTruncate(body.embeds[0].description, 2048);&eol;&eol; fields.push(&eol; {&eol; name: 'Event update time',&eol; value: params.event_update_time + ' ' + params.event_update_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; fields.push(&eol; {&eol; name: 'Severity',&eol; value: params.event_severity,&eol; inline: 'True'&eol; }&eol; );&eol;&eol; if (params.event_opdata) {&eol; fields.push(&eol; {&eol; name: 'Operational data',&eol; value: stringTruncate(params.event_opdata, 1024),&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; if (params.event_value == 1 && params.event_update_status == 0 && params.trigger_description) {&eol; fields.push(&eol; {&eol; name: 'Trigger description',&eol; value: stringTruncate(params.trigger_description, 1024)&eol; }&eol; );&eol; }&eol;&eol; body.embeds[0].footer = {&eol; text: 'Event ID: ' + params.event_id&eol; };&eol;&eol; if (params.event_tags) {&eol; body.embeds[0].footer.text += '\nEvent tags: ' + params.event_tags;&eol; }&eol; body.embeds[0].footer.text = stringTruncate(body.embeds[0].footer.text, 2048);&eol; }&eol;&eol; if (fields.length > 0) {&eol; body.embeds[0].fields = fields;&eol; }&eol;&eol; var req = new HttpRequest();&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.setProxy(params.HTTPProxy);&eol; }&eol;&eol; req.addHeader('Content-Type: application/json');&eol;&eol; var resp = req.post(params.discord_endpoint, JSON.stringify(body)),&eol; data = JSON.parse(resp);&eol;&eol; Zabbix.log(4, '[ Discord Webhook ] JSON: ' + JSON.stringify(body));&eol; Zabbix.log(4, '[ Discord Webhook ] Response: ' + resp);&eol;&eol; if (data.id) {&eol; return resp;&eol; }&eol; else {&eol; var message = ((typeof data.message === 'string') ? data.message : 'Unknown error');&eol;&eol; Zabbix.log(3, '[ Discord Webhook ] FAILED with response: ' + resp);&eol; throw message + '. For more details check zabbix server log.';&eol; }&eol;}&eol;catch (error) {&eol; Zabbix.log(3, '[ Discord Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |0 |0 | | | |
ROW |11 |4 |SIGNL4 | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |// SIGNL4 Webhook&eol;try {&eol; var response,&eol; payload,&eol; params = JSON.parse(value),&eol; endpoint = 'https://connect.signl4.com/webhook/',&eol; request = new HttpRequest();&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; request.setProxy(params.HTTPProxy);&eol; }&eol;&eol; if (typeof params.teamsecret === 'string' && params.teamsecret.trim() !== '') {&eol; endpoint += params.teamsecret;&eol; delete params.teamsecret;&eol; }&eol; else {&eol; throw 'The team secret of your SIGNL4 team cannot be empty.';&eol; }&eol;&eol; if (typeof params.Severity === 'string' && params.Severity === '{EVENT.SEVERITY}') {&eol; params.Severity = 'Not classified';&eol; }&eol;&eol; if (typeof params.User === 'string' && params.User === '{USER.FULLNAME}') {&eol; params.User = '';&eol; }&eol;&eol; if (typeof params.Event_Update_Action === 'string' && params.Event_Update_Action === '{EVENT.UPDATE.ACTION}') {&eol; params.Event_Update_Action = '';&eol; }&eol;&eol; // Assemble X-S4-ExternalID for two-way integration&eol; // Format: "ZabbixEventID: 222 ZabbixURL: https://your-zabbix-server/zabbix/"&eol; params['X-S4-ExternalID'] = 'ZabbixEventID: ' + params.Event_ID;&eol; if (typeof params.Zabbix_URL === 'string' && params.Zabbix_URL.indexOf('http') == 0) {&eol; // Make sure the URL ends with '/'&eol; if (params.Zabbix_URL.charAt(params.Zabbix_URL.length - 1) != '/') {&eol; params.Zabbix_URL = params.Zabbix_URL + '/';&eol; }&eol;&eol; params['X-S4-ExternalID'] = params['X-S4-ExternalID'] + ' ZabbixURL: ' + params.Zabbix_URL;&eol;&eol; // Add Link parameter&eol; params['Link'] = params.Zabbix_URL + "tr_events.php?triggerid="+params.Trigger_ID + "&eventid=" + params.Event_ID;&eol; }&eol;&eol; // Check if this is a new problem or a recovery&eol; if (params.Trigger_Status == 'OK') {&eol; params['X-S4-Status'] = 'resolved';&eol; }&eol; else {&eol; params['X-S4-Status'] = 'new';&eol; }&eol;&eol; payload = JSON.stringify(params);&eol; Zabbix.log(4, '[ SIGNL4 Webhook ] Sending request: ' + payload);&eol;&eol; request.addHeader('Content-Type: application/json');&eol; response = request.post(endpoint, 'payload=' + payload);&eol;&eol; Zabbix.log(4, '[ SIGNL4 Webhook ] Received response with status code ' +&eol; request.getStatus() + '\n' + response&eol; );&eol;&eol; if (request.getStatus() !== 201) {&eol; throw 'Request failed with status code ' + request.getStatus() +&eol; '. Check debug log for more information.';&eol; }&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.log(4, '[ SIGNL4 Webhook ] ERROR: ' + error);&eol;&eol; throw 'Sending failed: ' + error;&eol;}|30s |0 |0 | | |SIGNL4 is a mobile alert notification app for powerful alerting, alert management and mobile assignment of work items. It offers alerting via app push, SMS and voice calls including escalations, tracking, and duty scheduling.&eol;&eol;Get the app at https://www.signl4.com.&eol;&eol;Find out more including an integration video here: https://www.signl4.com/blog/portfolio_item/zabbix-mobile-alert-notification-duty-schedule-escalation/ |
ROW |12 |4 |Jira | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Jira = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Jira.params = params;&eol; if (typeof Jira.params.url === 'string') {&eol; if (!Jira.params.url.endsWith('/')) {&eol; Jira.params.url += '/';&eol; }&eol;&eol; Jira.params.url += 'rest/api/latest/';&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; Jira.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setTags: function(event_tags_json) {&eol; if (typeof event_tags_json !== 'undefined' && event_tags_json !== ''&eol; && event_tags_json !== '{EVENT.TAGSJSON}') {&eol; try {&eol; var tags = JSON.parse(event_tags_json),&eol; label;&eol;&eol; Jira.labels = [];&eol;&eol; tags.forEach(function (tag) {&eol; if (typeof tag.tag !== 'undefined' && typeof tag.value !== 'undefined'&eol; && !tag.tag.startsWith('__zbx')) {&eol; label = (tag.tag + (tag.value ? (':' + tag.value) : '')).replace(/\s/g, '_');&eol; if (label.length < 256) {&eol; Jira.labels.push(label);&eol; }&eol; }&eol; });&eol; }&eol; catch (error) {&eol; // Code is not missing here.&eol; }&eol; }&eol; },&eol;&eol; escapeMarkup: function (str) {&eol; var length = str.length,&eol; result = '',&eol; markup = ['{', '&pipe;', '}', '~', '_', '\\', '[', ']', '^', '<', '>', '?', '!', '#', '+', '*', '&'];&eol;&eol; for (var i = 0; i < length; i++) {&eol; var char = str[i];&eol;&eol; result += (markup.indexOf(char) !== -1) ? ('&#' + str[i].charCodeAt() + ';') : char;&eol; }&eol;&eol; return result;&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Jira.getSchema(),&eol; path = ['projects', 0, 'issuetypes', 0, 'fields'],&eol; field;&eol;&eol; while ((field = path.shift()) !== undefined) {&eol; schema = schema[field];&eol; if (typeof schema === 'undefined') {&eol; schema = null;&eol; break;&eol; }&eol; }&eol;&eol; if (schema) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; if (typeof schema[field] === 'object' && typeof schema[field].schema === 'object') {&eol; switch (schema[field].schema.type) {&eol; case 'number':&eol; data.fields[field] = parseInt(fields[field]);&eol; break;&eol;&eol; case 'datetime':&eol; if (fields[field].match(/\d+[.-]\d+[.-]\d+T\d+:\d+:\d+/) !== null) {&eol; data.fields[field] = fields[field].replace(/\./g, '-');&eol; }&eol; break;&eol;&eol; case 'option':&eol; data.fields[field] = {value: fields[field]};&eol; break;&eol;&eol; case 'array':&eol; if (schema[field].schema.items === 'option') {&eol; data.fields[field] = [{value: fields[field]}];&eol; }&eol; else {&eol; data.fields[field] = [fields[field]];&eol; }&eol; break;&eol;&eol; default:&eol; data.fields[field] = fields[field];&eol; }&eol; }&eol; });&eol; }&eol; else {&eol; Zabbix.log(4, '[ Jira Webhook ] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'user', 'password', 'project_key', 'issue_type'].forEach(function (field) {&eol; if (typeof Jira.params !== 'object' &pipe;&pipe; typeof Jira.params[field] === 'undefined'&eol; &pipe;&pipe; Jira.params[field] === '' ) {&eol; throw 'Required Jira param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Jira.params.url + query,&eol; request = new HttpRequest();&eol;&eol; request.addHeader('Content-Type: application/json');&eol; request.addHeader('Authorization: Basic ' + btoa(Jira.params.user + ':' + Jira.params.password));&eol;&eol; if (typeof Jira.HTTPProxy !== 'undefined' && Jira.HTTPProxy !== '') {&eol; request.setProxy(Jira.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.log(4, '[ Jira Webhook ] Sending request: ' + url + ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.log(4, '[ Jira Webhook ] Received response with status code ' + request.getStatus() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.log(4, '[ Jira Webhook ] Failed to parse response received from Jira');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.getStatus() < 200 &pipe;&pipe; request.getStatus() >= 300) {&eol; var message = 'Request failed with status code ' + request.getStatus();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.getStatus(),&eol; response: response&eol; };&eol; },&eol;&eol; getSchema: function() {&eol; var result = Jira.request('get', 'issue/createmeta?expand=projects.issuetypes.fields&projectKeys=' +&eol; encodeURIComponent(Jira.params.project_key) + '&issuetypeNames=' +&eol; encodeURIComponent(Jira.params.issue_type));&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(summary, description, fields) {&eol; var data = {&eol; fields: {&eol; project: {&eol; key: Jira.params.project_key&eol; },&eol; issuetype: {&eol; name: Jira.params.issue_type&eol; },&eol; summary: summary,&eol; description: description&eol; }&eol; };&eol;&eol; if (Jira.labels && Jira.labels.length > 0) {&eol; data.fields.labels = Jira.labels;&eol; }&eol; var result = Jira.request('post', 'issue', Jira.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.key === 'undefined') {&eol; throw 'Cannot create Jira issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.key;&eol; },&eol;&eol; updateIssue: function(summary, fields, update) {&eol; var data = {fields: {}};&eol;&eol; if (summary) {&eol; data.fields.summary = summary;&eol; }&eol;&eol; Jira.request('put', 'issue/' + encodeURIComponent(Jira.params.issue_key), Jira.addCustomFields(data, fields));&eol; Jira.commentIssue(update);&eol; },&eol;&eol; commentIssue: function(update) {&eol; var data = {};&eol;&eol; if (typeof update === 'string') {&eol; data.body = update;&eol; Jira.request('post', 'issue/' + encodeURIComponent(Jira.params.issue_key) + '/comment', data);&eol; }&eol; else if (update.status === '1') {&eol; data.body = update.user + ' ' + update.action + '.';&eol;&eol; if (update.message) {&eol; data.body += '\nMessage: {quote}' + Jira.escapeMarkup(update.message) + '{quote}';&eol; }&eol;&eol; Jira.request('post', 'issue/' + encodeURIComponent(Jira.params.issue_key) + '/comment', data);&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; jira = {},&eol; update = {},&eol; result = {tags: {}},&eol; required_params = ['alert_subject', 'summary', 'event_recovery_value', 'event_source', 'event_value'];&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('jira_')) {&eol; jira[key.substring(5)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; fields[key] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_recovery_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; Jira.setParams(jira);&eol; Jira.setProxy(params.HTTPProxy);&eol; Jira.setTags(params.event_tags_json);&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_recovery_value !== '0') {&eol; Jira.createIssue(params.alert_subject, params.alert_message);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && update.status === '0' && !jira.issue_key.startsWith(jira.project_key)) {&eol; var key = Jira.createIssue(params.alert_subject,&eol; (Object.keys(fields).length ? params.trigger_description : params.alert_message), fields);&eol;&eol;&eol; result.tags.__zbx_jira_issuekey = key;&eol; result.tags.__zbx_jira_issuelink = params.jira_url +&eol; (params.jira_url.endsWith('/') ? '' : '/') + 'browse/' + key;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; if (!jira.issue_key.startsWith(jira.project_key)) {&eol; throw 'Incorrect Issue key given: ' + jira.issue_key;&eol; }&eol; Jira.updateIssue(params.alert_subject, fields,&eol; ((params.event_value === '0' && !Object.keys(fields).length)&eol; ? params.alert_message : update));&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.log(3, '[ Jira Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_jira_issuelink} |Jira: {EVENT.TAGS.__zbx_jira_issuekey} | |
@@ -879,8 +879,8 @@ ROW |7 |5 |23 |0 |2 | |
ROW |8 |6 |23 |0 |4 | |
TABLE |config
-FIELDS|configid|work_period |alert_usrgrpid|discovery_groupid|geomaps_tile_provider|
-ROW |1 |1-5,09:00-18:00|7 |5 |OpenStreetMap.Mapnik |
+FIELDS|configid|work_period |alert_usrgrpid|discovery_groupid|
+ROW |1 |1-5,09:00-18:00|7 |5 |
TABLE |graph_theme
FIELDS|graphthemeid|theme |backgroundcolor|graphcolor|gridcolor|maingridcolor|gridbordercolor|textcolor|highlightcolor|leftpercentilecolor|rightpercentilecolor|nonworktimecolor|colorpalette |
diff --git a/create/src/templates.tmpl b/create/src/templates.tmpl
index a8312280f40..0d3e9c2dcbd 100644
--- a/create/src/templates.tmpl
+++ b/create/src/templates.tmpl
@@ -54,19 +54,19 @@ ROW |10186 |NULL |ICMP Ping
ROW |10188 |NULL |Interfaces Simple SNMP |3 |-1 |2 | | |Interfaces Simple SNMP |0 |NULL |Template Module Interfaces Simple (no ifXTable). This is the exact copy of Template Module Interfaces template with the exception that metrics from ifXTable are replaced with ifTable counters where possible. Use this template with devices where IF-MIB::ifXtable is not available. If supported by the host - use Template Module Interfaces template instead.&eol;&eol;MIBs used:&eol;IF-MIB&eol;&eol;Known Issues:&eol;&eol; Description: 32bit counters are used in this template (since there is no ifXtable available). If busy interfaces return incorrect bits sent/received - set update interval to 1m or less.&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |7cd8aaa8d18d4b22a79edfb769e839b3|
ROW |10190 |NULL |Interfaces SNMP |3 |-1 |2 | | |Interfaces SNMP |0 |NULL |Template Module Interfaces&eol;&eol;MIBs used:&eol;IF-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |809cd59886464ff3ad0a66d16fb1f2d8|
ROW |10192 |NULL |Interfaces Windows SNMP |3 |-1 |2 | | |Interfaces Windows SNMP |0 |NULL |Template Interfaces Windows&eol;&eol;MIBs used:&eol;IF-MIB&eol;&eol;Known Issues:&eol;&eol; Description: 32bit counters are used in this template (since 64bit are not supported by Windows OS). If busy interfaces return incorrect bits sent/received - set update interval to 1m or less.&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |d7af232ed629481e95d2df9952c519c8|
-ROW |10204 |NULL |Generic SNMP |3 |-1 |2 | | |Generic SNMP |0 |NULL |Template Module Generic&eol;&eol;MIBs used:&eol;SNMPv2-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |4cb1aabe2b704b5c882963c2ef87d8f6|
+ROW |10204 |NULL |Generic SNMP |3 |-1 |2 | | |Generic SNMP |0 |NULL |Template Module Generic&eol;&eol;MIBs used:&eol;SNMPv2-MIB&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |4cb1aabe2b704b5c882963c2ef87d8f6|
ROW |10207 |NULL |Alcatel Timetra TiMOS SNMP |3 |-1 |2 | | |Alcatel Timetra TiMOS SNMP |0 |NULL |Template Net Alcatel Timetra TiMOS&eol;&eol;MIBs used:&eol;TIMETRA-CHASSIS-MIB&eol;TIMETRA-SYSTEM-MIB&eol;SNMPv2-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |53044571fb864d87af32473e08c76d0b|
ROW |10208 |NULL |Brocade FC SNMP |3 |-1 |2 | | |Brocade FC SNMP |0 |NULL |Template Net Brocade FC&eol;&eol;MIBs used:&eol;SW-MIB&eol;&eol;Known Issues:&eol;&eol; Description: no IF-MIB::ifAlias is available&eol; Version: v6.3.1c, v7.0.0c, v7.4.1c&eol; Device: all&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |de96d02bd5f242bfa31308ae2131d03f|
ROW |10209 |NULL |Brocade_Foundry Performance SNMP |3 |-1 |2 | | |Brocade_Foundry Performance SNMP |0 |NULL |Template Module Brocade_Foundry Performance&eol;&eol;MIBs used:&eol;FOUNDRY-SN-AGENT-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |c55052212c774e3fbab00343050b3db5|
ROW |10210 |NULL |Brocade_Foundry Nonstackable SNMP |3 |-1 |2 | | |Brocade_Foundry Nonstackable SNMP |0 |NULL |Template Net Brocade_Foundry Nonstackable&eol;&eol;MIBs used:&eol;FOUNDRY-SN-AGENT-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |6ecfb7083ddf45f183ab4be50cfba37a|
ROW |10211 |NULL |Brocade_Foundry Stackable SNMP |3 |-1 |2 | | |Brocade_Foundry Stackable SNMP |0 |NULL |Template Brocade_Foundry Stackable&eol;&eol;MIBs used:&eol;FOUNDRY-SN-AGENT-MIB&eol;FOUNDRY-SN-STACKING-MIB&eol;&eol;Known Issues:&eol;&eol; Description: Correct fan(returns fan status as 'other(1)' and temperature (returns 0) for the non-master Switches are not available in SNMP&eol; Version: Version 08.0.40b and above&eol; Device: ICX 7750 in stack&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |f64ad01567914165a493815e492fb315|
-ROW |10212 |NULL |Cisco CISCO-MEMORY-POOL-MIB SNMP |3 |-1 |2 | | |Cisco CISCO-MEMORY-POOL-MIB SNMP |0 |NULL |Template Cisco CISCO-MEMORY-POOL-MIB&eol;&eol;MIBs used:&eol;CISCO-MEMORY-POOL-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |d7c122cde75447248d4b1613cdc25d5b|
-ROW |10213 |NULL |Cisco CISCO-PROCESS-MIB SNMP |3 |-1 |2 | | |Cisco CISCO-PROCESS-MIB SNMP |0 |NULL |Template Cisco CISCO-PROCESS-MIB&eol;&eol;MIBs used:&eol;CISCO-PROCESS-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |f934f5e71db642c689ed2f945f73ce6c|
-ROW |10215 |NULL |Cisco OLD-CISCO-CPU-MIB SNMP |3 |-1 |2 | | |Cisco OLD-CISCO-CPU-MIB SNMP |0 |NULL |Template Cisco OLD-CISCO-CPU-MIB&eol;&eol;MIBs used:&eol;OLD-CISCO-CPU-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |1b0025aaf71f47ec91d08c17a399c6a6|
-ROW |10216 |NULL |Cisco Inventory SNMP |3 |-1 |2 | | |Cisco Inventory SNMP |0 |NULL |Template Cisco Inventory&eol;&eol;MIBs used:&eol;ENTITY-MIB&eol;SNMPv2-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |90c99055648f40df8517005a7670158c|
-ROW |10217 |NULL |Cisco CISCO-ENVMON-MIB SNMP |3 |-1 |2 | | |Cisco CISCO-ENVMON-MIB SNMP |0 |NULL |Template Cisco CISCO-ENVMON-MIB&eol;&eol;MIBs used:&eol;CISCO-ENVMON-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |51af5cf9312b41d38ab22e02c9af6bbc|
-ROW |10218 |NULL |Cisco IOS SNMP |3 |-1 |2 | | |Cisco IOS SNMP |0 |NULL |Template Cisco IOS Software releases 12.2(3.5) or later&eol;&eol;Known Issues:&eol;&eol; Description: no if(in&pipe;out)(Errors&pipe;Discards) are available for vlan ifType&eol; Version: IOS for example: 12.1(22)EA11, 15.4(3)M2&eol; Device: C2911, C7600&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |aa3ce9bd8c1d40a2b0f83f9e642e88ee|
-ROW |10220 |NULL |Cisco IOS prior to 12.0_3_T SNMP |3 |-1 |2 | | |Cisco IOS prior to 12.0_3_T SNMP |0 |NULL |Cisco IOS Software releases prior to 12.0(3)T&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |1bb42fbdb9054645a62ff81f14ba3b99|
+ROW |10212 |NULL |Cisco CISCO-MEMORY-POOL-MIB SNMP |3 |-1 |2 | | |Cisco CISCO-MEMORY-POOL-MIB SNMP |0 |NULL |Template Cisco CISCO-MEMORY-POOL-MIB&eol;&eol;MIBs used:&eol;CISCO-MEMORY-POOL-MIB&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |d7c122cde75447248d4b1613cdc25d5b|
+ROW |10213 |NULL |Cisco CISCO-PROCESS-MIB SNMP |3 |-1 |2 | | |Cisco CISCO-PROCESS-MIB SNMP |0 |NULL |Template Cisco CISCO-PROCESS-MIB&eol;&eol;MIBs used:&eol;CISCO-PROCESS-MIB&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |f934f5e71db642c689ed2f945f73ce6c|
+ROW |10215 |NULL |Cisco OLD-CISCO-CPU-MIB SNMP |3 |-1 |2 | | |Cisco OLD-CISCO-CPU-MIB SNMP |0 |NULL |Template Cisco OLD-CISCO-CPU-MIB&eol;&eol;MIBs used:&eol;OLD-CISCO-CPU-MIB&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |1b0025aaf71f47ec91d08c17a399c6a6|
+ROW |10216 |NULL |Cisco Inventory SNMP |3 |-1 |2 | | |Cisco Inventory SNMP |0 |NULL |Template Cisco Inventory&eol;&eol;MIBs used:&eol;ENTITY-MIB&eol;SNMPv2-MIB&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |90c99055648f40df8517005a7670158c|
+ROW |10217 |NULL |Cisco CISCO-ENVMON-MIB SNMP |3 |-1 |2 | | |Cisco CISCO-ENVMON-MIB SNMP |0 |NULL |Template Cisco CISCO-ENVMON-MIB&eol;&eol;MIBs used:&eol;CISCO-ENVMON-MIB&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |51af5cf9312b41d38ab22e02c9af6bbc|
+ROW |10218 |NULL |Cisco IOS SNMP |3 |-1 |2 | | |Cisco IOS SNMP |0 |NULL |Template Cisco IOS Software releases 12.2(3.5) or later&eol;&eol;Known Issues:&eol;&eol; Description: no if(in&pipe;out)(Errors&pipe;Discards) are available for vlan ifType&eol; Version: IOS for example: 12.1(22)EA11, 15.4(3)M2&eol; Device: C2911, C7600&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |aa3ce9bd8c1d40a2b0f83f9e642e88ee|
+ROW |10220 |NULL |Cisco IOS prior to 12.0_3_T SNMP |3 |-1 |2 | | |Cisco IOS prior to 12.0_3_T SNMP |0 |NULL |Cisco IOS Software releases prior to 12.0(3)T&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |1bb42fbdb9054645a62ff81f14ba3b99|
ROW |10221 |NULL |Dell Force S-Series SNMP |3 |-1 |2 | | |Dell Force S-Series SNMP |0 |NULL |Template Dell Force S-Series&eol;&eol;MIBs used:&eol;F10-S-SERIES-CHASSIS-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |e5ec7acc7efc4ac491b6fa552ab077ae|
ROW |10222 |NULL |D-Link DES 7200 SNMP |3 |-1 |2 | | |D-Link DES 7200 SNMP |0 |NULL |Template D-Link DES 7200&eol;&eol;MIBs used:&eol;MY-PROCESS-MIB&eol;SNMPv2-MIB&eol;MY-MEMORY-MIB&eol;ENTITY-MIB&eol;MY-SYSTEM-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |395184b5d5b048a68e06c91154c56847|
ROW |10223 |NULL |D-Link DES_DGS Switch SNMP |3 |-1 |2 | | |D-Link DES_DGS Switch SNMP |0 |NULL |Template D-Link DES_DGS Switch&eol;&eol;MIBs used:&eol;DLINK-AGENT-MIB&eol;SNMPv2-MIB&eol;ENTITY-MIB&eol;EQUIPMENT-MIB&eol;&eol;Known Issues:&eol;&eol; Description: D-Link reports missing PSU as fail(4)&eol; Version: Firmware: 1.73R008,hardware revision: B1&eol; Device: DGS-3420-26SC Gigabit Ethernet Switch&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |d3176749a5274264938f487cd89d17eb|
@@ -84,9 +84,9 @@ ROW |10237 |NULL |Ubiquiti AirOS SNMP
ROW |10248 |NULL |Linux SNMP |3 |-1 |2 | | |Linux SNMP |0 |NULL |Template OS Linux&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |4d3a7adbb6964bd08f2b9d28e0da6496|
ROW |10249 |NULL |Windows SNMP |3 |-1 |2 | | |Windows SNMP |0 |NULL |Official Windows SNMP template. Requires Zabbix server 4.0.14, 4.2.8, 4.4.0 or newer (JSONPath function avg() used with types autoconversion).&eol;&eol;&eol;Known Issues:&eol;&eol; Description: Doesn't support In/Out 64 bit counters even though IfxTable is present:&eol;Currently, Windows gets it’s interface status from MIB-2. Since these 64bit SNMP counters (ifHCInOctets, ifHCOutOctets, etc.) are defined as an extension to IF-MIB, Microsoft has not implemented it.&eol;https://social.technet.microsoft.com/Forums/windowsserver/en-US/07b62ff0-94f6-40ca-a99d-d129c1b33d70/windows-2008-r2-snmp-64bit-counters-support?forum=winservergen&eol;&eol; Version: Win2008, Win2012R2.&eol;&eol; Description: Doesn't support ifXTable at all&eol; Version: WindowsXP&eol;&eol; Description: EtherLike MIB is not supported&eol; Version: *&eol; Device: *&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |f9a59315c8944853bb91c0a9ec3056d7|
ROW |10250 |NULL |HP Enterprise Switch SNMP |3 |-1 |2 | | |HP Enterprise Switch SNMP |0 |NULL |Template Net HP Enterprise Switch&eol;&eol;MIBs used:&eol;SEMI-MIB&eol;NETSWITCH-MIB&eol;HP-ICF-CHASSIS&eol;ENTITY-SENSORS-MIB&eol;ENTITY-MIB&eol;STATISTICS-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |cce20a5d149a48b7ac7f5383c3510883|
-ROW |10251 |NULL |Mellanox SNMP |3 |-1 |2 | | |Mellanox SNMP |0 |NULL |The updated template for monitoring the Mellanox network switches over SNMP agent. All items collected in one template without any linked templates.&eol;&eol;MIBs used:&eol;HOST-RESOURCES-MIB&eol;SNMPv2-MIB&eol;ENTITY-SENSORS-MIB&eol;ENTITY-STATE-MIB&eol;ENTITY-MIB&eol;IF-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |a60798c651604d93a062bec0f8a89751|
-ROW |10252 |NULL |Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5 SNMP|3 |-1 |2 | | |Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5 SNMP|0 |NULL |Template Module Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5&eol;&eol;MIBs used:&eol;CISCO-PROCESS-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |3eadb8a2ad4a479cb59bfa6402deee3f|
-ROW |10253 |NULL |Cisco IOS versions 12.0_3_T-12.2_3.5 SNMP |3 |-1 |2 | | |Cisco IOS versions 12.0_3_T-12.2_3.5 SNMP |0 |NULL |Cisco IOS Software releases later to 12.0(3)T and prior to 12.2(3.5)&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |40c233aaa3424fd29dc378022ff3461d|
+ROW |10251 |NULL |Mellanox SNMP |3 |-1 |2 | | |Mellanox SNMP |0 |NULL |The updated template for monitoring the Mellanox network switches over SNMP agent. All items collected in one template without any linked templates.&eol;&eol;MIBs used:&eol;HOST-RESOURCES-MIB&eol;SNMPv2-MIB&eol;ENTITY-SENSORS-MIB&eol;ENTITY-STATE-MIB&eol;ENTITY-MIB&eol;IF-MIB&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |a60798c651604d93a062bec0f8a89751|
+ROW |10252 |NULL |Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5 SNMP|3 |-1 |2 | | |Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5 SNMP|0 |NULL |Template Module Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5&eol;&eol;MIBs used:&eol;CISCO-PROCESS-MIB&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |3eadb8a2ad4a479cb59bfa6402deee3f|
+ROW |10253 |NULL |Cisco IOS versions 12.0_3_T-12.2_3.5 SNMP |3 |-1 |2 | | |Cisco IOS versions 12.0_3_T-12.2_3.5 SNMP |0 |NULL |Cisco IOS Software releases later to 12.0(3)T and prior to 12.2(3.5)&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |40c233aaa3424fd29dc378022ff3461d|
ROW |10254 |NULL |Arista SNMP |3 |-1 |2 | | |Arista SNMP |0 |NULL |Template Net Arista&eol;&eol;MIBs used:&eol;ENTITY-SENSORS-MIB&eol;ENTITY-STATE-MIB&eol;ENTITY-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |26674f62500e4e79b9f470bbf962130d|
ROW |10255 |NULL |Dell iDRAC SNMP |3 |-1 |2 | | |Dell iDRAC SNMP |0 |NULL |Template Server iDRAC&eol;&eol;MIBs used:&eol;IDRAC-MIB-SMIv2&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |43dc5c8a9a0e4786b64e44422c7f32b4|
ROW |10256 |NULL |HP iLO SNMP |3 |-1 |2 | | |HP iLO SNMP |0 |NULL |Template Server HP iLO&eol;&eol;MIBs used:&eol;CPQSINFO-MIB&eol;CPQHLTH-MIB&eol;CPQIDA-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |c2a7ddca051d4b4a9553f339c57e47a9|
@@ -109,7 +109,7 @@ ROW |10274 |NULL |Linux memory by Zabbix agent
ROW |10275 |NULL |Linux block devices by Zabbix agent |3 |-1 |2 | | |Linux block devices by Zabbix agent |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |45486dbbf5bf49f28866fcb212731cf0|
ROW |10276 |NULL |Linux network interfaces by Zabbix agent |3 |-1 |2 | | |Linux network interfaces by Zabbix agent |0 |NULL |Known Issues:&eol;&eol; Description: High interface utilization trigger is removed since currently it is not possible to retrieve interface speed to determine the max bandwidth.&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |18ecfb2a7e754315bb8d7f71917153da|
ROW |10277 |NULL |Linux generic by Zabbix agent |3 |-1 |2 | | |Linux generic by Zabbix agent |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |38f973ee1556494fadeacb2f6b1ec987|
-ROW |10285 |NULL |Linux by Prom |3 |-1 |2 | | |Linux by Prom |0 |NULL |Official Linux template using node exporter.&eol;&eol;Known Issues:&eol;&eol; Description: node_exporter v0.16.0 renamed many metrics. CPU utilization for 'guest' and 'guest_nice' metrics are not supported in this template with node_exporter < 0.16. Disk IO metrics are not supported. Other metrics provided as 'best effort'. &eol; See https://github.com/prometheus/node_exporter/releases/tag/v0.16.0 for details.&eol; Version: below 0.16.0&eol;&eol; Description: metric node_network_info with label 'device' cannot be found, so network discovery is not possible.&eol; Version: below 0.18&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |2506b0ca01884903b547b1e19b76ce6d|
+ROW |10285 |NULL |Linux by Prom |3 |-1 |2 | | |Linux by Prom |0 |NULL |Official Linux template using node exporter.&eol;&eol;Known Issues:&eol;&eol; Description: node_exporter v0.16.0 renamed many metrics. CPU utilization for 'guest' and 'guest_nice' metrics are not supported in this template with node_exporter < 0.16. Disk IO metrics are not supported. Other metrics provided as 'best effort'. &eol; See https://github.com/prometheus/node_exporter/releases/tag/v0.16.0 for details.&eol; Version: below 0.16.0&eol;&eol; Description: metric node_network_info with label 'device' cannot be found, so network discovery is not possible.&eol; Version: below 0.18&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |2506b0ca01884903b547b1e19b76ce6d|
ROW |10286 |NULL |Windows CPU by Zabbix agent |3 |-1 |2 | | |Windows CPU by Zabbix agent |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |e358504d59404f688e236444dd82d2c3|
ROW |10287 |NULL |Windows memory by Zabbix agent |3 |-1 |2 | | |Windows memory by Zabbix agent |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |539b4b98f6fb4e12bbdf3bcdb85df2d1|
ROW |10288 |NULL |Windows filesystems by Zabbix agent |3 |-1 |2 | | |Windows filesystems by Zabbix agent |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |cb28abff977b4b6eb34665ff2218163b|
@@ -205,24 +205,24 @@ ROW |10391 |NULL |Cisco Catalyst 3750V2-24PS SNMP
ROW |10392 |NULL |Cisco Catalyst 3750V2-24TS SNMP |3 |-1 |2 | | |Cisco Catalyst 3750V2-24TS SNMP |0 |NULL |Template Cisco Catalyst 3750V2-24TS&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 |30d084c6b7844b7cab6cf820b00bb7b2|
ROW |10393 |NULL |Cisco Catalyst 3750V2-48PS SNMP |3 |-1 |2 | | |Cisco Catalyst 3750V2-48PS SNMP |0 |NULL |Template Cisco Catalyst 3750V2-48PS&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 |ea096c13a09b4d7a9be0aab1cec95206|
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 |f744679600844c07b2b4eedda9bc3d0c|
-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 |3ec55c9966624ef5bc1b50502812d581|
+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.39 |1 |1 | | | | | |1 |0 |0 |3ec55c9966624ef5bc1b50502812d581|
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 |79267c69f54a4e59b4152aba4e8c4bd5|
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 |43596328d4d74a5592906a9e08e3fd96|
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 |8ec72ebbe3204d7789429640abcac610|
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 |3a0bbbb2ec0a4c58bba3ba3a3d6ce660|
-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 |5d3971cd973b46e7915d7ae0750bac57|
-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 |e8c0b2c40e884f1598d86f3edf020ea7|
-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 |eafd78764fde4110b9e46ae184f327ba|
-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 |340ec6917c274ead8fab36925e57f30a|
-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 |32d3c78ff44c4c3c9ff5b893ad7f5fc9|
+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.39 |1 |1 | | | | | |1 |0 |0 |5d3971cd973b46e7915d7ae0750bac57|
+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.39 |1 |1 | | | | | |1 |0 |0 |e8c0b2c40e884f1598d86f3edf020ea7|
+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.39 |1 |1 | | | | | |1 |0 |0 |eafd78764fde4110b9e46ae184f327ba|
+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.39 |1 |1 | | | | | |1 |0 |0 |340ec6917c274ead8fab36925e57f30a|
+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.39 |1 |1 | | | | | |1 |0 |0 |32d3c78ff44c4c3c9ff5b893ad7f5fc9|
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 |77e7f53c88f546a5ac0dc8b318c7cd24|
-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 |b3caafda8c5345cc832ac3be3cefa615|
-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 |0b9a899ff8f1467c9fdf999d02b9fd77|
-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 |1dac0a88c3774315b90622a48031e369|
-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 |4ffb0f9103084384a98379ed533865e9|
+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.39 |1 |1 | | | | | |1 |0 |0 |b3caafda8c5345cc832ac3be3cefa615|
+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.39 |1 |1 | | | | | |1 |0 |0 |0b9a899ff8f1467c9fdf999d02b9fd77|
+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.39 |1 |1 | | | | | |1 |0 |0 |1dac0a88c3774315b90622a48031e369|
+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.39 |1 |1 | | | | | |1 |0 |0 |4ffb0f9103084384a98379ed533865e9|
ROW |10410 |NULL |WildFly Domain by JMX |3 |-1 |2 | | |WildFly Domain by JMX |0 |NULL |Official JMX Template for WildFly.&eol;The metrics are collected by JMX. This template works with Domain Controller.&eol;You can set {$WILDFLY.USER} and {$WILDFLY.PASSWORD} macros in the template for using on the host level.&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 |4b27e636b6ad4ce68511d344d5604999|
ROW |10411 |NULL |WildFly Server by JMX |3 |-1 |2 | | |WildFly Server by JMX |0 |NULL |Official JMX Template for WildFly.&eol;The metrics are collected by JMX. This template works with standalone and domain instances.&eol;You can set {$WILDFLY.USER} and {$WILDFLY.PASSWORD} macros in the template for using on the host level.&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 |2bf5827343f0420792ad953f290baa05|
-ROW |10412 |NULL |APC Smart-UPS SRT 5000 SNMP |3 |-1 |2 | | |APC Smart-UPS SRT 5000 SNMP |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 |8ec76aeb703747a5affdf435bc12f572|
+ROW |10412 |NULL |APC Smart-UPS SRT 5000 SNMP |3 |-1 |2 | | |APC Smart-UPS SRT 5000 SNMP |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.39 |1 |1 | | | | | |1 |0 |0 |8ec76aeb703747a5affdf435bc12f572|
ROW |10413 |NULL |Website certificate by Zabbix agent 2 |3 |-1 |2 | | |Website certificate by Zabbix agent 2 |0 |NULL |The template to monitor TLS/SSL certificate on the website by Zabbix agent 2 that works without any external scripts.&eol;Zabbix agent 2 with the WebCertificate plugin requests certificate using the web.certificate.get key and returns JSON with certificate attributes.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/428309-discussion-thread-for-official-zabbix-template-tls-ssl-certificates-monitoring&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |5630ec1b1baf449abe1bc5521f85fe6c|
ROW |10414 |NULL |Cloudflare by HTTP |3 |-1 |2 | | |Cloudflare by HTTP |0 |NULL |The template to monitor Cloudflare to see your web traffic and DNS metrics. It works without any external scripts and uses Script item.&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |08ef3d687d754b0aba17e1dcbd77d4bd|
ROW |10415 |NULL |Template App Nginx Plus by HTTP |3 |-1 |2 | | |Template App Nginx Plus by HTTP |0 |NULL |Get Nginx Plus metrics by HTTP agent.&eol;Metrics are collected by requests to Nginx Plus API.&eol;Don't forget to change macros {$NGINX.API.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 |8cad0f2564694416b60bd8a414948641|
@@ -244,7 +244,7 @@ ROW |10430 |NULL |ZYXEL MGS-3712F SNMP
ROW |10431 |NULL |ZYXEL MES3500-24S SNMP |3 |-1 |2 | | |ZYXEL MES3500-24S SNMP |0 |NULL |ZYXEL MES3500-24S&eol;&eol;MIBs used:&eol;RFC1213-MIB&eol;ZYXEL-HW-MONITOR-MIB&eol;ZYXEL-PORT-MIB&eol;ZYXEL-ES-COMMON&eol;ZYXEL-TRANSCEIVER-MIB&eol;IF-MIB&eol;&eol;Known Issues:&eol;&eol; Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings.&eol; Version: all versions firmware&eol; Device: ZYXEL MGS3520-28&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |89eef2fe23964f44bf9aec6d00e39efd|
ROW |10432 |NULL |ZYXEL MGS3520-28x SNMP |3 |-1 |2 | | |ZYXEL MGS3520-28x SNMP |0 |NULL |ZYXEL MGS3520-28x&eol;&eol;MIBs used:&eol;RFC1213-MIB&eol;ZYXEL-HW-MONITOR-MIB&eol;ZYXEL-PORT-MIB&eol;ZYXEL-ES-COMMON&eol;ZYXEL-TRANSCEIVER-MIB&eol;IF-MIB&eol;&eol;Known Issues:&eol;&eol; Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings.&eol; Version: all versions firmware&eol; Device: ZYXEL MGS3520-28&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |9cc843a085bb4ee5af0dc4d764a7eee9|
ROW |10433 |NULL |ZYXEL XGS-4728F SNMP |3 |-1 |2 | | |ZYXEL XGS-4728F SNMP |0 |NULL |ZYXEL XGS-4728F&eol;&eol;MIBs used:&eol;RFC1213-MIB&eol;ZYXEL-XGS4728F-MIB&eol;IF-MIB&eol; ZYXEL-XGS4728F-MIB&eol;&eol;Known Issues:&eol;&eol; Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings.&eol; Version: all versions firmware&eol; Device: ZYXEL XGS-4728F&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |ab18a5665b7d4bed876881b5c4e8ce51|
-ROW |10434 |NULL |Cisco UCS Manager SNMP |3 |-1 |2 | | |Cisco UCS Manager SNMP |0 |NULL |This is a template for Cisco UCS Manager monitoring via Zabbix SNMP Agent that works without any external scripts.&eol;&eol;&eol;MIBs used:&eol;CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;SNMPv2-MIB&eol;CISCO-UNIFIED-COMPUTING-PROCESSOR-MIB&eol;CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB&eol;CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;IF-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/418396-discussion-thread-for-official-zabbix-templates-for-cisco&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |d5eb4ce08a334098a85e6e02c534be90|
+ROW |10434 |NULL |Cisco UCS Manager SNMP |3 |-1 |2 | | |Cisco UCS Manager SNMP |0 |NULL |This is a template for Cisco UCS Manager monitoring via Zabbix SNMP Agent that works without any external scripts.&eol;&eol;&eol;MIBs used:&eol;CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;SNMPv2-MIB&eol;CISCO-UNIFIED-COMPUTING-PROCESSOR-MIB&eol;CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB&eol;CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;IF-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/418396-discussion-thread-for-official-zabbix-templates-for-cisco&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |d5eb4ce08a334098a85e6e02c534be90|
ROW |10435 |NULL |DELL PowerEdge R720 by HTTP |3 |-1 |2 | | |DELL PowerEdge R720 by HTTP |0 |NULL |Template for DELL PowerEdge R720 servers with iDRAC 8/9 firmware 4.32 and later and Redfish API enabled.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/426752-discussion-thread-for-official-zabbix-dell-templates&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |9643f22821104f809e2486be83e1816e|
ROW |10436 |NULL |DELL PowerEdge R720 SNMP |3 |-1 |2 | | |DELL PowerEdge R720 SNMP |0 |NULL |Template for DELL PowerEdge R720 servers with iDRAC version 7 and later.&eol;&eol;MIBs used:&eol;IDRAC-MIB-SMIv2&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/426752-discussion-thread-for-official-zabbix-dell-templates&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |fe5b8448661f41b9a6d948fccd7f9045|
ROW |10437 |NULL |DELL PowerEdge R740 by HTTP |3 |-1 |2 | | |DELL PowerEdge R740 by HTTP |0 |NULL |Template for DELL PowerEdge R740 servers with iDRAC 8/9 firmware 4.32 and later and Redfish API enabled.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/426752-discussion-thread-for-official-zabbix-dell-templates&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |3f707f39c32a4b6e8b214c38a260f6f9|
@@ -329,12 +329,12 @@ ROW |35 |10388 |MongoDB sharded cluster/{#REPLICASET}|NULL |NU
ROW |37 |10389 |MongoDB sharded cluster/{#ID} |NULL |NULL |
ROW |54 |10334 |{#DATACENTER.NAME}/{#VM.FOLDER} (vm) |NULL |NULL |
ROW |57 |10368 |{#DATACENTER.NAME}/{#VM.FOLDER} (vm) |NULL |NULL |
-ROW |79 |10333 | |12 |NULL |
-ROW |80 |10334 | |12 |NULL |
-ROW |81 |10367 | |12 |NULL |
-ROW |82 |10368 | |12 |NULL |
-ROW |83 |10388 | |13 |NULL |
-ROW |84 |10389 | |13 |NULL |
+ROW |85 |10333 | |12 |NULL |
+ROW |86 |10334 | |12 |NULL |
+ROW |87 |10367 | |12 |NULL |
+ROW |88 |10368 | |12 |NULL |
+ROW |89 |10388 | |13 |NULL |
+ROW |90 |10389 | |13 |NULL |
TABLE |interface
FIELDS|interfaceid|hostid|main|type|useip|ip |dns |port |
@@ -910,6 +910,8 @@ ROW |561 |10503 |Edge activation state
ROW |562 |10503 |Edge HA status |cd8d83dc329144d9925a5c52db95df96|
ROW |563 |10503 |Edge states |87f150cd23e14448b35980b546dc2cd8|
ROW |564 |10503 |Link states |249b93828946422c9ef8870a915661ca|
+ROW |565 |10047 |Cluster node status |cee1681b12ff49b6b7d442a851e870b4|
+ROW |566 |10261 |Cluster node status |25ab0f5c570b4a7e9d15bd41db79fe25|
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|uuid |
@@ -1247,9 +1249,9 @@ ROW |27124 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX}
ROW |27125 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |95e58c279df24606b28fb325e7006b54|
ROW |27126 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |199eb3a0274a43f198137abefba57f09|
ROW |27127 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |62 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |73b1182c727449f69fb0dc67b19aec5d|
-ROW |27152 |20 |1.3.6.1.2.1.1.5.0 |10204 |System name |system.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |3996a3a8d927473aa07c47e63a09b865|
-ROW |27154 |5 | |10204 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |3e8c2d440441416b9ccec7dd90e21503|
-ROW |27157 |17 | |10204 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |2cda26906f254e13985cecdbb7901d1a|
+ROW |27152 |20 |1.3.6.1.2.1.1.5.0 |10204 |System name |system.name |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |3996a3a8d927473aa07c47e63a09b865|
+ROW |27154 |5 | |10204 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |3e8c2d440441416b9ccec7dd90e21503|
+ROW |27157 |17 | |10204 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |2cda26906f254e13985cecdbb7901d1a|
ROW |27203 |20 |1.3.6.1.2.1.1.1.0 |10207 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |2183a57a2c904632bf813c15610765f7|
ROW |27207 |20 |1.3.6.1.4.1.6527.3.1.2.1.1.9.0 |10207 |Used memory |vm.memory.used[sgiKbMemoryUsed.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The value of sgiKbMemoryUsed indicates the total pre-allocated pool memory, in kilobytes, currently in use on the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f5cd1ed0f61f464f86a97485f833d832|
ROW |27208 |20 |1.3.6.1.4.1.6527.3.1.2.1.1.1.0 |10207 |CPU utilization |system.cpu.util[sgiCpuUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The value of sgiCpuUsage indicates the current CPU utilization for the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |e28cb751b37e42d29be9f0295bd030b6|
@@ -1671,7 +1673,7 @@ ROW |29110 |0 |
ROW |29111 |0 | |10277 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |48c251895f234f4595c4133015c27a18|
ROW |29112 |0 | |10277 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |ac41daaa287944f3b0429c6fb2bca09c|
ROW |29113 |0 | |10277 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f744b8e0be46431e8088803b3a1b210d|
-ROW |29114 |0 | |10277 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |b3a8feced15d4a09a8a2d8d1d8c9a546|
+ROW |29114 |0 | |10277 |System description |system.uname |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |b3a8feced15d4a09a8a2d8d1d8c9a546|
ROW |29115 |0 | |10277 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |c595adf482c04553a2477bc1d929bc8d|
ROW |29116 |0 | |10277 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |5dc4ebda1b9244e7a9f901209b78570f|
ROW |29117 |0 | |10277 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |a82525acd1bd4039860ad2d750476760|
@@ -1720,7 +1722,7 @@ ROW |29470 |0 |
ROW |29472 |0 | |10290 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |24411175d64f48a195ee4a2323d8e799|
ROW |29473 |0 | |10290 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |25454c401bea41a4b3c49da3165f3d3d|
ROW |29474 |0 | |10290 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |78ae4dbd2d894819a36a7d3d00f2e508|
-ROW |29475 |0 | |10290 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |76ef3297b4b740bfaf891e039f7d4dff|
+ROW |29475 |0 | |10290 |System description |system.uname |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |76ef3297b4b740bfaf891e039f7d4dff|
ROW |29476 |0 | |10290 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |8401ea3152ea45269eeb6cc7fa70f1aa|
ROW |29477 |0 | |10290 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads used by all running processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |1245fca060fb424897387d56d29fe030|
ROW |29478 |0 | |10290 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |5ed680dff3154af58e7adc0571a6ee9d|
@@ -1749,10 +1751,10 @@ ROW |29743 |3 |
ROW |29745 |19 | |10303 |RabbitMQ: Get queues |rabbitmq.get_queues |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns queues metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/queues | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |3d0770d550b24f5ca80289cb723c8386|
ROW |29822 |5 | |10047 |Zabbix server: Utilization of alert syncer internal processes, in % |zabbix[process,alert syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time alert syncer processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |eea69b4541844ebbbbf634594c14a8f2|
ROW |29844 |20 |1.3.6.1.2.1.1.3.0 |10204 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |000b97abddcd44bfb57e0eeb1b77f69e|
-ROW |29845 |20 |1.3.6.1.2.1.1.6.0 |10204 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |02b453f44c014f2bb1054e801058b381|
-ROW |29846 |20 |1.3.6.1.2.1.1.4.0 |10204 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |62da59c7aae54df7976f327119fe7cc2|
+ROW |29845 |20 |1.3.6.1.2.1.1.6.0 |10204 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |02b453f44c014f2bb1054e801058b381|
+ROW |29846 |20 |1.3.6.1.2.1.1.4.0 |10204 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |62da59c7aae54df7976f327119fe7cc2|
ROW |29847 |20 |1.3.6.1.2.1.1.2.0 |10204 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |9dbcc5a1cd7240c896e2ea718f9ccb35|
-ROW |29848 |20 |1.3.6.1.2.1.1.1.0 |10204 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |29a3e5277de94386a5985fcf38a09364|
+ROW |29848 |20 |1.3.6.1.2.1.1.1.0 |10204 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |29a3e5277de94386a5985fcf38a09364|
ROW |29994 |20 |1.3.6.1.4.1.232.6.1.3.0 |10256 |Overall system health status |system.status[cpqHeMibCondition.0] |1m |7d |0d |0 |3 | | | | |NULL |102 | | |0 | | | | |0 |NULL |MIB: CPQHLTH-MIB&eol;The overall condition. This object represents the overall status of the server information represented by this MIB. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |5f30715570c449ecb4e07858256a3e05|
ROW |29998 |0 | |10300 |RabbitMQ: Get overview |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/overview"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |943eabfb44164908b9135aa4d6478bea|
ROW |29999 |0 | |10300 |RabbitMQ: Get exchanges |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/exchanges"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns exchanges metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f015f991bcea4c4dbf83dfb013300010|
@@ -2220,7 +2222,7 @@ ROW |31842 |0 |
ROW |31843 |7 | |10340 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |6f37348c05fa409e9189af3731296095|
ROW |31844 |7 | |10340 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |79d493ae03a64bdab89520c3dde0410c|
ROW |31845 |7 | |10340 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |42df39b3317a4bd6908686a491fd3d18|
-ROW |31846 |7 | |10340 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d875142b4ea0442db59768be58c9d026|
+ROW |31846 |7 | |10340 |System description |system.uname |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d875142b4ea0442db59768be58c9d026|
ROW |31847 |7 | |10340 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |2e5b3c8596df4aaebce704f3904630a7|
ROW |31848 |7 | |10340 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |a58cfd080cfe44d9ae054754bbc69892|
ROW |31849 |7 | |10340 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd,sha256] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |7cb47989debc4deba77394a5320a83e8|
@@ -2261,7 +2263,7 @@ ROW |31957 |7 |
ROW |31958 |7 | |10346 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |73b821a638a74e6d86be642952d2d6fe|
ROW |31959 |0 | |10346 |System local time |system.localtime |1m |7d |365d |1 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |78f2089b58f54042ac70fd9ac3b2aa7e|
ROW |31960 |7 | |10346 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |0522b89bdee248c5aad6ff77d9a68311|
-ROW |31961 |7 | |10346 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |383c3f59afee455d8981fe85e46c94dd|
+ROW |31961 |7 | |10346 |System description |system.uname |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |383c3f59afee455d8981fe85e46c94dd|
ROW |31962 |7 | |10346 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |e5342587828d40ed8feafdccdd6d92e3|
ROW |31963 |7 | |10347 |Cache bytes |perf_counter_en["\Memory\Cache Bytes"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache Bytes is the sum of the Memory\\System Cache Resident Bytes, Memory\\System Driver Resident Bytes, &eol;Memory\\System Code Resident Bytes, and Memory\\Pool Paged Resident Bytes counters. This counter displays &eol;the last observed value only; it is not an average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |50610f9c46a848bdbdc08ed5b9c2a156|
ROW |31964 |7 | |10347 |Free system page table entries |perf_counter_en["\Memory\Free System Page Table Entries"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This indicates the number of page table entries not currently in use by the system. If the number is less &eol;than 5,000, there may well be a memory leak or you running out of memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |6faf395b5bb14456a33e6689b7618613|
@@ -3357,15 +3359,15 @@ ROW |34148 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX}
ROW |34149 |3 | |10251 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |NULL |262 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |87480ce035a94f299c4cf4103eaaf066|
ROW |34150 |3 | |10251 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |50e85be3969447c58fcfeca5d9a1a9bb|
ROW |34151 |3 | |10251 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |7567e999d75442379066babdc9b50894|
-ROW |34152 |17 | |10251 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |0cb8aadeb5554583a65c3496cfed2c1b|
-ROW |34153 |20 |1.3.6.1.2.1.1.4.0 |10251 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f62a8b653c3d44d09864a4a4c910aeb1|
+ROW |34152 |17 | |10251 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |0cb8aadeb5554583a65c3496cfed2c1b|
+ROW |34153 |20 |1.3.6.1.2.1.1.4.0 |10251 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f62a8b653c3d44d09864a4a4c910aeb1|
ROW |34154 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10251 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |c33470549bda45e88ecb8ded7d0b5e87|
-ROW |34155 |20 |1.3.6.1.2.1.1.1.0 |10251 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |64c4f3e890ec4c29be07ba2d06345534|
+ROW |34155 |20 |1.3.6.1.2.1.1.1.0 |10251 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |64c4f3e890ec4c29be07ba2d06345534|
ROW |34156 |20 |1.3.6.1.2.1.1.6.0 |10251 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |e0d2149e1a114f3a971c324673beae2f|
ROW |34157 |20 |1.3.6.1.2.1.1.5.0 |10251 |System name |system.name |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f63d1f71a97e45b0ab5716299ef298ea|
ROW |34158 |20 |1.3.6.1.2.1.1.2.0 |10251 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f1535f45138b472c945e231a9beb9cc5|
ROW |34159 |20 |1.3.6.1.2.1.1.3.0 |10251 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d7f06d23f6b14677b5183f2cc94fc10d|
-ROW |34160 |5 | |10251 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |263 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |aba117057e824b6789fca847cae9e0fc|
+ROW |34160 |5 | |10251 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |263 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |aba117057e824b6789fca847cae9e0fc|
ROW |34161 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10251 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |9e0d4ed074214f22bbbc9c8a5e3b9d0d|
ROW |34162 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10251 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f4c83472c88b419da104e4c5a35d6fc9|
ROW |34163 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10251 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |32a20a1f65d64db3bf17d6d405321253|
@@ -3390,9 +3392,9 @@ ROW |34182 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.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 |6780faad9fc9492f9f92915db5161e43|
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 |6030dbee3cc24dbeb15e4b802e89cbc8|
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 |445d7a843340424ab7c09ab001d5865c|
-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 |ed42f6f2d8c24176b53f38e0a857a129|
-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 |299e4e11e0374888877e1dc386409726|
-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 |2c52ba1a964a40e1b4a75582ee6ad43b|
+ROW |34187 |20 |1.3.6.1.2.1.1.1.0 |10395 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |ed42f6f2d8c24176b53f38e0a857a129|
+ROW |34188 |20 |1.3.6.1.2.1.1.4.0 |10395 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |299e4e11e0374888877e1dc386409726|
+ROW |34189 |17 | |10395 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |2c52ba1a964a40e1b4a75582ee6ad43b|
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 |37d7eda5664c4ae2b4a126c60a8eb40b|
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 |0ae99a18a5c24fb0b812353d25459e1f|
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 |a332c87a948045beae13f74984245b86|
@@ -3406,7 +3408,7 @@ ROW |34202 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.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 |f52a3e2ae08c4b2996249c5601b4098d|
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 |eb74b3671b4d4335ad92bd3b027547b0|
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 |3d69adaa88e64b8084d38c1482815bf2|
-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 |ca3275f69f3c4e7c9c71108451c0b64f|
+ROW |34206 |5 | |10395 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |269 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |ca3275f69f3c4e7c9c71108451c0b64f|
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 |52345d2975214002bdd05a24e43484a8|
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 |f7eb1c82c6694e72b7d28ba4d71d8741|
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 |457169b3c43846739614a6ddc7155fda|
@@ -3470,9 +3472,9 @@ ROW |34455 |20 |1.3.6.1.2.1.1.2.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 |d6f2c9770c28487d9fa6af2b63917958|
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 |93b6e128e95a4a96bde38ef15d74d510|
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 |b109475e72e74e76846aa478e9937101|
-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 |f1df592a2b114677a1beabec33ce01f9|
-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 |aa5e85ef78504fc080b97342baf6cb35|
-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 |7d20aa252c5143c98de837dbd2f0cd53|
+ROW |34459 |20 |1.3.6.1.2.1.1.1.0 |10400 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f1df592a2b114677a1beabec33ce01f9|
+ROW |34460 |20 |1.3.6.1.2.1.1.4.0 |10400 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |aa5e85ef78504fc080b97342baf6cb35|
+ROW |34461 |17 | |10400 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |7d20aa252c5143c98de837dbd2f0cd53|
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 |4ec893da7b8540548d60a91ee7e2df83|
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 |5774ead79e8b4d63a4a31bc091d1c52a|
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 |2b417eadc988460a89db04efdaca4ffc|
@@ -3486,7 +3488,7 @@ ROW |34471 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.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 |89cca909c60745fe824d02aa0d4bc3d7|
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 |b7614652ff6f4e0890f366b8e0831b80|
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 |98af792142464656b925a452e5ebf1cc|
-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 |efad5c028c0d4c11b57a19dc04830ea7|
+ROW |34475 |5 | |10400 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |278 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |efad5c028c0d4c11b57a19dc04830ea7|
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 |54a867c14c814e4ab4803c5a59082e44|
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 |0c8fc55bbe984d919c3b87a096d900d5|
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 |ffb60da941114174932b219e14892be9|
@@ -3518,9 +3520,9 @@ ROW |34503 |20 |1.3.6.1.2.1.1.2.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 |d9452c921e4946719726b292d8c0cbd6|
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 |1ba45d867e3d4bb99eeb8c0c320ef127|
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 |ac995904f95240d9b1f44c27adea5731|
-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 |e5d72eba4dfb41f8ae73904c936dd64b|
-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 |943b146891ac461c92d286704a0864b2|
-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 |94d838cc8cf2438296477c0139a3c152|
+ROW |34507 |20 |1.3.6.1.2.1.1.1.0 |10401 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |e5d72eba4dfb41f8ae73904c936dd64b|
+ROW |34508 |20 |1.3.6.1.2.1.1.4.0 |10401 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |943b146891ac461c92d286704a0864b2|
+ROW |34509 |17 | |10401 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |94d838cc8cf2438296477c0139a3c152|
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 |4e43a6966bf642e19567dcd3763125e7|
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 |df799c65dbe5437aa941de3e6d386b26|
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 |8ba1d824fdc548b4bca770f4145f7169|
@@ -3534,7 +3536,7 @@ ROW |34519 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.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 |05be71fcb7c1484f876229f48649039e|
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 |4c1107eb93114d9096518dc134e08bdc|
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 |147e0b7b466e402ba59d73d66801ef1a|
-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 |d679688992124f6c91c3f70bcc341d2d|
+ROW |34523 |5 | |10401 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |284 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d679688992124f6c91c3f70bcc341d2d|
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 |72077c26a51b43a6afea271e70d13004|
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 |38aa32616e964db088f4faff12867f1a|
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 |e428310ecc5f4a53ab7932bcf1247a30|
@@ -3566,9 +3568,9 @@ ROW |34551 |20 |1.3.6.1.2.1.1.2.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 |1f591627fea54a9ebdd8f10cbf39b9ed|
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 |272883d0a1cd4bb585a6ede50336c873|
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 |a5c6c4c44132439abd0e5fd88e3c90cf|
-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 |a312df9175ca45528375398f56fa3b3b|
-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 |fbcbe2cffc8c4bb6b11276cdd03376c3|
-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 |92c2ef138bf148199cdb6d9684b6fa23|
+ROW |34555 |20 |1.3.6.1.2.1.1.1.0 |10402 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |a312df9175ca45528375398f56fa3b3b|
+ROW |34556 |20 |1.3.6.1.2.1.1.4.0 |10402 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |fbcbe2cffc8c4bb6b11276cdd03376c3|
+ROW |34557 |17 | |10402 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |92c2ef138bf148199cdb6d9684b6fa23|
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 |ebf71f0afed5460ba4c7f66bb162de9f|
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 |a2613c8d71864594a0c94064d99e059e|
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 |86780568c0594469bc7324c68440cbec|
@@ -3582,7 +3584,7 @@ ROW |34567 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.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 |d15c36fb66754791b1014f52171efe1c|
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 |b50a17ab043c404990dd088ac9f74078|
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 |1928e58e65a34b188916086bad5b8725|
-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 |edb39f7236d74c6783e0d4b832e0b94b|
+ROW |34571 |5 | |10402 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |290 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |edb39f7236d74c6783e0d4b832e0b94b|
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 |2edf8773186845499a991288d1a7a55b|
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 |a0d8d681bfb54c1d9792beaf3f708d69|
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 |88f5bc98004740fe886f5b1144de2c35|
@@ -3614,9 +3616,9 @@ ROW |34599 |20 |1.3.6.1.2.1.1.2.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 |482bec6573f249abbb721f2ec90def3b|
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 |866889bb71e949c18520bf8fefd3e7ea|
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 |d0351d1bc1dc4f1b853fe64d456b3570|
-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 |01302a36cafd421c90d746f785c83f3f|
-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 |da60acc731a64257a90512b5c70d1e92|
-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 |d08fb7e3fae84d2cbae64ab9771ffcdc|
+ROW |34603 |20 |1.3.6.1.2.1.1.1.0 |10403 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |01302a36cafd421c90d746f785c83f3f|
+ROW |34604 |20 |1.3.6.1.2.1.1.4.0 |10403 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |da60acc731a64257a90512b5c70d1e92|
+ROW |34605 |17 | |10403 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d08fb7e3fae84d2cbae64ab9771ffcdc|
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 |6c7d7d803647478c8f2a79875457110c|
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 |cd7b2c1b12df4fd19f37485aa380b295|
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 |1a52452353b443d6b965293fda3b16b9|
@@ -3630,7 +3632,7 @@ ROW |34615 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.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 |f151210b9cd749b2b3e5af2145733c82|
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 |8f4351d23be04a3abee1e6edb746a9ec|
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 |7a887ae254b04b19bac605bb36141767|
-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 |f4f9ebb1e55b41a5a6e470a541e136bc|
+ROW |34619 |5 | |10403 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |296 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f4f9ebb1e55b41a5a6e470a541e136bc|
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 |67fa8bb8687b4a36b8d32cda72083966|
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 |b4a8277fdf6f4e76a641690aaf6e7faa|
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 |59467725274d4dba8e839d167cabe693|
@@ -3662,9 +3664,9 @@ ROW |34647 |20 |1.3.6.1.2.1.1.2.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 |e4d9441075954c068b6fd92bbff49cef|
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 |320221ba30744ca78b8dce03dccd549b|
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 |031b9d385cae4641b9ecfb76c4174262|
-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 |e0d638ab398f40e8a9555925cd8ba907|
-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 |50cc8e7cea0c40948c006623dfa94dae|
-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 |d633cd3273e74209a1b0c6b761028e0a|
+ROW |34651 |20 |1.3.6.1.2.1.1.1.0 |10404 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |e0d638ab398f40e8a9555925cd8ba907|
+ROW |34652 |20 |1.3.6.1.2.1.1.4.0 |10404 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |50cc8e7cea0c40948c006623dfa94dae|
+ROW |34653 |17 | |10404 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d633cd3273e74209a1b0c6b761028e0a|
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 |bcb28618699448ea8d9d056bad203a0e|
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 |1d9d7ef724ff41eda4fd536df6af93cb|
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 |7f3b05afa58142d5b8670c40c196baf8|
@@ -3678,7 +3680,7 @@ ROW |34663 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.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 |95749270e6234d6cbd1edb0c5e1118e0|
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 |44a33eba233e4bd7ac51ca2dcabf2939|
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 |87b91005f5ff4ba5b0086e25eaa799bd|
-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 |f24fc7ed9ffa4884891a01a0f1565fc4|
+ROW |34667 |5 | |10404 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |302 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f24fc7ed9ffa4884891a01a0f1565fc4|
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 |9389b159502e4242b02a11104124bae5|
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 |ec66331f2ae64801a3ef51d6dec5a00f|
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 |19379361227740c3bf8bc9852886538d|
@@ -3758,9 +3760,9 @@ ROW |34743 |20 |1.3.6.1.2.1.1.2.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 |13c26820947442f581c2234c38c052cc|
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 |57f3c4c2aff04eef83b7a7a53fa9f95c|
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 |25aa469a757347089191eb8e364d4df9|
-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 |13d3c18413a249d492272a7373ebd772|
-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 |e4995e72f6b442bd9b8c90f09eb54f16|
-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 |ae4579b14c424c0492acbfcb5aa5dd67|
+ROW |34747 |20 |1.3.6.1.2.1.1.1.0 |10406 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |13d3c18413a249d492272a7373ebd772|
+ROW |34748 |20 |1.3.6.1.2.1.1.4.0 |10406 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |e4995e72f6b442bd9b8c90f09eb54f16|
+ROW |34749 |17 | |10406 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |ae4579b14c424c0492acbfcb5aa5dd67|
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 |07059c625de94e618925249492982fb7|
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 |0413f6ef89894dc6ba51e42f6a963f94|
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 |7d7c2b962e9843b8a6cf72c04ff1e479|
@@ -3774,7 +3776,7 @@ ROW |34759 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.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 |ae8a19896d21405ca99a5bfbd5de1f95|
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 |4cdd4bbff845477194a6d96a31431d23|
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 |552e030c272d43a0998bc2648f15ae44|
-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 |567996748402435d80aae37818d4125e|
+ROW |34763 |5 | |10406 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |314 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |567996748402435d80aae37818d4125e|
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 |912994ce460742ebbb91c89d28d87d73|
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 |abfe041a98dc4023b21ec6d9e829a94a|
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 |52e5451d8c7a41478ef9dde6a3c16378|
@@ -3812,9 +3814,9 @@ ROW |34797 |20 |1.3.6.1.2.1.1.2.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 |b15628c68d4c4e8ca761ad9fa7e40a1c|
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 |64d56d199021432886452fff5a4c6d22|
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 |6a06715ef4c44534a0ebc45f4e5adb5b|
-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 |e8c576f27f4c49ef9acd1ba7198ffbb6|
-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 |8dd800fbbcde431aa421eeb5a33eb798|
-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 |102179b315b548e289df3459bc5860c1|
+ROW |34801 |20 |1.3.6.1.2.1.1.1.0 |10407 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |e8c576f27f4c49ef9acd1ba7198ffbb6|
+ROW |34802 |20 |1.3.6.1.2.1.1.4.0 |10407 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |8dd800fbbcde431aa421eeb5a33eb798|
+ROW |34803 |17 | |10407 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |102179b315b548e289df3459bc5860c1|
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 |9cf495d14fdf4059b6c35e7857d7a18c|
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 |d27e991fc0f64b4f9704fb8183567e8d|
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 |3fea9d328d5342b5bae6b643a0b45495|
@@ -3828,7 +3830,7 @@ ROW |34813 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.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 |8340b775b76f4e8aad6d3984c63632e9|
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 |731d350450f742d880d81ff2be69e67e|
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 |f4bd3a4a637640e29f50ebd36fb510e5|
-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 |9562f60b1cbd4fe08614221e69efd811|
+ROW |34817 |5 | |10407 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |321 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |9562f60b1cbd4fe08614221e69efd811|
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 |35a885d8f181416db86f2ffe73a30f7f|
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 |168bfbfc58ca46509caf54ae3562f0bc|
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 |598521a7c59d425d9deb58c9829e344e|
@@ -3860,9 +3862,9 @@ ROW |34845 |20 |1.3.6.1.2.1.1.2.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 |155feccece4a4625b98efa206ad5e0b1|
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 |bd0dc104ded94e4cbba3a8557e642caf|
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 |49b8ef5ff3a3400d8f412d4440040461|
-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 |251cc61592f543e3929aef3cb46f1b34|
-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 |2d22b58a5c9f4fedbd03862398113546|
-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 |39dd21c0f2194acaa9fddbdfccde05dd|
+ROW |34849 |20 |1.3.6.1.2.1.1.1.0 |10408 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |251cc61592f543e3929aef3cb46f1b34|
+ROW |34850 |20 |1.3.6.1.2.1.1.4.0 |10408 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |2d22b58a5c9f4fedbd03862398113546|
+ROW |34851 |17 | |10408 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |39dd21c0f2194acaa9fddbdfccde05dd|
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 |8d93b482d7c549f593c41abb9380ce2f|
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 |0e5240e578d043609fba4024db8c8df1|
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 |d26227e3d5754d8493ddaa9c3f5f2b5a|
@@ -3876,7 +3878,7 @@ ROW |34861 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.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 |80a4e6cf09a147a7b166755aa182fdcd|
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 |abb901813d91481baef234496ddece33|
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 |138afef586634623974c1cefd45281e9|
-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 |d69889a19b564ed384fc96e8a70971a5|
+ROW |34865 |5 | |10408 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |327 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d69889a19b564ed384fc96e8a70971a5|
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 |82e8f10c883546ef8196e071fdd8df91|
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 |b615a0d1ef1e49678daa4de77b47623e|
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 |3adfddb03546462a9bcfdc5b059a29cc|
@@ -3908,9 +3910,9 @@ ROW |34893 |20 |1.3.6.1.2.1.1.2.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 |3c521e1e94da4dd2bd71719bf20e14b8|
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 |5c5b88814e4c4dc9b90ed4a5e49a91ca|
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 |be1280a6b2d84393ad001113bf7c80f2|
-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 |9bca97c1e308421b82f4769151f5177e|
-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 |1de71b45323b4eb5bc1a38315d56ce58|
-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 |c892c7f2ddcd4e15b1d5ab907cd70dcf|
+ROW |34897 |20 |1.3.6.1.2.1.1.1.0 |10409 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |9bca97c1e308421b82f4769151f5177e|
+ROW |34898 |20 |1.3.6.1.2.1.1.4.0 |10409 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |1de71b45323b4eb5bc1a38315d56ce58|
+ROW |34899 |17 | |10409 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |c892c7f2ddcd4e15b1d5ab907cd70dcf|
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 |e7969358cce84f3eb749b1c43d96c583|
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 |3ac052b6b4e241d9af470b70212ab8d3|
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 |a40074f9db134bc8bc4bd9800906137d|
@@ -3924,7 +3926,7 @@ ROW |34909 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.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 |849b9ffa0c0b4dd59e7c5a544a135fa3|
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 |810c9cd371c14e44b8670ad3f4e003d5|
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 |c069bb03f58a47b981448a33a1663463|
-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 |582ff80b2df049b8acf233ad4dbfe1f1|
+ROW |34913 |5 | |10409 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |333 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |582ff80b2df049b8acf233ad4dbfe1f1|
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 |eddb568fd0e34398bcee7d39a6f76319|
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 |0c31de1650b94f8cabef339e2ef009e3|
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 |93941e38fd2d4b48bd8b50179692cb56|
@@ -4035,9 +4037,9 @@ ROW |35020 |20 |1.3.6.1.2.1.1.2.0
ROW |35021 |20 |1.3.6.1.2.1.1.5.0 |10412 |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 |5778610ee61d472d9dc8c8da94f9e301|
ROW |35022 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10412 |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 |7e81f54bbbdd41ca8f9e010dbddc485f|
ROW |35023 |20 |1.3.6.1.2.1.1.6.0 |10412 |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 |a57de4a9da144c2aa880253e4e2b46f9|
-ROW |35024 |20 |1.3.6.1.2.1.1.1.0 |10412 |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 |0617c89b47454dbd833fcc2b8d570db8|
-ROW |35025 |20 |1.3.6.1.2.1.1.4.0 |10412 |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 |7485fd42dd2749028a2d67f315888723|
-ROW |35026 |17 | |10412 |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 |3892c18baef54c598dc78035f5a7540a|
+ROW |35024 |20 |1.3.6.1.2.1.1.1.0 |10412 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |0617c89b47454dbd833fcc2b8d570db8|
+ROW |35025 |20 |1.3.6.1.2.1.1.4.0 |10412 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |7485fd42dd2749028a2d67f315888723|
+ROW |35026 |17 | |10412 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |3892c18baef54c598dc78035f5a7540a|
ROW |35027 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10412 |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 |998d1322a2274da19abe10cdcb3c52e0|
ROW |35028 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10412 |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 |5427a9b46ea54920b3fcc7d8ca413e0e|
ROW |35029 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10412 |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 |7652aff14f644896be902fe18f3bb46a|
@@ -4051,7 +4053,7 @@ ROW |35036 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0
ROW |35037 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10412 |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 |6aacf5a02a824b9d8b3c2676b126b186|
ROW |35038 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10412 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |337 | | |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 |f4d790f93a1c4e75a7ebd3d89d0d9d90|
ROW |35039 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10412 |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 |ee059b1bb6ac486c8c5dd29654899d71|
-ROW |35040 |5 | |10412 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |341 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |63079124c55f479dad013d0c15077577|
+ROW |35040 |5 | |10412 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |341 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |63079124c55f479dad013d0c15077577|
ROW |35041 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10412 |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 |af4472b543b54699b6e812de51be2419|
ROW |35042 |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] |10412 |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 |a3716fb0833e4655b63ec4ccc5736950|
ROW |35043 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10412 |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 |e858b8966abc444a914ef60c1708b835|
@@ -4974,13 +4976,13 @@ ROW |36156 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.8.{#SNMPINDEX}
ROW |36157 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.3.{#SNMPINDEX} |10433 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Vendor |zyxel.4728f.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |5abb9b467e934873808b4b49bdd74f5f|
ROW |36158 |20 |.1.3.6.1.4.1.890.1.5.8.46.9.2.1.2.{#SNMPINDEX} |10433 |ZYXEL XGS-4728F: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.4728f.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |db030cd64cdc471cb5298ceb9973155a|
ROW |36159 |20 |.1.3.6.1.4.1.890.1.5.8.46.9.3.1.2.{#SNMPINDEX} |10433 |ZYXEL XGS-4728F: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.4728f.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |2999674cc176471887c1878b881b8422|
-ROW |36160 |20 |1.3.6.1.2.1.1.4.0 |10434 |System contact details |cisco.ucs.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 |ad342e11ce9f4f79bf9b0182c3f83488|
-ROW |36161 |20 |1.3.6.1.2.1.1.1.0 |10434 |System description |cisco.ucs.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 |286fdb0fa49a4b378a6219a5ed76aac4|
+ROW |36160 |20 |1.3.6.1.2.1.1.4.0 |10434 |System contact details |cisco.ucs.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |ad342e11ce9f4f79bf9b0182c3f83488|
+ROW |36161 |20 |1.3.6.1.2.1.1.1.0 |10434 |System description |cisco.ucs.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |286fdb0fa49a4b378a6219a5ed76aac4|
ROW |36162 |20 |1.3.6.1.2.1.1.6.0 |10434 |System location |cisco.ucs.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |88bd32f8520144858a8ddb03dd200638|
ROW |36163 |20 |1.3.6.1.2.1.1.5.0 |10434 |System name |cisco.ucs.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |8bd3a60e4c70450492432c6abfa7b5f9|
ROW |36164 |20 |1.3.6.1.2.1.1.2.0 |10434 |System object ID |cisco.ucs.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining 'what&eol;kind of box' is being managed. For example, if vendor 'Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its 'Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |10d22e53318347658b2418ff33c26e0d|
ROW |36165 |20 |1.3.6.1.2.1.1.3.0 |10434 |Uptime |cisco.ucs.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time in seconds since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |b87e425f1bdf404a8e53ff277c0ff0c0|
-ROW |36166 |17 | |10434 |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 |5d839f68b6534dc8bd1fb5db7a757f02|
+ROW |36166 |17 | |10434 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |5d839f68b6534dc8bd1fb5db7a757f02|
ROW |36167 |5 | |10434 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |442 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |0926417e279a4e52a7f12587e9422e92|
ROW |36168 |20 |discovery[{#DISKARRAY_CACHE_LOCATION},1.3.6.1.4.1.9.9.719.1.45.11.1.2] |10434 |Array controller cache discovery |cisco.ucs.array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f44bb3e5a8ad4d0c98df56267700b171|
ROW |36169 |20 |discovery[{#DISKARRAY_LOCATION},1.3.6.1.4.1.9.9.719.1.45.1.1.2] |10434 |Array controller discovery |cisco.ucs.array.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |bd1cf5ecd41f4dc49c6e31f32119787b|
@@ -7285,6 +7287,7 @@ ROW |39740 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX}
ROW |39741 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10502 |Disk-{#SNMPINDEX}: Used space |vfs.fs.used[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |36d4268675794bfcba1ca0b2a586770d|
ROW |39742 |19 | |10503 |Velocloud: System properties |velocloud.system.properties |6h |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System properties of VMware SD-WAN. |0 |30d |0 | |NULL |3s |https://{$VELOCLOUD.URL}/portal/rest/systemProperty/getSystemProperties | |{ "normalize": true }|200 |1 |0 |Content-Type: application/json&eol;Authorization: Token {$VELOCLOUD.TOKEN} |0 |1 |0 |0 |0 |0 |0 |1206789df5b44af7ba1c5416662344dd|
ROW |39743 |21 | |10503 |Velocloud: Get data |velocloud.get |1m |0 |0 |0 |4 | | | | |NULL |NULL |var params = JSON.parse(value);&eol;&eol;var request = new HttpRequest();&eol;&eol;request.addHeader('Content-Type: application/json');&eol;request.addHeader('Authorization: Token ' + params.token);&eol;&eol;var response,&eol; output,&eol; error_msg = '',&eol; enterprises = [],&eol; edges = [],&eol; links = [],&eol; gateways = [],&eol; version = [],&eol; apps = [],&eol; appsLinks = [],&eol; edgeSDWan = [],&eol; edgeSDWanPath = [];&eol;&eol;function getHttpData(url, body) {&eol; response = request.post(url, body);&eol; Zabbix.log(4, '[ SD-WAN API ] [ ' + url + ' ] Received response with status code ' + request.getStatus() + ': ' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; throw 'Failed to parse response received from SD-WAN API. Check debug log for more information.';&eol; }&eol; }&eol;&eol; if (request.getStatus() !== 200) {&eol; if (response.error && response.error.message) {&eol; throw response.error.message;&eol; } else {&eol; throw 'Failed to receive data: invalid response status code.';&eol; }&eol; }&eol;&eol; if (typeof (response) !== 'object' &pipe;&pipe; response === null) {&eol; throw 'Cannot process response data: received data is not an object.';&eol; }&eol;&eol; return response;&eol;};&eol;&eol;try {&eol;&eol; if (params.token === '{' + '$VELOCLOUD.TOKEN}') {&eol; throw 'Please change {' + '$VELOCLOUD.TOKEN} macro with the proper value.';&eol; }&eol;&eol; if (params.url.indexOf('http://') === -1 && params.url.indexOf('https://') === -1) {&eol; params.url = 'https://' + params.url;&eol; }&eol;&eol; if (!params.url.endsWith('/')) {&eol; params.url += '/';&eol; }&eol;&eol; enterprises = getHttpData(params.url + 'portal/rest/monitoring/getAggregates', '{}').enterprises;&eol;&eol; if (!Array.isArray(enterprises)) {&eol; throw 'Cannot process edges: enterprises is not an array.';&eol; }&eol;&eol; links = getHttpData(params.url + 'portal/rest/monitoring/getAggregateEdgeLinkMetrics', '{}');&eol; gateways = getHttpData(params.url + 'portal/rest/network/getNetworkGateways', JSON.stringify({ with: ['site'] }));&eol; version = getHttpData(params.url + 'portal/rest/system/getVersionInfo', '{}');&eol;&eol; for (var i in enterprises) {&eol; responseEdges = getHttpData(params.url + 'portal/rest/enterprise/getEnterpriseEdges', JSON.stringify({ enterpriseId: enterprises[i].id, with: ['site'] }));&eol; edges = edges.concat(responseEdges);&eol; }&eol;&eol; if (!Array.isArray(edges)) {&eol; throw 'Cannot process edges SDWans: edges is not an array.';&eol; }&eol;&eol; for (var i in edges) {&eol; responseEdgeSDWan = getHttpData(params.url + 'portal/rest/edge/getEdgeSDWANPeers', JSON.stringify({ enterpriseId: edges[i].enterpriseId, edgeId: edges[i].id }));&eol;&eol; if (!Array.isArray(responseEdgeSDWan)) {&eol; throw 'Cannot process edges SDWan Path: edges SDWans is not an array.';&eol; }&eol;&eol; for (var e in responseEdgeSDWan) {&eol; data = {&eol; 'enterpriseId': edges[i].enterpriseId,&eol; 'edgeId': edges[i].id,&eol; 'peerLogicalId': responseEdgeSDWan[e].deviceLogicalId&eol; };&eol; responseEdgeSDWanPath = getHttpData(params.url + 'portal/rest/metrics/getEdgeSDWANPeerPathMetrics', JSON.stringify(data));&eol; edgeSDWanPath = edgeSDWanPath.concat(responseEdgeSDWanPath);&eol;&eol; responseEdgeSDWan[e].edgeId = edges[i].id;&eol; responseEdgeSDWan[e].edgeName = edges[i].name;&eol; responseEdgeSDWan[e].enterpriseId = edges[i].enterpriseId;&eol; }&eol;&eol; edgeSDWan = edgeSDWan.concat(responseEdgeSDWan);&eol; }&eol;&eol;} catch (error) {&eol; error_msg = error;&eol;};&eol;&eol;return JSON.stringify({&eol; 'enterprises': enterprises,&eol; 'edges': edges,&eol; 'links': links,&eol; 'gateways': gateways,&eol; 'edgeSDWan': edgeSDWan,&eol; 'edgeSDWanPath': edgeSDWanPath,&eol; 'info': version,&eol; 'error': error_msg.toString()&eol;});| |0 | | | | |0 |NULL |The JSON with result of Velocloud API requests. |0 |30d |0 | |NULL |10s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |3d96f6e755934bc8a4ee7300a165adae|
+ROW |39804 |5 | |10047 |Zabbix stats cluster |zabbix[cluster,discovery,nodes] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Zabbix cluster statistics master item. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f9d60d6dcbe14cd4aaec08aec6ca1856|
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|uuid |
@@ -7415,7 +7418,7 @@ ROW |29398 |18 | |10285 |System local time
ROW |29399 |18 | |10285 |CPU steal time |system.cpu.steal[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |2ee5885c4de646c0926f0c1a48890e68|
ROW |29400 |18 | |10285 |Free swap space |system.swap.free[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |ccc3c4d69fef412aa53c6a7320ef44fb|
ROW |29401 |18 | |10285 |Total swap space |system.swap.total[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d0c1ef0a679546d780df30a02a27df44|
-ROW |29402 |18 | |10285 |Available memory |vm.memory.available[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/6.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |70a75efafbc84cbebd1bb262ec797523|
+ROW |29402 |18 | |10285 |Available memory |vm.memory.available[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |70a75efafbc84cbebd1bb262ec797523|
ROW |29403 |18 | |10285 |Total memory |vm.memory.total[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |e3ad296f16084e9caa923b449d8c725f|
ROW |29404 |18 | |10285 |System boot time |system.boottime[node_exporter] |0 |7d |365d |0 |0 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |75afcb39d2d7496e9490cd14f1431600|
ROW |29405 |18 | |10285 |Context switches per second |system.cpu.switches[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |b873e0d178d144fca3597d617fc119e7|
@@ -9836,6 +9839,17 @@ ROW |36820 |18 | |10383 |SMART [{#NAME}]: ID {#ID} {#ATTRNAME} raw val
ROW |36821 |18 | |10384 |SMART [{#NAME}]: ID {#ID} {#ATTRNAME} raw value |smart.disk.attr.raw[{#NAME},{#ID}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |33668 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |5c09ba32ad72321bce5042d5f4dc59d2|
ROW |39744 |18 | |10503 |Velocloud: Clear data |velocloud.get.clear_metrics |0 |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Clear metrics for data without errors. |0 |30d |0 | |39743 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |9df4ba5324d94d0fb54d3231311016a6|
ROW |39745 |18 | |10503 |Velocloud: Get data collection errors |velocloud.get.error |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Errors of aggregate script item. |0 |30d |0 | |39743 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |8a54309d8abc4fc7816b168329243de4|
+ROW |39803 |18 | |10318 |Container {#NAME}: CPU percent usage |docker.container_stats.cpu_pct_usage["{#NAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d54b82d76c7b44ca8995486e4bf46298|
+ROW |39806 |18 | |10047 |High availability cluster node discovery |zabbix.nodes.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |LLD rule with item and trigger prototypes for node discovery |0 |30d |0 | |39804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |32bf5c3b8f1f4d10b26806ae0d2adb25|
+ROW |39808 |18 | |10047 |Cluster node [{#NODE.NAME}]: Address |zabbix.nodes.address[{#NODE.ID}] |0 |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Node IPv4 address |0 |30d |0 | |39804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |c5cb7ffbd314494cb1801ae804e9c76e|
+ROW |39809 |18 | |10047 |Cluster node [{#NODE.NAME}]: Last access age |zabbix.nodes.lastaccess.age[{#NODE.ID}] |0 |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |2 |NULL |Time between database unix_timestamp() and last access time |0 |30d |0 | |39804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f444de7cdd7a4f3bb7f4b1f2e86e16d7|
+ROW |39810 |18 | |10047 |Cluster node [{#NODE.NAME}]: Last access time |zabbix.nodes.lastaccess.time[{#NODE.ID}] |0 |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |2 |NULL |Last access time |0 |30d |0 | |39804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |2e33f747803b45d7a9b94c171bf36f61|
+ROW |39811 |18 | |10047 |Cluster node [{#NODE.NAME}]: Status |zabbix.nodes.status[{#NODE.ID}] |0 |1w |365d |0 |3 | | | | |NULL |565 | | |0 | | | | |2 |NULL |Cluster node status |0 |30d |0 | |39804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |1e4de6a913764a22862c0265d329b592|
+ROW |39816 |18 | |10261 |High availability cluster node discovery |zabbix.nodes.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |LLD rule with item and trigger prototypes for node discovery |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |0557f879881a4d558410444737ae3738|
+ROW |39817 |18 | |10261 |Cluster node [{#NODE.NAME}]: Address |zabbix.nodes.address[{#NODE.ID}] |0 |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Node IPv4 address |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |caca3ccdcec141a3a9c3233ba72b8d0d|
+ROW |39818 |18 | |10261 |Cluster node [{#NODE.NAME}]: Last access age |zabbix.nodes.lastaccess.age[{#NODE.ID}] |0 |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |2 |NULL |Time between database unix_timestamp() and last access time |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |a9ded61c4dba4abb9213aec9af00a604|
+ROW |39819 |18 | |10261 |Cluster node [{#NODE.NAME}]: Last access time |zabbix.nodes.lastaccess.time[{#NODE.ID}] |0 |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |2 |NULL |Last access time |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |0968e4fe51eb4c2b98a508090014aba0|
+ROW |39820 |18 | |10261 |Cluster node [{#NODE.NAME}]: Status |zabbix.nodes.status[{#NODE.ID}] |0 |1w |365d |0 |3 | | | | |NULL |566 | | |0 | | | | |2 |NULL |Node status |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |2b629362886546cab34396352b93835a|
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|uuid |
@@ -10095,9 +10109,9 @@ ROW |27188 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27189 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27190 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10207 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27191 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |59 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27195 |17 | |10207 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27199 |20 |1.3.6.1.2.1.1.5.0 |10207 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27202 |5 | |10207 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27195 |17 | |10207 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27199 |20 |1.3.6.1.2.1.1.5.0 |10207 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27202 |5 | |10207 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27215 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10208 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27216 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27217 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10108,9 +10122,9 @@ ROW |27221 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |27222 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27223 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27224 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27228 |17 | |10208 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27232 |20 |1.3.6.1.2.1.1.5.0 |10208 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27235 |5 | |10208 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27228 |17 | |10208 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27232 |20 |1.3.6.1.2.1.1.5.0 |10208 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27235 |5 | |10208 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27251 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10210 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27252 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27253 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10121,9 +10135,9 @@ ROW |27257 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |27258 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27259 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27260 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27264 |17 | |10210 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27268 |20 |1.3.6.1.2.1.1.5.0 |10210 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27271 |5 | |10210 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27264 |17 | |10210 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27268 |20 |1.3.6.1.2.1.1.5.0 |10210 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27271 |5 | |10210 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27272 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10211 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27273 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27274 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10134,9 +10148,9 @@ ROW |27278 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |27279 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27280 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27281 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27285 |17 | |10211 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27289 |20 |1.3.6.1.2.1.1.5.0 |10211 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27292 |5 | |10211 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27285 |17 | |10211 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27289 |20 |1.3.6.1.2.1.1.5.0 |10211 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27292 |5 | |10211 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27299 |20 |1.3.6.1.4.1.1991.1.1.2.1.52.0 |10210 |CPU utilization |system.cpu.util[snAgGblCpuUtil1MinAvg.0] |1m |7d |365d |0 |0 | |% | | |27294 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The statistics collection of 1 minute CPU utilization. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27301 |20 |1.3.6.1.4.1.1991.1.1.2.1.52.0 |10211 |CPU utilization |system.cpu.util[snAgGblCpuUtil1MinAvg.0] |1m |7d |365d |0 |0 | |% | | |27294 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The statistics collection of 1 minute CPU utilization. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27321 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10218 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10151,12 +10165,12 @@ ROW |27329 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27330 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27331 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10218 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27332 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |59 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27336 |17 | |10218 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27340 |20 |1.3.6.1.2.1.1.5.0 |10218 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27343 |5 | |10218 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27368 |17 | |10220 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27372 |20 |1.3.6.1.2.1.1.5.0 |10220 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27375 |5 | |10220 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27336 |17 | |10218 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27340 |20 |1.3.6.1.2.1.1.5.0 |10218 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27343 |5 | |10218 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27368 |17 | |10220 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27372 |20 |1.3.6.1.2.1.1.5.0 |10220 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27375 |5 | |10220 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27380 |20 |1.3.6.1.4.1.9.2.1.58 |10220 |CPU utilization |system.cpu.util[avgBusy5] |5m |7d |365d |0 |0 | |% | | |27376 |NULL | | |0 | | | | |0 |NULL |MIB: OLD-CISCO-CPU-MIB&eol;5 minute exponentially-decayed moving average of the CPU busy percentage.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27382 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10220 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |27378 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27383 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10220 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |27379 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10200,9 +10214,9 @@ ROW |27458 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27459 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27460 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10221 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27461 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |59 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27465 |17 | |10221 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27469 |20 |1.3.6.1.2.1.1.5.0 |10221 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27472 |5 | |10221 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27465 |17 | |10221 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27469 |20 |1.3.6.1.2.1.1.5.0 |10221 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27472 |5 | |10221 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27486 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10222 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27487 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27488 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10213,9 +10227,9 @@ ROW |27492 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |27493 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27494 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27495 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27499 |17 | |10222 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27503 |20 |1.3.6.1.2.1.1.5.0 |10222 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27506 |5 | |10222 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27499 |17 | |10222 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27503 |20 |1.3.6.1.2.1.1.5.0 |10222 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27506 |5 | |10222 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27520 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10223 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27521 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27522 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10228,9 +10242,9 @@ ROW |27528 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27529 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27530 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10223 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27531 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |59 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27535 |17 | |10223 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27539 |20 |1.3.6.1.2.1.1.5.0 |10223 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27542 |5 | |10223 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27535 |17 | |10223 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27539 |20 |1.3.6.1.2.1.1.5.0 |10223 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27542 |5 | |10223 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27556 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10224 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27557 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27558 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10243,9 +10257,9 @@ ROW |27564 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27565 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27566 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10224 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27567 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |59 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27571 |17 | |10224 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27575 |20 |1.3.6.1.2.1.1.5.0 |10224 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27578 |5 | |10224 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27571 |17 | |10224 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27575 |20 |1.3.6.1.2.1.1.5.0 |10224 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27578 |5 | |10224 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27619 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10226 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27078 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27620 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27079 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27621 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27086 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10258,9 +10272,9 @@ ROW |27627 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27628 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27080 |66 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27629 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10226 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27630 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10226 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |59 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27634 |17 | |10226 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27638 |20 |1.3.6.1.2.1.1.5.0 |10226 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27641 |5 | |10226 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27634 |17 | |10226 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27638 |20 |1.3.6.1.2.1.1.5.0 |10226 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27641 |5 | |10226 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27642 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10227 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27643 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27644 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10273,9 +10287,9 @@ ROW |27650 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27651 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27652 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10227 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27653 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |59 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27657 |17 | |10227 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27661 |20 |1.3.6.1.2.1.1.5.0 |10227 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27664 |5 | |10227 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27657 |17 | |10227 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27661 |20 |1.3.6.1.2.1.1.5.0 |10227 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27664 |5 | |10227 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27722 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10229 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27723 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27724 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10288,9 +10302,9 @@ ROW |27730 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27731 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27732 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10229 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27733 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |59 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27737 |17 | |10229 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27741 |20 |1.3.6.1.2.1.1.5.0 |10229 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27744 |5 | |10229 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27737 |17 | |10229 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27741 |20 |1.3.6.1.2.1.1.5.0 |10229 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27744 |5 | |10229 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27756 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10230 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27757 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27758 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10301,9 +10315,9 @@ ROW |27762 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |27763 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27764 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27765 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27769 |17 | |10230 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27773 |20 |1.3.6.1.2.1.1.5.0 |10230 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27776 |5 | |10230 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27769 |17 | |10230 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27773 |20 |1.3.6.1.2.1.1.5.0 |10230 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27776 |5 | |10230 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27788 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10231 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27789 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27790 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10316,9 +10330,9 @@ ROW |27796 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27797 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27798 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10231 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27799 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |59 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27803 |17 | |10231 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27807 |20 |1.3.6.1.2.1.1.5.0 |10231 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27810 |5 | |10231 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27803 |17 | |10231 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27807 |20 |1.3.6.1.2.1.1.5.0 |10231 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27810 |5 | |10231 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27872 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10233 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27873 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27874 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10329,9 +10343,9 @@ ROW |27878 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |27879 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27880 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27881 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27885 |17 | |10233 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27889 |20 |1.3.6.1.2.1.1.5.0 |10233 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27892 |5 | |10233 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27885 |17 | |10233 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27889 |20 |1.3.6.1.2.1.1.5.0 |10233 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27892 |5 | |10233 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27909 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10234 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27910 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27911 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10342,9 +10356,9 @@ ROW |27915 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |27916 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27917 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27918 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27922 |17 | |10234 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27926 |20 |1.3.6.1.2.1.1.5.0 |10234 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27929 |5 | |10234 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27922 |17 | |10234 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27926 |20 |1.3.6.1.2.1.1.5.0 |10234 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27929 |5 | |10234 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27944 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10235 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27945 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27946 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10357,9 +10371,9 @@ ROW |27952 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27953 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27954 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10235 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27955 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |59 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27959 |17 | |10235 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27963 |20 |1.3.6.1.2.1.1.5.0 |10235 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27966 |5 | |10235 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27959 |17 | |10235 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27963 |20 |1.3.6.1.2.1.1.5.0 |10235 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27966 |5 | |10235 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27976 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10236 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27078 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27977 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27079 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27978 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27086 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10370,9 +10384,9 @@ ROW |27982 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX}
ROW |27983 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27081 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27984 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27087 |60 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27985 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27080 |66 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27989 |17 | |10236 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27993 |20 |1.3.6.1.2.1.1.5.0 |10236 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27996 |5 | |10236 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27989 |17 | |10236 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27993 |20 |1.3.6.1.2.1.1.5.0 |10236 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27996 |5 | |10236 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28005 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10237 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27078 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28006 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27079 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28007 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27086 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10383,9 +10397,9 @@ ROW |28011 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX}
ROW |28012 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27081 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28013 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27087 |60 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28014 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27080 |66 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28018 |17 | |10237 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28022 |20 |1.3.6.1.2.1.1.5.0 |10237 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28025 |5 | |10237 |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 |28018 |17 | |10237 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28022 |20 |1.3.6.1.2.1.1.5.0 |10237 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28025 |5 | |10237 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28118 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10250 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28119 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28120 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10398,9 +10412,9 @@ ROW |28126 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |28127 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28128 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10250 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28129 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |59 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28133 |17 | |10250 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28137 |20 |1.3.6.1.2.1.1.5.0 |10250 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28140 |5 | |10250 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28133 |17 | |10250 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28137 |20 |1.3.6.1.2.1.1.5.0 |10250 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28140 |5 | |10250 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28207 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10253 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |27393 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28208 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10253 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |27419 |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28209 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10253 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |27379 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10425,17 +10439,17 @@ ROW |28229 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |28230 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28231 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28232 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28236 |17 | |10253 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28240 |20 |1.3.6.1.2.1.1.5.0 |10253 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28243 |5 | |10253 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28236 |17 | |10253 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28240 |20 |1.3.6.1.2.1.1.5.0 |10253 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28243 |5 | |10253 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28245 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10253 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |28244 |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&eol;indexed with cpmCPUTotalIndex .&eol;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&eol;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&eol;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28247 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.5.{#SNMPINDEX} |10253 |{#SNMPVALUE}: CPU utilization |system.cpu.util[cpmCPUTotal5min.{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |28246 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;The overall CPU busy percentage in the last 5 minute&eol;period. This object deprecates the avgBusy5 object from&eol;the OLD-CISCO-SYSTEM-MIB. This object is deprecated&eol;by cpmCPUTotal5minRev which has the changed range&eol;of value (0..100)&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28249 |5 | |10084 |Zabbix server: Preprocessing queue |zabbix[preprocessing_queue] |1m |1w |365d |0 |3 | | | | |28248 |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28280 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10254 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28281 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |59 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28285 |17 | |10254 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28289 |20 |1.3.6.1.2.1.1.5.0 |10254 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28292 |5 | |10254 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28285 |17 | |10254 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28289 |20 |1.3.6.1.2.1.1.5.0 |10254 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28292 |5 | |10254 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28293 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10254 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28294 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28295 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10446,26 +10460,26 @@ ROW |28299 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |28300 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28301 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28302 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28333 |17 | |10255 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28337 |20 |1.3.6.1.2.1.1.5.0 |10255 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28340 |5 | |10255 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28380 |17 | |10256 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28384 |20 |1.3.6.1.2.1.1.5.0 |10256 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28387 |5 | |10256 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28457 |17 | |10258 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28461 |20 |1.3.6.1.2.1.1.5.0 |10258 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28464 |5 | |10258 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28485 |17 | |10259 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28489 |20 |1.3.6.1.2.1.1.5.0 |10259 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28492 |5 | |10259 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28333 |17 | |10255 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28337 |20 |1.3.6.1.2.1.1.5.0 |10255 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28340 |5 | |10255 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28380 |17 | |10256 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28384 |20 |1.3.6.1.2.1.1.5.0 |10256 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28387 |5 | |10256 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28457 |17 | |10258 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28461 |20 |1.3.6.1.2.1.1.5.0 |10258 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28464 |5 | |10258 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28485 |17 | |10259 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28489 |20 |1.3.6.1.2.1.1.5.0 |10259 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28492 |5 | |10259 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28534 |5 | |10084 |Zabbix server: LLD queue |zabbix[lld_queue] |1m |1w |365d |0 |3 | | | | |28533 |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the low-level discovery processing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28536 |5 | |10084 |Zabbix server: Utilization of LLD manager internal processes, in % |zabbix[process,lld manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |28535 |NULL | | |0 | | | | |0 |NULL |Average percentage of time lld manager processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28538 |5 | |10084 |Zabbix server: Utilization of LLD worker internal processes, in % |zabbix[process,lld worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |28537 |NULL | | |0 | | | | |0 |NULL |Average percentage of time lld worker processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28955 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10248 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28956 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |59 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28960 |17 | |10248 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28964 |20 |1.3.6.1.2.1.1.5.0 |10248 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28967 |5 | |10248 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28960 |17 | |10248 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28964 |20 |1.3.6.1.2.1.1.5.0 |10248 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28967 |5 | |10248 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28968 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10248 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28969 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28970 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10510,9 +10524,9 @@ ROW |29044 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}
ROW |29045 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10248 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |29028 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29046 |15 | |10248 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29029 |NULL |(last(//vfs.fs.used[hrStorageUsed.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29047 |20 |1.3.6.1.4.1.2021.9.1.10["index","1.3.6.1.4.1.2021.9.1.2", "{#FSNAME}"] |10248 |{#FSNAME}: Free inodes in % |vfs.fs.inode.pfree[dskPercentNode.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29030 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;If having problems collecting this item make sure access to UCD-SNMP-MIB is allowed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29053 |17 | |10249 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29057 |20 |1.3.6.1.2.1.1.5.0 |10249 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29060 |5 | |10249 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29053 |17 | |10249 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29057 |20 |1.3.6.1.2.1.1.5.0 |10249 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29060 |5 | |10249 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29077 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10249 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27118 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29078 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27119 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29079 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27126 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10549,7 +10563,7 @@ ROW |29147 |0 |
ROW |29148 |0 | |10001 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime| | |29111 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29149 |0 | |10001 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime| | |29112 |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29150 |0 | |10001 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29113 |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29151 |0 | |10001 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29114 |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29151 |0 | |10001 |System description |system.uname |15m |2w |0 |0 |1 | | | | |29114 |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29152 |0 | |10001 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |29115 |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29153 |0 | |10001 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |29116 |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29154 |0 | |10001 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |29117 |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10591,7 +10605,7 @@ ROW |29496 |0 |
ROW |29498 |0 | |10081 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |29472 |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29499 |0 | |10081 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime| | |29473 |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29500 |0 | |10081 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29474 |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29501 |0 | |10081 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29475 |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29501 |0 | |10081 |System description |system.uname |15m |2w |0 |0 |1 | | | | |29475 |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29502 |0 | |10081 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |29476 |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29503 |0 | |10081 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |29477 |NULL | | |0 | | | | |0 |NULL |The number of threads used by all running processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29504 |0 | |10081 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |29478 |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10609,158 +10623,158 @@ ROW |29554 |5 |
ROW |29555 |5 | |10081 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |70 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29823 |5 | |10084 |Zabbix server: Utilization of alert syncer internal processes, in % |zabbix[process,alert syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |29822 |NULL | | |0 | | | | |0 |NULL |Average percentage of time alert syncer processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29834 |20 |1.3.6.1.2.1.1.3.0 |10237 |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 |29835 |20 |1.3.6.1.2.1.1.6.0 |10237 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29836 |20 |1.3.6.1.2.1.1.4.0 |10237 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29835 |20 |1.3.6.1.2.1.1.6.0 |10237 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29836 |20 |1.3.6.1.2.1.1.4.0 |10237 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29837 |20 |1.3.6.1.2.1.1.2.0 |10237 |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 |29838 |20 |1.3.6.1.2.1.1.1.0 |10237 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29838 |20 |1.3.6.1.2.1.1.1.0 |10237 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29849 |20 |1.3.6.1.2.1.1.3.0 |10207 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29850 |20 |1.3.6.1.2.1.1.6.0 |10207 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29851 |20 |1.3.6.1.2.1.1.4.0 |10207 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29850 |20 |1.3.6.1.2.1.1.6.0 |10207 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29851 |20 |1.3.6.1.2.1.1.4.0 |10207 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29852 |20 |1.3.6.1.2.1.1.2.0 |10207 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29853 |20 |1.3.6.1.2.1.1.1.0 |10207 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29853 |20 |1.3.6.1.2.1.1.1.0 |10207 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29854 |20 |1.3.6.1.2.1.1.3.0 |10208 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29855 |20 |1.3.6.1.2.1.1.6.0 |10208 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29856 |20 |1.3.6.1.2.1.1.4.0 |10208 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29855 |20 |1.3.6.1.2.1.1.6.0 |10208 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29856 |20 |1.3.6.1.2.1.1.4.0 |10208 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29857 |20 |1.3.6.1.2.1.1.2.0 |10208 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29858 |20 |1.3.6.1.2.1.1.1.0 |10208 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29858 |20 |1.3.6.1.2.1.1.1.0 |10208 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29859 |20 |1.3.6.1.2.1.1.3.0 |10210 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29860 |20 |1.3.6.1.2.1.1.6.0 |10210 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29861 |20 |1.3.6.1.2.1.1.4.0 |10210 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29860 |20 |1.3.6.1.2.1.1.6.0 |10210 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29861 |20 |1.3.6.1.2.1.1.4.0 |10210 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29862 |20 |1.3.6.1.2.1.1.2.0 |10210 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29863 |20 |1.3.6.1.2.1.1.1.0 |10210 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29863 |20 |1.3.6.1.2.1.1.1.0 |10210 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29864 |20 |1.3.6.1.2.1.1.3.0 |10211 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29865 |20 |1.3.6.1.2.1.1.6.0 |10211 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29866 |20 |1.3.6.1.2.1.1.4.0 |10211 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29865 |20 |1.3.6.1.2.1.1.6.0 |10211 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29866 |20 |1.3.6.1.2.1.1.4.0 |10211 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29867 |20 |1.3.6.1.2.1.1.2.0 |10211 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29868 |20 |1.3.6.1.2.1.1.1.0 |10211 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29868 |20 |1.3.6.1.2.1.1.1.0 |10211 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29869 |20 |1.3.6.1.2.1.1.3.0 |10218 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29870 |20 |1.3.6.1.2.1.1.6.0 |10218 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29871 |20 |1.3.6.1.2.1.1.4.0 |10218 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29870 |20 |1.3.6.1.2.1.1.6.0 |10218 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29871 |20 |1.3.6.1.2.1.1.4.0 |10218 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29872 |20 |1.3.6.1.2.1.1.2.0 |10218 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29873 |20 |1.3.6.1.2.1.1.1.0 |10218 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29873 |20 |1.3.6.1.2.1.1.1.0 |10218 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29874 |20 |1.3.6.1.2.1.1.3.0 |10220 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29875 |20 |1.3.6.1.2.1.1.6.0 |10220 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29876 |20 |1.3.6.1.2.1.1.4.0 |10220 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29875 |20 |1.3.6.1.2.1.1.6.0 |10220 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29876 |20 |1.3.6.1.2.1.1.4.0 |10220 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29877 |20 |1.3.6.1.2.1.1.2.0 |10220 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29878 |20 |1.3.6.1.2.1.1.1.0 |10220 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29878 |20 |1.3.6.1.2.1.1.1.0 |10220 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29879 |20 |1.3.6.1.2.1.1.3.0 |10221 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29880 |20 |1.3.6.1.2.1.1.6.0 |10221 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29881 |20 |1.3.6.1.2.1.1.4.0 |10221 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29880 |20 |1.3.6.1.2.1.1.6.0 |10221 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29881 |20 |1.3.6.1.2.1.1.4.0 |10221 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29882 |20 |1.3.6.1.2.1.1.2.0 |10221 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29883 |20 |1.3.6.1.2.1.1.1.0 |10221 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29883 |20 |1.3.6.1.2.1.1.1.0 |10221 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29884 |20 |1.3.6.1.2.1.1.3.0 |10222 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29885 |20 |1.3.6.1.2.1.1.6.0 |10222 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29886 |20 |1.3.6.1.2.1.1.4.0 |10222 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29885 |20 |1.3.6.1.2.1.1.6.0 |10222 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29886 |20 |1.3.6.1.2.1.1.4.0 |10222 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29887 |20 |1.3.6.1.2.1.1.2.0 |10222 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29888 |20 |1.3.6.1.2.1.1.1.0 |10222 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29888 |20 |1.3.6.1.2.1.1.1.0 |10222 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29889 |20 |1.3.6.1.2.1.1.3.0 |10223 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29890 |20 |1.3.6.1.2.1.1.6.0 |10223 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29891 |20 |1.3.6.1.2.1.1.4.0 |10223 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29890 |20 |1.3.6.1.2.1.1.6.0 |10223 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29891 |20 |1.3.6.1.2.1.1.4.0 |10223 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29892 |20 |1.3.6.1.2.1.1.2.0 |10223 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29893 |20 |1.3.6.1.2.1.1.1.0 |10223 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29893 |20 |1.3.6.1.2.1.1.1.0 |10223 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29894 |20 |1.3.6.1.2.1.1.3.0 |10224 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29895 |20 |1.3.6.1.2.1.1.6.0 |10224 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29896 |20 |1.3.6.1.2.1.1.4.0 |10224 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29895 |20 |1.3.6.1.2.1.1.6.0 |10224 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29896 |20 |1.3.6.1.2.1.1.4.0 |10224 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29897 |20 |1.3.6.1.2.1.1.2.0 |10224 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29898 |20 |1.3.6.1.2.1.1.1.0 |10224 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29898 |20 |1.3.6.1.2.1.1.1.0 |10224 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29899 |20 |1.3.6.1.2.1.1.3.0 |10226 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29900 |20 |1.3.6.1.2.1.1.6.0 |10226 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29901 |20 |1.3.6.1.2.1.1.4.0 |10226 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29900 |20 |1.3.6.1.2.1.1.6.0 |10226 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29901 |20 |1.3.6.1.2.1.1.4.0 |10226 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29902 |20 |1.3.6.1.2.1.1.2.0 |10226 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29903 |20 |1.3.6.1.2.1.1.1.0 |10226 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29903 |20 |1.3.6.1.2.1.1.1.0 |10226 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29904 |20 |1.3.6.1.2.1.1.3.0 |10227 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29905 |20 |1.3.6.1.2.1.1.6.0 |10227 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29906 |20 |1.3.6.1.2.1.1.4.0 |10227 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29905 |20 |1.3.6.1.2.1.1.6.0 |10227 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29906 |20 |1.3.6.1.2.1.1.4.0 |10227 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29907 |20 |1.3.6.1.2.1.1.2.0 |10227 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29908 |20 |1.3.6.1.2.1.1.1.0 |10227 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29908 |20 |1.3.6.1.2.1.1.1.0 |10227 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29909 |20 |1.3.6.1.2.1.1.3.0 |10229 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29910 |20 |1.3.6.1.2.1.1.6.0 |10229 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29911 |20 |1.3.6.1.2.1.1.4.0 |10229 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29910 |20 |1.3.6.1.2.1.1.6.0 |10229 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29911 |20 |1.3.6.1.2.1.1.4.0 |10229 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29912 |20 |1.3.6.1.2.1.1.2.0 |10229 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29913 |20 |1.3.6.1.2.1.1.1.0 |10229 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29913 |20 |1.3.6.1.2.1.1.1.0 |10229 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29914 |20 |1.3.6.1.2.1.1.3.0 |10230 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29915 |20 |1.3.6.1.2.1.1.6.0 |10230 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29916 |20 |1.3.6.1.2.1.1.4.0 |10230 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29915 |20 |1.3.6.1.2.1.1.6.0 |10230 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29916 |20 |1.3.6.1.2.1.1.4.0 |10230 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29917 |20 |1.3.6.1.2.1.1.2.0 |10230 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29918 |20 |1.3.6.1.2.1.1.1.0 |10230 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29918 |20 |1.3.6.1.2.1.1.1.0 |10230 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29919 |20 |1.3.6.1.2.1.1.3.0 |10231 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29920 |20 |1.3.6.1.2.1.1.6.0 |10231 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29921 |20 |1.3.6.1.2.1.1.4.0 |10231 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29920 |20 |1.3.6.1.2.1.1.6.0 |10231 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29921 |20 |1.3.6.1.2.1.1.4.0 |10231 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29922 |20 |1.3.6.1.2.1.1.2.0 |10231 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29923 |20 |1.3.6.1.2.1.1.1.0 |10231 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29923 |20 |1.3.6.1.2.1.1.1.0 |10231 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29924 |20 |1.3.6.1.2.1.1.3.0 |10233 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29925 |20 |1.3.6.1.2.1.1.6.0 |10233 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29926 |20 |1.3.6.1.2.1.1.4.0 |10233 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29925 |20 |1.3.6.1.2.1.1.6.0 |10233 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29926 |20 |1.3.6.1.2.1.1.4.0 |10233 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29927 |20 |1.3.6.1.2.1.1.2.0 |10233 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29928 |20 |1.3.6.1.2.1.1.1.0 |10233 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29928 |20 |1.3.6.1.2.1.1.1.0 |10233 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29929 |20 |1.3.6.1.2.1.1.3.0 |10234 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29930 |20 |1.3.6.1.2.1.1.6.0 |10234 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29931 |20 |1.3.6.1.2.1.1.4.0 |10234 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29930 |20 |1.3.6.1.2.1.1.6.0 |10234 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29931 |20 |1.3.6.1.2.1.1.4.0 |10234 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29932 |20 |1.3.6.1.2.1.1.2.0 |10234 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29933 |20 |1.3.6.1.2.1.1.1.0 |10234 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29933 |20 |1.3.6.1.2.1.1.1.0 |10234 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29934 |20 |1.3.6.1.2.1.1.3.0 |10235 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29935 |20 |1.3.6.1.2.1.1.6.0 |10235 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29936 |20 |1.3.6.1.2.1.1.4.0 |10235 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29935 |20 |1.3.6.1.2.1.1.6.0 |10235 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29936 |20 |1.3.6.1.2.1.1.4.0 |10235 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29937 |20 |1.3.6.1.2.1.1.2.0 |10235 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29938 |20 |1.3.6.1.2.1.1.1.0 |10235 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29938 |20 |1.3.6.1.2.1.1.1.0 |10235 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29939 |20 |1.3.6.1.2.1.1.3.0 |10236 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29940 |20 |1.3.6.1.2.1.1.6.0 |10236 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29941 |20 |1.3.6.1.2.1.1.4.0 |10236 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29940 |20 |1.3.6.1.2.1.1.6.0 |10236 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29941 |20 |1.3.6.1.2.1.1.4.0 |10236 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29942 |20 |1.3.6.1.2.1.1.2.0 |10236 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29943 |20 |1.3.6.1.2.1.1.1.0 |10236 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29943 |20 |1.3.6.1.2.1.1.1.0 |10236 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29944 |20 |1.3.6.1.2.1.1.3.0 |10250 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29945 |20 |1.3.6.1.2.1.1.6.0 |10250 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29946 |20 |1.3.6.1.2.1.1.4.0 |10250 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29945 |20 |1.3.6.1.2.1.1.6.0 |10250 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29946 |20 |1.3.6.1.2.1.1.4.0 |10250 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29947 |20 |1.3.6.1.2.1.1.2.0 |10250 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29948 |20 |1.3.6.1.2.1.1.1.0 |10250 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29948 |20 |1.3.6.1.2.1.1.1.0 |10250 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29954 |20 |1.3.6.1.2.1.1.3.0 |10253 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29955 |20 |1.3.6.1.2.1.1.6.0 |10253 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29956 |20 |1.3.6.1.2.1.1.4.0 |10253 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29955 |20 |1.3.6.1.2.1.1.6.0 |10253 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29956 |20 |1.3.6.1.2.1.1.4.0 |10253 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29957 |20 |1.3.6.1.2.1.1.2.0 |10253 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29958 |20 |1.3.6.1.2.1.1.1.0 |10253 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29958 |20 |1.3.6.1.2.1.1.1.0 |10253 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29959 |20 |1.3.6.1.2.1.1.3.0 |10254 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29960 |20 |1.3.6.1.2.1.1.6.0 |10254 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29961 |20 |1.3.6.1.2.1.1.4.0 |10254 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29960 |20 |1.3.6.1.2.1.1.6.0 |10254 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29961 |20 |1.3.6.1.2.1.1.4.0 |10254 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29962 |20 |1.3.6.1.2.1.1.2.0 |10254 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29963 |20 |1.3.6.1.2.1.1.1.0 |10254 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29963 |20 |1.3.6.1.2.1.1.1.0 |10254 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29964 |20 |1.3.6.1.2.1.1.3.0 |10255 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29965 |20 |1.3.6.1.2.1.1.6.0 |10255 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29966 |20 |1.3.6.1.2.1.1.4.0 |10255 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29965 |20 |1.3.6.1.2.1.1.6.0 |10255 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29966 |20 |1.3.6.1.2.1.1.4.0 |10255 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29967 |20 |1.3.6.1.2.1.1.2.0 |10255 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29968 |20 |1.3.6.1.2.1.1.1.0 |10255 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29968 |20 |1.3.6.1.2.1.1.1.0 |10255 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29969 |20 |1.3.6.1.2.1.1.3.0 |10256 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29970 |20 |1.3.6.1.2.1.1.6.0 |10256 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29971 |20 |1.3.6.1.2.1.1.4.0 |10256 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29970 |20 |1.3.6.1.2.1.1.6.0 |10256 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29971 |20 |1.3.6.1.2.1.1.4.0 |10256 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29972 |20 |1.3.6.1.2.1.1.2.0 |10256 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29973 |20 |1.3.6.1.2.1.1.1.0 |10256 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29973 |20 |1.3.6.1.2.1.1.1.0 |10256 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29974 |20 |1.3.6.1.2.1.1.3.0 |10258 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29975 |20 |1.3.6.1.2.1.1.6.0 |10258 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29976 |20 |1.3.6.1.2.1.1.4.0 |10258 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29975 |20 |1.3.6.1.2.1.1.6.0 |10258 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29976 |20 |1.3.6.1.2.1.1.4.0 |10258 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29977 |20 |1.3.6.1.2.1.1.2.0 |10258 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29978 |20 |1.3.6.1.2.1.1.1.0 |10258 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29978 |20 |1.3.6.1.2.1.1.1.0 |10258 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29979 |20 |1.3.6.1.2.1.1.3.0 |10259 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29980 |20 |1.3.6.1.2.1.1.6.0 |10259 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29981 |20 |1.3.6.1.2.1.1.4.0 |10259 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29980 |20 |1.3.6.1.2.1.1.6.0 |10259 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29981 |20 |1.3.6.1.2.1.1.4.0 |10259 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29982 |20 |1.3.6.1.2.1.1.2.0 |10259 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29983 |20 |1.3.6.1.2.1.1.1.0 |10259 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29983 |20 |1.3.6.1.2.1.1.1.0 |10259 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29984 |20 |1.3.6.1.2.1.1.3.0 |10248 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29985 |20 |1.3.6.1.2.1.1.6.0 |10248 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29986 |20 |1.3.6.1.2.1.1.4.0 |10248 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29985 |20 |1.3.6.1.2.1.1.6.0 |10248 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29986 |20 |1.3.6.1.2.1.1.4.0 |10248 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29987 |20 |1.3.6.1.2.1.1.2.0 |10248 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29988 |20 |1.3.6.1.2.1.1.1.0 |10248 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29988 |20 |1.3.6.1.2.1.1.1.0 |10248 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29989 |20 |1.3.6.1.2.1.1.3.0 |10249 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29990 |20 |1.3.6.1.2.1.1.6.0 |10249 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29991 |20 |1.3.6.1.2.1.1.4.0 |10249 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29990 |20 |1.3.6.1.2.1.1.6.0 |10249 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29991 |20 |1.3.6.1.2.1.1.4.0 |10249 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29992 |20 |1.3.6.1.2.1.1.2.0 |10249 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29993 |20 |1.3.6.1.2.1.1.1.0 |10249 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |30049 |17 | |10304 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |30050 |20 |1.3.6.1.2.1.1.4.0 |10304 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |30051 |20 |1.3.6.1.2.1.1.1.0 |10304 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |30052 |20 |1.3.6.1.2.1.1.6.0 |10304 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |30053 |20 |1.3.6.1.2.1.1.5.0 |10304 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29993 |20 |1.3.6.1.2.1.1.1.0 |10249 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |30049 |17 | |10304 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |30050 |20 |1.3.6.1.2.1.1.4.0 |10304 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |30051 |20 |1.3.6.1.2.1.1.1.0 |10304 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |30052 |20 |1.3.6.1.2.1.1.6.0 |10304 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |30053 |20 |1.3.6.1.2.1.1.5.0 |10304 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |30054 |20 |1.3.6.1.2.1.1.2.0 |10304 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |30055 |20 |1.3.6.1.2.1.1.3.0 |10304 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |30056 |5 | |10304 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |30056 |5 | |10304 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |30095 |20 |1.3.6.1.4.1.1991.1.1.2.1.53.0 |10210 |Memory utilization |vm.memory.util[snAgGblDynMemUtil.0] |1m |7d |365d |0 |0 | |% | | |30094 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The system dynamic memory utilization, in unit of percentage.&eol;Deprecated: Refer to snAgSystemDRAMUtil.&eol;For NI platforms, refer to snAgentBrdMemoryUtil100thPercent |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |30096 |20 |1.3.6.1.4.1.1991.1.1.2.1.53.0 |10211 |Memory utilization |vm.memory.util[snAgGblDynMemUtil.0] |1m |7d |365d |0 |0 | |% | | |30094 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The system dynamic memory utilization, in unit of percentage.&eol;Deprecated: Refer to snAgSystemDRAMUtil.&eol;For NI platforms, refer to snAgentBrdMemoryUtil100thPercent |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |30098 |20 |1.3.6.1.2.1.1.1.0 |10218 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |30097 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10826,7 +10840,7 @@ ROW |31878 |0 |
ROW |31879 |7 | |10343 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |31843 |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |31880 |7 | |10343 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |31844 |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |31881 |7 | |10343 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |31845 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |31882 |7 | |10343 |System description |system.uname |1h |2w |0 |0 |1 | | | | |31846 |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |31882 |7 | |10343 |System description |system.uname |15m |2w |0 |0 |1 | | | | |31846 |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |31883 |7 | |10343 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |31847 |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |31884 |7 | |10343 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |31848 |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |31885 |7 | |10343 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd,sha256] |15m |7d |0 |0 |1 | | | | |31849 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10867,7 +10881,7 @@ ROW |31984 |7 |
ROW |31985 |7 | |10351 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |31958 |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |31986 |0 | |10351 |System local time |system.localtime |1m |7d |365d |1 |3 | |unixtime| | |31959 |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |31987 |7 | |10351 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |31960 |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |31988 |7 | |10351 |System description |system.uname |1h |2w |0 |0 |1 | | | | |31961 |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |31988 |7 | |10351 |System description |system.uname |15m |2w |0 |0 |1 | | | | |31961 |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |31989 |7 | |10351 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |31962 |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |31990 |7 | |10351 |Cache bytes |perf_counter_en["\Memory\Cache Bytes"] |1m |7d |365d |0 |3 | |B | | |31963 |NULL | | |0 | | | | |0 |NULL |Cache Bytes is the sum of the Memory\\System Cache Resident Bytes, Memory\\System Driver Resident Bytes, &eol;Memory\\System Code Resident Bytes, and Memory\\Pool Paged Resident Bytes counters. This counter displays &eol;the last observed value only; it is not an average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |31991 |7 | |10351 |Free system page table entries |perf_counter_en["\Memory\Free System Page Table Entries"] |1m |7d |365d |0 |3 | | | | |31964 |NULL | | |0 | | | | |0 |NULL |This indicates the number of page table entries not currently in use by the system. If the number is less &eol;than 5,000, there may well be a memory leak or you running out of memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10910,35 +10924,35 @@ ROW |33333 |7 |
ROW |33334 |7 | |10351 |{#DEVNAME}: Disk read request avg waiting time |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk sec/Read",60] |1m |7d |365d |0 |0 | |s | | |33330 |NULL | | |0 | | | | |2 |NULL |The average time for read requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |33335 |7 | |10351 |{#DEVNAME}: Disk write request avg waiting time |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk sec/Write",60] |1m |7d |365d |0 |0 | |s | | |33331 |NULL | | |0 | | | | |2 |NULL |The average time for write requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |33336 |7 | |10351 |{#DEVNAME}: Average disk write queue length |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk Write Queue Length",60] |1m |7d |365d |0 |0 | | | | |33332 |NULL | | |0 | | | | |2 |NULL |Average disk write queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |33340 |17 | |10378 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |33341 |20 |1.3.6.1.2.1.1.4.0 |10378 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |33342 |20 |1.3.6.1.2.1.1.1.0 |10378 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |33343 |20 |1.3.6.1.2.1.1.6.0 |10378 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |33344 |20 |1.3.6.1.2.1.1.5.0 |10378 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |33340 |17 | |10378 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |33341 |20 |1.3.6.1.2.1.1.4.0 |10378 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |33342 |20 |1.3.6.1.2.1.1.1.0 |10378 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |33343 |20 |1.3.6.1.2.1.1.6.0 |10378 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |33344 |20 |1.3.6.1.2.1.1.5.0 |10378 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |33345 |20 |1.3.6.1.2.1.1.2.0 |10378 |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 |33346 |20 |1.3.6.1.2.1.1.3.0 |10378 |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 |33347 |5 | |10378 |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 |33683 |17 | |10385 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |33684 |20 |1.3.6.1.2.1.1.4.0 |10385 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |33685 |20 |1.3.6.1.2.1.1.1.0 |10385 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |33686 |20 |1.3.6.1.2.1.1.6.0 |10385 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |33687 |20 |1.3.6.1.2.1.1.5.0 |10385 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |33347 |5 | |10378 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |33683 |17 | |10385 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |33684 |20 |1.3.6.1.2.1.1.4.0 |10385 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |33685 |20 |1.3.6.1.2.1.1.1.0 |10385 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |33686 |20 |1.3.6.1.2.1.1.6.0 |10385 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |33687 |20 |1.3.6.1.2.1.1.5.0 |10385 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |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 |33690 |5 | |10385 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |34318 |5 | |10084 |Zabbix server: Utilization of report writer internal processes, in % |zabbix[process,report writer,avg,busy] |1m |1w |365d |0 |0 | |% | | |34316 |NULL | | |0 | | | | |0 |NULL |Average percentage of time report writer processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |34319 |5 | |10084 |Zabbix server: Utilization of report manager internal processes, in % |zabbix[process,report manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |34317 |NULL | | |0 | | | | |0 |NULL |Average percentage of time report manager processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |35275 |5 | |10084 |Zabbix server: Utilization of trigger housekeeper internal processes, in % |zabbix[process,trigger housekeeper,avg,busy] |1m |1w |365d |0 |0 | |% | | |35272 |NULL | | |0 | | | | |0 |NULL |Average percentage of time trigger housekeeper processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |35276 |5 | |10084 |Zabbix server: Version |zabbix[version] |1m |1w |0 |0 |1 | | | | |35273 |NULL | | |0 | | | | |0 |NULL |Version of Zabbix server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |35277 |5 | |10084 |Zabbix server: Utilization of service manager internal processes, in % |zabbix[process,service manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |35274 |NULL | | |0 | | | | |0 |NULL |Average percentage of time service manager processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |36829 |17 | |10449 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |36830 |20 |1.3.6.1.2.1.1.4.0 |10449 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |36831 |20 |1.3.6.1.2.1.1.1.0 |10449 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |36832 |20 |1.3.6.1.2.1.1.6.0 |10449 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |36833 |20 |1.3.6.1.2.1.1.5.0 |10449 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |36829 |17 | |10449 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |36830 |20 |1.3.6.1.2.1.1.4.0 |10449 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |36831 |20 |1.3.6.1.2.1.1.1.0 |10449 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |36832 |20 |1.3.6.1.2.1.1.6.0 |10449 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |36833 |20 |1.3.6.1.2.1.1.5.0 |10449 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |36834 |20 |1.3.6.1.2.1.1.2.0 |10449 |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 |36835 |20 |1.3.6.1.2.1.1.3.0 |10449 |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 |36836 |5 | |10449 |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 |36836 |5 | |10449 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |36837 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10449 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |36838 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10449 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |36839 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10449 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10949,14 +10963,14 @@ ROW |36843 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |36844 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10449 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |36845 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10449 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |36846 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10449 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |36883 |17 | |10450 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |36884 |20 |1.3.6.1.2.1.1.4.0 |10450 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |36885 |20 |1.3.6.1.2.1.1.1.0 |10450 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |36886 |20 |1.3.6.1.2.1.1.6.0 |10450 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |36887 |20 |1.3.6.1.2.1.1.5.0 |10450 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |36883 |17 | |10450 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |36884 |20 |1.3.6.1.2.1.1.4.0 |10450 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |36885 |20 |1.3.6.1.2.1.1.1.0 |10450 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |36886 |20 |1.3.6.1.2.1.1.6.0 |10450 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |36887 |20 |1.3.6.1.2.1.1.5.0 |10450 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |36888 |20 |1.3.6.1.2.1.1.2.0 |10450 |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 |36889 |20 |1.3.6.1.2.1.1.3.0 |10450 |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 |36890 |5 | |10450 |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 |36890 |5 | |10450 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |36891 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10450 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |36892 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10450 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |36893 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10450 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10967,14 +10981,14 @@ ROW |36897 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |36898 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10450 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |36899 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10450 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |36900 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10450 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |36937 |17 | |10451 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |36938 |20 |1.3.6.1.2.1.1.4.0 |10451 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |36939 |20 |1.3.6.1.2.1.1.1.0 |10451 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |36940 |20 |1.3.6.1.2.1.1.6.0 |10451 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |36941 |20 |1.3.6.1.2.1.1.5.0 |10451 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |36937 |17 | |10451 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |36938 |20 |1.3.6.1.2.1.1.4.0 |10451 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |36939 |20 |1.3.6.1.2.1.1.1.0 |10451 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |36940 |20 |1.3.6.1.2.1.1.6.0 |10451 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |36941 |20 |1.3.6.1.2.1.1.5.0 |10451 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |36942 |20 |1.3.6.1.2.1.1.2.0 |10451 |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 |36943 |20 |1.3.6.1.2.1.1.3.0 |10451 |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 |36944 |5 | |10451 |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 |36944 |5 | |10451 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |36945 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10451 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |36946 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10451 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |36947 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10451 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -10985,14 +10999,14 @@ ROW |36951 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |36952 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10451 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |36953 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10451 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |36954 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10451 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |36991 |17 | |10452 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |36992 |20 |1.3.6.1.2.1.1.4.0 |10452 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |36993 |20 |1.3.6.1.2.1.1.1.0 |10452 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |36994 |20 |1.3.6.1.2.1.1.6.0 |10452 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |36995 |20 |1.3.6.1.2.1.1.5.0 |10452 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |36991 |17 | |10452 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |36992 |20 |1.3.6.1.2.1.1.4.0 |10452 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |36993 |20 |1.3.6.1.2.1.1.1.0 |10452 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |36994 |20 |1.3.6.1.2.1.1.6.0 |10452 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |36995 |20 |1.3.6.1.2.1.1.5.0 |10452 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |36996 |20 |1.3.6.1.2.1.1.2.0 |10452 |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 |36997 |20 |1.3.6.1.2.1.1.3.0 |10452 |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 |36998 |5 | |10452 |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 |36998 |5 | |10452 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |36999 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10452 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37000 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10452 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37001 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10452 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11003,14 +11017,14 @@ ROW |37005 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |37006 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10452 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37007 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10452 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37008 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10452 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37045 |17 | |10453 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37046 |20 |1.3.6.1.2.1.1.4.0 |10453 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37047 |20 |1.3.6.1.2.1.1.1.0 |10453 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37048 |20 |1.3.6.1.2.1.1.6.0 |10453 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37049 |20 |1.3.6.1.2.1.1.5.0 |10453 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37045 |17 | |10453 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37046 |20 |1.3.6.1.2.1.1.4.0 |10453 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37047 |20 |1.3.6.1.2.1.1.1.0 |10453 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37048 |20 |1.3.6.1.2.1.1.6.0 |10453 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37049 |20 |1.3.6.1.2.1.1.5.0 |10453 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37050 |20 |1.3.6.1.2.1.1.2.0 |10453 |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 |37051 |20 |1.3.6.1.2.1.1.3.0 |10453 |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 |37052 |5 | |10453 |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 |37052 |5 | |10453 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37053 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10453 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37054 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10453 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37055 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10453 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11021,14 +11035,14 @@ ROW |37059 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |37060 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10453 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37061 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10453 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37062 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10453 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37099 |17 | |10454 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37100 |20 |1.3.6.1.2.1.1.4.0 |10454 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37101 |20 |1.3.6.1.2.1.1.1.0 |10454 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37102 |20 |1.3.6.1.2.1.1.6.0 |10454 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37103 |20 |1.3.6.1.2.1.1.5.0 |10454 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37099 |17 | |10454 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37100 |20 |1.3.6.1.2.1.1.4.0 |10454 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37101 |20 |1.3.6.1.2.1.1.1.0 |10454 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37102 |20 |1.3.6.1.2.1.1.6.0 |10454 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37103 |20 |1.3.6.1.2.1.1.5.0 |10454 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37104 |20 |1.3.6.1.2.1.1.2.0 |10454 |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 |37105 |20 |1.3.6.1.2.1.1.3.0 |10454 |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 |37106 |5 | |10454 |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 |37106 |5 | |10454 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37107 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10454 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37108 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10454 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37109 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10454 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11039,14 +11053,14 @@ ROW |37113 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |37114 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10454 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37115 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10454 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37116 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10454 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37153 |17 | |10455 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37154 |20 |1.3.6.1.2.1.1.4.0 |10455 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37155 |20 |1.3.6.1.2.1.1.1.0 |10455 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37156 |20 |1.3.6.1.2.1.1.6.0 |10455 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37157 |20 |1.3.6.1.2.1.1.5.0 |10455 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37153 |17 | |10455 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37154 |20 |1.3.6.1.2.1.1.4.0 |10455 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37155 |20 |1.3.6.1.2.1.1.1.0 |10455 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37156 |20 |1.3.6.1.2.1.1.6.0 |10455 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37157 |20 |1.3.6.1.2.1.1.5.0 |10455 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37158 |20 |1.3.6.1.2.1.1.2.0 |10455 |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 |37159 |20 |1.3.6.1.2.1.1.3.0 |10455 |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 |37160 |5 | |10455 |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 |37160 |5 | |10455 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37161 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10455 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37162 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10455 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37163 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10455 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11057,14 +11071,14 @@ ROW |37167 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |37168 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10455 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37169 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10455 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37170 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10455 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37207 |17 | |10456 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37208 |20 |1.3.6.1.2.1.1.4.0 |10456 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37209 |20 |1.3.6.1.2.1.1.1.0 |10456 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37210 |20 |1.3.6.1.2.1.1.6.0 |10456 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37211 |20 |1.3.6.1.2.1.1.5.0 |10456 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37207 |17 | |10456 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37208 |20 |1.3.6.1.2.1.1.4.0 |10456 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37209 |20 |1.3.6.1.2.1.1.1.0 |10456 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37210 |20 |1.3.6.1.2.1.1.6.0 |10456 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37211 |20 |1.3.6.1.2.1.1.5.0 |10456 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37212 |20 |1.3.6.1.2.1.1.2.0 |10456 |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 |37213 |20 |1.3.6.1.2.1.1.3.0 |10456 |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 |37214 |5 | |10456 |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 |37214 |5 | |10456 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37215 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10456 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37216 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10456 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37217 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10456 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11075,14 +11089,14 @@ ROW |37221 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |37222 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10456 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37223 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10456 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37224 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10456 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37261 |17 | |10457 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37262 |20 |1.3.6.1.2.1.1.4.0 |10457 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37263 |20 |1.3.6.1.2.1.1.1.0 |10457 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37264 |20 |1.3.6.1.2.1.1.6.0 |10457 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37265 |20 |1.3.6.1.2.1.1.5.0 |10457 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37261 |17 | |10457 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37262 |20 |1.3.6.1.2.1.1.4.0 |10457 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37263 |20 |1.3.6.1.2.1.1.1.0 |10457 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37264 |20 |1.3.6.1.2.1.1.6.0 |10457 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37265 |20 |1.3.6.1.2.1.1.5.0 |10457 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37266 |20 |1.3.6.1.2.1.1.2.0 |10457 |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 |37267 |20 |1.3.6.1.2.1.1.3.0 |10457 |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 |37268 |5 | |10457 |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 |37268 |5 | |10457 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37269 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10457 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37270 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10457 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37271 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10457 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11093,14 +11107,14 @@ ROW |37275 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |37276 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10457 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37277 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10457 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37278 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10457 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37315 |17 | |10458 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37316 |20 |1.3.6.1.2.1.1.4.0 |10458 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37317 |20 |1.3.6.1.2.1.1.1.0 |10458 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37318 |20 |1.3.6.1.2.1.1.6.0 |10458 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37319 |20 |1.3.6.1.2.1.1.5.0 |10458 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37315 |17 | |10458 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37316 |20 |1.3.6.1.2.1.1.4.0 |10458 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37317 |20 |1.3.6.1.2.1.1.1.0 |10458 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37318 |20 |1.3.6.1.2.1.1.6.0 |10458 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37319 |20 |1.3.6.1.2.1.1.5.0 |10458 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37320 |20 |1.3.6.1.2.1.1.2.0 |10458 |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 |37321 |20 |1.3.6.1.2.1.1.3.0 |10458 |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 |37322 |5 | |10458 |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 |37322 |5 | |10458 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37323 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10458 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37324 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10458 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37325 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10458 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11111,14 +11125,14 @@ ROW |37329 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |37330 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10458 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37331 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10458 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37332 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10458 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37369 |17 | |10459 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37370 |20 |1.3.6.1.2.1.1.4.0 |10459 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37371 |20 |1.3.6.1.2.1.1.1.0 |10459 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37372 |20 |1.3.6.1.2.1.1.6.0 |10459 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37373 |20 |1.3.6.1.2.1.1.5.0 |10459 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37369 |17 | |10459 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37370 |20 |1.3.6.1.2.1.1.4.0 |10459 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37371 |20 |1.3.6.1.2.1.1.1.0 |10459 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37372 |20 |1.3.6.1.2.1.1.6.0 |10459 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37373 |20 |1.3.6.1.2.1.1.5.0 |10459 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37374 |20 |1.3.6.1.2.1.1.2.0 |10459 |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 |37375 |20 |1.3.6.1.2.1.1.3.0 |10459 |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 |37376 |5 | |10459 |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 |37376 |5 | |10459 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37377 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10459 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37378 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10459 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37379 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10459 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11129,14 +11143,14 @@ ROW |37383 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |37384 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10459 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37385 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10459 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37386 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10459 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37423 |17 | |10460 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37424 |20 |1.3.6.1.2.1.1.4.0 |10460 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37425 |20 |1.3.6.1.2.1.1.1.0 |10460 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37426 |20 |1.3.6.1.2.1.1.6.0 |10460 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37427 |20 |1.3.6.1.2.1.1.5.0 |10460 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37423 |17 | |10460 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37424 |20 |1.3.6.1.2.1.1.4.0 |10460 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37425 |20 |1.3.6.1.2.1.1.1.0 |10460 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37426 |20 |1.3.6.1.2.1.1.6.0 |10460 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37427 |20 |1.3.6.1.2.1.1.5.0 |10460 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37428 |20 |1.3.6.1.2.1.1.2.0 |10460 |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 |37429 |20 |1.3.6.1.2.1.1.3.0 |10460 |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 |37430 |5 | |10460 |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 |37430 |5 | |10460 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37431 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10460 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37432 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10460 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37433 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10460 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11147,14 +11161,14 @@ ROW |37437 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |37438 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10460 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37439 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10460 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37440 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10460 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37477 |17 | |10461 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37478 |20 |1.3.6.1.2.1.1.4.0 |10461 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37479 |20 |1.3.6.1.2.1.1.1.0 |10461 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37480 |20 |1.3.6.1.2.1.1.6.0 |10461 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37481 |20 |1.3.6.1.2.1.1.5.0 |10461 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37477 |17 | |10461 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37478 |20 |1.3.6.1.2.1.1.4.0 |10461 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37479 |20 |1.3.6.1.2.1.1.1.0 |10461 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37480 |20 |1.3.6.1.2.1.1.6.0 |10461 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37481 |20 |1.3.6.1.2.1.1.5.0 |10461 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37482 |20 |1.3.6.1.2.1.1.2.0 |10461 |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 |37483 |20 |1.3.6.1.2.1.1.3.0 |10461 |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 |37484 |5 | |10461 |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 |37484 |5 | |10461 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37485 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10461 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37486 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10461 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37487 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10461 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11165,14 +11179,14 @@ ROW |37491 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |37492 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10461 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37493 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10461 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37494 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10461 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37531 |17 | |10462 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37532 |20 |1.3.6.1.2.1.1.4.0 |10462 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37533 |20 |1.3.6.1.2.1.1.1.0 |10462 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37534 |20 |1.3.6.1.2.1.1.6.0 |10462 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37535 |20 |1.3.6.1.2.1.1.5.0 |10462 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37531 |17 | |10462 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37532 |20 |1.3.6.1.2.1.1.4.0 |10462 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37533 |20 |1.3.6.1.2.1.1.1.0 |10462 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37534 |20 |1.3.6.1.2.1.1.6.0 |10462 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37535 |20 |1.3.6.1.2.1.1.5.0 |10462 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37536 |20 |1.3.6.1.2.1.1.2.0 |10462 |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 |37537 |20 |1.3.6.1.2.1.1.3.0 |10462 |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 |37538 |5 | |10462 |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 |37538 |5 | |10462 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37539 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10462 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37540 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10462 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37541 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10462 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11183,14 +11197,14 @@ ROW |37545 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |37546 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10462 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37547 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10462 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37548 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10462 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37585 |17 | |10463 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37586 |20 |1.3.6.1.2.1.1.4.0 |10463 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37587 |20 |1.3.6.1.2.1.1.1.0 |10463 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37588 |20 |1.3.6.1.2.1.1.6.0 |10463 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37589 |20 |1.3.6.1.2.1.1.5.0 |10463 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37585 |17 | |10463 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37586 |20 |1.3.6.1.2.1.1.4.0 |10463 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37587 |20 |1.3.6.1.2.1.1.1.0 |10463 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37588 |20 |1.3.6.1.2.1.1.6.0 |10463 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37589 |20 |1.3.6.1.2.1.1.5.0 |10463 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37590 |20 |1.3.6.1.2.1.1.2.0 |10463 |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 |37591 |20 |1.3.6.1.2.1.1.3.0 |10463 |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 |37592 |5 | |10463 |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 |37592 |5 | |10463 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37593 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10463 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37594 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10463 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37595 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10463 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11201,14 +11215,14 @@ ROW |37599 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |37600 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10463 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37601 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10463 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37602 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10463 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37639 |17 | |10464 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37640 |20 |1.3.6.1.2.1.1.4.0 |10464 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37641 |20 |1.3.6.1.2.1.1.1.0 |10464 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37642 |20 |1.3.6.1.2.1.1.6.0 |10464 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37643 |20 |1.3.6.1.2.1.1.5.0 |10464 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37639 |17 | |10464 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37640 |20 |1.3.6.1.2.1.1.4.0 |10464 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37641 |20 |1.3.6.1.2.1.1.1.0 |10464 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37642 |20 |1.3.6.1.2.1.1.6.0 |10464 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37643 |20 |1.3.6.1.2.1.1.5.0 |10464 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37644 |20 |1.3.6.1.2.1.1.2.0 |10464 |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 |37645 |20 |1.3.6.1.2.1.1.3.0 |10464 |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 |37646 |5 | |10464 |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 |37646 |5 | |10464 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37647 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10464 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37648 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10464 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37649 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10464 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11219,14 +11233,14 @@ ROW |37653 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |37654 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10464 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37655 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10464 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37656 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10464 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37693 |17 | |10465 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37694 |20 |1.3.6.1.2.1.1.4.0 |10465 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37695 |20 |1.3.6.1.2.1.1.1.0 |10465 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37696 |20 |1.3.6.1.2.1.1.6.0 |10465 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37697 |20 |1.3.6.1.2.1.1.5.0 |10465 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37693 |17 | |10465 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37694 |20 |1.3.6.1.2.1.1.4.0 |10465 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37695 |20 |1.3.6.1.2.1.1.1.0 |10465 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37696 |20 |1.3.6.1.2.1.1.6.0 |10465 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37697 |20 |1.3.6.1.2.1.1.5.0 |10465 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37698 |20 |1.3.6.1.2.1.1.2.0 |10465 |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 |37699 |20 |1.3.6.1.2.1.1.3.0 |10465 |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 |37700 |5 | |10465 |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 |37700 |5 | |10465 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37701 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10465 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37702 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10465 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37703 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10465 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11237,14 +11251,14 @@ ROW |37707 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |37708 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10465 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37709 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10465 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37710 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10465 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37747 |17 | |10466 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37748 |20 |1.3.6.1.2.1.1.4.0 |10466 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37749 |20 |1.3.6.1.2.1.1.1.0 |10466 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37750 |20 |1.3.6.1.2.1.1.6.0 |10466 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37751 |20 |1.3.6.1.2.1.1.5.0 |10466 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37747 |17 | |10466 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37748 |20 |1.3.6.1.2.1.1.4.0 |10466 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37749 |20 |1.3.6.1.2.1.1.1.0 |10466 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37750 |20 |1.3.6.1.2.1.1.6.0 |10466 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37751 |20 |1.3.6.1.2.1.1.5.0 |10466 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37752 |20 |1.3.6.1.2.1.1.2.0 |10466 |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 |37753 |20 |1.3.6.1.2.1.1.3.0 |10466 |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 |37754 |5 | |10466 |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 |37754 |5 | |10466 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37755 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10466 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37756 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10466 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37757 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10466 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11255,14 +11269,14 @@ ROW |37761 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |37762 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10466 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37763 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10466 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37764 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10466 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37801 |17 | |10467 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37802 |20 |1.3.6.1.2.1.1.4.0 |10467 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37803 |20 |1.3.6.1.2.1.1.1.0 |10467 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37804 |20 |1.3.6.1.2.1.1.6.0 |10467 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37805 |20 |1.3.6.1.2.1.1.5.0 |10467 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37801 |17 | |10467 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37802 |20 |1.3.6.1.2.1.1.4.0 |10467 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37803 |20 |1.3.6.1.2.1.1.1.0 |10467 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37804 |20 |1.3.6.1.2.1.1.6.0 |10467 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37805 |20 |1.3.6.1.2.1.1.5.0 |10467 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37806 |20 |1.3.6.1.2.1.1.2.0 |10467 |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 |37807 |20 |1.3.6.1.2.1.1.3.0 |10467 |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 |37808 |5 | |10467 |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 |37808 |5 | |10467 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37809 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10467 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37810 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10467 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37811 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10467 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11273,14 +11287,14 @@ ROW |37815 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |37816 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10467 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37817 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10467 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37818 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10467 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37855 |17 | |10468 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37856 |20 |1.3.6.1.2.1.1.4.0 |10468 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37857 |20 |1.3.6.1.2.1.1.1.0 |10468 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37858 |20 |1.3.6.1.2.1.1.6.0 |10468 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37859 |20 |1.3.6.1.2.1.1.5.0 |10468 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37855 |17 | |10468 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37856 |20 |1.3.6.1.2.1.1.4.0 |10468 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37857 |20 |1.3.6.1.2.1.1.1.0 |10468 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37858 |20 |1.3.6.1.2.1.1.6.0 |10468 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37859 |20 |1.3.6.1.2.1.1.5.0 |10468 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37860 |20 |1.3.6.1.2.1.1.2.0 |10468 |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 |37861 |20 |1.3.6.1.2.1.1.3.0 |10468 |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 |37862 |5 | |10468 |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 |37862 |5 | |10468 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37863 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10468 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37864 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10468 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37865 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10468 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11291,14 +11305,14 @@ ROW |37869 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |37870 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10468 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37871 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10468 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37872 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10468 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37909 |17 | |10469 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37910 |20 |1.3.6.1.2.1.1.4.0 |10469 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37911 |20 |1.3.6.1.2.1.1.1.0 |10469 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37912 |20 |1.3.6.1.2.1.1.6.0 |10469 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37913 |20 |1.3.6.1.2.1.1.5.0 |10469 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37909 |17 | |10469 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37910 |20 |1.3.6.1.2.1.1.4.0 |10469 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37911 |20 |1.3.6.1.2.1.1.1.0 |10469 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37912 |20 |1.3.6.1.2.1.1.6.0 |10469 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37913 |20 |1.3.6.1.2.1.1.5.0 |10469 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37914 |20 |1.3.6.1.2.1.1.2.0 |10469 |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 |37915 |20 |1.3.6.1.2.1.1.3.0 |10469 |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 |37916 |5 | |10469 |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 |37916 |5 | |10469 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37917 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10469 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37918 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10469 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37919 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10469 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11309,14 +11323,14 @@ ROW |37923 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |37924 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10469 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37925 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10469 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37926 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10469 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37963 |17 | |10470 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37964 |20 |1.3.6.1.2.1.1.4.0 |10470 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37965 |20 |1.3.6.1.2.1.1.1.0 |10470 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37966 |20 |1.3.6.1.2.1.1.6.0 |10470 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |37967 |20 |1.3.6.1.2.1.1.5.0 |10470 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37963 |17 | |10470 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37964 |20 |1.3.6.1.2.1.1.4.0 |10470 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37965 |20 |1.3.6.1.2.1.1.1.0 |10470 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37966 |20 |1.3.6.1.2.1.1.6.0 |10470 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |37967 |20 |1.3.6.1.2.1.1.5.0 |10470 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37968 |20 |1.3.6.1.2.1.1.2.0 |10470 |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 |37969 |20 |1.3.6.1.2.1.1.3.0 |10470 |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 |37970 |5 | |10470 |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 |37970 |5 | |10470 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37971 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10470 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37972 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10470 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37973 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10470 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11327,14 +11341,14 @@ ROW |37977 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |37978 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10470 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37979 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10470 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |37980 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10470 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38017 |17 | |10471 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38018 |20 |1.3.6.1.2.1.1.4.0 |10471 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38019 |20 |1.3.6.1.2.1.1.1.0 |10471 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38020 |20 |1.3.6.1.2.1.1.6.0 |10471 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38021 |20 |1.3.6.1.2.1.1.5.0 |10471 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38017 |17 | |10471 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38018 |20 |1.3.6.1.2.1.1.4.0 |10471 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38019 |20 |1.3.6.1.2.1.1.1.0 |10471 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38020 |20 |1.3.6.1.2.1.1.6.0 |10471 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38021 |20 |1.3.6.1.2.1.1.5.0 |10471 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38022 |20 |1.3.6.1.2.1.1.2.0 |10471 |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 |38023 |20 |1.3.6.1.2.1.1.3.0 |10471 |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 |38024 |5 | |10471 |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 |38024 |5 | |10471 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38025 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10471 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38026 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10471 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38027 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10471 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11345,14 +11359,14 @@ ROW |38031 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |38032 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10471 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38033 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10471 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38034 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10471 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38071 |17 | |10472 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38072 |20 |1.3.6.1.2.1.1.4.0 |10472 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38073 |20 |1.3.6.1.2.1.1.1.0 |10472 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38074 |20 |1.3.6.1.2.1.1.6.0 |10472 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38075 |20 |1.3.6.1.2.1.1.5.0 |10472 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38071 |17 | |10472 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38072 |20 |1.3.6.1.2.1.1.4.0 |10472 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38073 |20 |1.3.6.1.2.1.1.1.0 |10472 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38074 |20 |1.3.6.1.2.1.1.6.0 |10472 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38075 |20 |1.3.6.1.2.1.1.5.0 |10472 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38076 |20 |1.3.6.1.2.1.1.2.0 |10472 |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 |38077 |20 |1.3.6.1.2.1.1.3.0 |10472 |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 |38078 |5 | |10472 |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 |38078 |5 | |10472 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38079 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10472 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38080 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10472 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38081 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10472 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11363,14 +11377,14 @@ ROW |38085 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |38086 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10472 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38087 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10472 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38088 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10472 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38125 |17 | |10473 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38126 |20 |1.3.6.1.2.1.1.4.0 |10473 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38127 |20 |1.3.6.1.2.1.1.1.0 |10473 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38128 |20 |1.3.6.1.2.1.1.6.0 |10473 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38129 |20 |1.3.6.1.2.1.1.5.0 |10473 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38125 |17 | |10473 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38126 |20 |1.3.6.1.2.1.1.4.0 |10473 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38127 |20 |1.3.6.1.2.1.1.1.0 |10473 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38128 |20 |1.3.6.1.2.1.1.6.0 |10473 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38129 |20 |1.3.6.1.2.1.1.5.0 |10473 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38130 |20 |1.3.6.1.2.1.1.2.0 |10473 |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 |38131 |20 |1.3.6.1.2.1.1.3.0 |10473 |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 |38132 |5 | |10473 |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 |38132 |5 | |10473 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38133 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10473 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38134 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10473 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38135 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10473 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11381,14 +11395,14 @@ ROW |38139 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |38140 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10473 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38141 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10473 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38142 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10473 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38179 |17 | |10474 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38180 |20 |1.3.6.1.2.1.1.4.0 |10474 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38181 |20 |1.3.6.1.2.1.1.1.0 |10474 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38182 |20 |1.3.6.1.2.1.1.6.0 |10474 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38183 |20 |1.3.6.1.2.1.1.5.0 |10474 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38179 |17 | |10474 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38180 |20 |1.3.6.1.2.1.1.4.0 |10474 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38181 |20 |1.3.6.1.2.1.1.1.0 |10474 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38182 |20 |1.3.6.1.2.1.1.6.0 |10474 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38183 |20 |1.3.6.1.2.1.1.5.0 |10474 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38184 |20 |1.3.6.1.2.1.1.2.0 |10474 |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 |38185 |20 |1.3.6.1.2.1.1.3.0 |10474 |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 |38186 |5 | |10474 |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 |38186 |5 | |10474 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38187 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10474 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38188 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10474 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38189 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10474 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11399,14 +11413,14 @@ ROW |38193 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |38194 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10474 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38195 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10474 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38196 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10474 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38233 |17 | |10475 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38234 |20 |1.3.6.1.2.1.1.4.0 |10475 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38235 |20 |1.3.6.1.2.1.1.1.0 |10475 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38236 |20 |1.3.6.1.2.1.1.6.0 |10475 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38237 |20 |1.3.6.1.2.1.1.5.0 |10475 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38233 |17 | |10475 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38234 |20 |1.3.6.1.2.1.1.4.0 |10475 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38235 |20 |1.3.6.1.2.1.1.1.0 |10475 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38236 |20 |1.3.6.1.2.1.1.6.0 |10475 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38237 |20 |1.3.6.1.2.1.1.5.0 |10475 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38238 |20 |1.3.6.1.2.1.1.2.0 |10475 |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 |38239 |20 |1.3.6.1.2.1.1.3.0 |10475 |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 |38240 |5 | |10475 |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 |38240 |5 | |10475 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38241 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10475 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38242 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10475 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38243 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10475 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11417,14 +11431,14 @@ ROW |38247 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |38248 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10475 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38249 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10475 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38250 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10475 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38287 |17 | |10476 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38288 |20 |1.3.6.1.2.1.1.4.0 |10476 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38289 |20 |1.3.6.1.2.1.1.1.0 |10476 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38290 |20 |1.3.6.1.2.1.1.6.0 |10476 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38291 |20 |1.3.6.1.2.1.1.5.0 |10476 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38287 |17 | |10476 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38288 |20 |1.3.6.1.2.1.1.4.0 |10476 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38289 |20 |1.3.6.1.2.1.1.1.0 |10476 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38290 |20 |1.3.6.1.2.1.1.6.0 |10476 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38291 |20 |1.3.6.1.2.1.1.5.0 |10476 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38292 |20 |1.3.6.1.2.1.1.2.0 |10476 |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 |38293 |20 |1.3.6.1.2.1.1.3.0 |10476 |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 |38294 |5 | |10476 |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 |38294 |5 | |10476 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38295 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10476 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38296 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10476 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38297 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10476 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11435,14 +11449,14 @@ ROW |38301 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |38302 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10476 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38303 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10476 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38304 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10476 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38341 |17 | |10477 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38342 |20 |1.3.6.1.2.1.1.4.0 |10477 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38343 |20 |1.3.6.1.2.1.1.1.0 |10477 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38344 |20 |1.3.6.1.2.1.1.6.0 |10477 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38345 |20 |1.3.6.1.2.1.1.5.0 |10477 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38341 |17 | |10477 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38342 |20 |1.3.6.1.2.1.1.4.0 |10477 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38343 |20 |1.3.6.1.2.1.1.1.0 |10477 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38344 |20 |1.3.6.1.2.1.1.6.0 |10477 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38345 |20 |1.3.6.1.2.1.1.5.0 |10477 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38346 |20 |1.3.6.1.2.1.1.2.0 |10477 |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 |38347 |20 |1.3.6.1.2.1.1.3.0 |10477 |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 |38348 |5 | |10477 |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 |38348 |5 | |10477 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38349 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10477 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38350 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10477 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38351 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10477 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11453,14 +11467,14 @@ ROW |38355 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |38356 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10477 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38357 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10477 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38358 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10477 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38395 |17 | |10478 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38396 |20 |1.3.6.1.2.1.1.4.0 |10478 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38397 |20 |1.3.6.1.2.1.1.1.0 |10478 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38398 |20 |1.3.6.1.2.1.1.6.0 |10478 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38399 |20 |1.3.6.1.2.1.1.5.0 |10478 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38395 |17 | |10478 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38396 |20 |1.3.6.1.2.1.1.4.0 |10478 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38397 |20 |1.3.6.1.2.1.1.1.0 |10478 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38398 |20 |1.3.6.1.2.1.1.6.0 |10478 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38399 |20 |1.3.6.1.2.1.1.5.0 |10478 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38400 |20 |1.3.6.1.2.1.1.2.0 |10478 |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 |38401 |20 |1.3.6.1.2.1.1.3.0 |10478 |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 |38402 |5 | |10478 |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 |38402 |5 | |10478 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38403 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10478 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38404 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10478 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38405 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10478 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11471,14 +11485,14 @@ ROW |38409 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |38410 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10478 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38411 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10478 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38412 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10478 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38449 |17 | |10479 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38450 |20 |1.3.6.1.2.1.1.4.0 |10479 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38451 |20 |1.3.6.1.2.1.1.1.0 |10479 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38452 |20 |1.3.6.1.2.1.1.6.0 |10479 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38453 |20 |1.3.6.1.2.1.1.5.0 |10479 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38449 |17 | |10479 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38450 |20 |1.3.6.1.2.1.1.4.0 |10479 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38451 |20 |1.3.6.1.2.1.1.1.0 |10479 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38452 |20 |1.3.6.1.2.1.1.6.0 |10479 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38453 |20 |1.3.6.1.2.1.1.5.0 |10479 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38454 |20 |1.3.6.1.2.1.1.2.0 |10479 |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 |38455 |20 |1.3.6.1.2.1.1.3.0 |10479 |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 |38456 |5 | |10479 |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 |38456 |5 | |10479 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38457 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10479 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38458 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10479 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38459 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10479 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11489,14 +11503,14 @@ ROW |38463 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |38464 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10479 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38465 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10479 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38466 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10479 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38503 |17 | |10480 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38504 |20 |1.3.6.1.2.1.1.4.0 |10480 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38505 |20 |1.3.6.1.2.1.1.1.0 |10480 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38506 |20 |1.3.6.1.2.1.1.6.0 |10480 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38507 |20 |1.3.6.1.2.1.1.5.0 |10480 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38503 |17 | |10480 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38504 |20 |1.3.6.1.2.1.1.4.0 |10480 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38505 |20 |1.3.6.1.2.1.1.1.0 |10480 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38506 |20 |1.3.6.1.2.1.1.6.0 |10480 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38507 |20 |1.3.6.1.2.1.1.5.0 |10480 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38508 |20 |1.3.6.1.2.1.1.2.0 |10480 |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 |38509 |20 |1.3.6.1.2.1.1.3.0 |10480 |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 |38510 |5 | |10480 |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 |38510 |5 | |10480 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38511 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10480 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38512 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10480 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38513 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10480 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11507,14 +11521,14 @@ ROW |38517 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |38518 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10480 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38519 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10480 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38520 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10480 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38557 |17 | |10481 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38558 |20 |1.3.6.1.2.1.1.4.0 |10481 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38559 |20 |1.3.6.1.2.1.1.1.0 |10481 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38560 |20 |1.3.6.1.2.1.1.6.0 |10481 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38561 |20 |1.3.6.1.2.1.1.5.0 |10481 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38557 |17 | |10481 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38558 |20 |1.3.6.1.2.1.1.4.0 |10481 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38559 |20 |1.3.6.1.2.1.1.1.0 |10481 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38560 |20 |1.3.6.1.2.1.1.6.0 |10481 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38561 |20 |1.3.6.1.2.1.1.5.0 |10481 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38562 |20 |1.3.6.1.2.1.1.2.0 |10481 |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 |38563 |20 |1.3.6.1.2.1.1.3.0 |10481 |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 |38564 |5 | |10481 |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 |38564 |5 | |10481 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38565 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10481 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38566 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10481 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38567 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10481 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11525,14 +11539,14 @@ ROW |38571 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |38572 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10481 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38573 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10481 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38574 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10481 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38611 |17 | |10482 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38612 |20 |1.3.6.1.2.1.1.4.0 |10482 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38613 |20 |1.3.6.1.2.1.1.1.0 |10482 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38614 |20 |1.3.6.1.2.1.1.6.0 |10482 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38615 |20 |1.3.6.1.2.1.1.5.0 |10482 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38611 |17 | |10482 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38612 |20 |1.3.6.1.2.1.1.4.0 |10482 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38613 |20 |1.3.6.1.2.1.1.1.0 |10482 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38614 |20 |1.3.6.1.2.1.1.6.0 |10482 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38615 |20 |1.3.6.1.2.1.1.5.0 |10482 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38616 |20 |1.3.6.1.2.1.1.2.0 |10482 |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 |38617 |20 |1.3.6.1.2.1.1.3.0 |10482 |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 |38618 |5 | |10482 |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 |38618 |5 | |10482 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38619 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10482 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38620 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10482 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38621 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10482 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11543,14 +11557,14 @@ ROW |38625 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |38626 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10482 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38627 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10482 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38628 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10482 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38665 |17 | |10483 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38666 |20 |1.3.6.1.2.1.1.4.0 |10483 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38667 |20 |1.3.6.1.2.1.1.1.0 |10483 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38668 |20 |1.3.6.1.2.1.1.6.0 |10483 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38669 |20 |1.3.6.1.2.1.1.5.0 |10483 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38665 |17 | |10483 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38666 |20 |1.3.6.1.2.1.1.4.0 |10483 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38667 |20 |1.3.6.1.2.1.1.1.0 |10483 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38668 |20 |1.3.6.1.2.1.1.6.0 |10483 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38669 |20 |1.3.6.1.2.1.1.5.0 |10483 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38670 |20 |1.3.6.1.2.1.1.2.0 |10483 |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 |38671 |20 |1.3.6.1.2.1.1.3.0 |10483 |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 |38672 |5 | |10483 |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 |38672 |5 | |10483 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38673 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10483 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38674 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10483 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38675 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10483 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11561,14 +11575,14 @@ ROW |38679 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |38680 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10483 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38681 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10483 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38682 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10483 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38719 |17 | |10484 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38720 |20 |1.3.6.1.2.1.1.4.0 |10484 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38721 |20 |1.3.6.1.2.1.1.1.0 |10484 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38722 |20 |1.3.6.1.2.1.1.6.0 |10484 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38723 |20 |1.3.6.1.2.1.1.5.0 |10484 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38719 |17 | |10484 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38720 |20 |1.3.6.1.2.1.1.4.0 |10484 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38721 |20 |1.3.6.1.2.1.1.1.0 |10484 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38722 |20 |1.3.6.1.2.1.1.6.0 |10484 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38723 |20 |1.3.6.1.2.1.1.5.0 |10484 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38724 |20 |1.3.6.1.2.1.1.2.0 |10484 |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 |38725 |20 |1.3.6.1.2.1.1.3.0 |10484 |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 |38726 |5 | |10484 |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 |38726 |5 | |10484 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38727 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10484 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38728 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10484 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38729 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10484 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11579,14 +11593,14 @@ ROW |38733 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |38734 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10484 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38735 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10484 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38736 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10484 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38773 |17 | |10485 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38774 |20 |1.3.6.1.2.1.1.4.0 |10485 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38775 |20 |1.3.6.1.2.1.1.1.0 |10485 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38776 |20 |1.3.6.1.2.1.1.6.0 |10485 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38777 |20 |1.3.6.1.2.1.1.5.0 |10485 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38773 |17 | |10485 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38774 |20 |1.3.6.1.2.1.1.4.0 |10485 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38775 |20 |1.3.6.1.2.1.1.1.0 |10485 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38776 |20 |1.3.6.1.2.1.1.6.0 |10485 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38777 |20 |1.3.6.1.2.1.1.5.0 |10485 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38778 |20 |1.3.6.1.2.1.1.2.0 |10485 |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 |38779 |20 |1.3.6.1.2.1.1.3.0 |10485 |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 |38780 |5 | |10485 |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 |38780 |5 | |10485 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38781 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10485 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38782 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10485 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38783 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10485 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11597,14 +11611,14 @@ ROW |38787 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |38788 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10485 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38789 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10485 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38790 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10485 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38827 |17 | |10486 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38828 |20 |1.3.6.1.2.1.1.4.0 |10486 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38829 |20 |1.3.6.1.2.1.1.1.0 |10486 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38830 |20 |1.3.6.1.2.1.1.6.0 |10486 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38831 |20 |1.3.6.1.2.1.1.5.0 |10486 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38827 |17 | |10486 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38828 |20 |1.3.6.1.2.1.1.4.0 |10486 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38829 |20 |1.3.6.1.2.1.1.1.0 |10486 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38830 |20 |1.3.6.1.2.1.1.6.0 |10486 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38831 |20 |1.3.6.1.2.1.1.5.0 |10486 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38832 |20 |1.3.6.1.2.1.1.2.0 |10486 |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 |38833 |20 |1.3.6.1.2.1.1.3.0 |10486 |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 |38834 |5 | |10486 |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 |38834 |5 | |10486 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38835 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10486 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38836 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10486 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38837 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10486 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11615,14 +11629,14 @@ ROW |38841 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |38842 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10486 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38843 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10486 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38844 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10486 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38881 |17 | |10487 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38882 |20 |1.3.6.1.2.1.1.4.0 |10487 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38883 |20 |1.3.6.1.2.1.1.1.0 |10487 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38884 |20 |1.3.6.1.2.1.1.6.0 |10487 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38885 |20 |1.3.6.1.2.1.1.5.0 |10487 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38881 |17 | |10487 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38882 |20 |1.3.6.1.2.1.1.4.0 |10487 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38883 |20 |1.3.6.1.2.1.1.1.0 |10487 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38884 |20 |1.3.6.1.2.1.1.6.0 |10487 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38885 |20 |1.3.6.1.2.1.1.5.0 |10487 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38886 |20 |1.3.6.1.2.1.1.2.0 |10487 |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 |38887 |20 |1.3.6.1.2.1.1.3.0 |10487 |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 |38888 |5 | |10487 |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 |38888 |5 | |10487 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38889 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10487 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38890 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10487 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38891 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10487 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11633,14 +11647,14 @@ ROW |38895 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |38896 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10487 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38897 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10487 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38898 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10487 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38935 |17 | |10488 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38936 |20 |1.3.6.1.2.1.1.4.0 |10488 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38937 |20 |1.3.6.1.2.1.1.1.0 |10488 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38938 |20 |1.3.6.1.2.1.1.6.0 |10488 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38939 |20 |1.3.6.1.2.1.1.5.0 |10488 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38935 |17 | |10488 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38936 |20 |1.3.6.1.2.1.1.4.0 |10488 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38937 |20 |1.3.6.1.2.1.1.1.0 |10488 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38938 |20 |1.3.6.1.2.1.1.6.0 |10488 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38939 |20 |1.3.6.1.2.1.1.5.0 |10488 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38940 |20 |1.3.6.1.2.1.1.2.0 |10488 |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 |38941 |20 |1.3.6.1.2.1.1.3.0 |10488 |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 |38942 |5 | |10488 |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 |38942 |5 | |10488 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38943 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10488 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38944 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10488 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38945 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10488 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11651,14 +11665,14 @@ ROW |38949 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |38950 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10488 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38951 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10488 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38952 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10488 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38989 |17 | |10489 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38990 |20 |1.3.6.1.2.1.1.4.0 |10489 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38991 |20 |1.3.6.1.2.1.1.1.0 |10489 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38992 |20 |1.3.6.1.2.1.1.6.0 |10489 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |38993 |20 |1.3.6.1.2.1.1.5.0 |10489 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38989 |17 | |10489 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38990 |20 |1.3.6.1.2.1.1.4.0 |10489 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38991 |20 |1.3.6.1.2.1.1.1.0 |10489 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38992 |20 |1.3.6.1.2.1.1.6.0 |10489 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |38993 |20 |1.3.6.1.2.1.1.5.0 |10489 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38994 |20 |1.3.6.1.2.1.1.2.0 |10489 |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 |38995 |20 |1.3.6.1.2.1.1.3.0 |10489 |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 |38996 |5 | |10489 |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 |38996 |5 | |10489 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38997 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10489 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38998 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10489 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |38999 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10489 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11669,14 +11683,14 @@ ROW |39003 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |39004 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10489 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39005 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10489 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39006 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10489 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39043 |17 | |10490 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39044 |20 |1.3.6.1.2.1.1.4.0 |10490 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39045 |20 |1.3.6.1.2.1.1.1.0 |10490 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39046 |20 |1.3.6.1.2.1.1.6.0 |10490 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39047 |20 |1.3.6.1.2.1.1.5.0 |10490 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39043 |17 | |10490 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39044 |20 |1.3.6.1.2.1.1.4.0 |10490 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39045 |20 |1.3.6.1.2.1.1.1.0 |10490 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39046 |20 |1.3.6.1.2.1.1.6.0 |10490 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39047 |20 |1.3.6.1.2.1.1.5.0 |10490 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39048 |20 |1.3.6.1.2.1.1.2.0 |10490 |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 |39049 |20 |1.3.6.1.2.1.1.3.0 |10490 |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 |39050 |5 | |10490 |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 |39050 |5 | |10490 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39051 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10490 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39052 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10490 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39053 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10490 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11687,14 +11701,14 @@ ROW |39057 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |39058 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10490 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39059 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10490 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39060 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10490 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39097 |17 | |10491 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39098 |20 |1.3.6.1.2.1.1.4.0 |10491 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39099 |20 |1.3.6.1.2.1.1.1.0 |10491 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39100 |20 |1.3.6.1.2.1.1.6.0 |10491 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39101 |20 |1.3.6.1.2.1.1.5.0 |10491 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39097 |17 | |10491 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39098 |20 |1.3.6.1.2.1.1.4.0 |10491 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39099 |20 |1.3.6.1.2.1.1.1.0 |10491 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39100 |20 |1.3.6.1.2.1.1.6.0 |10491 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39101 |20 |1.3.6.1.2.1.1.5.0 |10491 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39102 |20 |1.3.6.1.2.1.1.2.0 |10491 |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 |39103 |20 |1.3.6.1.2.1.1.3.0 |10491 |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 |39104 |5 | |10491 |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 |39104 |5 | |10491 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39105 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10491 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39106 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10491 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39107 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10491 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11705,14 +11719,14 @@ ROW |39111 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |39112 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10491 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39113 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10491 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39114 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10491 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39151 |17 | |10492 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39152 |20 |1.3.6.1.2.1.1.4.0 |10492 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39153 |20 |1.3.6.1.2.1.1.1.0 |10492 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39154 |20 |1.3.6.1.2.1.1.6.0 |10492 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39155 |20 |1.3.6.1.2.1.1.5.0 |10492 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39151 |17 | |10492 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39152 |20 |1.3.6.1.2.1.1.4.0 |10492 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39153 |20 |1.3.6.1.2.1.1.1.0 |10492 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39154 |20 |1.3.6.1.2.1.1.6.0 |10492 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39155 |20 |1.3.6.1.2.1.1.5.0 |10492 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39156 |20 |1.3.6.1.2.1.1.2.0 |10492 |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 |39157 |20 |1.3.6.1.2.1.1.3.0 |10492 |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 |39158 |5 | |10492 |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 |39158 |5 | |10492 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39159 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10492 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39160 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10492 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39161 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10492 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11723,14 +11737,14 @@ ROW |39165 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |39166 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10492 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39167 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10492 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39168 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10492 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39205 |17 | |10493 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39206 |20 |1.3.6.1.2.1.1.4.0 |10493 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39207 |20 |1.3.6.1.2.1.1.1.0 |10493 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39208 |20 |1.3.6.1.2.1.1.6.0 |10493 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39209 |20 |1.3.6.1.2.1.1.5.0 |10493 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39205 |17 | |10493 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39206 |20 |1.3.6.1.2.1.1.4.0 |10493 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39207 |20 |1.3.6.1.2.1.1.1.0 |10493 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39208 |20 |1.3.6.1.2.1.1.6.0 |10493 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39209 |20 |1.3.6.1.2.1.1.5.0 |10493 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39210 |20 |1.3.6.1.2.1.1.2.0 |10493 |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 |39211 |20 |1.3.6.1.2.1.1.3.0 |10493 |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 |39212 |5 | |10493 |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 |39212 |5 | |10493 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39213 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10493 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39214 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10493 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39215 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10493 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11741,14 +11755,14 @@ ROW |39219 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |39220 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10493 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39221 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10493 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39222 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10493 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39259 |17 | |10494 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39260 |20 |1.3.6.1.2.1.1.4.0 |10494 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39261 |20 |1.3.6.1.2.1.1.1.0 |10494 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39262 |20 |1.3.6.1.2.1.1.6.0 |10494 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39263 |20 |1.3.6.1.2.1.1.5.0 |10494 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39259 |17 | |10494 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39260 |20 |1.3.6.1.2.1.1.4.0 |10494 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39261 |20 |1.3.6.1.2.1.1.1.0 |10494 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39262 |20 |1.3.6.1.2.1.1.6.0 |10494 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39263 |20 |1.3.6.1.2.1.1.5.0 |10494 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39264 |20 |1.3.6.1.2.1.1.2.0 |10494 |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 |39265 |20 |1.3.6.1.2.1.1.3.0 |10494 |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 |39266 |5 | |10494 |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 |39266 |5 | |10494 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39267 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10494 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39268 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10494 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39269 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10494 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11759,14 +11773,14 @@ ROW |39273 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |39274 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10494 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39275 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10494 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39276 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10494 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39313 |17 | |10495 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39314 |20 |1.3.6.1.2.1.1.4.0 |10495 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39315 |20 |1.3.6.1.2.1.1.1.0 |10495 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39316 |20 |1.3.6.1.2.1.1.6.0 |10495 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39317 |20 |1.3.6.1.2.1.1.5.0 |10495 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39313 |17 | |10495 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39314 |20 |1.3.6.1.2.1.1.4.0 |10495 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39315 |20 |1.3.6.1.2.1.1.1.0 |10495 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39316 |20 |1.3.6.1.2.1.1.6.0 |10495 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39317 |20 |1.3.6.1.2.1.1.5.0 |10495 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39318 |20 |1.3.6.1.2.1.1.2.0 |10495 |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 |39319 |20 |1.3.6.1.2.1.1.3.0 |10495 |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 |39320 |5 | |10495 |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 |39320 |5 | |10495 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39321 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10495 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39322 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10495 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39323 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10495 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11777,14 +11791,14 @@ ROW |39327 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |39328 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10495 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39329 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10495 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39330 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10495 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39367 |17 | |10496 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39368 |20 |1.3.6.1.2.1.1.4.0 |10496 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39369 |20 |1.3.6.1.2.1.1.1.0 |10496 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39370 |20 |1.3.6.1.2.1.1.6.0 |10496 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39371 |20 |1.3.6.1.2.1.1.5.0 |10496 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39367 |17 | |10496 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39368 |20 |1.3.6.1.2.1.1.4.0 |10496 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39369 |20 |1.3.6.1.2.1.1.1.0 |10496 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39370 |20 |1.3.6.1.2.1.1.6.0 |10496 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39371 |20 |1.3.6.1.2.1.1.5.0 |10496 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39372 |20 |1.3.6.1.2.1.1.2.0 |10496 |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 |39373 |20 |1.3.6.1.2.1.1.3.0 |10496 |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 |39374 |5 | |10496 |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 |39374 |5 | |10496 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39375 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10496 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39376 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10496 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39377 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10496 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11795,14 +11809,14 @@ ROW |39381 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |39382 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10496 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39383 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10496 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39384 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10496 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39421 |17 | |10497 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39422 |20 |1.3.6.1.2.1.1.4.0 |10497 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39423 |20 |1.3.6.1.2.1.1.1.0 |10497 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39424 |20 |1.3.6.1.2.1.1.6.0 |10497 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39425 |20 |1.3.6.1.2.1.1.5.0 |10497 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39421 |17 | |10497 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39422 |20 |1.3.6.1.2.1.1.4.0 |10497 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39423 |20 |1.3.6.1.2.1.1.1.0 |10497 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39424 |20 |1.3.6.1.2.1.1.6.0 |10497 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39425 |20 |1.3.6.1.2.1.1.5.0 |10497 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39426 |20 |1.3.6.1.2.1.1.2.0 |10497 |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 |39427 |20 |1.3.6.1.2.1.1.3.0 |10497 |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 |39428 |5 | |10497 |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 |39428 |5 | |10497 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39429 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10497 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39430 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10497 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39431 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10497 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11813,14 +11827,14 @@ ROW |39435 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |39436 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10497 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39437 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10497 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39438 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10497 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39475 |17 | |10498 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39476 |20 |1.3.6.1.2.1.1.4.0 |10498 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39477 |20 |1.3.6.1.2.1.1.1.0 |10498 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39478 |20 |1.3.6.1.2.1.1.6.0 |10498 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39479 |20 |1.3.6.1.2.1.1.5.0 |10498 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39475 |17 | |10498 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39476 |20 |1.3.6.1.2.1.1.4.0 |10498 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39477 |20 |1.3.6.1.2.1.1.1.0 |10498 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39478 |20 |1.3.6.1.2.1.1.6.0 |10498 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39479 |20 |1.3.6.1.2.1.1.5.0 |10498 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39480 |20 |1.3.6.1.2.1.1.2.0 |10498 |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 |39481 |20 |1.3.6.1.2.1.1.3.0 |10498 |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 |39482 |5 | |10498 |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 |39482 |5 | |10498 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39483 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10498 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39484 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10498 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39485 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10498 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11831,14 +11845,14 @@ ROW |39489 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |39490 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10498 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39491 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10498 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39492 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10498 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39529 |17 | |10499 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39530 |20 |1.3.6.1.2.1.1.4.0 |10499 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39531 |20 |1.3.6.1.2.1.1.1.0 |10499 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39532 |20 |1.3.6.1.2.1.1.6.0 |10499 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39533 |20 |1.3.6.1.2.1.1.5.0 |10499 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39529 |17 | |10499 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39530 |20 |1.3.6.1.2.1.1.4.0 |10499 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39531 |20 |1.3.6.1.2.1.1.1.0 |10499 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39532 |20 |1.3.6.1.2.1.1.6.0 |10499 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39533 |20 |1.3.6.1.2.1.1.5.0 |10499 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39534 |20 |1.3.6.1.2.1.1.2.0 |10499 |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 |39535 |20 |1.3.6.1.2.1.1.3.0 |10499 |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 |39536 |5 | |10499 |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 |39536 |5 | |10499 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39537 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10499 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39538 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10499 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39539 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10499 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11849,14 +11863,14 @@ ROW |39543 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |39544 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10499 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39545 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10499 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39546 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10499 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39583 |17 | |10500 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39584 |20 |1.3.6.1.2.1.1.4.0 |10500 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39585 |20 |1.3.6.1.2.1.1.1.0 |10500 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39586 |20 |1.3.6.1.2.1.1.6.0 |10500 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39587 |20 |1.3.6.1.2.1.1.5.0 |10500 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39583 |17 | |10500 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39584 |20 |1.3.6.1.2.1.1.4.0 |10500 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39585 |20 |1.3.6.1.2.1.1.1.0 |10500 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39586 |20 |1.3.6.1.2.1.1.6.0 |10500 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39587 |20 |1.3.6.1.2.1.1.5.0 |10500 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39588 |20 |1.3.6.1.2.1.1.2.0 |10500 |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 |39589 |20 |1.3.6.1.2.1.1.3.0 |10500 |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 |39590 |5 | |10500 |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 |39590 |5 | |10500 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39591 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10500 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39592 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10500 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39593 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10500 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11867,14 +11881,14 @@ ROW |39597 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |39598 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10500 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39599 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10500 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39600 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10500 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39637 |17 | |10501 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39638 |20 |1.3.6.1.2.1.1.4.0 |10501 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39639 |20 |1.3.6.1.2.1.1.1.0 |10501 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39640 |20 |1.3.6.1.2.1.1.6.0 |10501 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39641 |20 |1.3.6.1.2.1.1.5.0 |10501 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39637 |17 | |10501 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39638 |20 |1.3.6.1.2.1.1.4.0 |10501 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39639 |20 |1.3.6.1.2.1.1.1.0 |10501 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39640 |20 |1.3.6.1.2.1.1.6.0 |10501 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39641 |20 |1.3.6.1.2.1.1.5.0 |10501 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39642 |20 |1.3.6.1.2.1.1.2.0 |10501 |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 |39643 |20 |1.3.6.1.2.1.1.3.0 |10501 |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 |39644 |5 | |10501 |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 |39644 |5 | |10501 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39645 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10501 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39646 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10501 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39647 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10501 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11885,14 +11899,14 @@ ROW |39651 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |39652 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10501 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39653 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10501 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39654 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10501 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39691 |17 | |10502 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39692 |20 |1.3.6.1.2.1.1.4.0 |10502 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39693 |20 |1.3.6.1.2.1.1.1.0 |10502 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39694 |20 |1.3.6.1.2.1.1.6.0 |10502 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |39695 |20 |1.3.6.1.2.1.1.5.0 |10502 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39691 |17 | |10502 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39692 |20 |1.3.6.1.2.1.1.4.0 |10502 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39693 |20 |1.3.6.1.2.1.1.1.0 |10502 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39694 |20 |1.3.6.1.2.1.1.6.0 |10502 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39695 |20 |1.3.6.1.2.1.1.5.0 |10502 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39696 |20 |1.3.6.1.2.1.1.2.0 |10502 |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 |39697 |20 |1.3.6.1.2.1.1.3.0 |10502 |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 |39698 |5 | |10502 |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 |39698 |5 | |10502 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39699 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10502 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39700 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10502 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39701 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10502 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11909,37 +11923,43 @@ ROW |39799 |7 |
ROW |39800 |7 | |10351 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |29546 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39801 |7 | |10351 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |29547 |50 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |39802 |7 | |10351 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |29545 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39805 |5 | |10084 |Zabbix stats cluster |zabbix[cluster,discovery,nodes] |1m |0 |0 |0 |4 | | | | |39804 |NULL | | |0 | | | | |0 |NULL |Zabbix cluster statistics master item. |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|uuid|
-ROW |29012 |18 | |10248 |CPU discovery |cpu.discovery[snmp] |0 |90d |0 |0 |4 | | | | |29009 |NULL | | |0 | | | | |1 |NULL |This discovery will create set of per core CPU metrics from UCD-SNMP-MIB, using {#CPU.COUNT} in preprocessing. That's the only reason why LLD is used.|0 |30d |0 | |29005 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29049 |18 | |10248 |CPU utilization |system.cpu.util[snmp,{#SNMPINDEX}] |0 |7d |365d |0 |0 | |% | | |29048 |NULL | | |0 | | | | |2 |NULL |CPU utilization in % |0 |30d |0 | |29034 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29199 |18 | |10001 |CPU utilization |system.cpu.util |0 |7d |365d |0 |0 | |% | | |29198 |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |29136 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |31365 |18 | |10001 |Memory utilization |vm.memory.utilization |0 |7d |365d |0 |0 | |% | | |31364 |NULL | | |0 | | | | |0 |NULL |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |29140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |31385 |18 | |10001 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31379 |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |31375 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |31386 |18 | |10001 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!r/s | | |31380 |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |31375 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |31387 |18 | |10001 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31381 |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |31375 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |31388 |18 | |10001 |{#DEVNAME}: Disk utilization |vfs.dev.util[{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |31382 |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |31375 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |31389 |18 | |10001 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!w/s | | |31383 |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |31375 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |31390 |18 | |10001 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[{#DEVNAME}]|0 |7d |365d |0 |0 | | | | |31384 |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |31375 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |31428 |18 | |10081 |Free swap space in % |system.swap.pfree |0 |7d |365d |0 |0 | |% | | |31427 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |31424 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |31432 |18 | |10081 |Network interfaces discovery |net.if.discovery |0 |90d |0 |0 |4 | | | | |31429 |NULL | | |0 | | | | |1 |NULL |Discovery of installed network interfaces. |0 |30d |1 | |31426 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |31456 |18 | |10081 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFGUID}"] |0 |7d |0d |0 |3 | |bps | | |31453 |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |31426 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |31457 |18 | |10081 |Interface {#IFNAME}({#IFALIAS}): Operational status|net.if.status["{#IFGUID}"] |0 |7d |0 |0 |3 | | | | |31454 |132 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |31426 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |31458 |18 | |10081 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFGUID}"] |0 |7d |0d |0 |3 | | | | |31455 |130 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |31426 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |31894 |18 | |10343 |CPU utilization |system.cpu.util |0 |7d |365d |0 |0 | |% | | |31892 |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |31857 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |31895 |18 | |10343 |Memory utilization |vm.memory.utilization |0 |7d |365d |0 |0 | |% | | |31893 |NULL | | |0 | | | | |0 |NULL |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |31890 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |31938 |18 | |10343 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31932 |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |31919 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |31939 |18 | |10343 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!r/s | | |31933 |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |31919 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |31940 |18 | |10343 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31934 |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |31919 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |31941 |18 | |10343 |{#DEVNAME}: Disk utilization |vfs.dev.util[{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |31935 |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |31919 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |31942 |18 | |10343 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!w/s | | |31936 |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |31919 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |31943 |18 | |10343 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[{#DEVNAME}]|0 |7d |365d |0 |0 | | | | |31937 |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |31919 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |32003 |18 | |10351 |Free swap space in % |system.swap.pfree |0 |7d |365d |0 |0 | |% | | |32002 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |31995 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |32009 |18 | |10351 |Network interfaces discovery |net.if.discovery |0 |90d |0 |0 |4 | | | | |32005 |NULL | | |0 | | | | |1 |NULL |Discovery of installed network interfaces. |0 |30d |1 | |32001 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |32043 |18 | |10351 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFGUID}"] |0 |7d |0d |0 |3 | |bps | | |32040 |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |32001 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |32044 |18 | |10351 |Interface {#IFNAME}({#IFALIAS}): Operational status|net.if.status["{#IFGUID}"] |0 |7d |0 |0 |3 | | | | |32041 |133 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |32001 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |32045 |18 | |10351 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFGUID}"] |0 |7d |0d |0 |3 | | | | |32042 |131 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |32001 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+FIELDS|itemid|type|snmp_oid|hostid|name |key_ |delay|history|trends|status|value_type|trapper_hosts|units |formula|logtimefmt|templateid|valuemapid|params|ipmi_sensor|authtype|username|password|publickey|privatekey|flags|interfaceid|description |inventory_link|lifetime|evaltype|jmx_endpoint|master_itemid|timeout|url |query_fields|posts|status_codes|follow_redirects|post_type|headers|retrieve_mode|request_method|output_format|verify_peer|verify_host|allow_traps|discover|uuid|
+ROW |29012 |18 | |10248 |CPU discovery |cpu.discovery[snmp] |0 |90d |0 |0 |4 | | | | |29009 |NULL | | |0 | | | | |1 |NULL |This discovery will create set of per core CPU metrics from UCD-SNMP-MIB, using {#CPU.COUNT} in preprocessing. That's the only reason why LLD is used.|0 |30d |0 | |29005 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29049 |18 | |10248 |CPU utilization |system.cpu.util[snmp,{#SNMPINDEX}] |0 |7d |365d |0 |0 | |% | | |29048 |NULL | | |0 | | | | |2 |NULL |CPU utilization in % |0 |30d |0 | |29034 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29199 |18 | |10001 |CPU utilization |system.cpu.util |0 |7d |365d |0 |0 | |% | | |29198 |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |29136 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |31365 |18 | |10001 |Memory utilization |vm.memory.utilization |0 |7d |365d |0 |0 | |% | | |31364 |NULL | | |0 | | | | |0 |NULL |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |29140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |31385 |18 | |10001 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31379 |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |31375 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |31386 |18 | |10001 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!r/s | | |31380 |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |31375 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |31387 |18 | |10001 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31381 |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |31375 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |31388 |18 | |10001 |{#DEVNAME}: Disk utilization |vfs.dev.util[{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |31382 |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |31375 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |31389 |18 | |10001 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!w/s | | |31383 |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |31375 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |31390 |18 | |10001 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31384 |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |31375 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |31428 |18 | |10081 |Free swap space in % |system.swap.pfree |0 |7d |365d |0 |0 | |% | | |31427 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |31424 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |31432 |18 | |10081 |Network interfaces discovery |net.if.discovery |0 |90d |0 |0 |4 | | | | |31429 |NULL | | |0 | | | | |1 |NULL |Discovery of installed network interfaces. |0 |30d |1 | |31426 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |31456 |18 | |10081 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFGUID}"] |0 |7d |0d |0 |3 | |bps | | |31453 |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |31426 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |31457 |18 | |10081 |Interface {#IFNAME}({#IFALIAS}): Operational status|net.if.status["{#IFGUID}"] |0 |7d |0 |0 |3 | | | | |31454 |132 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |31426 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |31458 |18 | |10081 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFGUID}"] |0 |7d |0d |0 |3 | | | | |31455 |130 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |31426 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |31894 |18 | |10343 |CPU utilization |system.cpu.util |0 |7d |365d |0 |0 | |% | | |31892 |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |31857 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |31895 |18 | |10343 |Memory utilization |vm.memory.utilization |0 |7d |365d |0 |0 | |% | | |31893 |NULL | | |0 | | | | |0 |NULL |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |31890 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |31938 |18 | |10343 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31932 |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |31919 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |31939 |18 | |10343 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!r/s | | |31933 |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |31919 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |31940 |18 | |10343 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31934 |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |31919 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |31941 |18 | |10343 |{#DEVNAME}: Disk utilization |vfs.dev.util[{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |31935 |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |31919 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |31942 |18 | |10343 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!w/s | | |31936 |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |31919 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |31943 |18 | |10343 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31937 |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |31919 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |32003 |18 | |10351 |Free swap space in % |system.swap.pfree |0 |7d |365d |0 |0 | |% | | |32002 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |31995 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |32009 |18 | |10351 |Network interfaces discovery |net.if.discovery |0 |90d |0 |0 |4 | | | | |32005 |NULL | | |0 | | | | |1 |NULL |Discovery of installed network interfaces. |0 |30d |1 | |32001 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |32043 |18 | |10351 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFGUID}"] |0 |7d |0d |0 |3 | |bps | | |32040 |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |32001 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |32044 |18 | |10351 |Interface {#IFNAME}({#IFALIAS}): Operational status|net.if.status["{#IFGUID}"] |0 |7d |0 |0 |3 | | | | |32041 |133 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |32001 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |32045 |18 | |10351 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFGUID}"] |0 |7d |0d |0 |3 | | | | |32042 |131 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |32001 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39807 |18 | |10084 |High availability cluster node discovery |zabbix.nodes.discovery |0 |90d |0 |0 |4 | | | | |39806 |NULL | | |0 | | | | |1 |NULL |LLD rule with item and trigger prototypes for node discovery |0 |30d |0 | |39805 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39812 |18 | |10084 |Cluster node [{#NODE.NAME}]: Address |zabbix.nodes.address[{#NODE.ID}] |0 |1w |0 |0 |1 | | | | |39808 |NULL | | |0 | | | | |2 |NULL |Node IPv4 address |0 |30d |0 | |39805 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39813 |18 | |10084 |Cluster node [{#NODE.NAME}]: Last access age |zabbix.nodes.lastaccess.age[{#NODE.ID}] |0 |1w |365d |0 |3 | |uptime | | |39809 |NULL | | |0 | | | | |2 |NULL |Time between database unix_timestamp() and last access time |0 |30d |0 | |39805 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39814 |18 | |10084 |Cluster node [{#NODE.NAME}]: Last access time |zabbix.nodes.lastaccess.time[{#NODE.ID}]|0 |1w |365d |0 |3 | |unixtime| | |39810 |NULL | | |0 | | | | |2 |NULL |Last access time |0 |30d |0 | |39805 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |39815 |18 | |10084 |Cluster node [{#NODE.NAME}]: Status |zabbix.nodes.status[{#NODE.ID}] |0 |1w |365d |0 |3 | | | | |39811 |565 | | |0 | | | | |2 |NULL |Cluster node status |0 |30d |0 | |39805 |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|uuid|
@@ -12059,7 +12079,7 @@ ROW |29184 |0 |
ROW |29185 |0 | |10084 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime| | |29148 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29186 |0 | |10084 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime| | |29149 |NULL | | |0 | | | | |0 |1 |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29187 |0 | |10084 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29150 |NULL | | |0 | | | | |0 |1 |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29188 |0 | |10084 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29151 |NULL | | |0 | | | | |0 |1 |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29188 |0 | |10084 |System description |system.uname |15m |2w |0 |0 |1 | | | | |29151 |NULL | | |0 | | | | |0 |1 |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29189 |0 | |10084 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |29152 |NULL | | |0 | | | | |0 |1 |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29190 |0 | |10084 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |29153 |NULL | | |0 | | | | |0 |1 |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29191 |0 | |10084 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |29154 |NULL | | |0 | | | | |0 |1 |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -14133,8 +14153,8 @@ ROW |18438 |{22191}<10m
ROW |18439 |{22192}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 | |6e476399963a414a847c4c514055bf43|
ROW |18440 |{22193}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 | |de81ef4f2c3f4f44a745a1fa1f179784|
ROW |18441 |{22194}<0 and {22195}>0&eol;and (&eol;{22196}=6 or&eol;{22196}=7 or&eol;{22196}=11 or&eol;{22196}=62 or&eol;{22196}=69 or&eol;{22196}=117&eol;)&eol;and&eol;({22197}<>2) |Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |1 |({22194}>0 and {22198}>0) or&eol;({22197}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 | |2dc62fe3cd624e2ba99caa9ff94273f6|
-ROW |18442 |({22199}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22200} or&eol;{22201}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22200}) and&eol;{22200}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{22199}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22200} and&eol;{22201}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22200}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 | |20e8f28ebc304ba185d475dbba51c4b8|
-ROW |18443 |{22202}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {22203}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{22204}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {22205}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 | |6740479821cd49c199c345dd736a11f7|
+ROW |18442 |({22199}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22200} or&eol;{22201}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22200}) and&eol;{22200}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{22199}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22200} and&eol;{22201}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22200}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 | |20e8f28ebc304ba185d475dbba51c4b8|
+ROW |18443 |{22202}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {22203}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{22204}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {22205}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 | |6740479821cd49c199c345dd736a11f7|
ROW |18444 |{$IFCONTROL:"{#IFNAME}"}=1 and {23925}=2 and ({23926}<>{23927}) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{23925}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |46918cfc713a4b1da7eed32cead0070b|
ROW |18445 |{22208}=1 |{#ENT_NAME}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 | |5d2d688ad68343ff8884c11e9d233b98|
ROW |18446 |{22209}>{$TEMP.MAX.WARN:"{#SENSOR_INFO}"}&eol;or&eol;{22210}={$TEMP.STATUS.WARN} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP.MAX.WARN:"{#SENSOR_INFO}"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{22211}<{$TEMP.MAX.WARN:"{#SENSOR_INFO}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 | |352650536eef4858be1437a720712932|
@@ -14142,13 +14162,13 @@ ROW |18447 |{22212}>{$TEMP.MAX.CRIT:"{#SENSOR_INFO}"}
ROW |18448 |{22214}<{$TEMP.MIN.CRIT:"{#SENSOR_INFO}"} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP.MIN.CRIT:"{#SENSOR_INFO}"} | |0 |3 | |NULL |0 |2 |1 |{22215}>{$TEMP.MIN.CRIT:"{#SENSOR_INFO}"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 | |7bfa2bd0177940f4aff8dc95867ceb44|
ROW |18449 |{22216}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({22217}-{22218})<5G or {22219}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 | |f1eb2ddb27d24cd99d8aba4485dfeeb9|
ROW |18450 |{22220}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({22221}-{22222})<10G or {22223}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 | |b2e084f280434a3a8291e5dc691dfd7b|
-ROW |18451 |{22224}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 | |912430a103414c6eb9c8e55c45246f48|
+ROW |18451 |{22224}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 | |912430a103414c6eb9c8e55c45246f48|
ROW |18452 |{22225}<{$MEMORY.AVAILABLE.MIN} and {22226}>0 |Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 | |3800877e8b474aa2aa83c1ecc0523db6|
ROW |18455 |{22231}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {22232}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{22233}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {22234}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 | |b4da7325b41647ab997cf6906a9cba23|
ROW |18458 |{22243}<{$MEMORY.AVAILABLE.MIN} and {22244}>0 |Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 | |1ba414b62eef4ca6b198f00a4cdd2bde|
ROW |18460 |{22247}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {22248}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{22249}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {22250}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 | |b0b3cce08e924447845859391bdf9045|
ROW |18462 |{22255}<{$MEMORY.AVAILABLE.MIN} and {22256}>0 |Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 | |f78ed17586964a46a9de0c4f183984f6|
-ROW |18463 |({22257}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22258} or&eol;{22259}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22258}) and&eol;{22258}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{22257}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22258} and&eol;{22259}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22258}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 | |11e2c8023463482da878cdad5bb7de76|
+ROW |18463 |({22257}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22258} or&eol;{22259}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22258}) and&eol;{22258}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{22257}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22258} and&eol;{22259}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22258}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 | |11e2c8023463482da878cdad5bb7de76|
ROW |18464 |{22260}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {22261}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{22262}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {22263}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 | |6e8269b2260e42de97aec08043a768df|
ROW |18465 |({22264}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22265} or&eol;{22266}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22265}) and&eol;{22265}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{22264}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22265} and&eol;{22266}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22265}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 | |c0e8e89730f04d92b26dd5da215894e1|
ROW |18466 |{22267}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {22268}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{22269}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {22270}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 | |2a59eec0032a41e48e2443507cbd173d|
@@ -16323,6 +16343,8 @@ ROW |21188 |{28235}>0 and {28235}<600
ROW |21189 |{28236}<>{28237} |Gateway [{#NAME}]: The number of connected edges is changed | |0 |2 |The number of connected edges is changed. |NULL |0 |2 |0 | |0 | |1 | |0 | |f0d7bdb2ac3540258ab6a276b43a382c|
ROW |21190 |{28238}>0 and {28238}<600 |Gateway [{#NAME}]: Gateway has been restarted (uptime < 10m) | |0 |2 |Gateway was restarted. |NULL |0 |2 |0 | |0 | |0 | |0 | |e51ea2da27284067bd3ec8fa4faffdde|
ROW |21191 |{28239}<>1 |Link [{#NAME}]:[{#IP}]: Link state is not "STABLE" | |0 |2 |Link state is not "STABLE". |NULL |0 |2 |0 | |0 | |0 | |0 | |abceaab09aea4cb482dc4b554502429b|
+ROW |21194 |{28242}<>{28243} |Cluster node [{#NODE.NAME}]: Status changed | |0 |1 |The state of the node has changed. Confirm to close. |NULL |0 |2 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 | |8d48978fb5724d19a950aa6eb8a3dd75|
+ROW |21196 |{28246}<>{28247} |Cluster node [{#NODE.NAME}]: Status changed | |0 |1 |The state of the node has changed. Confirm to close. |NULL |0 |2 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 | |5d68b55175924cb4adde600a019496c4|
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|uuid|
@@ -17100,6 +17122,7 @@ ROW |21161 |{28179}<0 and {28180}>0&eol;and (&eol;{28181}=6 or&eol;{28181}=
ROW |21162 |{$IFCONTROL:"{#IFNAME}"}=1 and {28184}=2 and ({28185}<>{28186}) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |16841 |0 |2 |1 |{28184}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | | |
ROW |21192 |{28240}=1 |Zabbix agent is not available (or nodata for {$AGENT.NODATA_TIMEOUT}) | |0 |3 |For active agents, nodata() with agent.ping is used with {$AGENT.NODATA_TIMEOUT} as time threshold. |16197 |0 |0 |0 | |0 | |1 | |0 | | |
ROW |21193 |{28241}=1 |Zabbix agent is not available (or nodata for {$AGENT.NODATA_TIMEOUT}) | |0 |3 |For active agents, nodata() with agent.ping is used with {$AGENT.NODATA_TIMEOUT} as time threshold. |16197 |0 |0 |0 | |0 | |1 | |0 | | |
+ROW |21195 |{28244}<>{28245} |Cluster node [{#NODE.NAME}]: Status changed | |0 |1 |The state of the node has changed. Confirm to close. |21194 |0 |2 |0 | |0 | |1 |Current value: {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|uuid|
@@ -17395,1554 +17418,1554 @@ ROW |21155 |{28166}>{$ICMP_RESPONSE_TIME_WARN}
TABLE |trigger_depends
FIELDS|triggerdepid|triggerid_down|triggerid_up|
ROW |25229 |18761 |18762 |
-ROW |30674 |17412 |17411 |
-ROW |30675 |17414 |17413 |
-ROW |30676 |17416 |17415 |
-ROW |30677 |15944 |15947 |
-ROW |30678 |15944 |15943 |
-ROW |30679 |15943 |15947 |
-ROW |30680 |16888 |15947 |
-ROW |30681 |16888 |15943 |
-ROW |30682 |15948 |15949 |
-ROW |30683 |15950 |15949 |
-ROW |30684 |17429 |17428 |
-ROW |30685 |17431 |17430 |
-ROW |30686 |17433 |17432 |
-ROW |30687 |17355 |17354 |
-ROW |30688 |17358 |17357 |
-ROW |30689 |18960 |18962 |
-ROW |30690 |16743 |16744 |
-ROW |30691 |16784 |16785 |
-ROW |30692 |16790 |16791 |
-ROW |30693 |16892 |16900 |
-ROW |30694 |16894 |16900 |
-ROW |30695 |17459 |17458 |
-ROW |30696 |17463 |17458 |
-ROW |30697 |17471 |17480 |
-ROW |30698 |17476 |17481 |
-ROW |30699 |17478 |17480 |
-ROW |30700 |17479 |17481 |
-ROW |30701 |17483 |17482 |
-ROW |30702 |17486 |17485 |
-ROW |30703 |16646 |16647 |
-ROW |30704 |18965 |16660 |
-ROW |30705 |16809 |16810 |
-ROW |30706 |18966 |16677 |
-ROW |30707 |16902 |16904 |
-ROW |30708 |16904 |16905 |
-ROW |30709 |16909 |16906 |
-ROW |30710 |16910 |16912 |
-ROW |30711 |16912 |16913 |
-ROW |30712 |16917 |16914 |
-ROW |30713 |17962 |17963 |
-ROW |30714 |17962 |17958 |
-ROW |30715 |16752 |16753 |
-ROW |30716 |15955 |15957 |
-ROW |30717 |15955 |15954 |
-ROW |30718 |15954 |15957 |
-ROW |30719 |15956 |15957 |
-ROW |30720 |15956 |15954 |
-ROW |30721 |16678 |15957 |
-ROW |30722 |16678 |15954 |
-ROW |30723 |15961 |15960 |
-ROW |30724 |15962 |15960 |
-ROW |30725 |16679 |15960 |
-ROW |30726 |17090 |17096 |
-ROW |30727 |17093 |17096 |
-ROW |30728 |17101 |17098 |
-ROW |30729 |16257 |16255 |
-ROW |30730 |16257 |16256 |
-ROW |30731 |16256 |16255 |
-ROW |30732 |16251 |16255 |
-ROW |30733 |16251 |16256 |
-ROW |30734 |16443 |16255 |
-ROW |30735 |16443 |16256 |
-ROW |30736 |16270 |16269 |
-ROW |30737 |16448 |16269 |
-ROW |30738 |16265 |16269 |
-ROW |30739 |17503 |17505 |
-ROW |30740 |17512 |17511 |
-ROW |30741 |17513 |17505 |
-ROW |30747 |17516 |17518 |
-ROW |30748 |17517 |17516 |
-ROW |30749 |17517 |17518 |
-ROW |30750 |17517 |17519 |
-ROW |30751 |17519 |17518 |
-ROW |30752 |18918 |18917 |
-ROW |30753 |17973 |17965 |
-ROW |30754 |17974 |17966 |
-ROW |30755 |17141 |17151 |
-ROW |30756 |17142 |17141 |
-ROW |30757 |17142 |17151 |
-ROW |30758 |17143 |17151 |
-ROW |30759 |17144 |17143 |
-ROW |30760 |17144 |17151 |
-ROW |30761 |17146 |17145 |
-ROW |30762 |17147 |17151 |
-ROW |30763 |17148 |17147 |
-ROW |30764 |17148 |17151 |
-ROW |30765 |17150 |17149 |
-ROW |30766 |17152 |17168 |
-ROW |30767 |17153 |17152 |
-ROW |30768 |17153 |17168 |
-ROW |30769 |17154 |17168 |
-ROW |30770 |17155 |17154 |
-ROW |30771 |17155 |17168 |
-ROW |30772 |17156 |17168 |
-ROW |30773 |17157 |17156 |
-ROW |30774 |17157 |17168 |
-ROW |30775 |17158 |17168 |
-ROW |30776 |17159 |17158 |
-ROW |30777 |17159 |17168 |
-ROW |30778 |17160 |17168 |
-ROW |30779 |17161 |17160 |
-ROW |30780 |17161 |17168 |
-ROW |30781 |17163 |17162 |
-ROW |30782 |17164 |17168 |
-ROW |30783 |17165 |17164 |
-ROW |30784 |17165 |17168 |
-ROW |30785 |17166 |17168 |
-ROW |30786 |17167 |17166 |
-ROW |30787 |17167 |17168 |
-ROW |30788 |17169 |17168 |
-ROW |30789 |17170 |17168 |
-ROW |30790 |17170 |17169 |
-ROW |30791 |17171 |17168 |
-ROW |30792 |17172 |17168 |
-ROW |30793 |17172 |17171 |
-ROW |30794 |17540 |17541 |
-ROW |30795 |16833 |16920 |
-ROW |30796 |16920 |16921 |
-ROW |30797 |18987 |18986 |
-ROW |30798 |18989 |18988 |
-ROW |30799 |18993 |18992 |
-ROW |30800 |18994 |18992 |
-ROW |30801 |19009 |19010 |
-ROW |30802 |17978 |17977 |
-ROW |30803 |17980 |17979 |
-ROW |30804 |17984 |17983 |
-ROW |30805 |17985 |17983 |
-ROW |30806 |18000 |18001 |
-ROW |30807 |18225 |18224 |
-ROW |30808 |18237 |18236 |
-ROW |30809 |16929 |16928 |
-ROW |30810 |16940 |17084 |
-ROW |30811 |18537 |18536 |
-ROW |30812 |18539 |18538 |
-ROW |30813 |18541 |18540 |
-ROW |30814 |16719 |16721 |
-ROW |30815 |16975 |16723 |
-ROW |30816 |16729 |16728 |
-ROW |30817 |16730 |16728 |
-ROW |30818 |16756 |16758 |
-ROW |30819 |16979 |16759 |
-ROW |30820 |16765 |16764 |
-ROW |30821 |16766 |16764 |
-ROW |30822 |16734 |16736 |
-ROW |30823 |16983 |16732 |
-ROW |30824 |16741 |16740 |
-ROW |30825 |16742 |16740 |
-ROW |30826 |17192 |17191 |
-ROW |30827 |17194 |17195 |
-ROW |30828 |17199 |17198 |
-ROW |30829 |17546 |17545 |
-ROW |30830 |17547 |17548 |
-ROW |30831 |16997 |16984 |
-ROW |30832 |17002 |17003 |
-ROW |30833 |17006 |17005 |
-ROW |30834 |17011 |17010 |
-ROW |30835 |17550 |17549 |
-ROW |30836 |17551 |17552 |
-ROW |30837 |17391 |17396 |
-ROW |30838 |17395 |17396 |
-ROW |30839 |16683 |16687 |
-ROW |30840 |14252 |14251 |
-ROW |30841 |14294 |14293 |
-ROW |30842 |14312 |14311 |
-ROW |30843 |14328 |14327 |
-ROW |30844 |14348 |14347 |
-ROW |30845 |14357 |14356 |
-ROW |30846 |14390 |14389 |
-ROW |30847 |14404 |14403 |
-ROW |30848 |14452 |14451 |
-ROW |30849 |14469 |14468 |
-ROW |30850 |14487 |14486 |
-ROW |30851 |14506 |14505 |
-ROW |30852 |14535 |14534 |
-ROW |30853 |14545 |14544 |
-ROW |30854 |14583 |14582 |
-ROW |30855 |14599 |14598 |
-ROW |30856 |14616 |14615 |
-ROW |30857 |14653 |14652 |
-ROW |30858 |14674 |14673 |
-ROW |30859 |14692 |14691 |
-ROW |30860 |14705 |14704 |
-ROW |30861 |14718 |14717 |
-ROW |30862 |14907 |14906 |
-ROW |30863 |15221 |15220 |
-ROW |30864 |15702 |15701 |
-ROW |30865 |15724 |15723 |
-ROW |30866 |15756 |15755 |
-ROW |30867 |15820 |15819 |
-ROW |30868 |15841 |15840 |
-ROW |30869 |15991 |15990 |
-ROW |30870 |16018 |16017 |
-ROW |30871 |16454 |16453 |
-ROW |30872 |17924 |17923 |
-ROW |30873 |18178 |18177 |
-ROW |30874 |14253 |14252 |
-ROW |30875 |14295 |14294 |
-ROW |30876 |14313 |14312 |
-ROW |30877 |14329 |14328 |
-ROW |30878 |14349 |14348 |
-ROW |30879 |14358 |14357 |
-ROW |30880 |14391 |14390 |
-ROW |30881 |14405 |14404 |
-ROW |30882 |14453 |14452 |
-ROW |30883 |14470 |14469 |
-ROW |30884 |14488 |14487 |
-ROW |30885 |14507 |14506 |
-ROW |30886 |14536 |14535 |
-ROW |30887 |14546 |14545 |
-ROW |30888 |14584 |14583 |
-ROW |30889 |14600 |14599 |
-ROW |30890 |14617 |14616 |
-ROW |30891 |14654 |14653 |
-ROW |30892 |14675 |14674 |
-ROW |30893 |14693 |14692 |
-ROW |30894 |14706 |14705 |
-ROW |30895 |14719 |14718 |
-ROW |30896 |14908 |14907 |
-ROW |30897 |15222 |15221 |
-ROW |30898 |15703 |15702 |
-ROW |30899 |15725 |15724 |
-ROW |30900 |15757 |15756 |
-ROW |30901 |15821 |15820 |
-ROW |30902 |15842 |15841 |
-ROW |30903 |15992 |15991 |
-ROW |30904 |16019 |16018 |
-ROW |30905 |16455 |16454 |
-ROW |30906 |17925 |17924 |
-ROW |30907 |18179 |18178 |
-ROW |30908 |14253 |14251 |
-ROW |30909 |14295 |14293 |
-ROW |30910 |14313 |14311 |
-ROW |30911 |14329 |14327 |
-ROW |30912 |14349 |14347 |
-ROW |30913 |14358 |14356 |
-ROW |30914 |14391 |14389 |
-ROW |30915 |14405 |14403 |
-ROW |30916 |14453 |14451 |
-ROW |30917 |14470 |14468 |
-ROW |30918 |14488 |14486 |
-ROW |30919 |14507 |14505 |
-ROW |30920 |14536 |14534 |
-ROW |30921 |14546 |14544 |
-ROW |30922 |14584 |14582 |
-ROW |30923 |14600 |14598 |
-ROW |30924 |14617 |14615 |
-ROW |30925 |14654 |14652 |
-ROW |30926 |14675 |14673 |
-ROW |30927 |14693 |14691 |
-ROW |30928 |14706 |14704 |
-ROW |30929 |14719 |14717 |
-ROW |30930 |14908 |14906 |
-ROW |30931 |15222 |15220 |
-ROW |30932 |15703 |15701 |
-ROW |30933 |15725 |15723 |
-ROW |30934 |15757 |15755 |
-ROW |30935 |15821 |15819 |
-ROW |30936 |15842 |15840 |
-ROW |30937 |15992 |15990 |
-ROW |30938 |16019 |16017 |
-ROW |30939 |16455 |16453 |
-ROW |30940 |17925 |17923 |
-ROW |30941 |18179 |18177 |
-ROW |30942 |16287 |16289 |
-ROW |30943 |16279 |16285 |
-ROW |30944 |16290 |16348 |
-ROW |30945 |16291 |16349 |
-ROW |30946 |16292 |16350 |
-ROW |30947 |16293 |16351 |
-ROW |30948 |16294 |16352 |
-ROW |30949 |16295 |16353 |
-ROW |30950 |16296 |16354 |
-ROW |30951 |16297 |16355 |
-ROW |30952 |16298 |16356 |
-ROW |30953 |16299 |16357 |
-ROW |30954 |16300 |16358 |
-ROW |30955 |16301 |16359 |
-ROW |30956 |16302 |16360 |
-ROW |30957 |16303 |16361 |
-ROW |30958 |16304 |16362 |
-ROW |30959 |16305 |16363 |
-ROW |30960 |16306 |16364 |
-ROW |30961 |16307 |16365 |
-ROW |30962 |16308 |16366 |
-ROW |30963 |16309 |16367 |
-ROW |30964 |16311 |16369 |
-ROW |30965 |16312 |16370 |
-ROW |30966 |16313 |16371 |
-ROW |30967 |16314 |16372 |
-ROW |30968 |16315 |16373 |
-ROW |30969 |16316 |16374 |
-ROW |30970 |16317 |16375 |
-ROW |30971 |16318 |16376 |
-ROW |30972 |16457 |16458 |
-ROW |30973 |17927 |17928 |
-ROW |30974 |18181 |18182 |
-ROW |30975 |16289 |14293 |
-ROW |30976 |16285 |14717 |
-ROW |30977 |16348 |14311 |
-ROW |30978 |16349 |14327 |
-ROW |30979 |16350 |14347 |
-ROW |30980 |16351 |14356 |
-ROW |30981 |16352 |14389 |
-ROW |30982 |16353 |14403 |
-ROW |30983 |16354 |14451 |
-ROW |30984 |16355 |14468 |
-ROW |30985 |16356 |14486 |
-ROW |30986 |16357 |14505 |
-ROW |30987 |16358 |14534 |
-ROW |30988 |16359 |14544 |
-ROW |30989 |16360 |14582 |
-ROW |30990 |16361 |14598 |
-ROW |30991 |16362 |14615 |
-ROW |30992 |16363 |14652 |
-ROW |30993 |16364 |14673 |
-ROW |30994 |16365 |14691 |
-ROW |30995 |16366 |14704 |
-ROW |30996 |16367 |14906 |
-ROW |30997 |16369 |15220 |
-ROW |30998 |16370 |15701 |
-ROW |30999 |16371 |15723 |
-ROW |31000 |16372 |15755 |
-ROW |31001 |16373 |15819 |
-ROW |31002 |16374 |15840 |
-ROW |31003 |16375 |15990 |
-ROW |31004 |16376 |16017 |
-ROW |31005 |16458 |16453 |
-ROW |31006 |17928 |17923 |
-ROW |31007 |18182 |18177 |
-ROW |31008 |16631 |16630 |
-ROW |31009 |16640 |16636 |
-ROW |31010 |16642 |16638 |
-ROW |31011 |16643 |16639 |
-ROW |31012 |15695 |16863 |
-ROW |31013 |18242 |16863 |
-ROW |31014 |18243 |16863 |
-ROW |31015 |15694 |16868 |
-ROW |31016 |15696 |16864 |
-ROW |31017 |15697 |16865 |
-ROW |31018 |18244 |16864 |
-ROW |31019 |18245 |16865 |
-ROW |31020 |18246 |16868 |
-ROW |31021 |18247 |16864 |
-ROW |31022 |18248 |16865 |
-ROW |31023 |18249 |16868 |
-ROW |31024 |15671 |16841 |
-ROW |31025 |18250 |16841 |
-ROW |31026 |18251 |16841 |
-ROW |31027 |15672 |16842 |
-ROW |31028 |15673 |16843 |
-ROW |31029 |15674 |16844 |
-ROW |31030 |15675 |16845 |
-ROW |31031 |15676 |16846 |
-ROW |31032 |15677 |16847 |
-ROW |31033 |15678 |16848 |
-ROW |31034 |15679 |16849 |
-ROW |31035 |15680 |16850 |
-ROW |31036 |15681 |16851 |
-ROW |31037 |15682 |16852 |
-ROW |31038 |15683 |16853 |
-ROW |31039 |15684 |16854 |
-ROW |31040 |15685 |16855 |
-ROW |31041 |15686 |16856 |
-ROW |31042 |15687 |16857 |
-ROW |31043 |15689 |16858 |
-ROW |31044 |15691 |16860 |
-ROW |31045 |15708 |16861 |
-ROW |31046 |15997 |16862 |
-ROW |31047 |18252 |16842 |
-ROW |31048 |18253 |16843 |
-ROW |31049 |18254 |16844 |
-ROW |31050 |18255 |16845 |
-ROW |31051 |18256 |16846 |
-ROW |31052 |18257 |16847 |
-ROW |31053 |18258 |16848 |
-ROW |31054 |18259 |16849 |
-ROW |31055 |18260 |16850 |
-ROW |31056 |18261 |16851 |
-ROW |31057 |18262 |16852 |
-ROW |31058 |18263 |16853 |
-ROW |31059 |18264 |16854 |
-ROW |31060 |18265 |16855 |
-ROW |31061 |18266 |16856 |
-ROW |31062 |18267 |16857 |
-ROW |31063 |18268 |16858 |
-ROW |31064 |18270 |16860 |
-ROW |31065 |18271 |16861 |
-ROW |31066 |18272 |16862 |
-ROW |31067 |18273 |16842 |
-ROW |31068 |18274 |16843 |
-ROW |31069 |18275 |16844 |
-ROW |31070 |18276 |16845 |
-ROW |31071 |18277 |16846 |
-ROW |31072 |18278 |16847 |
-ROW |31073 |18279 |16848 |
-ROW |31074 |18280 |16849 |
-ROW |31075 |18281 |16850 |
-ROW |31076 |18282 |16851 |
-ROW |31077 |18283 |16852 |
-ROW |31078 |18284 |16853 |
-ROW |31079 |18285 |16854 |
-ROW |31080 |18286 |16855 |
-ROW |31081 |18287 |16856 |
-ROW |31082 |18288 |16857 |
-ROW |31083 |18289 |16858 |
-ROW |31084 |18291 |16860 |
-ROW |31085 |18292 |16861 |
-ROW |31086 |18293 |16862 |
-ROW |31087 |15698 |16866 |
-ROW |31088 |18294 |16866 |
-ROW |31089 |18295 |16866 |
-ROW |31090 |16028 |16867 |
-ROW |31091 |18296 |16867 |
-ROW |31092 |18297 |16867 |
-ROW |31093 |18100 |18099 |
-ROW |31094 |18106 |18105 |
-ROW |31095 |14318 |14319 |
-ROW |31096 |17554 |15717 |
-ROW |31097 |17555 |15717 |
-ROW |31098 |17555 |17554 |
-ROW |31099 |17556 |15717 |
-ROW |31100 |17557 |15717 |
-ROW |31101 |17557 |17556 |
-ROW |31102 |17559 |17558 |
-ROW |31103 |17561 |17560 |
-ROW |31104 |17563 |17562 |
-ROW |31105 |17565 |17564 |
-ROW |31106 |15721 |15720 |
-ROW |31107 |15394 |15393 |
-ROW |31108 |15392 |15391 |
-ROW |31109 |17322 |14339 |
-ROW |31110 |15382 |15381 |
-ROW |31111 |15380 |15379 |
-ROW |31112 |16504 |16505 |
-ROW |31113 |14372 |14373 |
-ROW |31114 |15386 |15385 |
-ROW |31115 |15384 |15383 |
-ROW |31116 |14380 |14381 |
-ROW |31117 |18299 |18298 |
-ROW |31118 |18300 |18299 |
-ROW |31119 |18300 |18298 |
-ROW |31120 |18303 |18302 |
-ROW |31121 |18309 |18308 |
-ROW |31122 |18311 |18316 |
-ROW |31123 |18312 |18316 |
-ROW |31124 |18313 |18316 |
-ROW |31125 |18314 |18316 |
-ROW |31126 |18315 |18316 |
-ROW |31127 |18319 |18318 |
-ROW |31128 |18321 |18320 |
-ROW |31129 |18323 |18322 |
-ROW |31130 |18326 |18325 |
-ROW |31131 |18327 |18326 |
-ROW |31132 |18327 |18325 |
-ROW |31133 |18330 |18329 |
-ROW |31134 |18336 |18335 |
-ROW |31135 |18338 |18343 |
-ROW |31136 |18339 |18343 |
-ROW |31137 |18340 |18343 |
-ROW |31138 |18341 |18343 |
-ROW |31139 |18342 |18343 |
-ROW |31140 |18346 |18345 |
-ROW |31141 |18348 |18347 |
-ROW |31142 |18350 |18349 |
-ROW |31143 |18353 |18352 |
-ROW |31144 |18354 |18353 |
-ROW |31145 |18354 |18352 |
-ROW |31146 |18357 |18356 |
-ROW |31147 |18363 |18362 |
-ROW |31148 |18365 |18370 |
-ROW |31149 |18366 |18370 |
-ROW |31150 |18367 |18370 |
-ROW |31151 |18368 |18370 |
-ROW |31152 |18369 |18370 |
-ROW |31153 |18373 |18372 |
-ROW |31154 |18375 |18374 |
-ROW |31155 |18377 |18376 |
-ROW |31156 |18380 |18379 |
-ROW |31157 |18381 |18380 |
-ROW |31158 |18381 |18379 |
-ROW |31159 |18384 |18383 |
-ROW |31160 |18390 |18389 |
-ROW |31161 |18392 |18397 |
-ROW |31162 |18393 |18397 |
-ROW |31163 |18394 |18397 |
-ROW |31164 |18395 |18397 |
-ROW |31165 |18396 |18397 |
-ROW |31166 |18400 |18399 |
-ROW |31167 |18402 |18401 |
-ROW |31168 |18404 |18403 |
-ROW |31169 |18407 |18406 |
-ROW |31170 |18408 |18407 |
-ROW |31171 |18408 |18406 |
-ROW |31172 |18411 |18410 |
-ROW |31173 |18417 |18416 |
-ROW |31174 |18419 |18424 |
-ROW |31175 |18420 |18424 |
-ROW |31176 |18421 |18424 |
-ROW |31177 |18422 |18424 |
-ROW |31178 |18423 |18424 |
-ROW |31179 |18427 |18426 |
-ROW |31180 |18429 |18428 |
-ROW |31181 |18431 |18430 |
-ROW |31182 |15347 |15346 |
-ROW |31183 |15345 |15344 |
-ROW |31184 |17567 |17566 |
-ROW |31185 |15363 |15360 |
-ROW |31186 |15364 |15361 |
-ROW |31187 |15365 |15362 |
-ROW |31188 |15357 |15354 |
-ROW |31189 |15358 |15355 |
-ROW |31190 |15359 |15356 |
-ROW |31191 |17571 |17568 |
-ROW |31192 |17572 |17569 |
-ROW |31193 |17573 |17570 |
-ROW |31194 |15334 |15333 |
-ROW |31195 |15332 |15331 |
-ROW |31196 |14460 |14461 |
-ROW |31197 |14476 |14477 |
-ROW |31198 |14495 |14496 |
-ROW |31199 |14511 |17574 |
-ROW |31200 |19666 |19665 |
-ROW |31201 |19667 |19668 |
-ROW |31202 |14551 |14552 |
-ROW |31203 |15374 |15373 |
-ROW |31204 |15376 |15375 |
-ROW |31205 |14914 |14915 |
-ROW |31206 |14589 |14590 |
-ROW |31207 |15338 |15337 |
-ROW |31208 |17333 |17332 |
-ROW |31209 |14624 |14625 |
-ROW |31210 |18434 |18433 |
-ROW |31211 |18435 |18434 |
-ROW |31212 |18435 |18433 |
-ROW |31213 |18438 |18439 |
-ROW |31214 |18439 |18433 |
-ROW |31215 |18441 |18444 |
-ROW |31216 |18442 |18444 |
-ROW |31217 |18443 |18444 |
-ROW |31218 |18446 |18447 |
-ROW |31219 |18450 |18449 |
-ROW |31220 |19670 |19669 |
-ROW |31221 |19671 |19669 |
-ROW |31222 |19671 |19670 |
-ROW |31223 |19673 |19674 |
-ROW |31224 |19674 |19669 |
-ROW |31225 |19675 |19678 |
-ROW |31226 |19676 |19678 |
-ROW |31227 |19677 |19678 |
-ROW |31228 |19685 |19684 |
-ROW |31229 |19688 |19687 |
-ROW |31230 |19696 |19695 |
-ROW |31231 |19698 |19697 |
-ROW |31232 |19699 |19697 |
-ROW |31233 |19699 |19698 |
-ROW |31234 |19701 |19702 |
-ROW |31235 |19702 |19697 |
-ROW |31236 |19703 |19706 |
-ROW |31237 |19704 |19706 |
-ROW |31238 |19705 |19706 |
-ROW |31239 |19713 |19712 |
-ROW |31240 |19716 |19715 |
-ROW |31241 |19724 |19723 |
-ROW |31242 |19726 |19725 |
-ROW |31243 |19727 |19725 |
-ROW |31244 |19727 |19726 |
-ROW |31245 |19729 |19730 |
-ROW |31246 |19730 |19725 |
-ROW |31247 |19731 |19734 |
-ROW |31248 |19732 |19734 |
-ROW |31249 |19733 |19734 |
-ROW |31250 |19741 |19740 |
-ROW |31251 |19744 |19743 |
-ROW |31252 |19752 |19751 |
-ROW |31253 |19754 |19753 |
-ROW |31254 |19755 |19753 |
-ROW |31255 |19755 |19754 |
-ROW |31256 |19757 |19758 |
-ROW |31257 |19758 |19753 |
-ROW |31258 |19759 |19762 |
-ROW |31259 |19760 |19762 |
-ROW |31260 |19761 |19762 |
-ROW |31261 |19769 |19768 |
-ROW |31262 |19772 |19771 |
-ROW |31263 |19780 |19779 |
-ROW |31264 |19782 |19781 |
-ROW |31265 |19783 |19781 |
-ROW |31266 |19783 |19782 |
-ROW |31267 |19785 |19786 |
-ROW |31268 |19786 |19781 |
-ROW |31269 |19787 |19790 |
-ROW |31270 |19788 |19790 |
-ROW |31271 |19789 |19790 |
-ROW |31272 |19797 |19796 |
-ROW |31273 |19800 |19799 |
-ROW |31274 |19808 |19807 |
-ROW |31275 |19810 |19809 |
-ROW |31276 |19811 |19809 |
-ROW |31277 |19811 |19810 |
-ROW |31278 |19813 |19814 |
-ROW |31279 |19814 |19809 |
-ROW |31280 |19815 |19818 |
-ROW |31281 |19816 |19818 |
-ROW |31282 |19817 |19818 |
-ROW |31283 |19825 |19824 |
-ROW |31284 |19828 |19827 |
-ROW |31285 |19836 |19835 |
-ROW |31286 |19838 |19837 |
-ROW |31287 |19839 |19837 |
-ROW |31288 |19839 |19838 |
-ROW |31289 |19841 |19842 |
-ROW |31290 |19842 |19837 |
-ROW |31291 |19843 |19846 |
-ROW |31292 |19844 |19846 |
-ROW |31293 |19845 |19846 |
-ROW |31294 |19853 |19852 |
-ROW |31295 |19856 |19855 |
-ROW |31296 |19864 |19863 |
-ROW |31297 |19866 |19865 |
-ROW |31298 |19867 |19865 |
-ROW |31299 |19867 |19866 |
-ROW |31300 |19869 |19870 |
-ROW |31301 |19870 |19865 |
-ROW |31302 |19871 |19874 |
-ROW |31303 |19872 |19874 |
-ROW |31304 |19873 |19874 |
-ROW |31305 |19881 |19880 |
-ROW |31306 |19884 |19883 |
-ROW |31307 |19892 |19891 |
-ROW |31308 |19894 |19893 |
-ROW |31309 |19895 |19893 |
-ROW |31310 |19895 |19894 |
-ROW |31311 |19897 |19898 |
-ROW |31312 |19898 |19893 |
-ROW |31313 |19899 |19902 |
-ROW |31314 |19900 |19902 |
-ROW |31315 |19901 |19902 |
-ROW |31316 |19909 |19908 |
-ROW |31317 |19912 |19911 |
-ROW |31318 |19920 |19919 |
-ROW |31319 |19922 |19921 |
-ROW |31320 |19923 |19921 |
-ROW |31321 |19923 |19922 |
-ROW |31322 |19925 |19926 |
-ROW |31323 |19926 |19921 |
-ROW |31324 |19927 |19930 |
-ROW |31325 |19928 |19930 |
-ROW |31326 |19929 |19930 |
-ROW |31327 |19937 |19936 |
-ROW |31328 |19940 |19939 |
-ROW |31329 |19948 |19947 |
-ROW |31330 |19950 |19949 |
-ROW |31331 |19951 |19949 |
-ROW |31332 |19951 |19950 |
-ROW |31333 |19953 |19954 |
-ROW |31334 |19954 |19949 |
-ROW |31335 |19955 |19958 |
-ROW |31336 |19956 |19958 |
-ROW |31337 |19957 |19958 |
-ROW |31338 |19965 |19964 |
-ROW |31339 |19968 |19967 |
-ROW |31340 |19976 |19975 |
-ROW |31341 |19978 |19977 |
-ROW |31342 |19979 |19977 |
-ROW |31343 |19979 |19978 |
-ROW |31344 |19981 |19982 |
-ROW |31345 |19982 |19977 |
-ROW |31346 |19983 |19986 |
-ROW |31347 |19984 |19986 |
-ROW |31348 |19985 |19986 |
-ROW |31349 |19993 |19992 |
-ROW |31350 |19996 |19995 |
-ROW |31351 |20004 |20003 |
-ROW |31352 |20006 |20005 |
-ROW |31353 |20007 |20005 |
-ROW |31354 |20007 |20006 |
-ROW |31355 |20009 |20010 |
-ROW |31356 |20010 |20005 |
-ROW |31357 |20011 |20014 |
-ROW |31358 |20012 |20014 |
-ROW |31359 |20013 |20014 |
-ROW |31360 |20021 |20020 |
-ROW |31361 |20024 |20023 |
-ROW |31362 |20032 |20031 |
-ROW |31363 |20034 |20033 |
-ROW |31364 |20035 |20033 |
-ROW |31365 |20035 |20034 |
-ROW |31366 |20037 |20038 |
-ROW |31367 |20038 |20033 |
-ROW |31368 |20039 |20042 |
-ROW |31369 |20040 |20042 |
-ROW |31370 |20041 |20042 |
-ROW |31371 |20049 |20048 |
-ROW |31372 |20052 |20051 |
-ROW |31373 |20060 |20059 |
-ROW |31374 |20062 |20061 |
-ROW |31375 |20063 |20061 |
-ROW |31376 |20063 |20062 |
-ROW |31377 |20065 |20066 |
-ROW |31378 |20066 |20061 |
-ROW |31379 |20067 |20070 |
-ROW |31380 |20068 |20070 |
-ROW |31381 |20069 |20070 |
-ROW |31382 |20077 |20076 |
-ROW |31383 |20080 |20079 |
-ROW |31384 |20088 |20087 |
-ROW |31385 |20090 |20089 |
-ROW |31386 |20091 |20089 |
-ROW |31387 |20091 |20090 |
-ROW |31388 |20093 |20094 |
-ROW |31389 |20094 |20089 |
-ROW |31390 |20095 |20098 |
-ROW |31391 |20096 |20098 |
-ROW |31392 |20097 |20098 |
-ROW |31393 |20105 |20104 |
-ROW |31394 |20108 |20107 |
-ROW |31395 |20116 |20115 |
-ROW |31396 |20118 |20117 |
-ROW |31397 |20119 |20117 |
-ROW |31398 |20119 |20118 |
-ROW |31399 |20121 |20122 |
-ROW |31400 |20122 |20117 |
-ROW |31401 |20123 |20126 |
-ROW |31402 |20124 |20126 |
-ROW |31403 |20125 |20126 |
-ROW |31404 |20133 |20132 |
-ROW |31405 |20136 |20135 |
-ROW |31406 |20144 |20143 |
-ROW |31407 |20146 |20145 |
-ROW |31408 |20147 |20145 |
-ROW |31409 |20147 |20146 |
-ROW |31410 |20149 |20150 |
-ROW |31411 |20150 |20145 |
-ROW |31412 |20151 |20154 |
-ROW |31413 |20152 |20154 |
-ROW |31414 |20153 |20154 |
-ROW |31415 |20161 |20160 |
-ROW |31416 |20164 |20163 |
-ROW |31417 |20172 |20171 |
-ROW |31418 |20174 |20173 |
-ROW |31419 |20175 |20173 |
-ROW |31420 |20175 |20174 |
-ROW |31421 |20177 |20178 |
-ROW |31422 |20178 |20173 |
-ROW |31423 |20179 |20182 |
-ROW |31424 |20180 |20182 |
-ROW |31425 |20181 |20182 |
-ROW |31426 |20189 |20188 |
-ROW |31427 |20192 |20191 |
-ROW |31428 |20200 |20199 |
-ROW |31429 |20202 |20201 |
-ROW |31430 |20203 |20201 |
-ROW |31431 |20203 |20202 |
-ROW |31432 |20205 |20206 |
-ROW |31433 |20206 |20201 |
-ROW |31434 |20207 |20210 |
-ROW |31435 |20208 |20210 |
-ROW |31436 |20209 |20210 |
-ROW |31437 |20217 |20216 |
-ROW |31438 |20220 |20219 |
-ROW |31439 |20228 |20227 |
-ROW |31440 |20230 |20229 |
-ROW |31441 |20231 |20229 |
-ROW |31442 |20231 |20230 |
-ROW |31443 |20233 |20234 |
-ROW |31444 |20234 |20229 |
-ROW |31445 |20235 |20238 |
-ROW |31446 |20236 |20238 |
-ROW |31447 |20237 |20238 |
-ROW |31448 |20245 |20244 |
-ROW |31449 |20248 |20247 |
-ROW |31450 |20256 |20255 |
-ROW |31451 |20258 |20257 |
-ROW |31452 |20259 |20257 |
-ROW |31453 |20259 |20258 |
-ROW |31454 |20261 |20262 |
-ROW |31455 |20262 |20257 |
-ROW |31456 |20263 |20266 |
-ROW |31457 |20264 |20266 |
-ROW |31458 |20265 |20266 |
-ROW |31459 |20273 |20272 |
-ROW |31460 |20276 |20275 |
-ROW |31461 |20284 |20283 |
-ROW |31462 |20286 |20285 |
-ROW |31463 |20287 |20285 |
-ROW |31464 |20287 |20286 |
-ROW |31465 |20289 |20290 |
-ROW |31466 |20290 |20285 |
-ROW |31467 |20291 |20294 |
-ROW |31468 |20292 |20294 |
-ROW |31469 |20293 |20294 |
-ROW |31470 |20301 |20300 |
-ROW |31471 |20304 |20303 |
-ROW |31472 |20312 |20311 |
-ROW |31473 |20314 |20313 |
-ROW |31474 |20315 |20313 |
-ROW |31475 |20315 |20314 |
-ROW |31476 |20317 |20318 |
-ROW |31477 |20318 |20313 |
-ROW |31478 |20319 |20322 |
-ROW |31479 |20320 |20322 |
-ROW |31480 |20321 |20322 |
-ROW |31481 |20329 |20328 |
-ROW |31482 |20332 |20331 |
-ROW |31483 |20340 |20339 |
-ROW |31484 |20342 |20341 |
-ROW |31485 |20343 |20341 |
-ROW |31486 |20343 |20342 |
-ROW |31487 |20345 |20346 |
-ROW |31488 |20346 |20341 |
-ROW |31489 |20347 |20350 |
-ROW |31490 |20348 |20350 |
-ROW |31491 |20349 |20350 |
-ROW |31492 |20357 |20356 |
-ROW |31493 |20360 |20359 |
-ROW |31494 |20368 |20367 |
-ROW |31495 |20370 |20369 |
-ROW |31496 |20371 |20369 |
-ROW |31497 |20371 |20370 |
-ROW |31498 |20373 |20374 |
-ROW |31499 |20374 |20369 |
-ROW |31500 |20375 |20378 |
-ROW |31501 |20376 |20378 |
-ROW |31502 |20377 |20378 |
-ROW |31503 |20385 |20384 |
-ROW |31504 |20388 |20387 |
-ROW |31505 |20396 |20395 |
-ROW |31506 |20398 |20397 |
-ROW |31507 |20399 |20397 |
-ROW |31508 |20399 |20398 |
-ROW |31509 |20401 |20402 |
-ROW |31510 |20402 |20397 |
-ROW |31511 |20403 |20406 |
-ROW |31512 |20404 |20406 |
-ROW |31513 |20405 |20406 |
-ROW |31514 |20413 |20412 |
-ROW |31515 |20416 |20415 |
-ROW |31516 |20424 |20423 |
-ROW |31517 |20426 |20425 |
-ROW |31518 |20427 |20425 |
-ROW |31519 |20427 |20426 |
-ROW |31520 |20429 |20430 |
-ROW |31521 |20430 |20425 |
-ROW |31522 |20431 |20434 |
-ROW |31523 |20432 |20434 |
-ROW |31524 |20433 |20434 |
-ROW |31525 |20441 |20440 |
-ROW |31526 |20444 |20443 |
-ROW |31527 |20452 |20451 |
-ROW |31528 |20454 |20453 |
-ROW |31529 |20455 |20453 |
-ROW |31530 |20455 |20454 |
-ROW |31531 |20457 |20458 |
-ROW |31532 |20458 |20453 |
-ROW |31533 |20459 |20462 |
-ROW |31534 |20460 |20462 |
-ROW |31535 |20461 |20462 |
-ROW |31536 |20469 |20468 |
-ROW |31537 |20472 |20471 |
-ROW |31538 |20480 |20479 |
-ROW |31539 |20482 |20481 |
-ROW |31540 |20483 |20481 |
-ROW |31541 |20483 |20482 |
-ROW |31542 |20485 |20486 |
-ROW |31543 |20486 |20481 |
-ROW |31544 |20487 |20490 |
-ROW |31545 |20488 |20490 |
-ROW |31546 |20489 |20490 |
-ROW |31547 |20497 |20496 |
-ROW |31548 |20500 |20499 |
-ROW |31549 |20508 |20507 |
-ROW |31550 |20510 |20509 |
-ROW |31551 |20511 |20509 |
-ROW |31552 |20511 |20510 |
-ROW |31553 |20513 |20514 |
-ROW |31554 |20514 |20509 |
-ROW |31555 |20515 |20518 |
-ROW |31556 |20516 |20518 |
-ROW |31557 |20517 |20518 |
-ROW |31558 |20525 |20524 |
-ROW |31559 |20528 |20527 |
-ROW |31560 |20536 |20535 |
-ROW |31561 |20538 |20537 |
-ROW |31562 |20539 |20537 |
-ROW |31563 |20539 |20538 |
-ROW |31564 |20541 |20542 |
-ROW |31565 |20542 |20537 |
-ROW |31566 |20543 |20546 |
-ROW |31567 |20544 |20546 |
-ROW |31568 |20545 |20546 |
-ROW |31569 |20553 |20552 |
-ROW |31570 |20556 |20555 |
-ROW |31571 |20564 |20563 |
-ROW |31572 |20566 |20565 |
-ROW |31573 |20567 |20565 |
-ROW |31574 |20567 |20566 |
-ROW |31575 |20569 |20570 |
-ROW |31576 |20570 |20565 |
-ROW |31577 |20571 |20574 |
-ROW |31578 |20572 |20574 |
-ROW |31579 |20573 |20574 |
-ROW |31580 |20581 |20580 |
-ROW |31581 |20584 |20583 |
-ROW |31582 |20592 |20591 |
-ROW |31583 |20594 |20593 |
-ROW |31584 |20595 |20593 |
-ROW |31585 |20595 |20594 |
-ROW |31586 |20597 |20598 |
-ROW |31587 |20598 |20593 |
-ROW |31588 |20599 |20602 |
-ROW |31589 |20600 |20602 |
-ROW |31590 |20601 |20602 |
-ROW |31591 |20609 |20608 |
-ROW |31592 |20612 |20611 |
-ROW |31593 |20620 |20619 |
-ROW |31594 |20622 |20621 |
-ROW |31595 |20623 |20621 |
-ROW |31596 |20623 |20622 |
-ROW |31597 |20625 |20626 |
-ROW |31598 |20626 |20621 |
-ROW |31599 |20627 |20630 |
-ROW |31600 |20628 |20630 |
-ROW |31601 |20629 |20630 |
-ROW |31602 |20637 |20636 |
-ROW |31603 |20640 |20639 |
-ROW |31604 |20648 |20647 |
-ROW |31605 |20650 |20649 |
-ROW |31606 |20651 |20649 |
-ROW |31607 |20651 |20650 |
-ROW |31608 |20653 |20654 |
-ROW |31609 |20654 |20649 |
-ROW |31610 |20655 |20658 |
-ROW |31611 |20656 |20658 |
-ROW |31612 |20657 |20658 |
-ROW |31613 |20665 |20664 |
-ROW |31614 |20668 |20667 |
-ROW |31615 |20676 |20675 |
-ROW |31616 |20678 |20677 |
-ROW |31617 |20679 |20677 |
-ROW |31618 |20679 |20678 |
-ROW |31619 |20681 |20682 |
-ROW |31620 |20682 |20677 |
-ROW |31621 |20683 |20686 |
-ROW |31622 |20684 |20686 |
-ROW |31623 |20685 |20686 |
-ROW |31624 |20693 |20692 |
-ROW |31625 |20696 |20695 |
-ROW |31626 |20704 |20703 |
-ROW |31627 |20706 |20705 |
-ROW |31628 |20707 |20705 |
-ROW |31629 |20707 |20706 |
-ROW |31630 |20709 |20710 |
-ROW |31631 |20710 |20705 |
-ROW |31632 |20711 |20714 |
-ROW |31633 |20712 |20714 |
-ROW |31634 |20713 |20714 |
-ROW |31635 |20721 |20720 |
-ROW |31636 |20724 |20723 |
-ROW |31637 |20732 |20731 |
-ROW |31638 |20734 |20733 |
-ROW |31639 |20735 |20733 |
-ROW |31640 |20735 |20734 |
-ROW |31641 |20737 |20738 |
-ROW |31642 |20738 |20733 |
-ROW |31643 |20739 |20742 |
-ROW |31644 |20740 |20742 |
-ROW |31645 |20741 |20742 |
-ROW |31646 |20749 |20748 |
-ROW |31647 |20752 |20751 |
-ROW |31648 |20760 |20759 |
-ROW |31649 |20762 |20761 |
-ROW |31650 |20763 |20761 |
-ROW |31651 |20763 |20762 |
-ROW |31652 |20765 |20766 |
-ROW |31653 |20766 |20761 |
-ROW |31654 |20767 |20770 |
-ROW |31655 |20768 |20770 |
-ROW |31656 |20769 |20770 |
-ROW |31657 |20777 |20776 |
-ROW |31658 |20780 |20779 |
-ROW |31659 |20788 |20787 |
-ROW |31660 |20790 |20789 |
-ROW |31661 |20791 |20789 |
-ROW |31662 |20791 |20790 |
-ROW |31663 |20793 |20794 |
-ROW |31664 |20794 |20789 |
-ROW |31665 |20795 |20798 |
-ROW |31666 |20796 |20798 |
-ROW |31667 |20797 |20798 |
-ROW |31668 |20805 |20804 |
-ROW |31669 |20808 |20807 |
-ROW |31670 |20816 |20815 |
-ROW |31671 |20818 |20817 |
-ROW |31672 |20819 |20817 |
-ROW |31673 |20819 |20818 |
-ROW |31674 |20821 |20822 |
-ROW |31675 |20822 |20817 |
-ROW |31676 |20823 |20826 |
-ROW |31677 |20824 |20826 |
-ROW |31678 |20825 |20826 |
-ROW |31679 |20833 |20832 |
-ROW |31680 |20836 |20835 |
-ROW |31681 |20844 |20843 |
-ROW |31682 |20846 |20845 |
-ROW |31683 |20847 |20845 |
-ROW |31684 |20847 |20846 |
-ROW |31685 |20849 |20850 |
-ROW |31686 |20850 |20845 |
-ROW |31687 |20851 |20854 |
-ROW |31688 |20852 |20854 |
-ROW |31689 |20853 |20854 |
-ROW |31690 |20861 |20860 |
-ROW |31691 |20864 |20863 |
-ROW |31692 |20872 |20871 |
-ROW |31693 |20874 |20873 |
-ROW |31694 |20875 |20873 |
-ROW |31695 |20875 |20874 |
-ROW |31696 |20877 |20878 |
-ROW |31697 |20878 |20873 |
-ROW |31698 |20879 |20882 |
-ROW |31699 |20880 |20882 |
-ROW |31700 |20881 |20882 |
-ROW |31701 |20889 |20888 |
-ROW |31702 |20892 |20891 |
-ROW |31703 |20900 |20899 |
-ROW |31704 |20902 |20901 |
-ROW |31705 |20903 |20901 |
-ROW |31706 |20903 |20902 |
-ROW |31707 |20905 |20906 |
-ROW |31708 |20906 |20901 |
-ROW |31709 |20907 |20910 |
-ROW |31710 |20908 |20910 |
-ROW |31711 |20909 |20910 |
-ROW |31712 |20917 |20916 |
-ROW |31713 |20920 |20919 |
-ROW |31714 |20928 |20927 |
-ROW |31715 |20930 |20929 |
-ROW |31716 |20931 |20929 |
-ROW |31717 |20931 |20930 |
-ROW |31718 |20933 |20934 |
-ROW |31719 |20934 |20929 |
-ROW |31720 |20935 |20938 |
-ROW |31721 |20936 |20938 |
-ROW |31722 |20937 |20938 |
-ROW |31723 |20945 |20944 |
-ROW |31724 |20948 |20947 |
-ROW |31725 |20956 |20955 |
-ROW |31726 |20958 |20957 |
-ROW |31727 |20959 |20957 |
-ROW |31728 |20959 |20958 |
-ROW |31729 |20961 |20962 |
-ROW |31730 |20962 |20957 |
-ROW |31731 |20963 |20966 |
-ROW |31732 |20964 |20966 |
-ROW |31733 |20965 |20966 |
-ROW |31734 |20973 |20972 |
-ROW |31735 |20976 |20975 |
-ROW |31736 |20984 |20983 |
-ROW |31737 |20986 |20985 |
-ROW |31738 |20987 |20985 |
-ROW |31739 |20987 |20986 |
-ROW |31740 |20989 |20990 |
-ROW |31741 |20990 |20985 |
-ROW |31742 |20991 |20994 |
-ROW |31743 |20992 |20994 |
-ROW |31744 |20993 |20994 |
-ROW |31745 |21001 |21000 |
-ROW |31746 |21004 |21003 |
-ROW |31747 |21012 |21011 |
-ROW |31748 |21014 |21013 |
-ROW |31749 |21015 |21013 |
-ROW |31750 |21015 |21014 |
-ROW |31751 |21017 |21018 |
-ROW |31752 |21018 |21013 |
-ROW |31753 |21019 |21022 |
-ROW |31754 |21020 |21022 |
-ROW |31755 |21021 |21022 |
-ROW |31756 |21029 |21028 |
-ROW |31757 |21032 |21031 |
-ROW |31758 |21040 |21039 |
-ROW |31759 |21042 |21041 |
-ROW |31760 |21043 |21041 |
-ROW |31761 |21043 |21042 |
-ROW |31762 |21045 |21046 |
-ROW |31763 |21046 |21041 |
-ROW |31764 |21047 |21050 |
-ROW |31765 |21048 |21050 |
-ROW |31766 |21049 |21050 |
-ROW |31767 |21057 |21056 |
-ROW |31768 |21060 |21059 |
-ROW |31769 |21068 |21067 |
-ROW |31770 |21070 |21069 |
-ROW |31771 |21071 |21069 |
-ROW |31772 |21071 |21070 |
-ROW |31773 |21073 |21074 |
-ROW |31774 |21074 |21069 |
-ROW |31775 |21075 |21078 |
-ROW |31776 |21076 |21078 |
-ROW |31777 |21077 |21078 |
-ROW |31778 |21085 |21084 |
-ROW |31779 |21088 |21087 |
-ROW |31780 |21096 |21095 |
-ROW |31781 |21098 |21097 |
-ROW |31782 |21099 |21097 |
-ROW |31783 |21099 |21098 |
-ROW |31784 |21101 |21102 |
-ROW |31785 |21102 |21097 |
-ROW |31786 |21103 |21106 |
-ROW |31787 |21104 |21106 |
-ROW |31788 |21105 |21106 |
-ROW |31789 |21113 |21112 |
-ROW |31790 |21116 |21115 |
-ROW |31791 |21124 |21123 |
-ROW |31792 |21126 |21125 |
-ROW |31793 |21127 |21125 |
-ROW |31794 |21127 |21126 |
-ROW |31795 |21129 |21130 |
-ROW |31796 |21130 |21125 |
-ROW |31797 |21131 |21134 |
-ROW |31798 |21132 |21134 |
-ROW |31799 |21133 |21134 |
-ROW |31800 |21141 |21140 |
-ROW |31801 |21144 |21143 |
-ROW |31802 |21152 |21151 |
-ROW |31803 |21154 |21153 |
-ROW |31804 |21155 |21153 |
-ROW |31805 |21155 |21154 |
-ROW |31806 |21157 |21158 |
-ROW |31807 |21158 |21153 |
-ROW |31808 |21159 |21162 |
-ROW |31809 |21160 |21162 |
-ROW |31810 |21161 |21162 |
-ROW |31811 |21169 |21168 |
-ROW |31812 |21172 |21171 |
-ROW |31813 |21180 |21179 |
-ROW |31814 |14664 |14665 |
-ROW |31815 |17085 |17086 |
-ROW |31816 |16547 |16546 |
-ROW |31817 |17576 |17575 |
-ROW |31818 |17578 |17577 |
-ROW |31819 |17628 |17626 |
-ROW |31820 |17629 |17627 |
-ROW |31821 |17632 |17630 |
-ROW |31822 |17633 |17631 |
-ROW |31823 |17635 |17634 |
-ROW |31824 |17637 |17636 |
-ROW |31825 |17686 |17684 |
-ROW |31826 |17687 |17685 |
-ROW |31827 |17690 |17688 |
-ROW |31828 |17691 |17689 |
-ROW |31829 |17693 |17692 |
-ROW |31830 |17695 |17694 |
-ROW |31831 |17730 |17728 |
-ROW |31832 |17731 |17729 |
-ROW |31833 |17734 |17732 |
-ROW |31834 |17735 |17733 |
-ROW |31835 |17737 |17736 |
-ROW |31836 |17754 |17752 |
-ROW |31837 |17755 |17753 |
-ROW |31838 |17757 |17756 |
-ROW |31839 |17819 |17817 |
-ROW |31840 |17820 |17818 |
-ROW |31841 |17823 |17821 |
-ROW |31842 |17824 |17822 |
-ROW |31843 |17826 |17825 |
-ROW |31844 |17860 |17858 |
-ROW |31845 |17861 |17859 |
-ROW |31846 |17864 |17862 |
-ROW |31847 |17865 |17863 |
-ROW |31848 |17899 |17897 |
-ROW |31849 |17900 |17898 |
-ROW |31850 |17903 |17901 |
-ROW |31851 |17904 |17902 |
-ROW |31852 |17906 |17905 |
-ROW |31853 |17908 |17907 |
-ROW |31854 |17910 |17909 |
-ROW |31855 |16551 |16552 |
-ROW |31856 |16031 |16563 |
-ROW |31857 |16045 |16564 |
-ROW |31858 |16046 |16565 |
-ROW |31859 |16039 |16040 |
-ROW |31860 |16061 |16063 |
-ROW |31861 |16062 |16064 |
-ROW |31862 |16042 |16579 |
-ROW |31863 |16067 |16580 |
-ROW |31864 |16068 |16581 |
-ROW |31865 |16041 |16042 |
-ROW |31866 |16065 |16067 |
-ROW |31867 |16066 |16068 |
-ROW |31868 |16041 |16579 |
-ROW |31869 |16065 |16580 |
-ROW |31870 |16066 |16581 |
-ROW |31871 |18132 |18452 |
-ROW |31872 |18135 |18453 |
-ROW |31873 |18138 |18454 |
-ROW |31874 |18130 |18132 |
-ROW |31875 |18133 |18135 |
-ROW |31876 |18136 |18138 |
-ROW |31877 |18130 |18452 |
-ROW |31878 |18133 |18453 |
-ROW |31879 |18136 |18454 |
-ROW |31880 |16070 |16069 |
-ROW |31881 |16072 |16071 |
-ROW |31882 |16076 |17024 |
-ROW |31883 |18455 |17024 |
-ROW |31884 |16079 |16077 |
-ROW |31885 |16080 |16078 |
-ROW |31886 |16083 |16081 |
-ROW |31887 |16084 |16082 |
-ROW |31888 |16091 |17026 |
-ROW |31889 |16092 |17028 |
-ROW |31890 |18456 |17026 |
-ROW |31891 |18457 |17028 |
-ROW |31892 |17244 |17243 |
-ROW |31893 |17257 |17256 |
-ROW |31894 |17246 |17240 |
-ROW |31895 |17259 |17253 |
-ROW |31896 |17249 |17247 |
-ROW |31897 |17262 |17260 |
-ROW |31898 |17251 |17249 |
-ROW |31899 |17264 |17262 |
-ROW |31900 |17251 |17247 |
-ROW |31901 |17264 |17260 |
-ROW |31902 |18144 |18458 |
-ROW |31903 |18147 |18459 |
-ROW |31904 |18142 |18144 |
-ROW |31905 |18145 |18147 |
-ROW |31906 |18142 |18458 |
-ROW |31907 |18145 |18459 |
-ROW |31908 |17268 |17267 |
-ROW |31909 |17270 |17269 |
-ROW |31910 |17271 |17273 |
-ROW |31911 |18460 |17273 |
-ROW |31912 |17276 |17275 |
-ROW |31913 |17278 |17277 |
-ROW |31914 |17279 |17281 |
-ROW |31915 |18461 |17281 |
-ROW |31916 |16141 |16142 |
-ROW |31917 |16146 |16573 |
-ROW |31918 |16143 |16584 |
-ROW |31919 |18152 |18462 |
-ROW |31920 |18150 |18152 |
-ROW |31921 |18150 |18462 |
-ROW |31922 |16152 |16883 |
-ROW |31923 |16153 |16883 |
-ROW |31924 |18463 |16883 |
-ROW |31925 |18464 |16883 |
-ROW |31926 |16156 |16155 |
-ROW |31927 |16158 |16157 |
-ROW |31928 |18157 |18156 |
-ROW |31929 |18160 |18159 |
-ROW |31930 |18155 |18157 |
-ROW |31931 |18158 |18160 |
-ROW |31932 |18155 |18156 |
-ROW |31933 |18158 |18159 |
-ROW |31934 |16009 |16008 |
-ROW |31935 |16011 |16010 |
-ROW |31936 |16014 |16013 |
-ROW |31937 |16016 |16015 |
-ROW |31938 |16161 |16160 |
-ROW |31939 |16172 |16171 |
-ROW |31940 |16162 |16161 |
-ROW |31941 |16173 |16172 |
-ROW |31942 |16162 |16160 |
-ROW |31943 |16173 |16171 |
-ROW |31944 |16166 |18162 |
-ROW |31945 |16177 |18164 |
-ROW |31946 |16167 |18162 |
-ROW |31947 |16178 |18164 |
-ROW |31948 |17035 |16160 |
-ROW |31949 |17037 |16171 |
-ROW |31950 |18161 |18162 |
-ROW |31951 |18163 |18164 |
-ROW |31952 |16183 |16182 |
-ROW |31953 |17911 |17042 |
-ROW |31954 |18465 |17042 |
-ROW |31955 |18466 |17042 |
-ROW |31956 |17043 |17912 |
-ROW |31957 |17043 |17913 |
-ROW |31958 |16190 |16189 |
-ROW |31959 |17914 |17047 |
-ROW |31960 |18467 |17047 |
-ROW |31961 |18468 |17047 |
-ROW |31962 |17048 |17915 |
-ROW |31963 |17048 |17916 |
-ROW |31964 |17285 |17287 |
-ROW |31965 |17296 |17298 |
-ROW |31966 |17286 |17285 |
-ROW |31967 |17297 |17296 |
-ROW |31968 |17286 |17287 |
-ROW |31969 |17297 |17298 |
-ROW |31970 |17291 |18170 |
-ROW |31971 |17302 |18172 |
-ROW |31972 |17292 |18170 |
-ROW |31973 |17303 |18172 |
-ROW |31974 |17283 |17287 |
-ROW |31975 |17294 |17298 |
-ROW |31976 |18169 |18170 |
-ROW |31977 |18171 |18172 |
-ROW |31978 |17306 |17305 |
-ROW |31979 |17917 |17310 |
-ROW |31980 |18469 |17310 |
-ROW |31981 |18470 |17310 |
-ROW |31982 |17311 |17918 |
-ROW |31983 |17311 |17919 |
-ROW |31984 |17314 |17313 |
-ROW |31985 |17920 |17318 |
-ROW |31986 |18471 |17318 |
-ROW |31987 |18472 |17318 |
-ROW |31988 |17319 |17921 |
-ROW |31989 |17319 |17922 |
-ROW |31990 |18596 |18597 |
-ROW |31991 |18629 |18630 |
-ROW |31992 |18662 |18663 |
-ROW |31993 |18695 |18696 |
-ROW |31994 |18728 |18729 |
-ROW |31995 |18947 |18948 |
-ROW |31996 |18794 |18795 |
-ROW |31997 |18495 |18496 |
-ROW |31998 |18831 |18832 |
-ROW |31999 |18864 |18865 |
-ROW |32000 |18897 |18898 |
-ROW |32001 |16772 |16773 |
-ROW |32002 |16771 |16772 |
-ROW |32003 |16771 |16773 |
-ROW |32004 |16769 |16770 |
-ROW |32005 |16768 |16769 |
-ROW |32006 |16768 |16770 |
-ROW |32007 |19230 |19231 |
-ROW |32008 |19233 |19232 |
-ROW |32009 |19235 |19234 |
-ROW |32010 |19236 |19234 |
-ROW |32011 |19236 |19235 |
-ROW |32012 |19238 |19237 |
-ROW |32013 |19239 |19240 |
-ROW |32014 |19242 |19243 |
-ROW |32015 |19245 |19244 |
-ROW |32016 |19247 |19246 |
-ROW |32017 |19249 |19250 |
-ROW |32018 |19249 |19252 |
-ROW |32019 |19249 |19248 |
-ROW |32020 |19249 |19254 |
-ROW |32021 |19251 |19250 |
-ROW |32022 |19251 |19252 |
-ROW |32023 |19251 |19248 |
-ROW |32024 |19251 |19254 |
-ROW |32025 |19253 |19250 |
-ROW |32026 |19253 |19252 |
-ROW |32027 |19253 |19248 |
-ROW |32028 |19253 |19254 |
-ROW |32029 |19255 |19250 |
-ROW |32030 |19255 |19252 |
-ROW |32031 |19255 |19248 |
-ROW |32032 |19255 |19254 |
-ROW |32033 |19258 |19257 |
-ROW |32034 |16488 |16487 |
-ROW |32035 |16485 |16484 |
-ROW |32036 |16486 |16484 |
-ROW |32037 |16486 |16485 |
-ROW |32038 |16480 |16479 |
-ROW |32039 |16482 |16481 |
-ROW |32040 |16475 |16474 |
-ROW |32041 |16471 |16472 |
-ROW |32042 |16468 |16469 |
-ROW |32043 |16459 |16460 |
-ROW |32044 |16462 |16463 |
-ROW |32045 |16465 |16466 |
-ROW |32046 |16477 |16476 |
-ROW |32047 |19263 |19262 |
-ROW |32048 |19266 |19265 |
-ROW |32049 |19268 |19267 |
-ROW |32050 |19270 |19269 |
-ROW |32051 |19272 |19271 |
-ROW |32052 |19276 |19275 |
-ROW |32053 |19278 |19277 |
-ROW |32054 |19280 |19279 |
-ROW |32055 |19282 |19281 |
-ROW |32056 |19288 |19287 |
-ROW |32057 |19293 |19292 |
-ROW |32058 |19294 |19292 |
-ROW |32059 |19294 |19293 |
-ROW |32060 |19295 |19296 |
-ROW |32061 |19297 |19295 |
-ROW |32062 |19297 |19296 |
-ROW |32063 |19299 |19298 |
-ROW |32064 |19301 |19302 |
-ROW |32065 |19303 |19302 |
-ROW |32066 |19305 |19304 |
-ROW |32067 |19307 |19306 |
-ROW |32068 |19308 |19306 |
-ROW |32069 |19308 |19307 |
-ROW |32070 |19310 |19309 |
-ROW |32071 |19314 |19313 |
-ROW |32072 |19317 |19316 |
-ROW |32073 |19319 |19318 |
-ROW |32074 |19321 |19320 |
-ROW |32075 |19323 |19322 |
-ROW |32076 |19327 |19326 |
-ROW |32077 |19329 |19328 |
-ROW |32078 |19331 |19330 |
-ROW |32079 |19333 |19332 |
-ROW |32080 |19339 |19338 |
-ROW |32081 |19344 |19343 |
-ROW |32082 |19345 |19343 |
-ROW |32083 |19345 |19344 |
-ROW |32084 |19346 |19347 |
-ROW |32085 |19348 |19346 |
-ROW |32086 |19348 |19347 |
-ROW |32087 |19350 |19349 |
-ROW |32088 |19352 |19353 |
-ROW |32089 |19354 |19353 |
-ROW |32090 |19356 |19355 |
-ROW |32091 |19358 |19357 |
-ROW |32092 |19359 |19357 |
-ROW |32093 |19359 |19358 |
-ROW |32094 |19361 |19360 |
-ROW |32095 |19365 |19364 |
-ROW |32096 |19368 |19367 |
-ROW |32097 |19370 |19369 |
-ROW |32098 |19372 |19371 |
-ROW |32099 |19374 |19373 |
-ROW |32100 |19378 |19377 |
-ROW |32101 |19380 |19379 |
-ROW |32102 |19382 |19381 |
-ROW |32103 |19384 |19383 |
-ROW |32104 |19390 |19389 |
-ROW |32105 |19395 |19394 |
-ROW |32106 |19396 |19394 |
-ROW |32107 |19396 |19395 |
-ROW |32108 |19397 |19398 |
-ROW |32109 |19399 |19397 |
-ROW |32110 |19399 |19398 |
-ROW |32111 |19401 |19400 |
-ROW |32112 |19403 |19404 |
-ROW |32113 |19405 |19404 |
-ROW |32114 |19407 |19406 |
-ROW |32115 |19409 |19408 |
-ROW |32116 |19410 |19408 |
-ROW |32117 |19410 |19409 |
-ROW |32118 |19412 |19411 |
-ROW |32119 |19416 |19415 |
-ROW |32120 |19419 |19418 |
-ROW |32121 |19421 |19420 |
-ROW |32122 |19423 |19422 |
-ROW |32123 |19425 |19424 |
-ROW |32124 |19429 |19428 |
-ROW |32125 |19431 |19430 |
-ROW |32126 |19433 |19432 |
-ROW |32127 |19435 |19434 |
-ROW |32128 |19441 |19440 |
-ROW |32129 |19446 |19445 |
-ROW |32130 |19447 |19445 |
-ROW |32131 |19447 |19446 |
-ROW |32132 |19448 |19449 |
-ROW |32133 |19450 |19448 |
-ROW |32134 |19450 |19449 |
-ROW |32135 |19452 |19451 |
-ROW |32136 |19454 |19455 |
-ROW |32137 |19456 |19455 |
-ROW |32138 |19458 |19457 |
-ROW |32139 |19460 |19459 |
-ROW |32140 |19461 |19459 |
-ROW |32141 |19461 |19460 |
-ROW |32142 |19463 |19462 |
-ROW |32143 |15729 |15728 |
-ROW |32144 |15730 |15728 |
-ROW |32145 |15730 |15729 |
-ROW |32146 |15752 |15754 |
-ROW |32147 |15753 |15754 |
-ROW |32148 |15753 |15752 |
-ROW |32149 |15742 |15741 |
-ROW |32150 |15750 |15749 |
-ROW |32151 |15751 |15750 |
-ROW |32152 |15751 |15749 |
-ROW |32153 |15746 |15743 |
-ROW |32154 |15744 |15743 |
-ROW |32155 |15740 |15739 |
-ROW |32156 |17946 |17945 |
-ROW |32157 |17948 |17947 |
-ROW |32158 |15748 |15747 |
-ROW |32159 |19467 |19466 |
-ROW |32160 |19471 |19470 |
-ROW |32161 |19473 |19472 |
-ROW |32162 |19474 |19472 |
-ROW |32163 |19474 |19473 |
-ROW |32164 |19476 |19475 |
-ROW |32165 |19478 |19477 |
-ROW |32166 |19480 |19479 |
-ROW |32167 |19482 |19483 |
-ROW |32168 |19484 |19483 |
-ROW |32169 |19486 |19485 |
-ROW |32170 |19509 |19508 |
-ROW |32171 |19513 |19512 |
-ROW |32172 |19517 |19516 |
-ROW |32173 |19519 |19518 |
-ROW |32174 |19520 |19518 |
-ROW |32175 |19520 |19519 |
-ROW |32176 |19522 |19521 |
-ROW |32177 |19524 |19523 |
-ROW |32178 |19526 |19525 |
-ROW |32179 |19528 |19529 |
-ROW |32180 |19530 |19529 |
-ROW |32181 |19532 |19531 |
-ROW |32182 |19555 |19554 |
-ROW |32183 |19559 |19558 |
-ROW |32184 |19563 |19562 |
-ROW |32185 |19565 |19564 |
-ROW |32186 |19566 |19564 |
-ROW |32187 |19566 |19565 |
-ROW |32188 |19568 |19567 |
-ROW |32189 |19570 |19569 |
-ROW |32190 |19572 |19571 |
-ROW |32191 |19574 |19575 |
-ROW |32192 |19576 |19575 |
-ROW |32193 |19578 |19577 |
-ROW |32194 |19601 |19600 |
-ROW |32195 |19605 |19604 |
-ROW |32196 |19609 |19608 |
-ROW |32197 |19611 |19610 |
-ROW |32198 |19612 |19610 |
-ROW |32199 |19612 |19611 |
-ROW |32200 |19614 |19613 |
-ROW |32201 |19616 |19615 |
-ROW |32202 |19618 |19617 |
-ROW |32203 |19620 |19621 |
-ROW |32204 |19622 |19621 |
-ROW |32205 |19624 |19623 |
-ROW |32206 |19647 |19646 |
-ROW |32207 |16440 |16439 |
-ROW |32208 |18003 |15790 |
-ROW |32209 |18004 |15787 |
-ROW |32210 |18005 |15787 |
-ROW |32211 |18005 |18004 |
-ROW |32212 |15786 |15785 |
-ROW |32213 |15784 |15783 |
-ROW |32214 |15794 |15792 |
-ROW |32215 |15793 |15792 |
-ROW |32216 |15782 |15781 |
-ROW |32217 |15797 |15796 |
-ROW |32218 |15825 |15824 |
-ROW |32219 |15826 |15824 |
-ROW |32220 |15826 |15825 |
-ROW |32221 |15828 |15829 |
-ROW |32222 |15831 |15832 |
-ROW |32223 |15834 |15835 |
-ROW |32224 |15845 |15846 |
-ROW |32225 |17223 |17227 |
-ROW |32226 |17226 |17227 |
+ROW |32227 |17412 |17411 |
+ROW |32228 |17414 |17413 |
+ROW |32229 |17416 |17415 |
+ROW |32230 |15944 |15947 |
+ROW |32231 |15944 |15943 |
+ROW |32232 |15943 |15947 |
+ROW |32233 |16888 |15947 |
+ROW |32234 |16888 |15943 |
+ROW |32235 |15948 |15949 |
+ROW |32236 |15950 |15949 |
+ROW |32237 |17429 |17428 |
+ROW |32238 |17431 |17430 |
+ROW |32239 |17433 |17432 |
+ROW |32240 |17355 |17354 |
+ROW |32241 |17358 |17357 |
+ROW |32242 |18960 |18962 |
+ROW |32243 |16743 |16744 |
+ROW |32244 |16784 |16785 |
+ROW |32245 |16790 |16791 |
+ROW |32246 |16892 |16900 |
+ROW |32247 |16894 |16900 |
+ROW |32248 |17459 |17458 |
+ROW |32249 |17463 |17458 |
+ROW |32250 |17471 |17480 |
+ROW |32251 |17476 |17481 |
+ROW |32252 |17478 |17480 |
+ROW |32253 |17479 |17481 |
+ROW |32254 |17483 |17482 |
+ROW |32255 |17486 |17485 |
+ROW |32256 |16646 |16647 |
+ROW |32257 |18965 |16660 |
+ROW |32258 |16809 |16810 |
+ROW |32259 |18966 |16677 |
+ROW |32260 |16902 |16904 |
+ROW |32261 |16904 |16905 |
+ROW |32262 |16909 |16906 |
+ROW |32263 |16910 |16912 |
+ROW |32264 |16912 |16913 |
+ROW |32265 |16917 |16914 |
+ROW |32266 |17962 |17963 |
+ROW |32267 |17962 |17958 |
+ROW |32268 |16752 |16753 |
+ROW |32269 |15955 |15957 |
+ROW |32270 |15955 |15954 |
+ROW |32271 |15954 |15957 |
+ROW |32272 |15956 |15957 |
+ROW |32273 |15956 |15954 |
+ROW |32274 |16678 |15957 |
+ROW |32275 |16678 |15954 |
+ROW |32276 |15961 |15960 |
+ROW |32277 |15962 |15960 |
+ROW |32278 |16679 |15960 |
+ROW |32279 |17090 |17096 |
+ROW |32280 |17093 |17096 |
+ROW |32281 |17101 |17098 |
+ROW |32282 |16257 |16255 |
+ROW |32283 |16257 |16256 |
+ROW |32284 |16256 |16255 |
+ROW |32285 |16251 |16255 |
+ROW |32286 |16251 |16256 |
+ROW |32287 |16443 |16255 |
+ROW |32288 |16443 |16256 |
+ROW |32289 |16270 |16269 |
+ROW |32290 |16448 |16269 |
+ROW |32291 |16265 |16269 |
+ROW |32292 |17503 |17505 |
+ROW |32293 |17512 |17511 |
+ROW |32294 |17513 |17505 |
+ROW |32300 |17516 |17518 |
+ROW |32301 |17517 |17516 |
+ROW |32302 |17517 |17518 |
+ROW |32303 |17517 |17519 |
+ROW |32304 |17519 |17518 |
+ROW |32305 |18918 |18917 |
+ROW |32306 |17973 |17965 |
+ROW |32307 |17974 |17966 |
+ROW |32308 |17141 |17151 |
+ROW |32309 |17142 |17141 |
+ROW |32310 |17142 |17151 |
+ROW |32311 |17143 |17151 |
+ROW |32312 |17144 |17143 |
+ROW |32313 |17144 |17151 |
+ROW |32314 |17146 |17145 |
+ROW |32315 |17147 |17151 |
+ROW |32316 |17148 |17147 |
+ROW |32317 |17148 |17151 |
+ROW |32318 |17150 |17149 |
+ROW |32319 |17152 |17168 |
+ROW |32320 |17153 |17152 |
+ROW |32321 |17153 |17168 |
+ROW |32322 |17154 |17168 |
+ROW |32323 |17155 |17154 |
+ROW |32324 |17155 |17168 |
+ROW |32325 |17156 |17168 |
+ROW |32326 |17157 |17156 |
+ROW |32327 |17157 |17168 |
+ROW |32328 |17158 |17168 |
+ROW |32329 |17159 |17158 |
+ROW |32330 |17159 |17168 |
+ROW |32331 |17160 |17168 |
+ROW |32332 |17161 |17160 |
+ROW |32333 |17161 |17168 |
+ROW |32334 |17163 |17162 |
+ROW |32335 |17164 |17168 |
+ROW |32336 |17165 |17164 |
+ROW |32337 |17165 |17168 |
+ROW |32338 |17166 |17168 |
+ROW |32339 |17167 |17166 |
+ROW |32340 |17167 |17168 |
+ROW |32341 |17169 |17168 |
+ROW |32342 |17170 |17168 |
+ROW |32343 |17170 |17169 |
+ROW |32344 |17171 |17168 |
+ROW |32345 |17172 |17168 |
+ROW |32346 |17172 |17171 |
+ROW |32347 |17540 |17541 |
+ROW |32348 |16833 |16920 |
+ROW |32349 |16920 |16921 |
+ROW |32350 |18987 |18986 |
+ROW |32351 |18989 |18988 |
+ROW |32352 |18993 |18992 |
+ROW |32353 |18994 |18992 |
+ROW |32354 |19009 |19010 |
+ROW |32355 |17978 |17977 |
+ROW |32356 |17980 |17979 |
+ROW |32357 |17984 |17983 |
+ROW |32358 |17985 |17983 |
+ROW |32359 |18000 |18001 |
+ROW |32360 |18225 |18224 |
+ROW |32361 |18237 |18236 |
+ROW |32362 |16929 |16928 |
+ROW |32363 |16940 |17084 |
+ROW |32364 |18537 |18536 |
+ROW |32365 |18539 |18538 |
+ROW |32366 |18541 |18540 |
+ROW |32367 |16719 |16721 |
+ROW |32368 |16975 |16723 |
+ROW |32369 |16729 |16728 |
+ROW |32370 |16730 |16728 |
+ROW |32371 |16756 |16758 |
+ROW |32372 |16979 |16759 |
+ROW |32373 |16765 |16764 |
+ROW |32374 |16766 |16764 |
+ROW |32375 |16734 |16736 |
+ROW |32376 |16983 |16732 |
+ROW |32377 |16741 |16740 |
+ROW |32378 |16742 |16740 |
+ROW |32379 |17192 |17191 |
+ROW |32380 |17194 |17195 |
+ROW |32381 |17199 |17198 |
+ROW |32382 |17546 |17545 |
+ROW |32383 |17547 |17548 |
+ROW |32384 |16997 |16984 |
+ROW |32385 |17002 |17003 |
+ROW |32386 |17006 |17005 |
+ROW |32387 |17011 |17010 |
+ROW |32388 |17550 |17549 |
+ROW |32389 |17551 |17552 |
+ROW |32390 |17391 |17396 |
+ROW |32391 |17395 |17396 |
+ROW |32392 |16683 |16687 |
+ROW |32393 |14252 |14251 |
+ROW |32394 |14294 |14293 |
+ROW |32395 |14312 |14311 |
+ROW |32396 |14328 |14327 |
+ROW |32397 |14348 |14347 |
+ROW |32398 |14357 |14356 |
+ROW |32399 |14390 |14389 |
+ROW |32400 |14404 |14403 |
+ROW |32401 |14452 |14451 |
+ROW |32402 |14469 |14468 |
+ROW |32403 |14487 |14486 |
+ROW |32404 |14506 |14505 |
+ROW |32405 |14535 |14534 |
+ROW |32406 |14545 |14544 |
+ROW |32407 |14583 |14582 |
+ROW |32408 |14599 |14598 |
+ROW |32409 |14616 |14615 |
+ROW |32410 |14653 |14652 |
+ROW |32411 |14674 |14673 |
+ROW |32412 |14692 |14691 |
+ROW |32413 |14705 |14704 |
+ROW |32414 |14718 |14717 |
+ROW |32415 |14907 |14906 |
+ROW |32416 |15221 |15220 |
+ROW |32417 |15702 |15701 |
+ROW |32418 |15724 |15723 |
+ROW |32419 |15756 |15755 |
+ROW |32420 |15820 |15819 |
+ROW |32421 |15841 |15840 |
+ROW |32422 |15991 |15990 |
+ROW |32423 |16018 |16017 |
+ROW |32424 |16454 |16453 |
+ROW |32425 |17924 |17923 |
+ROW |32426 |18178 |18177 |
+ROW |32427 |19670 |19669 |
+ROW |32428 |19698 |19697 |
+ROW |32429 |19726 |19725 |
+ROW |32430 |19754 |19753 |
+ROW |32431 |19782 |19781 |
+ROW |32432 |19810 |19809 |
+ROW |32433 |19838 |19837 |
+ROW |32434 |19866 |19865 |
+ROW |32435 |19894 |19893 |
+ROW |32436 |19922 |19921 |
+ROW |32437 |19950 |19949 |
+ROW |32438 |19978 |19977 |
+ROW |32439 |20006 |20005 |
+ROW |32440 |20034 |20033 |
+ROW |32441 |20062 |20061 |
+ROW |32442 |20090 |20089 |
+ROW |32443 |20118 |20117 |
+ROW |32444 |20146 |20145 |
+ROW |32445 |20174 |20173 |
+ROW |32446 |20202 |20201 |
+ROW |32447 |20230 |20229 |
+ROW |32448 |20258 |20257 |
+ROW |32449 |20286 |20285 |
+ROW |32450 |20314 |20313 |
+ROW |32451 |20342 |20341 |
+ROW |32452 |20370 |20369 |
+ROW |32453 |20398 |20397 |
+ROW |32454 |20426 |20425 |
+ROW |32455 |20454 |20453 |
+ROW |32456 |20482 |20481 |
+ROW |32457 |20510 |20509 |
+ROW |32458 |20538 |20537 |
+ROW |32459 |20566 |20565 |
+ROW |32460 |20594 |20593 |
+ROW |32461 |20622 |20621 |
+ROW |32462 |20650 |20649 |
+ROW |32463 |20678 |20677 |
+ROW |32464 |20706 |20705 |
+ROW |32465 |20734 |20733 |
+ROW |32466 |20762 |20761 |
+ROW |32467 |20790 |20789 |
+ROW |32468 |20818 |20817 |
+ROW |32469 |20846 |20845 |
+ROW |32470 |20874 |20873 |
+ROW |32471 |20902 |20901 |
+ROW |32472 |20930 |20929 |
+ROW |32473 |20958 |20957 |
+ROW |32474 |20986 |20985 |
+ROW |32475 |21014 |21013 |
+ROW |32476 |21042 |21041 |
+ROW |32477 |21070 |21069 |
+ROW |32478 |21098 |21097 |
+ROW |32479 |21126 |21125 |
+ROW |32480 |21154 |21153 |
+ROW |32481 |14253 |14252 |
+ROW |32482 |14295 |14294 |
+ROW |32483 |14313 |14312 |
+ROW |32484 |14329 |14328 |
+ROW |32485 |14349 |14348 |
+ROW |32486 |14358 |14357 |
+ROW |32487 |14391 |14390 |
+ROW |32488 |14405 |14404 |
+ROW |32489 |14453 |14452 |
+ROW |32490 |14470 |14469 |
+ROW |32491 |14488 |14487 |
+ROW |32492 |14507 |14506 |
+ROW |32493 |14536 |14535 |
+ROW |32494 |14546 |14545 |
+ROW |32495 |14584 |14583 |
+ROW |32496 |14600 |14599 |
+ROW |32497 |14617 |14616 |
+ROW |32498 |14654 |14653 |
+ROW |32499 |14675 |14674 |
+ROW |32500 |14693 |14692 |
+ROW |32501 |14706 |14705 |
+ROW |32502 |14719 |14718 |
+ROW |32503 |14908 |14907 |
+ROW |32504 |15222 |15221 |
+ROW |32505 |15703 |15702 |
+ROW |32506 |15725 |15724 |
+ROW |32507 |15757 |15756 |
+ROW |32508 |15821 |15820 |
+ROW |32509 |15842 |15841 |
+ROW |32510 |15992 |15991 |
+ROW |32511 |16019 |16018 |
+ROW |32512 |16455 |16454 |
+ROW |32513 |17925 |17924 |
+ROW |32514 |18179 |18178 |
+ROW |32515 |19671 |19670 |
+ROW |32516 |19699 |19698 |
+ROW |32517 |19727 |19726 |
+ROW |32518 |19755 |19754 |
+ROW |32519 |19783 |19782 |
+ROW |32520 |19811 |19810 |
+ROW |32521 |19839 |19838 |
+ROW |32522 |19867 |19866 |
+ROW |32523 |19895 |19894 |
+ROW |32524 |19923 |19922 |
+ROW |32525 |19951 |19950 |
+ROW |32526 |19979 |19978 |
+ROW |32527 |20007 |20006 |
+ROW |32528 |20035 |20034 |
+ROW |32529 |20063 |20062 |
+ROW |32530 |20091 |20090 |
+ROW |32531 |20119 |20118 |
+ROW |32532 |20147 |20146 |
+ROW |32533 |20175 |20174 |
+ROW |32534 |20203 |20202 |
+ROW |32535 |20231 |20230 |
+ROW |32536 |20259 |20258 |
+ROW |32537 |20287 |20286 |
+ROW |32538 |20315 |20314 |
+ROW |32539 |20343 |20342 |
+ROW |32540 |20371 |20370 |
+ROW |32541 |20399 |20398 |
+ROW |32542 |20427 |20426 |
+ROW |32543 |20455 |20454 |
+ROW |32544 |20483 |20482 |
+ROW |32545 |20511 |20510 |
+ROW |32546 |20539 |20538 |
+ROW |32547 |20567 |20566 |
+ROW |32548 |20595 |20594 |
+ROW |32549 |20623 |20622 |
+ROW |32550 |20651 |20650 |
+ROW |32551 |20679 |20678 |
+ROW |32552 |20707 |20706 |
+ROW |32553 |20735 |20734 |
+ROW |32554 |20763 |20762 |
+ROW |32555 |20791 |20790 |
+ROW |32556 |20819 |20818 |
+ROW |32557 |20847 |20846 |
+ROW |32558 |20875 |20874 |
+ROW |32559 |20903 |20902 |
+ROW |32560 |20931 |20930 |
+ROW |32561 |20959 |20958 |
+ROW |32562 |20987 |20986 |
+ROW |32563 |21015 |21014 |
+ROW |32564 |21043 |21042 |
+ROW |32565 |21071 |21070 |
+ROW |32566 |21099 |21098 |
+ROW |32567 |21127 |21126 |
+ROW |32568 |21155 |21154 |
+ROW |32569 |14253 |14251 |
+ROW |32570 |14295 |14293 |
+ROW |32571 |14313 |14311 |
+ROW |32572 |14329 |14327 |
+ROW |32573 |14349 |14347 |
+ROW |32574 |14358 |14356 |
+ROW |32575 |14391 |14389 |
+ROW |32576 |14405 |14403 |
+ROW |32577 |14453 |14451 |
+ROW |32578 |14470 |14468 |
+ROW |32579 |14488 |14486 |
+ROW |32580 |14507 |14505 |
+ROW |32581 |14536 |14534 |
+ROW |32582 |14546 |14544 |
+ROW |32583 |14584 |14582 |
+ROW |32584 |14600 |14598 |
+ROW |32585 |14617 |14615 |
+ROW |32586 |14654 |14652 |
+ROW |32587 |14675 |14673 |
+ROW |32588 |14693 |14691 |
+ROW |32589 |14706 |14704 |
+ROW |32590 |14719 |14717 |
+ROW |32591 |14908 |14906 |
+ROW |32592 |15222 |15220 |
+ROW |32593 |15703 |15701 |
+ROW |32594 |15725 |15723 |
+ROW |32595 |15757 |15755 |
+ROW |32596 |15821 |15819 |
+ROW |32597 |15842 |15840 |
+ROW |32598 |15992 |15990 |
+ROW |32599 |16019 |16017 |
+ROW |32600 |16455 |16453 |
+ROW |32601 |17925 |17923 |
+ROW |32602 |18179 |18177 |
+ROW |32603 |19671 |19669 |
+ROW |32604 |19699 |19697 |
+ROW |32605 |19727 |19725 |
+ROW |32606 |19755 |19753 |
+ROW |32607 |19783 |19781 |
+ROW |32608 |19811 |19809 |
+ROW |32609 |19839 |19837 |
+ROW |32610 |19867 |19865 |
+ROW |32611 |19895 |19893 |
+ROW |32612 |19923 |19921 |
+ROW |32613 |19951 |19949 |
+ROW |32614 |19979 |19977 |
+ROW |32615 |20007 |20005 |
+ROW |32616 |20035 |20033 |
+ROW |32617 |20063 |20061 |
+ROW |32618 |20091 |20089 |
+ROW |32619 |20119 |20117 |
+ROW |32620 |20147 |20145 |
+ROW |32621 |20175 |20173 |
+ROW |32622 |20203 |20201 |
+ROW |32623 |20231 |20229 |
+ROW |32624 |20259 |20257 |
+ROW |32625 |20287 |20285 |
+ROW |32626 |20315 |20313 |
+ROW |32627 |20343 |20341 |
+ROW |32628 |20371 |20369 |
+ROW |32629 |20399 |20397 |
+ROW |32630 |20427 |20425 |
+ROW |32631 |20455 |20453 |
+ROW |32632 |20483 |20481 |
+ROW |32633 |20511 |20509 |
+ROW |32634 |20539 |20537 |
+ROW |32635 |20567 |20565 |
+ROW |32636 |20595 |20593 |
+ROW |32637 |20623 |20621 |
+ROW |32638 |20651 |20649 |
+ROW |32639 |20679 |20677 |
+ROW |32640 |20707 |20705 |
+ROW |32641 |20735 |20733 |
+ROW |32642 |20763 |20761 |
+ROW |32643 |20791 |20789 |
+ROW |32644 |20819 |20817 |
+ROW |32645 |20847 |20845 |
+ROW |32646 |20875 |20873 |
+ROW |32647 |20903 |20901 |
+ROW |32648 |20931 |20929 |
+ROW |32649 |20959 |20957 |
+ROW |32650 |20987 |20985 |
+ROW |32651 |21015 |21013 |
+ROW |32652 |21043 |21041 |
+ROW |32653 |21071 |21069 |
+ROW |32654 |21099 |21097 |
+ROW |32655 |21127 |21125 |
+ROW |32656 |21155 |21153 |
+ROW |32657 |16287 |16289 |
+ROW |32658 |16279 |16285 |
+ROW |32659 |16290 |16348 |
+ROW |32660 |16291 |16349 |
+ROW |32661 |16292 |16350 |
+ROW |32662 |16293 |16351 |
+ROW |32663 |16294 |16352 |
+ROW |32664 |16295 |16353 |
+ROW |32665 |16296 |16354 |
+ROW |32666 |16297 |16355 |
+ROW |32667 |16298 |16356 |
+ROW |32668 |16299 |16357 |
+ROW |32669 |16300 |16358 |
+ROW |32670 |16301 |16359 |
+ROW |32671 |16302 |16360 |
+ROW |32672 |16303 |16361 |
+ROW |32673 |16304 |16362 |
+ROW |32674 |16305 |16363 |
+ROW |32675 |16306 |16364 |
+ROW |32676 |16307 |16365 |
+ROW |32677 |16308 |16366 |
+ROW |32678 |16309 |16367 |
+ROW |32679 |16311 |16369 |
+ROW |32680 |16312 |16370 |
+ROW |32681 |16313 |16371 |
+ROW |32682 |16314 |16372 |
+ROW |32683 |16315 |16373 |
+ROW |32684 |16316 |16374 |
+ROW |32685 |16317 |16375 |
+ROW |32686 |16318 |16376 |
+ROW |32687 |16457 |16458 |
+ROW |32688 |17927 |17928 |
+ROW |32689 |18181 |18182 |
+ROW |32690 |19673 |19674 |
+ROW |32691 |19701 |19702 |
+ROW |32692 |19729 |19730 |
+ROW |32693 |19757 |19758 |
+ROW |32694 |19785 |19786 |
+ROW |32695 |19813 |19814 |
+ROW |32696 |19841 |19842 |
+ROW |32697 |19869 |19870 |
+ROW |32698 |19897 |19898 |
+ROW |32699 |19925 |19926 |
+ROW |32700 |19953 |19954 |
+ROW |32701 |19981 |19982 |
+ROW |32702 |20009 |20010 |
+ROW |32703 |20037 |20038 |
+ROW |32704 |20065 |20066 |
+ROW |32705 |20093 |20094 |
+ROW |32706 |20121 |20122 |
+ROW |32707 |20149 |20150 |
+ROW |32708 |20177 |20178 |
+ROW |32709 |20205 |20206 |
+ROW |32710 |20233 |20234 |
+ROW |32711 |20261 |20262 |
+ROW |32712 |20289 |20290 |
+ROW |32713 |20317 |20318 |
+ROW |32714 |20345 |20346 |
+ROW |32715 |20373 |20374 |
+ROW |32716 |20401 |20402 |
+ROW |32717 |20429 |20430 |
+ROW |32718 |20457 |20458 |
+ROW |32719 |20485 |20486 |
+ROW |32720 |20513 |20514 |
+ROW |32721 |20541 |20542 |
+ROW |32722 |20569 |20570 |
+ROW |32723 |20597 |20598 |
+ROW |32724 |20625 |20626 |
+ROW |32725 |20653 |20654 |
+ROW |32726 |20681 |20682 |
+ROW |32727 |20709 |20710 |
+ROW |32728 |20737 |20738 |
+ROW |32729 |20765 |20766 |
+ROW |32730 |20793 |20794 |
+ROW |32731 |20821 |20822 |
+ROW |32732 |20849 |20850 |
+ROW |32733 |20877 |20878 |
+ROW |32734 |20905 |20906 |
+ROW |32735 |20933 |20934 |
+ROW |32736 |20961 |20962 |
+ROW |32737 |20989 |20990 |
+ROW |32738 |21017 |21018 |
+ROW |32739 |21045 |21046 |
+ROW |32740 |21073 |21074 |
+ROW |32741 |21101 |21102 |
+ROW |32742 |21129 |21130 |
+ROW |32743 |21157 |21158 |
+ROW |32744 |16289 |14293 |
+ROW |32745 |16285 |14717 |
+ROW |32746 |16348 |14311 |
+ROW |32747 |16349 |14327 |
+ROW |32748 |16350 |14347 |
+ROW |32749 |16351 |14356 |
+ROW |32750 |16352 |14389 |
+ROW |32751 |16353 |14403 |
+ROW |32752 |16354 |14451 |
+ROW |32753 |16355 |14468 |
+ROW |32754 |16356 |14486 |
+ROW |32755 |16357 |14505 |
+ROW |32756 |16358 |14534 |
+ROW |32757 |16359 |14544 |
+ROW |32758 |16360 |14582 |
+ROW |32759 |16361 |14598 |
+ROW |32760 |16362 |14615 |
+ROW |32761 |16363 |14652 |
+ROW |32762 |16364 |14673 |
+ROW |32763 |16365 |14691 |
+ROW |32764 |16366 |14704 |
+ROW |32765 |16367 |14906 |
+ROW |32766 |16369 |15220 |
+ROW |32767 |16370 |15701 |
+ROW |32768 |16371 |15723 |
+ROW |32769 |16372 |15755 |
+ROW |32770 |16373 |15819 |
+ROW |32771 |16374 |15840 |
+ROW |32772 |16375 |15990 |
+ROW |32773 |16376 |16017 |
+ROW |32774 |16458 |16453 |
+ROW |32775 |17928 |17923 |
+ROW |32776 |18182 |18177 |
+ROW |32777 |19674 |19669 |
+ROW |32778 |19702 |19697 |
+ROW |32779 |19730 |19725 |
+ROW |32780 |19758 |19753 |
+ROW |32781 |19786 |19781 |
+ROW |32782 |19814 |19809 |
+ROW |32783 |19842 |19837 |
+ROW |32784 |19870 |19865 |
+ROW |32785 |19898 |19893 |
+ROW |32786 |19926 |19921 |
+ROW |32787 |19954 |19949 |
+ROW |32788 |19982 |19977 |
+ROW |32789 |20010 |20005 |
+ROW |32790 |20038 |20033 |
+ROW |32791 |20066 |20061 |
+ROW |32792 |20094 |20089 |
+ROW |32793 |20122 |20117 |
+ROW |32794 |20150 |20145 |
+ROW |32795 |20178 |20173 |
+ROW |32796 |20206 |20201 |
+ROW |32797 |20234 |20229 |
+ROW |32798 |20262 |20257 |
+ROW |32799 |20290 |20285 |
+ROW |32800 |20318 |20313 |
+ROW |32801 |20346 |20341 |
+ROW |32802 |20374 |20369 |
+ROW |32803 |20402 |20397 |
+ROW |32804 |20430 |20425 |
+ROW |32805 |20458 |20453 |
+ROW |32806 |20486 |20481 |
+ROW |32807 |20514 |20509 |
+ROW |32808 |20542 |20537 |
+ROW |32809 |20570 |20565 |
+ROW |32810 |20598 |20593 |
+ROW |32811 |20626 |20621 |
+ROW |32812 |20654 |20649 |
+ROW |32813 |20682 |20677 |
+ROW |32814 |20710 |20705 |
+ROW |32815 |20738 |20733 |
+ROW |32816 |20766 |20761 |
+ROW |32817 |20794 |20789 |
+ROW |32818 |20822 |20817 |
+ROW |32819 |20850 |20845 |
+ROW |32820 |20878 |20873 |
+ROW |32821 |20906 |20901 |
+ROW |32822 |20934 |20929 |
+ROW |32823 |20962 |20957 |
+ROW |32824 |20990 |20985 |
+ROW |32825 |21018 |21013 |
+ROW |32826 |21046 |21041 |
+ROW |32827 |21074 |21069 |
+ROW |32828 |21102 |21097 |
+ROW |32829 |21130 |21125 |
+ROW |32830 |21158 |21153 |
+ROW |32831 |16631 |16630 |
+ROW |32832 |16640 |16636 |
+ROW |32833 |16642 |16638 |
+ROW |32834 |16643 |16639 |
+ROW |32835 |15695 |16863 |
+ROW |32836 |18242 |16863 |
+ROW |32837 |18243 |16863 |
+ROW |32838 |15694 |16868 |
+ROW |32839 |15696 |16864 |
+ROW |32840 |15697 |16865 |
+ROW |32841 |18244 |16864 |
+ROW |32842 |18245 |16865 |
+ROW |32843 |18246 |16868 |
+ROW |32844 |18247 |16864 |
+ROW |32845 |18248 |16865 |
+ROW |32846 |18249 |16868 |
+ROW |32847 |15671 |16841 |
+ROW |32848 |18250 |16841 |
+ROW |32849 |18251 |16841 |
+ROW |32850 |15672 |16842 |
+ROW |32851 |15673 |16843 |
+ROW |32852 |15674 |16844 |
+ROW |32853 |15675 |16845 |
+ROW |32854 |15676 |16846 |
+ROW |32855 |15677 |16847 |
+ROW |32856 |15678 |16848 |
+ROW |32857 |15679 |16849 |
+ROW |32858 |15680 |16850 |
+ROW |32859 |15681 |16851 |
+ROW |32860 |15682 |16852 |
+ROW |32861 |15683 |16853 |
+ROW |32862 |15684 |16854 |
+ROW |32863 |15685 |16855 |
+ROW |32864 |15686 |16856 |
+ROW |32865 |15687 |16857 |
+ROW |32866 |15689 |16858 |
+ROW |32867 |15691 |16860 |
+ROW |32868 |15708 |16861 |
+ROW |32869 |15997 |16862 |
+ROW |32870 |19677 |19678 |
+ROW |32871 |19705 |19706 |
+ROW |32872 |19733 |19734 |
+ROW |32873 |19761 |19762 |
+ROW |32874 |19789 |19790 |
+ROW |32875 |19817 |19818 |
+ROW |32876 |19845 |19846 |
+ROW |32877 |19873 |19874 |
+ROW |32878 |19901 |19902 |
+ROW |32879 |19929 |19930 |
+ROW |32880 |19957 |19958 |
+ROW |32881 |19985 |19986 |
+ROW |32882 |20013 |20014 |
+ROW |32883 |20041 |20042 |
+ROW |32884 |20069 |20070 |
+ROW |32885 |20097 |20098 |
+ROW |32886 |20125 |20126 |
+ROW |32887 |20153 |20154 |
+ROW |32888 |20181 |20182 |
+ROW |32889 |20209 |20210 |
+ROW |32890 |20237 |20238 |
+ROW |32891 |20265 |20266 |
+ROW |32892 |20293 |20294 |
+ROW |32893 |20321 |20322 |
+ROW |32894 |20349 |20350 |
+ROW |32895 |20377 |20378 |
+ROW |32896 |20405 |20406 |
+ROW |32897 |20433 |20434 |
+ROW |32898 |20461 |20462 |
+ROW |32899 |20489 |20490 |
+ROW |32900 |20517 |20518 |
+ROW |32901 |20545 |20546 |
+ROW |32902 |20573 |20574 |
+ROW |32903 |20601 |20602 |
+ROW |32904 |20629 |20630 |
+ROW |32905 |20657 |20658 |
+ROW |32906 |20685 |20686 |
+ROW |32907 |20713 |20714 |
+ROW |32908 |20741 |20742 |
+ROW |32909 |20769 |20770 |
+ROW |32910 |20797 |20798 |
+ROW |32911 |20825 |20826 |
+ROW |32912 |20853 |20854 |
+ROW |32913 |20881 |20882 |
+ROW |32914 |20909 |20910 |
+ROW |32915 |20937 |20938 |
+ROW |32916 |20965 |20966 |
+ROW |32917 |20993 |20994 |
+ROW |32918 |21021 |21022 |
+ROW |32919 |21049 |21050 |
+ROW |32920 |21077 |21078 |
+ROW |32921 |21105 |21106 |
+ROW |32922 |21133 |21134 |
+ROW |32923 |21161 |21162 |
+ROW |32924 |18252 |16842 |
+ROW |32925 |18253 |16843 |
+ROW |32926 |18254 |16844 |
+ROW |32927 |18255 |16845 |
+ROW |32928 |18256 |16846 |
+ROW |32929 |18257 |16847 |
+ROW |32930 |18258 |16848 |
+ROW |32931 |18259 |16849 |
+ROW |32932 |18260 |16850 |
+ROW |32933 |18261 |16851 |
+ROW |32934 |18262 |16852 |
+ROW |32935 |18263 |16853 |
+ROW |32936 |18264 |16854 |
+ROW |32937 |18265 |16855 |
+ROW |32938 |18266 |16856 |
+ROW |32939 |18267 |16857 |
+ROW |32940 |18268 |16858 |
+ROW |32941 |18270 |16860 |
+ROW |32942 |18271 |16861 |
+ROW |32943 |18272 |16862 |
+ROW |32944 |19676 |19678 |
+ROW |32945 |19704 |19706 |
+ROW |32946 |19732 |19734 |
+ROW |32947 |19760 |19762 |
+ROW |32948 |19788 |19790 |
+ROW |32949 |19816 |19818 |
+ROW |32950 |19844 |19846 |
+ROW |32951 |19872 |19874 |
+ROW |32952 |19900 |19902 |
+ROW |32953 |19928 |19930 |
+ROW |32954 |19956 |19958 |
+ROW |32955 |19984 |19986 |
+ROW |32956 |20012 |20014 |
+ROW |32957 |20040 |20042 |
+ROW |32958 |20068 |20070 |
+ROW |32959 |20096 |20098 |
+ROW |32960 |20124 |20126 |
+ROW |32961 |20152 |20154 |
+ROW |32962 |20180 |20182 |
+ROW |32963 |20208 |20210 |
+ROW |32964 |20236 |20238 |
+ROW |32965 |20264 |20266 |
+ROW |32966 |20292 |20294 |
+ROW |32967 |20320 |20322 |
+ROW |32968 |20348 |20350 |
+ROW |32969 |20376 |20378 |
+ROW |32970 |20404 |20406 |
+ROW |32971 |20432 |20434 |
+ROW |32972 |20460 |20462 |
+ROW |32973 |20488 |20490 |
+ROW |32974 |20516 |20518 |
+ROW |32975 |20544 |20546 |
+ROW |32976 |20572 |20574 |
+ROW |32977 |20600 |20602 |
+ROW |32978 |20628 |20630 |
+ROW |32979 |20656 |20658 |
+ROW |32980 |20684 |20686 |
+ROW |32981 |20712 |20714 |
+ROW |32982 |20740 |20742 |
+ROW |32983 |20768 |20770 |
+ROW |32984 |20796 |20798 |
+ROW |32985 |20824 |20826 |
+ROW |32986 |20852 |20854 |
+ROW |32987 |20880 |20882 |
+ROW |32988 |20908 |20910 |
+ROW |32989 |20936 |20938 |
+ROW |32990 |20964 |20966 |
+ROW |32991 |20992 |20994 |
+ROW |32992 |21020 |21022 |
+ROW |32993 |21048 |21050 |
+ROW |32994 |21076 |21078 |
+ROW |32995 |21104 |21106 |
+ROW |32996 |21132 |21134 |
+ROW |32997 |21160 |21162 |
+ROW |32998 |18273 |16842 |
+ROW |32999 |18274 |16843 |
+ROW |33000 |18275 |16844 |
+ROW |33001 |18276 |16845 |
+ROW |33002 |18277 |16846 |
+ROW |33003 |18278 |16847 |
+ROW |33004 |18279 |16848 |
+ROW |33005 |18280 |16849 |
+ROW |33006 |18281 |16850 |
+ROW |33007 |18282 |16851 |
+ROW |33008 |18283 |16852 |
+ROW |33009 |18284 |16853 |
+ROW |33010 |18285 |16854 |
+ROW |33011 |18286 |16855 |
+ROW |33012 |18287 |16856 |
+ROW |33013 |18288 |16857 |
+ROW |33014 |18289 |16858 |
+ROW |33015 |18291 |16860 |
+ROW |33016 |18292 |16861 |
+ROW |33017 |18293 |16862 |
+ROW |33018 |19675 |19678 |
+ROW |33019 |19703 |19706 |
+ROW |33020 |19731 |19734 |
+ROW |33021 |19759 |19762 |
+ROW |33022 |19787 |19790 |
+ROW |33023 |19815 |19818 |
+ROW |33024 |19843 |19846 |
+ROW |33025 |19871 |19874 |
+ROW |33026 |19899 |19902 |
+ROW |33027 |19927 |19930 |
+ROW |33028 |19955 |19958 |
+ROW |33029 |19983 |19986 |
+ROW |33030 |20011 |20014 |
+ROW |33031 |20039 |20042 |
+ROW |33032 |20067 |20070 |
+ROW |33033 |20095 |20098 |
+ROW |33034 |20123 |20126 |
+ROW |33035 |20151 |20154 |
+ROW |33036 |20179 |20182 |
+ROW |33037 |20207 |20210 |
+ROW |33038 |20235 |20238 |
+ROW |33039 |20263 |20266 |
+ROW |33040 |20291 |20294 |
+ROW |33041 |20319 |20322 |
+ROW |33042 |20347 |20350 |
+ROW |33043 |20375 |20378 |
+ROW |33044 |20403 |20406 |
+ROW |33045 |20431 |20434 |
+ROW |33046 |20459 |20462 |
+ROW |33047 |20487 |20490 |
+ROW |33048 |20515 |20518 |
+ROW |33049 |20543 |20546 |
+ROW |33050 |20571 |20574 |
+ROW |33051 |20599 |20602 |
+ROW |33052 |20627 |20630 |
+ROW |33053 |20655 |20658 |
+ROW |33054 |20683 |20686 |
+ROW |33055 |20711 |20714 |
+ROW |33056 |20739 |20742 |
+ROW |33057 |20767 |20770 |
+ROW |33058 |20795 |20798 |
+ROW |33059 |20823 |20826 |
+ROW |33060 |20851 |20854 |
+ROW |33061 |20879 |20882 |
+ROW |33062 |20907 |20910 |
+ROW |33063 |20935 |20938 |
+ROW |33064 |20963 |20966 |
+ROW |33065 |20991 |20994 |
+ROW |33066 |21019 |21022 |
+ROW |33067 |21047 |21050 |
+ROW |33068 |21075 |21078 |
+ROW |33069 |21103 |21106 |
+ROW |33070 |21131 |21134 |
+ROW |33071 |21159 |21162 |
+ROW |33072 |15698 |16866 |
+ROW |33073 |18294 |16866 |
+ROW |33074 |18295 |16866 |
+ROW |33075 |16028 |16867 |
+ROW |33076 |18296 |16867 |
+ROW |33077 |18297 |16867 |
+ROW |33078 |18100 |18099 |
+ROW |33079 |18106 |18105 |
+ROW |33080 |14318 |14319 |
+ROW |33081 |17554 |15717 |
+ROW |33082 |17555 |15717 |
+ROW |33083 |17555 |17554 |
+ROW |33084 |17556 |15717 |
+ROW |33085 |17557 |15717 |
+ROW |33086 |17557 |17556 |
+ROW |33087 |17559 |17558 |
+ROW |33088 |17561 |17560 |
+ROW |33089 |17563 |17562 |
+ROW |33090 |17565 |17564 |
+ROW |33091 |15721 |15720 |
+ROW |33092 |15394 |15393 |
+ROW |33093 |15392 |15391 |
+ROW |33094 |17322 |14339 |
+ROW |33095 |15382 |15381 |
+ROW |33096 |15380 |15379 |
+ROW |33097 |16504 |16505 |
+ROW |33098 |14372 |14373 |
+ROW |33099 |15386 |15385 |
+ROW |33100 |15384 |15383 |
+ROW |33101 |14380 |14381 |
+ROW |33102 |18299 |18298 |
+ROW |33103 |18300 |18299 |
+ROW |33104 |18300 |18298 |
+ROW |33105 |18303 |18302 |
+ROW |33106 |18309 |18308 |
+ROW |33107 |18311 |18316 |
+ROW |33108 |18312 |18316 |
+ROW |33109 |18313 |18316 |
+ROW |33110 |18314 |18316 |
+ROW |33111 |18315 |18316 |
+ROW |33112 |18319 |18318 |
+ROW |33113 |18321 |18320 |
+ROW |33114 |18323 |18322 |
+ROW |33115 |18326 |18325 |
+ROW |33116 |18327 |18326 |
+ROW |33117 |18327 |18325 |
+ROW |33118 |18330 |18329 |
+ROW |33119 |18336 |18335 |
+ROW |33120 |18338 |18343 |
+ROW |33121 |18339 |18343 |
+ROW |33122 |18340 |18343 |
+ROW |33123 |18341 |18343 |
+ROW |33124 |18342 |18343 |
+ROW |33125 |18346 |18345 |
+ROW |33126 |18348 |18347 |
+ROW |33127 |18350 |18349 |
+ROW |33128 |18353 |18352 |
+ROW |33129 |18354 |18353 |
+ROW |33130 |18354 |18352 |
+ROW |33131 |18357 |18356 |
+ROW |33132 |18363 |18362 |
+ROW |33133 |18365 |18370 |
+ROW |33134 |18366 |18370 |
+ROW |33135 |18367 |18370 |
+ROW |33136 |18368 |18370 |
+ROW |33137 |18369 |18370 |
+ROW |33138 |18373 |18372 |
+ROW |33139 |18375 |18374 |
+ROW |33140 |18377 |18376 |
+ROW |33141 |18380 |18379 |
+ROW |33142 |18381 |18380 |
+ROW |33143 |18381 |18379 |
+ROW |33144 |18384 |18383 |
+ROW |33145 |18390 |18389 |
+ROW |33146 |18392 |18397 |
+ROW |33147 |18393 |18397 |
+ROW |33148 |18394 |18397 |
+ROW |33149 |18395 |18397 |
+ROW |33150 |18396 |18397 |
+ROW |33151 |18400 |18399 |
+ROW |33152 |18402 |18401 |
+ROW |33153 |18404 |18403 |
+ROW |33154 |18407 |18406 |
+ROW |33155 |18408 |18407 |
+ROW |33156 |18408 |18406 |
+ROW |33157 |18411 |18410 |
+ROW |33158 |18417 |18416 |
+ROW |33159 |18419 |18424 |
+ROW |33160 |18420 |18424 |
+ROW |33161 |18421 |18424 |
+ROW |33162 |18422 |18424 |
+ROW |33163 |18423 |18424 |
+ROW |33164 |18427 |18426 |
+ROW |33165 |18429 |18428 |
+ROW |33166 |18431 |18430 |
+ROW |33167 |15347 |15346 |
+ROW |33168 |15345 |15344 |
+ROW |33169 |17567 |17566 |
+ROW |33170 |15363 |15360 |
+ROW |33171 |15364 |15361 |
+ROW |33172 |15365 |15362 |
+ROW |33173 |15357 |15354 |
+ROW |33174 |15358 |15355 |
+ROW |33175 |15359 |15356 |
+ROW |33176 |17571 |17568 |
+ROW |33177 |17572 |17569 |
+ROW |33178 |17573 |17570 |
+ROW |33179 |15334 |15333 |
+ROW |33180 |15332 |15331 |
+ROW |33181 |14460 |14461 |
+ROW |33182 |14476 |14477 |
+ROW |33183 |14495 |14496 |
+ROW |33184 |14511 |17574 |
+ROW |33185 |19666 |19665 |
+ROW |33186 |19667 |19668 |
+ROW |33187 |14551 |14552 |
+ROW |33188 |15374 |15373 |
+ROW |33189 |15376 |15375 |
+ROW |33190 |14914 |14915 |
+ROW |33191 |14589 |14590 |
+ROW |33192 |15338 |15337 |
+ROW |33193 |17333 |17332 |
+ROW |33194 |14624 |14625 |
+ROW |33195 |18434 |18433 |
+ROW |33196 |18435 |18434 |
+ROW |33197 |18435 |18433 |
+ROW |33198 |18438 |18439 |
+ROW |33199 |18439 |18433 |
+ROW |33200 |18441 |18444 |
+ROW |33201 |18442 |18444 |
+ROW |33202 |18443 |18444 |
+ROW |33203 |18446 |18447 |
+ROW |33204 |18450 |18449 |
+ROW |33205 |19685 |19684 |
+ROW |33206 |19688 |19687 |
+ROW |33207 |19696 |19695 |
+ROW |33208 |19713 |19712 |
+ROW |33209 |19716 |19715 |
+ROW |33210 |19724 |19723 |
+ROW |33211 |19741 |19740 |
+ROW |33212 |19744 |19743 |
+ROW |33213 |19752 |19751 |
+ROW |33214 |19769 |19768 |
+ROW |33215 |19772 |19771 |
+ROW |33216 |19780 |19779 |
+ROW |33217 |19797 |19796 |
+ROW |33218 |19800 |19799 |
+ROW |33219 |19808 |19807 |
+ROW |33220 |19825 |19824 |
+ROW |33221 |19828 |19827 |
+ROW |33222 |19836 |19835 |
+ROW |33223 |19853 |19852 |
+ROW |33224 |19856 |19855 |
+ROW |33225 |19864 |19863 |
+ROW |33226 |19881 |19880 |
+ROW |33227 |19884 |19883 |
+ROW |33228 |19892 |19891 |
+ROW |33229 |19909 |19908 |
+ROW |33230 |19912 |19911 |
+ROW |33231 |19920 |19919 |
+ROW |33232 |19937 |19936 |
+ROW |33233 |19940 |19939 |
+ROW |33234 |19948 |19947 |
+ROW |33235 |19965 |19964 |
+ROW |33236 |19968 |19967 |
+ROW |33237 |19976 |19975 |
+ROW |33238 |19993 |19992 |
+ROW |33239 |19996 |19995 |
+ROW |33240 |20004 |20003 |
+ROW |33241 |20021 |20020 |
+ROW |33242 |20024 |20023 |
+ROW |33243 |20032 |20031 |
+ROW |33244 |20049 |20048 |
+ROW |33245 |20052 |20051 |
+ROW |33246 |20060 |20059 |
+ROW |33247 |20077 |20076 |
+ROW |33248 |20080 |20079 |
+ROW |33249 |20088 |20087 |
+ROW |33250 |20105 |20104 |
+ROW |33251 |20108 |20107 |
+ROW |33252 |20116 |20115 |
+ROW |33253 |20133 |20132 |
+ROW |33254 |20136 |20135 |
+ROW |33255 |20144 |20143 |
+ROW |33256 |20161 |20160 |
+ROW |33257 |20164 |20163 |
+ROW |33258 |20172 |20171 |
+ROW |33259 |20189 |20188 |
+ROW |33260 |20192 |20191 |
+ROW |33261 |20200 |20199 |
+ROW |33262 |20217 |20216 |
+ROW |33263 |20220 |20219 |
+ROW |33264 |20228 |20227 |
+ROW |33265 |20245 |20244 |
+ROW |33266 |20248 |20247 |
+ROW |33267 |20256 |20255 |
+ROW |33268 |20273 |20272 |
+ROW |33269 |20276 |20275 |
+ROW |33270 |20284 |20283 |
+ROW |33271 |20301 |20300 |
+ROW |33272 |20304 |20303 |
+ROW |33273 |20312 |20311 |
+ROW |33274 |20329 |20328 |
+ROW |33275 |20332 |20331 |
+ROW |33276 |20340 |20339 |
+ROW |33277 |20357 |20356 |
+ROW |33278 |20360 |20359 |
+ROW |33279 |20368 |20367 |
+ROW |33280 |20385 |20384 |
+ROW |33281 |20388 |20387 |
+ROW |33282 |20396 |20395 |
+ROW |33283 |20413 |20412 |
+ROW |33284 |20416 |20415 |
+ROW |33285 |20424 |20423 |
+ROW |33286 |20441 |20440 |
+ROW |33287 |20444 |20443 |
+ROW |33288 |20452 |20451 |
+ROW |33289 |20469 |20468 |
+ROW |33290 |20472 |20471 |
+ROW |33291 |20480 |20479 |
+ROW |33292 |20497 |20496 |
+ROW |33293 |20500 |20499 |
+ROW |33294 |20508 |20507 |
+ROW |33295 |20525 |20524 |
+ROW |33296 |20528 |20527 |
+ROW |33297 |20536 |20535 |
+ROW |33298 |20553 |20552 |
+ROW |33299 |20556 |20555 |
+ROW |33300 |20564 |20563 |
+ROW |33301 |20581 |20580 |
+ROW |33302 |20584 |20583 |
+ROW |33303 |20592 |20591 |
+ROW |33304 |20609 |20608 |
+ROW |33305 |20612 |20611 |
+ROW |33306 |20620 |20619 |
+ROW |33307 |20637 |20636 |
+ROW |33308 |20640 |20639 |
+ROW |33309 |20648 |20647 |
+ROW |33310 |20665 |20664 |
+ROW |33311 |20668 |20667 |
+ROW |33312 |20676 |20675 |
+ROW |33313 |20693 |20692 |
+ROW |33314 |20696 |20695 |
+ROW |33315 |20704 |20703 |
+ROW |33316 |20721 |20720 |
+ROW |33317 |20724 |20723 |
+ROW |33318 |20732 |20731 |
+ROW |33319 |20749 |20748 |
+ROW |33320 |20752 |20751 |
+ROW |33321 |20760 |20759 |
+ROW |33322 |20777 |20776 |
+ROW |33323 |20780 |20779 |
+ROW |33324 |20788 |20787 |
+ROW |33325 |20805 |20804 |
+ROW |33326 |20808 |20807 |
+ROW |33327 |20816 |20815 |
+ROW |33328 |20833 |20832 |
+ROW |33329 |20836 |20835 |
+ROW |33330 |20844 |20843 |
+ROW |33331 |20861 |20860 |
+ROW |33332 |20864 |20863 |
+ROW |33333 |20872 |20871 |
+ROW |33334 |20889 |20888 |
+ROW |33335 |20892 |20891 |
+ROW |33336 |20900 |20899 |
+ROW |33337 |20917 |20916 |
+ROW |33338 |20920 |20919 |
+ROW |33339 |20928 |20927 |
+ROW |33340 |20945 |20944 |
+ROW |33341 |20948 |20947 |
+ROW |33342 |20956 |20955 |
+ROW |33343 |20973 |20972 |
+ROW |33344 |20976 |20975 |
+ROW |33345 |20984 |20983 |
+ROW |33346 |21001 |21000 |
+ROW |33347 |21004 |21003 |
+ROW |33348 |21012 |21011 |
+ROW |33349 |21029 |21028 |
+ROW |33350 |21032 |21031 |
+ROW |33351 |21040 |21039 |
+ROW |33352 |21057 |21056 |
+ROW |33353 |21060 |21059 |
+ROW |33354 |21068 |21067 |
+ROW |33355 |21085 |21084 |
+ROW |33356 |21088 |21087 |
+ROW |33357 |21096 |21095 |
+ROW |33358 |21113 |21112 |
+ROW |33359 |21116 |21115 |
+ROW |33360 |21124 |21123 |
+ROW |33361 |21141 |21140 |
+ROW |33362 |21144 |21143 |
+ROW |33363 |21152 |21151 |
+ROW |33364 |21169 |21168 |
+ROW |33365 |21172 |21171 |
+ROW |33366 |21180 |21179 |
+ROW |33367 |14664 |14665 |
+ROW |33368 |17085 |17086 |
+ROW |33369 |16547 |16546 |
+ROW |33370 |17576 |17575 |
+ROW |33371 |17578 |17577 |
+ROW |33372 |17628 |17626 |
+ROW |33373 |17629 |17627 |
+ROW |33374 |17632 |17630 |
+ROW |33375 |17633 |17631 |
+ROW |33376 |17635 |17634 |
+ROW |33377 |17637 |17636 |
+ROW |33378 |17686 |17684 |
+ROW |33379 |17687 |17685 |
+ROW |33380 |17690 |17688 |
+ROW |33381 |17691 |17689 |
+ROW |33382 |17693 |17692 |
+ROW |33383 |17695 |17694 |
+ROW |33384 |17730 |17728 |
+ROW |33385 |17731 |17729 |
+ROW |33386 |17734 |17732 |
+ROW |33387 |17735 |17733 |
+ROW |33388 |17737 |17736 |
+ROW |33389 |17754 |17752 |
+ROW |33390 |17755 |17753 |
+ROW |33391 |17757 |17756 |
+ROW |33392 |17819 |17817 |
+ROW |33393 |17820 |17818 |
+ROW |33394 |17823 |17821 |
+ROW |33395 |17824 |17822 |
+ROW |33396 |17826 |17825 |
+ROW |33397 |17860 |17858 |
+ROW |33398 |17861 |17859 |
+ROW |33399 |17864 |17862 |
+ROW |33400 |17865 |17863 |
+ROW |33401 |17899 |17897 |
+ROW |33402 |17900 |17898 |
+ROW |33403 |17903 |17901 |
+ROW |33404 |17904 |17902 |
+ROW |33405 |17906 |17905 |
+ROW |33406 |17908 |17907 |
+ROW |33407 |17910 |17909 |
+ROW |33408 |16551 |16552 |
+ROW |33409 |16031 |16563 |
+ROW |33410 |16045 |16564 |
+ROW |33411 |16046 |16565 |
+ROW |33412 |16039 |16040 |
+ROW |33413 |16061 |16063 |
+ROW |33414 |16062 |16064 |
+ROW |33415 |16042 |16579 |
+ROW |33416 |16067 |16580 |
+ROW |33417 |16068 |16581 |
+ROW |33418 |16041 |16042 |
+ROW |33419 |16065 |16067 |
+ROW |33420 |16066 |16068 |
+ROW |33421 |16041 |16579 |
+ROW |33422 |16065 |16580 |
+ROW |33423 |16066 |16581 |
+ROW |33424 |18132 |18452 |
+ROW |33425 |18135 |18453 |
+ROW |33426 |18138 |18454 |
+ROW |33427 |18130 |18132 |
+ROW |33428 |18133 |18135 |
+ROW |33429 |18136 |18138 |
+ROW |33430 |18130 |18452 |
+ROW |33431 |18133 |18453 |
+ROW |33432 |18136 |18454 |
+ROW |33433 |16070 |16069 |
+ROW |33434 |16072 |16071 |
+ROW |33435 |16076 |17024 |
+ROW |33436 |18455 |17024 |
+ROW |33437 |16079 |16077 |
+ROW |33438 |16080 |16078 |
+ROW |33439 |16083 |16081 |
+ROW |33440 |16084 |16082 |
+ROW |33441 |16091 |17026 |
+ROW |33442 |16092 |17028 |
+ROW |33443 |18456 |17026 |
+ROW |33444 |18457 |17028 |
+ROW |33445 |17244 |17243 |
+ROW |33446 |17257 |17256 |
+ROW |33447 |17246 |17240 |
+ROW |33448 |17259 |17253 |
+ROW |33449 |17249 |17247 |
+ROW |33450 |17262 |17260 |
+ROW |33451 |17251 |17249 |
+ROW |33452 |17264 |17262 |
+ROW |33453 |17251 |17247 |
+ROW |33454 |17264 |17260 |
+ROW |33455 |18144 |18458 |
+ROW |33456 |18147 |18459 |
+ROW |33457 |18142 |18144 |
+ROW |33458 |18145 |18147 |
+ROW |33459 |18142 |18458 |
+ROW |33460 |18145 |18459 |
+ROW |33461 |17268 |17267 |
+ROW |33462 |17270 |17269 |
+ROW |33463 |17271 |17273 |
+ROW |33464 |18460 |17273 |
+ROW |33465 |17276 |17275 |
+ROW |33466 |17278 |17277 |
+ROW |33467 |17279 |17281 |
+ROW |33468 |18461 |17281 |
+ROW |33469 |16141 |16142 |
+ROW |33470 |16146 |16573 |
+ROW |33471 |16143 |16584 |
+ROW |33472 |18152 |18462 |
+ROW |33473 |18150 |18152 |
+ROW |33474 |18150 |18462 |
+ROW |33475 |16152 |16883 |
+ROW |33476 |16153 |16883 |
+ROW |33477 |18463 |16883 |
+ROW |33478 |18464 |16883 |
+ROW |33479 |16156 |16155 |
+ROW |33480 |16158 |16157 |
+ROW |33481 |18157 |18156 |
+ROW |33482 |18160 |18159 |
+ROW |33483 |18155 |18157 |
+ROW |33484 |18158 |18160 |
+ROW |33485 |18155 |18156 |
+ROW |33486 |18158 |18159 |
+ROW |33487 |16009 |16008 |
+ROW |33488 |16011 |16010 |
+ROW |33489 |16014 |16013 |
+ROW |33490 |16016 |16015 |
+ROW |33491 |16161 |16160 |
+ROW |33492 |16172 |16171 |
+ROW |33493 |16162 |16161 |
+ROW |33494 |16173 |16172 |
+ROW |33495 |16162 |16160 |
+ROW |33496 |16173 |16171 |
+ROW |33497 |16166 |18162 |
+ROW |33498 |16177 |18164 |
+ROW |33499 |16167 |18162 |
+ROW |33500 |16178 |18164 |
+ROW |33501 |17035 |16160 |
+ROW |33502 |17037 |16171 |
+ROW |33503 |18161 |18162 |
+ROW |33504 |18163 |18164 |
+ROW |33505 |16183 |16182 |
+ROW |33506 |17911 |17042 |
+ROW |33507 |18465 |17042 |
+ROW |33508 |18466 |17042 |
+ROW |33509 |17043 |17912 |
+ROW |33510 |17043 |17913 |
+ROW |33511 |16190 |16189 |
+ROW |33512 |17914 |17047 |
+ROW |33513 |18467 |17047 |
+ROW |33514 |18468 |17047 |
+ROW |33515 |17048 |17915 |
+ROW |33516 |17048 |17916 |
+ROW |33517 |17285 |17287 |
+ROW |33518 |17296 |17298 |
+ROW |33519 |17286 |17285 |
+ROW |33520 |17297 |17296 |
+ROW |33521 |17286 |17287 |
+ROW |33522 |17297 |17298 |
+ROW |33523 |17291 |18170 |
+ROW |33524 |17302 |18172 |
+ROW |33525 |17292 |18170 |
+ROW |33526 |17303 |18172 |
+ROW |33527 |17283 |17287 |
+ROW |33528 |17294 |17298 |
+ROW |33529 |18169 |18170 |
+ROW |33530 |18171 |18172 |
+ROW |33531 |17306 |17305 |
+ROW |33532 |17917 |17310 |
+ROW |33533 |18469 |17310 |
+ROW |33534 |18470 |17310 |
+ROW |33535 |17311 |17918 |
+ROW |33536 |17311 |17919 |
+ROW |33537 |17314 |17313 |
+ROW |33538 |17920 |17318 |
+ROW |33539 |18471 |17318 |
+ROW |33540 |18472 |17318 |
+ROW |33541 |17319 |17921 |
+ROW |33542 |17319 |17922 |
+ROW |33543 |18596 |18597 |
+ROW |33544 |18629 |18630 |
+ROW |33545 |18662 |18663 |
+ROW |33546 |18695 |18696 |
+ROW |33547 |18728 |18729 |
+ROW |33548 |18947 |18948 |
+ROW |33549 |18794 |18795 |
+ROW |33550 |18495 |18496 |
+ROW |33551 |18831 |18832 |
+ROW |33552 |18864 |18865 |
+ROW |33553 |18897 |18898 |
+ROW |33554 |16772 |16773 |
+ROW |33555 |16771 |16772 |
+ROW |33556 |16771 |16773 |
+ROW |33557 |16769 |16770 |
+ROW |33558 |16768 |16769 |
+ROW |33559 |16768 |16770 |
+ROW |33560 |19230 |19231 |
+ROW |33561 |19233 |19232 |
+ROW |33562 |19235 |19234 |
+ROW |33563 |19236 |19234 |
+ROW |33564 |19236 |19235 |
+ROW |33565 |19238 |19237 |
+ROW |33566 |19239 |19240 |
+ROW |33567 |19242 |19243 |
+ROW |33568 |19245 |19244 |
+ROW |33569 |19247 |19246 |
+ROW |33570 |19249 |19250 |
+ROW |33571 |19249 |19252 |
+ROW |33572 |19249 |19248 |
+ROW |33573 |19249 |19254 |
+ROW |33574 |19251 |19250 |
+ROW |33575 |19251 |19252 |
+ROW |33576 |19251 |19248 |
+ROW |33577 |19251 |19254 |
+ROW |33578 |19253 |19250 |
+ROW |33579 |19253 |19252 |
+ROW |33580 |19253 |19248 |
+ROW |33581 |19253 |19254 |
+ROW |33582 |19255 |19250 |
+ROW |33583 |19255 |19252 |
+ROW |33584 |19255 |19248 |
+ROW |33585 |19255 |19254 |
+ROW |33586 |19258 |19257 |
+ROW |33587 |16488 |16487 |
+ROW |33588 |16485 |16484 |
+ROW |33589 |16486 |16484 |
+ROW |33590 |16486 |16485 |
+ROW |33591 |16480 |16479 |
+ROW |33592 |16482 |16481 |
+ROW |33593 |16475 |16474 |
+ROW |33594 |16471 |16472 |
+ROW |33595 |16468 |16469 |
+ROW |33596 |16459 |16460 |
+ROW |33597 |16462 |16463 |
+ROW |33598 |16465 |16466 |
+ROW |33599 |16477 |16476 |
+ROW |33600 |19263 |19262 |
+ROW |33601 |19266 |19265 |
+ROW |33602 |19268 |19267 |
+ROW |33603 |19270 |19269 |
+ROW |33604 |19272 |19271 |
+ROW |33605 |19276 |19275 |
+ROW |33606 |19278 |19277 |
+ROW |33607 |19280 |19279 |
+ROW |33608 |19282 |19281 |
+ROW |33609 |19288 |19287 |
+ROW |33610 |19293 |19292 |
+ROW |33611 |19294 |19292 |
+ROW |33612 |19294 |19293 |
+ROW |33613 |19295 |19296 |
+ROW |33614 |19297 |19295 |
+ROW |33615 |19297 |19296 |
+ROW |33616 |19299 |19298 |
+ROW |33617 |19301 |19302 |
+ROW |33618 |19303 |19302 |
+ROW |33619 |19305 |19304 |
+ROW |33620 |19307 |19306 |
+ROW |33621 |19308 |19306 |
+ROW |33622 |19308 |19307 |
+ROW |33623 |19310 |19309 |
+ROW |33624 |19314 |19313 |
+ROW |33625 |19317 |19316 |
+ROW |33626 |19319 |19318 |
+ROW |33627 |19321 |19320 |
+ROW |33628 |19323 |19322 |
+ROW |33629 |19327 |19326 |
+ROW |33630 |19329 |19328 |
+ROW |33631 |19331 |19330 |
+ROW |33632 |19333 |19332 |
+ROW |33633 |19339 |19338 |
+ROW |33634 |19344 |19343 |
+ROW |33635 |19345 |19343 |
+ROW |33636 |19345 |19344 |
+ROW |33637 |19346 |19347 |
+ROW |33638 |19348 |19346 |
+ROW |33639 |19348 |19347 |
+ROW |33640 |19350 |19349 |
+ROW |33641 |19352 |19353 |
+ROW |33642 |19354 |19353 |
+ROW |33643 |19356 |19355 |
+ROW |33644 |19358 |19357 |
+ROW |33645 |19359 |19357 |
+ROW |33646 |19359 |19358 |
+ROW |33647 |19361 |19360 |
+ROW |33648 |19365 |19364 |
+ROW |33649 |19368 |19367 |
+ROW |33650 |19370 |19369 |
+ROW |33651 |19372 |19371 |
+ROW |33652 |19374 |19373 |
+ROW |33653 |19378 |19377 |
+ROW |33654 |19380 |19379 |
+ROW |33655 |19382 |19381 |
+ROW |33656 |19384 |19383 |
+ROW |33657 |19390 |19389 |
+ROW |33658 |19395 |19394 |
+ROW |33659 |19396 |19394 |
+ROW |33660 |19396 |19395 |
+ROW |33661 |19397 |19398 |
+ROW |33662 |19399 |19397 |
+ROW |33663 |19399 |19398 |
+ROW |33664 |19401 |19400 |
+ROW |33665 |19403 |19404 |
+ROW |33666 |19405 |19404 |
+ROW |33667 |19407 |19406 |
+ROW |33668 |19409 |19408 |
+ROW |33669 |19410 |19408 |
+ROW |33670 |19410 |19409 |
+ROW |33671 |19412 |19411 |
+ROW |33672 |19416 |19415 |
+ROW |33673 |19419 |19418 |
+ROW |33674 |19421 |19420 |
+ROW |33675 |19423 |19422 |
+ROW |33676 |19425 |19424 |
+ROW |33677 |19429 |19428 |
+ROW |33678 |19431 |19430 |
+ROW |33679 |19433 |19432 |
+ROW |33680 |19435 |19434 |
+ROW |33681 |19441 |19440 |
+ROW |33682 |19446 |19445 |
+ROW |33683 |19447 |19445 |
+ROW |33684 |19447 |19446 |
+ROW |33685 |19448 |19449 |
+ROW |33686 |19450 |19448 |
+ROW |33687 |19450 |19449 |
+ROW |33688 |19452 |19451 |
+ROW |33689 |19454 |19455 |
+ROW |33690 |19456 |19455 |
+ROW |33691 |19458 |19457 |
+ROW |33692 |19460 |19459 |
+ROW |33693 |19461 |19459 |
+ROW |33694 |19461 |19460 |
+ROW |33695 |19463 |19462 |
+ROW |33696 |15729 |15728 |
+ROW |33697 |15730 |15728 |
+ROW |33698 |15730 |15729 |
+ROW |33699 |15752 |15754 |
+ROW |33700 |15753 |15754 |
+ROW |33701 |15753 |15752 |
+ROW |33702 |15742 |15741 |
+ROW |33703 |15750 |15749 |
+ROW |33704 |15751 |15750 |
+ROW |33705 |15751 |15749 |
+ROW |33706 |15746 |15743 |
+ROW |33707 |15744 |15743 |
+ROW |33708 |15740 |15739 |
+ROW |33709 |17946 |17945 |
+ROW |33710 |17948 |17947 |
+ROW |33711 |15748 |15747 |
+ROW |33712 |19467 |19466 |
+ROW |33713 |19471 |19470 |
+ROW |33714 |19473 |19472 |
+ROW |33715 |19474 |19472 |
+ROW |33716 |19474 |19473 |
+ROW |33717 |19476 |19475 |
+ROW |33718 |19478 |19477 |
+ROW |33719 |19480 |19479 |
+ROW |33720 |19482 |19483 |
+ROW |33721 |19484 |19483 |
+ROW |33722 |19486 |19485 |
+ROW |33723 |19509 |19508 |
+ROW |33724 |19513 |19512 |
+ROW |33725 |19517 |19516 |
+ROW |33726 |19519 |19518 |
+ROW |33727 |19520 |19518 |
+ROW |33728 |19520 |19519 |
+ROW |33729 |19522 |19521 |
+ROW |33730 |19524 |19523 |
+ROW |33731 |19526 |19525 |
+ROW |33732 |19528 |19529 |
+ROW |33733 |19530 |19529 |
+ROW |33734 |19532 |19531 |
+ROW |33735 |19555 |19554 |
+ROW |33736 |19559 |19558 |
+ROW |33737 |19563 |19562 |
+ROW |33738 |19565 |19564 |
+ROW |33739 |19566 |19564 |
+ROW |33740 |19566 |19565 |
+ROW |33741 |19568 |19567 |
+ROW |33742 |19570 |19569 |
+ROW |33743 |19572 |19571 |
+ROW |33744 |19574 |19575 |
+ROW |33745 |19576 |19575 |
+ROW |33746 |19578 |19577 |
+ROW |33747 |19601 |19600 |
+ROW |33748 |19605 |19604 |
+ROW |33749 |19609 |19608 |
+ROW |33750 |19611 |19610 |
+ROW |33751 |19612 |19610 |
+ROW |33752 |19612 |19611 |
+ROW |33753 |19614 |19613 |
+ROW |33754 |19616 |19615 |
+ROW |33755 |19618 |19617 |
+ROW |33756 |19620 |19621 |
+ROW |33757 |19622 |19621 |
+ROW |33758 |19624 |19623 |
+ROW |33759 |19647 |19646 |
+ROW |33760 |16440 |16439 |
+ROW |33761 |18003 |15790 |
+ROW |33762 |18004 |15787 |
+ROW |33763 |18005 |15787 |
+ROW |33764 |18005 |18004 |
+ROW |33765 |15786 |15785 |
+ROW |33766 |15784 |15783 |
+ROW |33767 |15794 |15792 |
+ROW |33768 |15793 |15792 |
+ROW |33769 |15782 |15781 |
+ROW |33770 |15797 |15796 |
+ROW |33771 |15825 |15824 |
+ROW |33772 |15826 |15824 |
+ROW |33773 |15826 |15825 |
+ROW |33774 |15828 |15829 |
+ROW |33775 |15831 |15832 |
+ROW |33776 |15834 |15835 |
+ROW |33777 |15845 |15846 |
+ROW |33778 |17223 |17227 |
+ROW |33779 |17226 |17227 |
TABLE |functions
FIELDS|functionid|itemid|triggerid|name |parameter |
@@ -27428,6 +27451,12 @@ ROW |28238 |39767 |21190 |last |$
ROW |28239 |39779 |21191 |last |$ |
ROW |28240 |39798 |21192 |nodata |$,{$AGENT.NODATA_TIMEOUT} |
ROW |28241 |39801 |21193 |nodata |$,{$AGENT.NODATA_TIMEOUT} |
+ROW |28242 |39811 |21194 |last |$,#1 |
+ROW |28243 |39811 |21194 |last |$,#2 |
+ROW |28244 |39815 |21195 |last |$,#1 |
+ROW |28245 |39815 |21195 |last |$,#2 |
+ROW |28246 |39820 |21196 |last |$,#1 |
+ROW |28247 |39820 |21196 |last |$,#2 |
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|uuid |
@@ -29080,3042 +29109,3042 @@ ROW |61428 |1657 |34319 |0 |4 |990099|0 |2 |0 |
ROW |61429 |1657 |34318 |0 |5 |EE0000|0 |2 |0 |
ROW |61430 |1658 |33025 |0 |0 |C80000|0 |2 |0 |
ROW |61431 |1658 |33024 |0 |1 |00C800|0 |2 |0 |
-ROW |69735 |1397 |32451 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69736 |1397 |32450 |5 |1 |2774A4|0 |2 |0 |
-ROW |69737 |1398 |32452 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69738 |1398 |32449 |5 |1 |2774A4|0 |2 |0 |
-ROW |69739 |1399 |32444 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69740 |1399 |32446 |5 |1 |2774A4|0 |2 |0 |
-ROW |69741 |1399 |32448 |5 |2 |F63100|0 |2 |0 |
-ROW |69742 |1400 |32460 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69743 |1401 |32458 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69744 |1401 |32457 |5 |1 |2774A4|0 |2 |0 |
-ROW |69745 |1402 |32461 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69746 |1402 |32456 |5 |1 |2774A4|0 |2 |0 |
-ROW |69747 |1172 |30918 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69748 |1172 |30919 |0 |1 |2774A4|0 |2 |0 |
-ROW |69749 |1172 |30920 |0 |2 |F63100|0 |2 |0 |
-ROW |69750 |1172 |30921 |2 |3 |A54F10|0 |2 |0 |
-ROW |69751 |1173 |30922 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69752 |835 |28744 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69753 |835 |28745 |0 |1 |2774A4|0 |2 |0 |
-ROW |69754 |1174 |30913 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69755 |1175 |30906 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69756 |1175 |30908 |0 |1 |2774A4|0 |2 |0 |
-ROW |69757 |1175 |30915 |0 |2 |F63100|0 |2 |0 |
-ROW |69758 |1175 |30897 |0 |3 |A54F10|0 |2 |0 |
-ROW |69759 |1175 |30901 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69760 |1175 |30899 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69761 |1175 |30907 |0 |6 |AC8C14|0 |2 |0 |
-ROW |69762 |1175 |30905 |0 |7 |611F27|0 |2 |0 |
-ROW |69763 |1175 |30904 |0 |8 |F230E0|0 |2 |0 |
-ROW |69764 |1175 |30900 |0 |9 |FFAD40|0 |2 |0 |
-ROW |69765 |1175 |30898 |0 |10 |40CDFF|0 |2 |0 |
-ROW |69766 |1176 |30910 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69767 |1176 |30909 |0 |1 |2774A4|0 |2 |0 |
-ROW |69768 |836 |28798 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69769 |836 |28799 |0 |1 |2774A4|0 |2 |0 |
-ROW |69770 |836 |28800 |0 |2 |F63100|0 |2 |0 |
-ROW |69771 |836 |28801 |2 |3 |A54F10|0 |2 |0 |
-ROW |69772 |837 |28803 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69773 |838 |28793 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69774 |840 |28787 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69775 |840 |28784 |0 |1 |2774A4|0 |2 |0 |
-ROW |69776 |840 |28782 |0 |2 |F63100|0 |2 |0 |
-ROW |69777 |840 |28781 |0 |3 |A54F10|0 |2 |0 |
-ROW |69778 |840 |28780 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69779 |840 |28778 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69780 |840 |28786 |0 |6 |AC8C14|0 |2 |0 |
-ROW |69781 |840 |28785 |0 |7 |611F27|0 |2 |0 |
-ROW |69782 |840 |28783 |0 |8 |F230E0|0 |2 |0 |
-ROW |69783 |840 |28779 |0 |9 |FFAD40|0 |2 |0 |
-ROW |69784 |840 |28796 |0 |10 |40CDFF|0 |2 |0 |
-ROW |69785 |839 |28789 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69786 |839 |28788 |0 |1 |2774A4|0 |2 |0 |
-ROW |69787 |1339 |32172 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69788 |1339 |32173 |0 |1 |2774A4|0 |2 |0 |
-ROW |69789 |1403 |32511 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69790 |1403 |32514 |0 |1 |2774A4|0 |2 |0 |
-ROW |69791 |1404 |32512 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69792 |1404 |32515 |0 |1 |2774A4|0 |2 |0 |
-ROW |69793 |1405 |32507 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69794 |1405 |32508 |0 |1 |2774A4|0 |2 |0 |
-ROW |69795 |1405 |32513 |0 |2 |F63100|0 |2 |0 |
-ROW |69796 |1343 |32135 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69797 |1343 |32142 |0 |1 |2774A4|0 |2 |0 |
-ROW |69798 |1344 |32167 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69799 |1344 |32136 |0 |1 |2774A4|0 |2 |0 |
-ROW |69800 |1345 |32141 |1 |0 |1A7C11|0 |2 |0 |
-ROW |69801 |1345 |32138 |1 |1 |2774A4|0 |2 |0 |
-ROW |69802 |1346 |32156 |2 |0 |1A7C11|0 |2 |0 |
-ROW |69803 |1346 |32158 |0 |1 |2774A4|0 |2 |0 |
-ROW |69804 |1346 |32159 |0 |2 |F63100|0 |2 |0 |
-ROW |69805 |1346 |32154 |2 |3 |A54F10|0 |2 |0 |
-ROW |69806 |1346 |32155 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69807 |1346 |32146 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69808 |1347 |32150 |2 |0 |1A7C11|0 |2 |0 |
-ROW |69809 |1347 |32151 |0 |1 |2774A4|0 |2 |0 |
-ROW |69810 |1347 |32152 |0 |2 |F63100|0 |2 |0 |
-ROW |69811 |1622 |35078 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69812 |1622 |35091 |0 |1 |2774A4|0 |2 |0 |
-ROW |69813 |1622 |35098 |0 |2 |F63100|0 |2 |0 |
-ROW |69814 |1622 |35100 |0 |3 |A54F10|0 |2 |0 |
-ROW |69815 |1622 |35099 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69816 |1623 |35090 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69817 |1623 |35101 |0 |1 |2774A4|0 |2 |0 |
-ROW |69818 |1624 |35097 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69819 |1624 |35096 |0 |1 |2774A4|0 |2 |0 |
-ROW |69820 |1624 |35095 |0 |2 |F63100|0 |2 |0 |
-ROW |69821 |1625 |35089 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69822 |1625 |35088 |0 |1 |2774A4|0 |2 |0 |
-ROW |69823 |1625 |35087 |0 |2 |F63100|0 |2 |0 |
-ROW |69824 |1625 |35086 |0 |3 |A54F10|0 |2 |0 |
-ROW |69825 |1625 |35085 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69826 |1626 |35079 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69827 |1626 |35082 |0 |1 |2774A4|0 |2 |0 |
-ROW |69828 |1627 |35080 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69829 |1627 |35102 |0 |1 |2774A4|0 |2 |0 |
-ROW |69830 |1628 |35093 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69831 |1628 |35092 |0 |1 |2774A4|0 |2 |0 |
-ROW |69832 |1628 |35081 |0 |2 |F63100|0 |2 |0 |
-ROW |69833 |1628 |35084 |0 |3 |A54F10|0 |2 |0 |
-ROW |69834 |1628 |35083 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69835 |1121 |30606 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69836 |1121 |30590 |5 |1 |2774A4|0 |2 |0 |
-ROW |69837 |1121 |30582 |5 |2 |F63100|0 |2 |0 |
-ROW |69838 |1122 |30580 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69839 |1122 |30578 |5 |1 |2774A4|0 |2 |0 |
-ROW |69840 |1123 |30586 |2 |0 |1A7C11|0 |2 |0 |
-ROW |69841 |1123 |30608 |2 |1 |2774A4|0 |2 |0 |
-ROW |69842 |1123 |30585 |2 |2 |F63100|0 |2 |0 |
-ROW |69843 |1123 |30589 |2 |3 |A54F10|0 |2 |0 |
-ROW |69844 |1123 |30584 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |69845 |1123 |30588 |2 |5 |6C59DC|0 |2 |0 |
-ROW |69846 |1124 |30583 |2 |0 |1A7C11|0 |2 |0 |
-ROW |69847 |1124 |30587 |2 |1 |2774A4|0 |2 |0 |
-ROW |69848 |1125 |30555 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69849 |1125 |30554 |2 |1 |2774A4|0 |2 |0 |
-ROW |69850 |1125 |30556 |2 |2 |F63100|0 |2 |0 |
-ROW |69851 |1125 |30557 |2 |3 |A54F10|0 |2 |0 |
-ROW |69852 |1126 |30565 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69853 |1127 |30567 |2 |0 |1A7C11|0 |2 |0 |
-ROW |69854 |1127 |30568 |2 |1 |2774A4|0 |2 |0 |
-ROW |69855 |1128 |30536 |2 |0 |1A7C11|0 |2 |0 |
-ROW |69856 |1129 |30566 |2 |0 |1A7C11|0 |2 |0 |
-ROW |69857 |1129 |30549 |2 |1 |2774A4|0 |2 |0 |
-ROW |69858 |1129 |30553 |2 |2 |F63100|0 |2 |0 |
-ROW |69859 |1129 |30570 |2 |3 |A54F10|0 |2 |0 |
-ROW |69860 |1143 |30714 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69861 |1143 |30716 |0 |1 |2774A4|0 |2 |0 |
-ROW |69862 |1143 |30717 |0 |2 |F63100|0 |2 |0 |
-ROW |69863 |1143 |30715 |0 |3 |A54F10|0 |2 |0 |
-ROW |69864 |1144 |30753 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69865 |1144 |30738 |0 |1 |2774A4|0 |2 |0 |
-ROW |69866 |1145 |30718 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69867 |1145 |30737 |0 |1 |2774A4|0 |2 |0 |
-ROW |69868 |1145 |30727 |0 |2 |F63100|0 |2 |0 |
-ROW |69869 |1145 |30729 |0 |3 |A54F10|0 |2 |0 |
-ROW |69870 |1146 |30730 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69871 |1146 |30732 |0 |1 |2774A4|0 |2 |0 |
-ROW |69872 |1146 |30731 |0 |2 |F63100|0 |2 |0 |
-ROW |69873 |1146 |30733 |0 |3 |A54F10|0 |2 |0 |
-ROW |69874 |1147 |30734 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69875 |1147 |30736 |0 |1 |2774A4|0 |2 |0 |
-ROW |69876 |1147 |30735 |0 |2 |F63100|0 |2 |0 |
-ROW |69877 |1147 |30758 |0 |3 |A54F10|0 |2 |0 |
-ROW |69878 |1148 |30711 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69879 |1148 |30706 |0 |1 |2774A4|0 |2 |0 |
-ROW |69880 |1148 |30710 |0 |2 |F63100|0 |2 |0 |
-ROW |69881 |1148 |30712 |0 |3 |A54F10|0 |2 |0 |
-ROW |69882 |1148 |30702 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69883 |1148 |30707 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69884 |1148 |30704 |0 |6 |AC8C14|0 |2 |0 |
-ROW |69885 |1177 |30927 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69886 |1177 |30944 |2 |1 |2774A4|0 |2 |0 |
-ROW |69887 |1178 |30935 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69888 |1178 |30942 |0 |1 |2774A4|0 |2 |0 |
-ROW |69889 |1179 |30949 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69890 |1179 |30950 |0 |1 |2774A4|0 |2 |0 |
-ROW |69891 |1179 |30951 |0 |2 |F63100|0 |2 |0 |
-ROW |69892 |1180 |30952 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69893 |1180 |30954 |0 |1 |2774A4|0 |2 |0 |
-ROW |69894 |1180 |30955 |0 |2 |F63100|0 |2 |0 |
-ROW |69895 |1181 |30936 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69896 |1181 |30940 |5 |1 |2774A4|0 |2 |0 |
-ROW |69897 |1182 |30930 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69898 |1182 |30929 |0 |1 |2774A4|0 |2 |0 |
-ROW |69899 |1182 |30928 |0 |2 |F63100|0 |2 |0 |
-ROW |69900 |1182 |30931 |2 |3 |A54F10|1 |2 |0 |
-ROW |69901 |1183 |30934 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69902 |1183 |30941 |0 |1 |2774A4|0 |2 |0 |
-ROW |69903 |1406 |32532 |0 |0 |1A7C11|1 |2 |0 |
-ROW |69904 |1406 |32535 |0 |1 |2774A4|1 |2 |0 |
-ROW |69905 |1406 |32533 |0 |2 |F63100|0 |2 |0 |
-ROW |69906 |1406 |32534 |0 |3 |A54F10|0 |2 |0 |
-ROW |69907 |1406 |32536 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69908 |1406 |32537 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69909 |1407 |32543 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69910 |1407 |32544 |0 |1 |2774A4|0 |2 |0 |
-ROW |69911 |1408 |32518 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69912 |1408 |32521 |0 |1 |2774A4|0 |2 |0 |
-ROW |69913 |1408 |32523 |0 |2 |F63100|0 |2 |0 |
-ROW |69914 |1408 |32524 |0 |3 |A54F10|0 |2 |0 |
-ROW |69915 |1409 |32562 |0 |0 |1A7C11|1 |2 |0 |
-ROW |69916 |1409 |32565 |0 |1 |2774A4|1 |2 |0 |
-ROW |69917 |1409 |32563 |0 |2 |F63100|0 |2 |0 |
-ROW |69918 |1409 |32564 |0 |3 |A54F10|0 |2 |0 |
-ROW |69919 |1409 |32566 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69920 |1409 |32567 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69921 |1410 |32573 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69922 |1410 |32574 |0 |1 |2774A4|0 |2 |0 |
-ROW |69923 |1411 |32548 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69924 |1411 |32551 |0 |1 |2774A4|0 |2 |0 |
-ROW |69925 |1411 |32553 |0 |2 |F63100|0 |2 |0 |
-ROW |69926 |1411 |32554 |0 |3 |A54F10|0 |2 |0 |
-ROW |69927 |1250 |31527 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69928 |1250 |31529 |0 |1 |2774A4|0 |2 |0 |
-ROW |69929 |1250 |31499 |0 |2 |F63100|0 |2 |0 |
-ROW |69930 |1251 |31532 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69931 |1251 |31534 |0 |1 |2774A4|0 |2 |0 |
-ROW |69932 |1251 |31538 |0 |2 |F63100|0 |2 |0 |
-ROW |69933 |1251 |31536 |0 |3 |A54F10|0 |2 |0 |
-ROW |69934 |1251 |31528 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69935 |1251 |31542 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69936 |1252 |31552 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69937 |1252 |31551 |0 |1 |2774A4|0 |2 |0 |
-ROW |69938 |1252 |31541 |0 |2 |F63100|0 |2 |0 |
-ROW |69939 |1253 |31513 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69940 |1253 |31526 |0 |1 |2774A4|0 |2 |0 |
-ROW |69941 |1253 |31525 |0 |2 |F63100|0 |2 |0 |
-ROW |69942 |1254 |31502 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69943 |1254 |31501 |0 |1 |2774A4|0 |2 |0 |
-ROW |69944 |1254 |31503 |0 |2 |F63100|0 |2 |0 |
-ROW |69945 |1255 |31505 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69946 |1255 |31504 |0 |1 |2774A4|0 |2 |0 |
-ROW |69947 |1255 |31506 |0 |2 |F63100|0 |2 |0 |
-ROW |69948 |1256 |31508 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69949 |1256 |31507 |0 |1 |2774A4|0 |2 |0 |
-ROW |69950 |1256 |31509 |0 |2 |F63100|0 |2 |0 |
-ROW |69951 |1257 |31511 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69952 |1257 |31510 |0 |1 |2774A4|0 |2 |0 |
-ROW |69953 |1257 |31500 |0 |2 |F63100|0 |2 |0 |
-ROW |69954 |1258 |31514 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69955 |1258 |31512 |0 |1 |2774A4|0 |2 |0 |
-ROW |69956 |1258 |31515 |0 |2 |F63100|0 |2 |0 |
-ROW |69957 |1259 |31516 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69958 |1259 |31517 |0 |1 |2774A4|0 |2 |0 |
-ROW |69959 |1260 |31523 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69960 |1260 |31522 |0 |1 |2774A4|0 |2 |0 |
-ROW |69961 |1260 |31524 |0 |2 |F63100|0 |2 |0 |
-ROW |69962 |1412 |32601 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69963 |1412 |32602 |0 |1 |2774A4|0 |2 |0 |
-ROW |69964 |1412 |32603 |0 |2 |F63100|0 |2 |0 |
-ROW |69965 |1412 |32604 |0 |3 |A54F10|0 |2 |0 |
-ROW |69966 |1412 |32606 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69967 |1412 |32606 |2 |5 |6C59DC|0 |2 |0 |
-ROW |69968 |1413 |32608 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69969 |1413 |32610 |0 |1 |2774A4|0 |2 |0 |
-ROW |69970 |1413 |32611 |0 |2 |F63100|0 |2 |0 |
-ROW |69971 |1414 |32582 |2 |0 |1A7C11|0 |2 |0 |
-ROW |69972 |1414 |32580 |2 |1 |2774A4|0 |2 |0 |
-ROW |69973 |1414 |32581 |2 |2 |F63100|0 |2 |0 |
-ROW |69974 |1414 |32597 |0 |3 |A54F10|1 |2 |0 |
-ROW |69975 |1414 |32599 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |69976 |1414 |32588 |0 |5 |6C59DC|1 |2 |0 |
-ROW |69977 |1415 |32583 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69978 |1415 |32584 |0 |1 |2774A4|0 |2 |0 |
-ROW |69979 |1415 |32585 |0 |2 |F63100|0 |2 |0 |
-ROW |69980 |1415 |32579 |2 |3 |A54F10|0 |2 |0 |
-ROW |69981 |1416 |32587 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69982 |1416 |32590 |0 |1 |2774A4|0 |2 |0 |
-ROW |69983 |1416 |32589 |0 |2 |F63100|0 |2 |0 |
-ROW |69984 |1417 |32673 |1 |0 |1A7C11|0 |2 |0 |
-ROW |69985 |1417 |32679 |1 |1 |2774A4|0 |2 |0 |
-ROW |69986 |1629 |35114 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69987 |1629 |35113 |5 |1 |2774A4|0 |2 |0 |
-ROW |69988 |1075 |30204 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69989 |1075 |30205 |0 |1 |2774A4|0 |2 |0 |
-ROW |69990 |1630 |35112 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69991 |1630 |35111 |0 |1 |2774A4|0 |2 |0 |
-ROW |69992 |1630 |35110 |0 |2 |F63100|0 |2 |0 |
-ROW |69993 |1630 |35108 |0 |3 |A54F10|0 |2 |0 |
-ROW |69994 |1630 |35105 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69995 |1076 |30209 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69996 |1076 |30208 |0 |1 |2774A4|0 |2 |0 |
-ROW |69997 |1077 |30206 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69998 |1077 |30207 |5 |1 |2774A4|0 |2 |0 |
-ROW |69999 |1078 |30216 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70000 |1078 |30215 |0 |1 |2774A4|0 |2 |0 |
-ROW |70001 |1079 |30210 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70002 |1079 |30211 |0 |1 |2774A4|0 |2 |0 |
-ROW |70003 |1079 |30212 |0 |2 |F63100|0 |2 |0 |
-ROW |70004 |1079 |30213 |0 |3 |A54F10|0 |2 |0 |
-ROW |70005 |1079 |30214 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70006 |1631 |35127 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70007 |1631 |35126 |5 |1 |2774A4|0 |2 |0 |
-ROW |70008 |1632 |35124 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70009 |1632 |35123 |0 |1 |2774A4|0 |2 |0 |
-ROW |70010 |1632 |35122 |0 |2 |F63100|0 |2 |0 |
-ROW |70011 |1632 |30222 |0 |3 |A54F10|0 |2 |0 |
-ROW |70012 |1632 |30223 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70013 |1080 |30226 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70014 |1080 |30225 |0 |1 |2774A4|0 |2 |0 |
-ROW |70015 |1633 |35139 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70016 |1633 |35138 |5 |1 |2774A4|0 |2 |0 |
-ROW |70017 |1081 |30247 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70018 |1081 |30248 |0 |1 |2774A4|0 |2 |0 |
-ROW |70019 |1634 |35137 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70020 |1634 |35136 |0 |1 |2774A4|0 |2 |0 |
-ROW |70021 |1634 |35135 |0 |2 |F63100|0 |2 |0 |
-ROW |70022 |1634 |35133 |0 |3 |A54F10|0 |2 |0 |
-ROW |70023 |1634 |35130 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70024 |1082 |30252 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70025 |1082 |30251 |0 |1 |2774A4|0 |2 |0 |
-ROW |70026 |1083 |30249 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70027 |1083 |30250 |5 |1 |2774A4|0 |2 |0 |
-ROW |70028 |1084 |30259 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70029 |1084 |30258 |0 |1 |2774A4|0 |2 |0 |
-ROW |70030 |1085 |30253 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70031 |1085 |30254 |0 |1 |2774A4|0 |2 |0 |
-ROW |70032 |1085 |30255 |0 |2 |F63100|0 |2 |0 |
-ROW |70033 |1085 |30256 |0 |3 |A54F10|0 |2 |0 |
-ROW |70034 |1085 |30257 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70035 |1635 |35152 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70036 |1635 |35151 |5 |1 |2774A4|0 |2 |0 |
-ROW |70037 |1636 |35149 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70038 |1636 |35148 |0 |1 |2774A4|0 |2 |0 |
-ROW |70039 |1636 |35147 |0 |2 |F63100|0 |2 |0 |
-ROW |70040 |1636 |30265 |0 |3 |A54F10|0 |2 |0 |
-ROW |70041 |1636 |30266 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70042 |1086 |30269 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70043 |1086 |30268 |0 |1 |2774A4|0 |2 |0 |
-ROW |70044 |1184 |30982 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70045 |1184 |30980 |5 |1 |2774A4|0 |2 |0 |
-ROW |70046 |1185 |30983 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70047 |1185 |30981 |0 |1 |2774A4|0 |2 |0 |
-ROW |70048 |1186 |30976 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70049 |1186 |30985 |0 |1 |2774A4|0 |2 |0 |
-ROW |70050 |1186 |30997 |0 |2 |F63100|0 |2 |0 |
-ROW |70051 |1186 |30970 |0 |3 |A54F10|0 |2 |0 |
-ROW |70052 |1186 |30973 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70053 |1186 |30995 |0 |5 |6C59DC|0 |2 |0 |
-ROW |70054 |1186 |30998 |0 |6 |AC8C14|0 |2 |0 |
-ROW |70055 |1186 |30978 |0 |7 |611F27|0 |2 |0 |
-ROW |70056 |1187 |31024 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70057 |1187 |31022 |5 |1 |2774A4|0 |2 |0 |
-ROW |70058 |1188 |31025 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70059 |1188 |31023 |0 |1 |2774A4|0 |2 |0 |
-ROW |70060 |1189 |31018 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70061 |1189 |31027 |0 |1 |2774A4|0 |2 |0 |
-ROW |70062 |1189 |31039 |0 |2 |F63100|0 |2 |0 |
-ROW |70063 |1189 |31012 |0 |3 |A54F10|0 |2 |0 |
-ROW |70064 |1189 |31015 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70065 |1189 |31037 |0 |5 |6C59DC|0 |2 |0 |
-ROW |70066 |1189 |31040 |0 |6 |AC8C14|0 |2 |0 |
-ROW |70067 |1189 |31020 |0 |7 |611F27|0 |2 |0 |
-ROW |70068 |1499 |33478 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70069 |1499 |33467 |0 |1 |2774A4|0 |2 |0 |
-ROW |70070 |1500 |33468 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70071 |1500 |33479 |0 |1 |2774A4|0 |2 |0 |
-ROW |70072 |1501 |33442 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70073 |1501 |33441 |0 |1 |2774A4|0 |2 |0 |
-ROW |70074 |1501 |33440 |0 |2 |F63100|0 |2 |0 |
-ROW |70075 |1502 |33423 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70076 |1502 |33419 |0 |1 |2774A4|0 |2 |0 |
-ROW |70077 |1502 |33422 |0 |2 |F63100|0 |2 |0 |
-ROW |70078 |1502 |33421 |0 |3 |A54F10|0 |2 |0 |
-ROW |70079 |1502 |33412 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70080 |1418 |32700 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70081 |1418 |32699 |0 |1 |2774A4|0 |2 |0 |
-ROW |70082 |1419 |32710 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70083 |1419 |32709 |0 |1 |2774A4|0 |2 |0 |
-ROW |70084 |1420 |32693 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70085 |1420 |32724 |0 |1 |2774A4|0 |2 |0 |
-ROW |70086 |1421 |32730 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70087 |1421 |32731 |0 |1 |2774A4|0 |2 |0 |
-ROW |70088 |1421 |32728 |0 |2 |F63100|0 |2 |0 |
-ROW |70089 |1421 |32729 |0 |3 |A54F10|0 |2 |0 |
-ROW |70090 |1422 |32705 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70091 |1422 |32706 |0 |1 |2774A4|0 |2 |0 |
-ROW |70092 |1423 |32702 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70093 |1423 |32703 |0 |1 |2774A4|0 |2 |0 |
-ROW |70094 |1424 |32708 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70095 |1424 |32722 |2 |1 |2774A4|0 |2 |0 |
-ROW |70096 |1424 |32695 |0 |2 |F63100|0 |2 |0 |
-ROW |70097 |1424 |32753 |0 |3 |A54F10|0 |2 |0 |
-ROW |70098 |1424 |32740 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |70099 |1424 |32723 |0 |5 |6C59DC|0 |2 |0 |
-ROW |70100 |1424 |32747 |0 |6 |AC8C14|0 |2 |0 |
-ROW |70101 |1424 |32748 |2 |7 |611F27|0 |2 |0 |
-ROW |70102 |1424 |32749 |0 |8 |F230E0|0 |2 |0 |
-ROW |70103 |1424 |32750 |0 |9 |FFAD40|0 |2 |0 |
-ROW |70104 |1424 |32751 |2 |10 |40CDFF|0 |2 |0 |
-ROW |70105 |1424 |32752 |0 |11 |40FFA0|0 |2 |0 |
-ROW |70106 |1425 |32746 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70107 |1425 |32745 |2 |1 |2774A4|0 |2 |0 |
-ROW |70108 |1425 |32744 |0 |2 |F63100|0 |2 |0 |
-ROW |70109 |1425 |32743 |0 |3 |A54F10|0 |2 |0 |
-ROW |70110 |1425 |32743 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |70111 |1425 |32742 |0 |5 |6C59DC|0 |2 |0 |
-ROW |70112 |1426 |32720 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70113 |1426 |32721 |0 |1 |2774A4|0 |2 |0 |
-ROW |70114 |1426 |32719 |0 |2 |F63100|0 |2 |0 |
-ROW |70115 |1426 |32718 |0 |3 |A54F10|0 |2 |0 |
-ROW |70116 |1130 |30613 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70117 |1130 |30635 |0 |1 |2774A4|0 |2 |0 |
-ROW |70118 |1130 |30625 |0 |2 |F63100|0 |2 |0 |
-ROW |70119 |1131 |30632 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70120 |1131 |30633 |5 |1 |2774A4|0 |2 |0 |
-ROW |70121 |1131 |30629 |5 |2 |F63100|0 |2 |0 |
-ROW |70122 |1132 |30630 |2 |0 |1A7C11|0 |2 |0 |
-ROW |70123 |1132 |30628 |2 |1 |2774A4|0 |2 |0 |
-ROW |70124 |1132 |30631 |2 |2 |F63100|0 |2 |0 |
-ROW |70125 |1133 |30619 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70126 |1133 |30618 |0 |1 |2774A4|0 |2 |0 |
-ROW |70127 |1134 |30623 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70128 |1134 |30622 |5 |1 |2774A4|0 |2 |0 |
-ROW |70129 |1135 |30615 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70130 |841 |28813 |2 |0 |1A7C11|0 |2 |0 |
-ROW |70131 |841 |28811 |0 |1 |2774A4|0 |2 |0 |
-ROW |70132 |841 |28812 |0 |2 |F63100|0 |2 |0 |
-ROW |70133 |841 |28814 |0 |3 |A54F10|0 |2 |0 |
-ROW |70134 |842 |28817 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70135 |842 |28815 |0 |1 |2774A4|0 |2 |0 |
-ROW |70136 |842 |28816 |0 |2 |F63100|0 |2 |0 |
-ROW |70137 |844 |28808 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70138 |844 |28807 |0 |1 |2774A4|0 |2 |0 |
-ROW |70139 |843 |28818 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70140 |845 |28829 |2 |0 |1A7C11|0 |2 |0 |
-ROW |70141 |845 |28831 |0 |1 |2774A4|0 |2 |0 |
-ROW |70142 |845 |28832 |0 |2 |F63100|0 |2 |0 |
-ROW |70143 |845 |28830 |0 |3 |A54F10|0 |2 |0 |
-ROW |70144 |846 |28826 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70145 |846 |28828 |0 |1 |2774A4|0 |2 |0 |
-ROW |70146 |846 |28827 |0 |2 |F63100|0 |2 |0 |
-ROW |70147 |847 |28825 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70148 |1637 |35187 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70149 |1638 |35189 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70150 |1638 |35188 |5 |1 |2774A4|0 |2 |0 |
-ROW |70151 |1638 |35190 |5 |2 |F63100|0 |2 |0 |
-ROW |70152 |1638 |35191 |5 |3 |A54F10|0 |2 |0 |
-ROW |70153 |1638 |35192 |5 |4 |FC6EA3|0 |2 |0 |
-ROW |70154 |1639 |35198 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70155 |1640 |35200 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70156 |1640 |35199 |5 |1 |2774A4|0 |2 |0 |
-ROW |70157 |1640 |35201 |5 |2 |F63100|0 |2 |0 |
-ROW |70158 |1640 |35202 |5 |3 |A54F10|0 |2 |0 |
-ROW |70159 |1640 |35203 |5 |4 |FC6EA3|0 |2 |0 |
-ROW |70160 |1641 |35221 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70161 |1641 |35220 |5 |1 |2774A4|0 |2 |0 |
-ROW |70162 |1641 |35219 |5 |2 |F63100|0 |2 |0 |
-ROW |70163 |1642 |35214 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70164 |1642 |35216 |5 |1 |2774A4|0 |2 |0 |
-ROW |70165 |1642 |35207 |5 |2 |F63100|0 |2 |0 |
-ROW |70166 |1642 |35213 |5 |3 |A54F10|0 |2 |0 |
-ROW |70167 |1642 |35212 |5 |4 |FC6EA3|0 |2 |0 |
-ROW |70168 |1643 |35228 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70169 |1643 |35229 |5 |1 |2774A4|0 |2 |0 |
-ROW |70170 |1643 |35227 |5 |2 |F63100|0 |2 |0 |
-ROW |70171 |1644 |35231 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70172 |1644 |35230 |5 |1 |2774A4|0 |2 |0 |
-ROW |70173 |1644 |35235 |5 |2 |F63100|0 |2 |0 |
-ROW |70174 |1644 |35233 |5 |3 |A54F10|0 |2 |0 |
-ROW |70175 |1644 |35232 |5 |4 |FC6EA3|0 |2 |0 |
-ROW |70176 |1644 |35234 |5 |5 |6C59DC|0 |2 |0 |
-ROW |70177 |1644 |35236 |5 |6 |AC8C14|0 |2 |0 |
-ROW |70178 |1644 |35237 |5 |7 |611F27|0 |2 |0 |
-ROW |70179 |1645 |35243 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70180 |1645 |35244 |5 |1 |2774A4|0 |2 |0 |
-ROW |70181 |1645 |35245 |5 |2 |F63100|0 |2 |0 |
-ROW |70182 |1646 |35252 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70183 |1646 |35253 |5 |1 |2774A4|0 |2 |0 |
-ROW |70184 |1646 |35254 |5 |2 |F63100|0 |2 |0 |
-ROW |70185 |1647 |35172 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70186 |1647 |35168 |5 |1 |2774A4|0 |2 |0 |
-ROW |70187 |1647 |35164 |5 |2 |F63100|0 |2 |0 |
-ROW |70188 |1647 |35163 |5 |3 |A54F10|0 |2 |0 |
-ROW |70189 |1648 |35170 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70190 |1649 |35167 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70191 |1649 |35166 |5 |1 |2774A4|0 |2 |0 |
-ROW |70192 |1649 |35165 |5 |2 |F63100|0 |2 |0 |
-ROW |70193 |1650 |35176 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70194 |1262 |31592 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70195 |1262 |31584 |0 |1 |2774A4|0 |2 |0 |
-ROW |70196 |1262 |31582 |0 |2 |F63100|0 |2 |0 |
-ROW |70197 |1262 |31585 |0 |3 |A54F10|0 |2 |0 |
-ROW |70198 |1263 |31591 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70199 |1263 |31583 |0 |1 |2774A4|0 |2 |0 |
-ROW |70200 |1263 |31590 |0 |2 |F63100|0 |2 |0 |
-ROW |70201 |1264 |31602 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70202 |1264 |31597 |0 |1 |2774A4|0 |2 |0 |
-ROW |70203 |1264 |31601 |0 |2 |F63100|0 |2 |0 |
-ROW |70204 |1264 |31604 |0 |3 |A54F10|0 |2 |0 |
-ROW |70205 |1265 |31609 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70206 |1265 |31610 |0 |1 |2774A4|0 |2 |0 |
-ROW |70207 |1265 |31608 |0 |2 |F63100|0 |2 |0 |
-ROW |70208 |1001 |29729 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70209 |1001 |29728 |0 |1 |2774A4|0 |2 |0 |
-ROW |70210 |1001 |29727 |0 |2 |F63100|0 |2 |0 |
-ROW |70211 |1001 |29725 |0 |3 |A54F10|0 |2 |0 |
-ROW |70212 |1001 |29723 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70213 |1001 |29733 |0 |5 |6C59DC|0 |2 |0 |
-ROW |70214 |1001 |29737 |0 |6 |AC8C14|0 |2 |0 |
-ROW |70215 |1001 |29731 |0 |7 |611F27|0 |2 |0 |
-ROW |70216 |1000 |29720 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70217 |1000 |29730 |0 |1 |2774A4|0 |2 |0 |
-ROW |70218 |1000 |29721 |0 |2 |F63100|0 |2 |0 |
-ROW |70219 |1000 |29726 |0 |3 |A54F10|0 |2 |0 |
-ROW |70220 |1000 |29724 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70221 |1000 |29734 |0 |5 |6C59DC|0 |2 |0 |
-ROW |70222 |1000 |29722 |0 |6 |AC8C14|0 |2 |0 |
-ROW |70223 |1000 |29732 |0 |7 |611F27|0 |2 |0 |
-ROW |70224 |1027 |30022 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70225 |1027 |30021 |0 |1 |2774A4|0 |2 |0 |
-ROW |70226 |1027 |30019 |0 |2 |F63100|0 |2 |0 |
-ROW |70227 |1008 |29698 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70228 |1008 |29700 |2 |1 |FF0000|0 |2 |0 |
-ROW |70229 |1007 |29691 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70230 |1013 |29657 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70231 |1013 |29658 |0 |1 |2774A4|0 |2 |0 |
-ROW |70232 |1009 |29687 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70233 |1009 |29694 |2 |1 |FF0000|0 |2 |0 |
-ROW |70234 |1029 |30017 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70235 |1029 |30016 |0 |1 |2774A4|0 |2 |0 |
-ROW |70236 |1029 |30015 |0 |2 |F63100|0 |2 |0 |
-ROW |70237 |1031 |30007 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70238 |1031 |30013 |0 |1 |2774A4|0 |2 |0 |
-ROW |70239 |1031 |30011 |0 |2 |F63100|0 |2 |0 |
-ROW |70240 |1031 |30009 |0 |3 |A54F10|0 |2 |0 |
-ROW |70241 |1031 |30005 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70242 |1031 |30003 |0 |5 |6C59DC|0 |2 |0 |
-ROW |70243 |1031 |30023 |0 |6 |AC8C14|0 |2 |0 |
-ROW |70244 |1031 |30001 |0 |7 |611F27|0 |2 |0 |
-ROW |70245 |1030 |30008 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70246 |1030 |30014 |0 |1 |2774A4|0 |2 |0 |
-ROW |70247 |1030 |30012 |0 |2 |F63100|0 |2 |0 |
-ROW |70248 |1030 |30010 |0 |3 |A54F10|0 |2 |0 |
-ROW |70249 |1030 |30006 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70250 |1030 |30004 |0 |5 |6C59DC|0 |2 |0 |
-ROW |70251 |1030 |30000 |0 |6 |AC8C14|0 |2 |0 |
-ROW |70252 |1030 |30002 |0 |7 |611F27|0 |2 |0 |
-ROW |70253 |1011 |29695 |2 |0 |1A7C11|0 |2 |0 |
-ROW |70254 |1028 |30020 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70255 |1010 |29701 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70256 |1010 |29697 |0 |1 |2774A4|0 |2 |0 |
-ROW |70257 |1012 |29692 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70258 |1015 |29812 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70259 |1015 |29811 |0 |1 |2774A4|0 |2 |0 |
-ROW |70260 |1015 |29810 |0 |2 |F63100|0 |2 |0 |
-ROW |70261 |1015 |29808 |0 |3 |A54F10|0 |2 |0 |
-ROW |70262 |1015 |29806 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70263 |1015 |29816 |0 |5 |6C59DC|0 |2 |0 |
-ROW |70264 |1015 |29820 |0 |6 |AC8C14|0 |2 |0 |
-ROW |70265 |1015 |29814 |0 |7 |611F27|0 |2 |0 |
-ROW |70266 |1014 |29803 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70267 |1014 |29813 |0 |1 |2774A4|0 |2 |0 |
-ROW |70268 |1014 |29804 |0 |2 |F63100|0 |2 |0 |
-ROW |70269 |1014 |29809 |0 |3 |A54F10|0 |2 |0 |
-ROW |70270 |1014 |29807 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70271 |1014 |29817 |0 |5 |6C59DC|0 |2 |0 |
-ROW |70272 |1014 |29805 |0 |6 |AC8C14|0 |2 |0 |
-ROW |70273 |1014 |29815 |0 |7 |611F27|0 |2 |0 |
-ROW |70274 |1016 |29768 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70275 |1016 |29767 |0 |1 |2774A4|0 |2 |0 |
-ROW |70276 |1016 |29765 |0 |2 |F63100|0 |2 |0 |
-ROW |70277 |1022 |29782 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70278 |1022 |29781 |2 |1 |FF0000|0 |2 |0 |
-ROW |70279 |1021 |29783 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70280 |1023 |29780 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70281 |1023 |29784 |2 |1 |FF0000|0 |2 |0 |
-ROW |70282 |1018 |29763 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70283 |1018 |29762 |0 |1 |2774A4|0 |2 |0 |
-ROW |70284 |1018 |29761 |0 |2 |F63100|0 |2 |0 |
-ROW |70285 |1020 |29753 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70286 |1020 |29759 |0 |1 |2774A4|0 |2 |0 |
-ROW |70287 |1020 |29757 |0 |2 |F63100|0 |2 |0 |
-ROW |70288 |1020 |29755 |0 |3 |A54F10|0 |2 |0 |
-ROW |70289 |1020 |29751 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70290 |1020 |29749 |0 |5 |6C59DC|0 |2 |0 |
-ROW |70291 |1020 |29769 |0 |6 |AC8C14|0 |2 |0 |
-ROW |70292 |1020 |29747 |0 |7 |611F27|0 |2 |0 |
-ROW |70293 |1019 |29754 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70294 |1019 |29760 |0 |1 |2774A4|0 |2 |0 |
-ROW |70295 |1019 |29758 |0 |2 |F63100|0 |2 |0 |
-ROW |70296 |1019 |29756 |0 |3 |A54F10|0 |2 |0 |
-ROW |70297 |1019 |29752 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70298 |1019 |29750 |0 |5 |6C59DC|0 |2 |0 |
-ROW |70299 |1019 |29746 |0 |6 |AC8C14|0 |2 |0 |
-ROW |70300 |1019 |29748 |0 |7 |611F27|0 |2 |0 |
-ROW |70301 |1025 |29775 |2 |0 |1A7C11|0 |2 |0 |
-ROW |70302 |1017 |29766 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70303 |1024 |29776 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70304 |1024 |29777 |0 |1 |2774A4|0 |2 |0 |
-ROW |70305 |1026 |29772 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70306 |1356 |32276 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70307 |1356 |32275 |0 |1 |2774A4|0 |2 |0 |
-ROW |70308 |1357 |32281 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70309 |1357 |32267 |0 |1 |2774A4|0 |2 |0 |
-ROW |70310 |1357 |32279 |0 |2 |F63100|0 |2 |0 |
-ROW |70311 |1358 |32268 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70312 |1358 |32274 |0 |1 |2774A4|0 |2 |0 |
-ROW |70313 |1358 |32271 |0 |2 |F63100|0 |2 |0 |
-ROW |70314 |1359 |32288 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70315 |1359 |32291 |0 |1 |2774A4|0 |2 |0 |
-ROW |70316 |1360 |32247 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70317 |1360 |32245 |0 |1 |2774A4|0 |2 |0 |
-ROW |70318 |1360 |32246 |0 |2 |F63100|0 |2 |0 |
-ROW |70319 |1361 |32248 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70320 |1361 |32249 |0 |1 |2774A4|0 |2 |0 |
-ROW |70321 |1361 |32250 |0 |2 |F63100|0 |2 |0 |
-ROW |70322 |1362 |32240 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70323 |1362 |32273 |0 |1 |2774A4|0 |2 |0 |
-ROW |70324 |1363 |32282 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70325 |1363 |32283 |0 |1 |2774A4|0 |2 |0 |
-ROW |70326 |1363 |32289 |0 |2 |F63100|0 |2 |0 |
-ROW |70327 |1363 |32290 |0 |3 |A54F10|0 |2 |0 |
-ROW |70328 |1363 |32286 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70329 |1363 |32287 |0 |5 |6C59DC|0 |2 |0 |
-ROW |70330 |1363 |32241 |0 |6 |AC8C14|0 |2 |0 |
-ROW |70331 |1363 |32242 |0 |7 |611F27|0 |2 |0 |
-ROW |70332 |1363 |32243 |0 |8 |F230E0|0 |2 |0 |
-ROW |70333 |1363 |32244 |0 |9 |FFAD40|0 |2 |0 |
-ROW |70334 |1363 |32277 |0 |10 |40CDFF|0 |2 |0 |
-ROW |70335 |1363 |32278 |0 |11 |40FFA0|0 |2 |0 |
-ROW |70336 |1427 |32768 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70337 |1427 |32767 |5 |1 |2774A4|0 |2 |0 |
-ROW |70338 |1428 |32774 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70339 |1428 |32772 |5 |1 |2774A4|0 |2 |0 |
-ROW |70340 |1428 |32775 |5 |2 |F63100|0 |2 |0 |
-ROW |70341 |1428 |32773 |5 |3 |A54F10|0 |2 |0 |
-ROW |70342 |1429 |32779 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70343 |1429 |32777 |5 |1 |2774A4|0 |2 |0 |
-ROW |70344 |1429 |32778 |5 |2 |F63100|0 |2 |0 |
-ROW |70345 |1806 |36785 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70346 |1806 |36786 |0 |1 |2774A4|0 |2 |0 |
-ROW |70347 |1806 |36787 |0 |2 |F63100|0 |2 |0 |
-ROW |70348 |1430 |32837 |2 |0 |1A7C11|0 |2 |0 |
-ROW |70349 |1430 |32836 |2 |1 |2774A4|0 |2 |0 |
-ROW |70350 |1430 |32835 |2 |2 |F63100|0 |2 |0 |
-ROW |70351 |1431 |32856 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70352 |1432 |32828 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70353 |1433 |32847 |5 |0 |34bdeb|0 |2 |0 |
-ROW |70354 |1434 |32797 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70355 |1434 |32796 |5 |1 |2774A4|0 |2 |0 |
-ROW |70356 |1434 |32801 |2 |2 |F63100|0 |2 |0 |
-ROW |70357 |1435 |32834 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70358 |1436 |32819 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70359 |1437 |32826 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70360 |1614 |34976 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70361 |1614 |34975 |0 |1 |2774A4|0 |2 |0 |
-ROW |70362 |1614 |34978 |0 |2 |F63100|0 |2 |0 |
-ROW |70363 |1614 |34979 |0 |3 |A54F10|0 |2 |0 |
-ROW |70364 |1614 |34980 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70365 |1615 |34982 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70366 |1615 |34997 |0 |1 |2774A4|0 |2 |0 |
-ROW |70367 |1615 |35001 |0 |2 |F63100|0 |2 |0 |
-ROW |70368 |1615 |35000 |0 |3 |A54F10|0 |2 |0 |
-ROW |70369 |1615 |34998 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70370 |1615 |34996 |0 |5 |6C59DC|0 |2 |0 |
-ROW |70371 |1616 |35015 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70372 |1616 |35014 |0 |1 |2774A4|0 |2 |0 |
-ROW |70373 |1617 |35012 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70374 |1617 |35013 |0 |1 |2774A4|0 |2 |0 |
-ROW |70375 |1618 |34951 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70376 |1618 |34952 |0 |1 |2774A4|0 |2 |0 |
-ROW |70377 |1618 |34953 |0 |2 |F63100|0 |2 |0 |
-ROW |70378 |1618 |34954 |0 |3 |A54F10|0 |2 |0 |
-ROW |70379 |1618 |34956 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70380 |1618 |34950 |0 |5 |6C59DC|0 |2 |0 |
-ROW |70381 |1618 |34957 |0 |6 |AC8C14|0 |2 |0 |
-ROW |70382 |1618 |34959 |0 |7 |611F27|0 |2 |0 |
-ROW |70383 |1618 |34965 |0 |8 |F230E0|0 |2 |0 |
-ROW |70384 |1445 |22404 |0 |0 |990099|0 |2 |0 |
-ROW |70385 |1445 |22399 |0 |1 |990000|0 |2 |0 |
-ROW |70386 |1445 |22416 |0 |2 |0000EE|0 |2 |0 |
-ROW |70387 |1445 |25366 |0 |3 |FF33FF|0 |2 |0 |
-ROW |70388 |1445 |22418 |0 |4 |009600|0 |2 |0 |
-ROW |70389 |1445 |22402 |0 |5 |003300|0 |2 |0 |
-ROW |70390 |1445 |22400 |0 |6 |33FFFF|0 |2 |0 |
-ROW |70391 |1445 |22689 |0 |7 |DD0000|0 |2 |0 |
-ROW |70392 |1445 |23171 |0 |8 |000099|0 |2 |0 |
-ROW |70393 |1445 |22401 |0 |9 |00FF00|0 |2 |0 |
-ROW |70394 |1445 |33023 |0 |10 |5A2B57|0 |2 |0 |
-ROW |70395 |1651 |22406 |0 |0 |00EE00|0 |2 |0 |
-ROW |70396 |1651 |25665 |0 |1 |0000EE|0 |2 |0 |
-ROW |70397 |1651 |25666 |0 |2 |FFAA00|0 |2 |0 |
-ROW |70398 |1651 |28537 |0 |3 |00EEEE|0 |2 |0 |
-ROW |70399 |1651 |28535 |0 |4 |990099|0 |2 |0 |
-ROW |70400 |1652 |22426 |0 |0 |00EE00|0 |2 |0 |
-ROW |70401 |1652 |22408 |0 |1 |FFAA00|0 |2 |0 |
-ROW |70402 |1652 |22412 |0 |2 |990099|0 |2 |0 |
-ROW |70403 |1652 |22414 |0 |3 |FF66FF|0 |2 |0 |
-ROW |70404 |1652 |23663 |0 |4 |009999|0 |2 |0 |
-ROW |70405 |1652 |33022 |0 |5 |2B5429|0 |2 |0 |
-ROW |70406 |1652 |22430 |0 |6 |8048B4|0 |2 |0 |
-ROW |70407 |1652 |22420 |0 |7 |FD5434|0 |2 |0 |
-ROW |70408 |1653 |22422 |0 |0 |00EE00|0 |2 |0 |
-ROW |70409 |1653 |22424 |0 |1 |0000EE|0 |2 |0 |
-ROW |70410 |1653 |25370 |0 |2 |FFAA00|0 |2 |0 |
-ROW |70411 |1653 |29822 |0 |3 |00EEEE|0 |2 |0 |
-ROW |70412 |1653 |34317 |0 |4 |990099|0 |2 |0 |
-ROW |70413 |1653 |34316 |0 |5 |EE0000|0 |2 |0 |
-ROW |70414 |1654 |33021 |0 |0 |C80000|0 |2 |0 |
-ROW |70415 |1654 |33020 |0 |1 |00C800|0 |2 |0 |
-ROW |70416 |527 |22199 |0 |0 |C80000|0 |2 |0 |
-ROW |70417 |527 |22196 |0 |1 |00C800|0 |2 |0 |
-ROW |70418 |410 |22185 |0 |0 |009900|0 |2 |0 |
-ROW |70419 |410 |22189 |0 |1 |DD0000|0 |2 |0 |
-ROW |70420 |410 |22396 |0 |2 |00DDDD|0 |2 |0 |
-ROW |70421 |410 |22183 |0 |3 |3333FF|0 |2 |0 |
-ROW |70422 |410 |22191 |0 |4 |999900|0 |2 |0 |
-ROW |70423 |410 |23634 |0 |5 |00FF00|0 |2 |0 |
-ROW |70424 |404 |22404 |0 |0 |990099|0 |2 |0 |
-ROW |70425 |404 |22399 |0 |1 |990000|0 |2 |0 |
-ROW |70426 |404 |22416 |0 |2 |0000EE|0 |2 |0 |
-ROW |70427 |404 |22430 |0 |3 |FF33FF|0 |2 |0 |
-ROW |70428 |404 |22418 |0 |4 |009600|0 |2 |0 |
-ROW |70429 |404 |22402 |0 |5 |003300|0 |2 |0 |
-ROW |70430 |404 |22420 |0 |6 |CCCC00|0 |2 |0 |
-ROW |70431 |404 |22400 |0 |7 |33FFFF|0 |2 |0 |
-ROW |70432 |404 |22689 |0 |8 |DD0000|0 |2 |0 |
-ROW |70433 |404 |23171 |0 |9 |000099|0 |2 |0 |
-ROW |70434 |404 |22401 |0 |10 |00FF00|0 |2 |0 |
-ROW |70435 |404 |33023 |0 |11 |5A2B57|0 |2 |0 |
-ROW |70436 |406 |22426 |0 |1 |00EE00|0 |2 |0 |
-ROW |70437 |406 |22422 |0 |2 |0000EE|0 |2 |0 |
-ROW |70438 |406 |22408 |0 |3 |FFAA00|0 |2 |0 |
-ROW |70439 |406 |22424 |0 |4 |00EEEE|0 |2 |0 |
-ROW |70440 |406 |22412 |0 |5 |990099|0 |2 |0 |
-ROW |70441 |406 |22406 |0 |6 |EE0000|0 |2 |0 |
-ROW |70442 |406 |22414 |0 |7 |FF66FF|0 |2 |0 |
-ROW |70443 |406 |23663 |0 |8 |009999|0 |2 |0 |
-ROW |70444 |406 |25366 |0 |9 |BBBB00|0 |2 |0 |
-ROW |70445 |406 |25370 |0 |10 |AA0000|0 |2 |0 |
-ROW |70446 |406 |25665 |0 |11 |990000|0 |2 |0 |
-ROW |70447 |406 |25666 |0 |12 |008800|0 |2 |0 |
-ROW |70448 |406 |28535 |0 |13 |80B0E0|0 |2 |0 |
-ROW |70449 |406 |28537 |0 |14 |4080B0|0 |2 |0 |
-ROW |70450 |406 |29822 |0 |15 |8000FF|0 |2 |0 |
-ROW |70451 |406 |33022 |0 |16 |2B5429|0 |2 |0 |
-ROW |70452 |406 |34317 |0 |17 |8048B4|0 |2 |0 |
-ROW |70453 |406 |34316 |0 |18 |FD5434|0 |2 |0 |
-ROW |70454 |406 |35274 |0 |19 |790E1F|0 |2 |0 |
-ROW |70455 |406 |35272 |0 |20 |87AC4D|0 |2 |0 |
-ROW |70456 |788 |28248 |0 |0 |008800|0 |2 |0 |
-ROW |70457 |788 |28533 |0 |1 |EE0000|0 |2 |0 |
-ROW |70458 |392 |22187 |5 |0 |00C800|0 |2 |0 |
-ROW |70459 |392 |23251 |0 |1 |F63100|0 |2 |0 |
-ROW |70460 |1444 |28581 |0 |0 |990099|0 |2 |0 |
-ROW |70461 |1444 |28574 |0 |1 |990000|0 |2 |0 |
-ROW |70462 |1444 |28571 |0 |2 |0000EE|0 |2 |0 |
-ROW |70463 |1444 |28562 |0 |3 |FF33FF|0 |2 |0 |
-ROW |70464 |1444 |28570 |0 |4 |009600|0 |2 |0 |
-ROW |70465 |1444 |28569 |0 |5 |003300|0 |2 |0 |
-ROW |70466 |1444 |28552 |0 |6 |33FFFF|0 |2 |0 |
-ROW |70467 |1444 |28573 |0 |7 |DD0000|0 |2 |0 |
-ROW |70468 |1444 |28579 |0 |8 |000099|0 |2 |0 |
-ROW |70469 |1444 |28559 |0 |9 |00FF00|0 |2 |0 |
-ROW |70470 |1444 |33017 |0 |10 |5A2B57|0 |2 |0 |
-ROW |70471 |1659 |28567 |0 |0 |00EE00|0 |2 |0 |
-ROW |70472 |1659 |28575 |0 |1 |0000EE|0 |2 |0 |
-ROW |70473 |1659 |28576 |0 |2 |FFAA00|0 |2 |0 |
-ROW |70474 |1659 |28583 |0 |3 |00EEEE|0 |2 |0 |
-ROW |70475 |1659 |28582 |0 |4 |990099|0 |2 |0 |
-ROW |70476 |1660 |28572 |0 |0 |00EE00|0 |2 |0 |
-ROW |70477 |1660 |28568 |0 |1 |FFAA00|0 |2 |0 |
-ROW |70478 |1660 |28564 |0 |2 |990099|0 |2 |0 |
-ROW |70479 |1660 |28578 |0 |3 |FF66FF|0 |2 |0 |
-ROW |70480 |1660 |28580 |0 |4 |009999|0 |2 |0 |
-ROW |70481 |1660 |33016 |0 |5 |2B5429|0 |2 |0 |
-ROW |70482 |1660 |28565 |0 |6 |8048B4|0 |2 |0 |
-ROW |70483 |1660 |28577 |0 |7 |FD5434|0 |2 |0 |
-ROW |70484 |1661 |28566 |0 |0 |00EE00|0 |2 |0 |
-ROW |70485 |1661 |28561 |0 |1 |0000EE|0 |2 |0 |
-ROW |70486 |1661 |28563 |0 |2 |FFAA00|0 |2 |0 |
-ROW |70487 |1661 |29821 |0 |3 |00EEEE|0 |2 |0 |
-ROW |70488 |1661 |34314 |0 |4 |990099|0 |2 |0 |
-ROW |70489 |1661 |34315 |0 |5 |EE0000|0 |2 |0 |
-ROW |70490 |1662 |33015 |0 |0 |C80000|0 |2 |0 |
-ROW |70491 |1662 |33014 |0 |1 |00C800|0 |2 |0 |
-ROW |70492 |797 |28546 |0 |0 |C80000|0 |2 |0 |
-ROW |70493 |797 |28545 |0 |1 |00C800|0 |2 |0 |
-ROW |70494 |798 |28551 |0 |0 |009900|0 |2 |0 |
-ROW |70495 |798 |28543 |0 |1 |DD0000|0 |2 |0 |
-ROW |70496 |798 |28542 |0 |2 |00DDDD|0 |2 |0 |
-ROW |70497 |798 |28549 |0 |3 |3333FF|0 |2 |0 |
-ROW |70498 |798 |28544 |0 |4 |999900|0 |2 |0 |
-ROW |70499 |798 |28548 |0 |5 |00FF00|0 |2 |0 |
-ROW |70500 |799 |28581 |0 |0 |990099|0 |2 |0 |
-ROW |70501 |799 |28574 |0 |1 |990000|0 |2 |0 |
-ROW |70502 |799 |28571 |0 |2 |0000EE|0 |2 |0 |
-ROW |70503 |799 |28565 |0 |3 |FF33FF|0 |2 |0 |
-ROW |70504 |799 |28570 |0 |4 |009600|0 |2 |0 |
-ROW |70505 |799 |28569 |0 |5 |003300|0 |2 |0 |
-ROW |70506 |799 |28577 |0 |6 |CCCC00|0 |2 |0 |
-ROW |70507 |799 |28552 |0 |7 |33FFFF|0 |2 |0 |
-ROW |70508 |799 |28573 |0 |8 |DD0000|0 |2 |0 |
-ROW |70509 |799 |28579 |0 |9 |000099|0 |2 |0 |
-ROW |70510 |799 |28559 |0 |10 |00FF00|0 |2 |0 |
-ROW |70511 |799 |33017 |0 |11 |5A2B57|0 |2 |0 |
-ROW |70512 |800 |28572 |0 |1 |00EE00|0 |2 |0 |
-ROW |70513 |800 |28566 |0 |2 |0000EE|0 |2 |0 |
-ROW |70514 |800 |28568 |0 |3 |FFAA00|0 |2 |0 |
-ROW |70515 |800 |28561 |0 |4 |00EEEE|0 |2 |0 |
-ROW |70516 |800 |28564 |0 |5 |990099|0 |2 |0 |
-ROW |70517 |800 |28567 |0 |6 |EE0000|0 |2 |0 |
-ROW |70518 |800 |28578 |0 |7 |FF66FF|0 |2 |0 |
-ROW |70519 |800 |28580 |0 |8 |009999|0 |2 |0 |
-ROW |70520 |800 |28562 |0 |9 |BBBB00|0 |2 |0 |
-ROW |70521 |800 |28563 |0 |10 |AA0000|0 |2 |0 |
-ROW |70522 |800 |28575 |0 |11 |990000|0 |2 |0 |
-ROW |70523 |800 |28576 |0 |12 |008800|0 |2 |0 |
-ROW |70524 |800 |28582 |0 |13 |80B0E0|0 |2 |0 |
-ROW |70525 |800 |28583 |0 |14 |4080B0|0 |2 |0 |
-ROW |70526 |800 |29821 |0 |15 |8000FF|0 |2 |0 |
-ROW |70527 |800 |33016 |0 |16 |2B5429|0 |2 |0 |
-ROW |70528 |800 |34314 |0 |17 |8048B4|0 |2 |0 |
-ROW |70529 |800 |34315 |0 |18 |FD5434|0 |2 |0 |
-ROW |70530 |800 |35279 |0 |19 |790E1F|0 |2 |0 |
-ROW |70531 |800 |35278 |0 |20 |87AC4D|0 |2 |0 |
-ROW |70532 |801 |28560 |0 |0 |008800|0 |2 |0 |
-ROW |70533 |801 |28584 |0 |1 |EE0000|0 |2 |0 |
-ROW |70534 |802 |28550 |5 |0 |00C800|0 |2 |0 |
-ROW |70535 |802 |28540 |0 |1 |F63100|0 |2 |0 |
-ROW |70536 |1438 |33001 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70537 |1438 |33002 |0 |1 |2774A4|0 |2 |0 |
-ROW |70538 |1438 |33000 |2 |2 |F63100|0 |2 |0 |
-ROW |70539 |1439 |33005 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70540 |1439 |33004 |0 |1 |2774A4|0 |2 |0 |
-ROW |70541 |1440 |32980 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70542 |1440 |32970 |0 |1 |2774A4|0 |2 |0 |
-ROW |70543 |1441 |32967 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70544 |1441 |32968 |0 |1 |2774A4|0 |2 |0 |
-ROW |70545 |1441 |32995 |2 |2 |F63100|0 |2 |0 |
-ROW |70546 |1442 |32997 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70547 |1442 |32984 |0 |1 |2774A4|0 |2 |0 |
-ROW |70548 |1443 |32973 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70549 |1443 |32971 |0 |1 |2774A4|0 |2 |0 |
-ROW |70550 |1503 |33518 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70551 |1504 |33501 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70552 |803 |28599 |0 |0 |DD0000|0 |2 |0 |
-ROW |70553 |803 |28596 |0 |1 |00DDDD|0 |2 |0 |
-ROW |70554 |803 |28597 |0 |2 |3333FF|0 |2 |0 |
-ROW |70555 |803 |28598 |0 |3 |00FF00|0 |2 |0 |
-ROW |70556 |804 |28602 |0 |1 |990099|0 |2 |0 |
-ROW |70557 |804 |28606 |0 |2 |990000|0 |2 |0 |
-ROW |70558 |804 |28608 |0 |3 |0000EE|0 |2 |0 |
-ROW |70559 |804 |28615 |0 |4 |FF33FF|0 |2 |0 |
-ROW |70560 |804 |28610 |0 |5 |00EE00|0 |2 |0 |
-ROW |70561 |804 |28611 |0 |6 |003300|0 |2 |0 |
-ROW |70562 |804 |28616 |0 |7 |33FFFF|0 |2 |0 |
-ROW |70563 |804 |28607 |0 |8 |DD0000|0 |2 |0 |
-ROW |70564 |804 |28604 |0 |9 |000099|0 |2 |0 |
-ROW |70565 |804 |28588 |0 |10 |00FF00|0 |2 |0 |
-ROW |70566 |804 |33013 |0 |11 |BB2A02|0 |2 |0 |
-ROW |70567 |805 |28612 |0 |1 |FFAA00|0 |2 |0 |
-ROW |70568 |805 |28600 |0 |2 |990099|0 |2 |0 |
-ROW |70569 |805 |28613 |0 |3 |EE0000|0 |2 |0 |
-ROW |70570 |805 |28605 |0 |4 |FF66FF|0 |2 |0 |
-ROW |70571 |805 |28614 |0 |5 |960000|0 |2 |0 |
-ROW |70572 |805 |28601 |0 |6 |009600|0 |2 |0 |
-ROW |70573 |805 |28603 |0 |7 |009999|0 |2 |0 |
-ROW |70574 |805 |28609 |0 |8 |BBBB00|0 |2 |0 |
-ROW |70575 |805 |33012 |0 |9 |F230E0|0 |2 |0 |
-ROW |70576 |806 |28595 |0 |0 |00C800|0 |2 |0 |
-ROW |70577 |806 |28586 |0 |1 |C80000|0 |2 |0 |
-ROW |70578 |529 |23357 |0 |0 |DD0000|0 |2 |0 |
-ROW |70579 |529 |23341 |0 |1 |00DDDD|0 |2 |0 |
-ROW |70580 |529 |23342 |0 |2 |3333FF|0 |2 |0 |
-ROW |70581 |529 |28251 |0 |3 |00FF00|0 |2 |0 |
-ROW |70582 |530 |23345 |0 |1 |990099|0 |2 |0 |
-ROW |70583 |530 |23348 |0 |2 |990000|0 |2 |0 |
-ROW |70584 |530 |23355 |0 |3 |0000EE|0 |2 |0 |
-ROW |70585 |530 |23352 |0 |4 |FF33FF|0 |2 |0 |
-ROW |70586 |530 |23356 |0 |5 |007700|0 |2 |0 |
-ROW |70587 |530 |23354 |0 |6 |003300|0 |2 |0 |
-ROW |70588 |530 |23346 |0 |7 |33FFFF|0 |2 |0 |
-ROW |70589 |530 |23349 |0 |8 |DD0000|0 |2 |0 |
-ROW |70590 |530 |23344 |0 |9 |000099|0 |7 |0 |
-ROW |70591 |530 |28250 |0 |10 |00FF00|0 |2 |0 |
-ROW |70592 |530 |33019 |0 |11 |BB2A02|0 |2 |0 |
-ROW |70593 |531 |23353 |0 |1 |FFAA00|0 |2 |0 |
-ROW |70594 |531 |23347 |0 |2 |990099|0 |2 |0 |
-ROW |70595 |531 |23350 |0 |3 |EE0000|0 |2 |0 |
-ROW |70596 |531 |23343 |0 |4 |FF66FF|0 |2 |0 |
-ROW |70597 |531 |23351 |0 |5 |0000EE|0 |2 |0 |
-ROW |70598 |531 |23360 |0 |6 |00EE00|0 |2 |0 |
-ROW |70599 |531 |25369 |0 |7 |009999|0 |2 |0 |
-ROW |70600 |531 |25368 |0 |8 |BBBB00|0 |2 |0 |
-ROW |70601 |531 |28618 |0 |9 |990000|0 |2 |0 |
-ROW |70602 |531 |28619 |0 |10 |008800|0 |2 |0 |
-ROW |70603 |531 |33018 |0 |11 |BB2A02|0 |2 |0 |
-ROW |70604 |807 |28617 |0 |0 |008800|0 |2 |0 |
-ROW |70605 |532 |23340 |5 |0 |00C800|0 |2 |0 |
-ROW |70606 |532 |23358 |5 |1 |C80000|1 |2 |0 |
-ROW |70607 |472 |22945 |5 |0 |00AA00|0 |2 |0 |
-ROW |70608 |472 |22946 |5 |1 |3333FF|0 |2 |0 |
-ROW |70609 |473 |22950 |0 |0 |C80000|0 |2 |2 |
-ROW |70610 |473 |22948 |0 |1 |00C800|0 |2 |0 |
-ROW |70611 |471 |22924 |0 |0 |009900|0 |2 |0 |
-ROW |70612 |471 |22920 |0 |1 |000099|0 |2 |0 |
-ROW |70613 |469 |22922 |0 |0 |009900|0 |2 |0 |
-ROW |70614 |469 |22923 |0 |1 |000099|0 |2 |0 |
-ROW |70615 |469 |22921 |0 |2 |990000|0 |2 |0 |
-ROW |70616 |498 |23109 |0 |0 |009999|0 |2 |0 |
-ROW |70617 |498 |23112 |0 |1 |990099|0 |2 |0 |
-ROW |70618 |498 |23115 |0 |2 |999900|0 |2 |0 |
-ROW |70619 |498 |23113 |0 |3 |990000|0 |2 |0 |
-ROW |70620 |498 |23114 |0 |4 |000099|0 |2 |0 |
-ROW |70621 |498 |23110 |0 |5 |009900|0 |2 |0 |
-ROW |70622 |540 |22942 |5 |0 |00C800|0 |2 |0 |
-ROW |70623 |492 |23073 |5 |0 |00AA00|0 |2 |0 |
-ROW |70624 |492 |23074 |5 |1 |3333FF|0 |2 |0 |
-ROW |70625 |467 |22910 |0 |0 |C80000|0 |2 |2 |
-ROW |70626 |467 |22908 |0 |1 |00C800|0 |2 |0 |
-ROW |70627 |465 |22884 |0 |0 |009900|0 |2 |0 |
-ROW |70628 |465 |22880 |0 |1 |000099|0 |2 |0 |
-ROW |70629 |463 |22882 |0 |0 |009900|0 |2 |0 |
-ROW |70630 |463 |22883 |0 |1 |000099|0 |2 |0 |
-ROW |70631 |463 |22881 |0 |2 |990000|0 |2 |0 |
-ROW |70632 |462 |22886 |1 |0 |009999|0 |2 |0 |
-ROW |70633 |462 |22888 |1 |1 |990099|0 |2 |0 |
-ROW |70634 |462 |22891 |1 |2 |990000|0 |2 |0 |
-ROW |70635 |462 |22892 |1 |3 |000099|0 |2 |0 |
-ROW |70636 |462 |22885 |1 |4 |009900|0 |2 |0 |
-ROW |70637 |541 |22902 |5 |0 |00C800|0 |2 |0 |
-ROW |70638 |464 |22897 |0 |0 |AA0000|0 |2 |2 |
-ROW |70639 |464 |22895 |0 |1 |00AA00|0 |2 |0 |
-ROW |70640 |478 |22985 |5 |0 |00AA00|0 |2 |0 |
-ROW |70641 |478 |22986 |5 |1 |3333FF|0 |2 |0 |
-ROW |70642 |479 |22990 |0 |0 |C80000|0 |2 |2 |
-ROW |70643 |479 |22988 |0 |1 |00C800|0 |2 |0 |
-ROW |70644 |475 |22962 |0 |0 |009900|0 |2 |0 |
-ROW |70645 |475 |22963 |0 |1 |000099|0 |2 |0 |
-ROW |70646 |475 |22961 |0 |2 |990000|0 |2 |0 |
-ROW |70647 |474 |22968 |1 |0 |990099|0 |2 |0 |
-ROW |70648 |474 |22971 |1 |1 |990000|0 |2 |0 |
-ROW |70649 |474 |22972 |1 |2 |000099|0 |2 |0 |
-ROW |70650 |474 |22965 |1 |3 |009900|0 |2 |0 |
-ROW |70651 |542 |22982 |5 |0 |00C800|0 |2 |0 |
-ROW |70652 |491 |23070 |0 |0 |C80000|0 |2 |2 |
-ROW |70653 |491 |23068 |0 |1 |00C800|0 |2 |0 |
-ROW |70654 |487 |23042 |0 |0 |009900|0 |2 |0 |
-ROW |70655 |487 |23043 |0 |1 |000099|0 |2 |0 |
-ROW |70656 |487 |23041 |0 |2 |990000|0 |2 |0 |
-ROW |70657 |543 |23062 |5 |0 |00C800|0 |2 |0 |
-ROW |70658 |494 |23077 |5 |0 |00AA00|0 |2 |0 |
-ROW |70659 |494 |23078 |5 |1 |3333FF|0 |2 |0 |
-ROW |70660 |493 |23075 |5 |0 |00AA00|0 |2 |0 |
-ROW |70661 |493 |23076 |5 |1 |3333FF|0 |2 |0 |
-ROW |70662 |461 |22870 |0 |0 |C80000|0 |2 |2 |
-ROW |70663 |461 |22868 |0 |1 |00C800|0 |2 |0 |
-ROW |70664 |459 |22844 |0 |0 |009900|0 |2 |0 |
-ROW |70665 |459 |22840 |0 |1 |000099|0 |2 |0 |
-ROW |70666 |457 |22842 |0 |0 |009900|0 |2 |0 |
-ROW |70667 |457 |22843 |0 |1 |000099|0 |2 |0 |
-ROW |70668 |457 |22841 |0 |2 |990000|0 |2 |0 |
-ROW |70669 |456 |22846 |1 |0 |009999|0 |2 |0 |
-ROW |70670 |456 |22848 |1 |1 |990099|0 |2 |0 |
-ROW |70671 |456 |22851 |1 |2 |990000|0 |2 |0 |
-ROW |70672 |456 |22852 |1 |3 |000099|0 |2 |0 |
-ROW |70673 |456 |22845 |1 |4 |009900|0 |2 |0 |
-ROW |70674 |544 |22862 |5 |0 |00C800|0 |2 |0 |
-ROW |70675 |458 |22857 |0 |0 |AA0000|0 |2 |2 |
-ROW |70676 |458 |22855 |0 |1 |00AA00|0 |2 |0 |
-ROW |70677 |484 |23025 |5 |0 |00AA00|0 |2 |0 |
-ROW |70678 |484 |23026 |5 |1 |3333FF|0 |2 |0 |
-ROW |70679 |485 |23030 |0 |0 |C80000|0 |2 |2 |
-ROW |70680 |485 |23028 |0 |1 |00C800|0 |2 |0 |
-ROW |70681 |483 |23004 |0 |0 |009900|0 |2 |0 |
-ROW |70682 |483 |23000 |0 |1 |000099|0 |2 |0 |
-ROW |70683 |481 |23002 |0 |0 |009900|0 |2 |0 |
-ROW |70684 |481 |23003 |0 |1 |000099|0 |2 |0 |
-ROW |70685 |481 |23001 |0 |2 |990000|0 |2 |0 |
-ROW |70686 |480 |23007 |1 |0 |999900|0 |2 |0 |
-ROW |70687 |480 |23011 |1 |1 |990000|0 |2 |0 |
-ROW |70688 |480 |23012 |1 |2 |000099|0 |2 |0 |
-ROW |70689 |480 |23005 |1 |3 |009900|0 |2 |0 |
-ROW |70690 |545 |23022 |5 |0 |00C800|0 |2 |0 |
-ROW |70691 |482 |23017 |0 |0 |AA0000|0 |2 |2 |
-ROW |70692 |482 |23015 |0 |1 |00AA00|0 |2 |0 |
-ROW |70693 |651 |26928 |5 |0 |EE0000|0 |2 |0 |
-ROW |70694 |651 |26927 |0 |1 |000000|1 |2 |0 |
-ROW |70695 |652 |26925 |2 |0 |880000|0 |2 |0 |
-ROW |70696 |652 |26932 |0 |1 |009900|0 |2 |0 |
-ROW |70697 |652 |26930 |0 |2 |00CCCC|0 |2 |0 |
-ROW |70698 |652 |26931 |0 |3 |000000|0 |2 |0 |
-ROW |70699 |652 |26929 |0 |4 |3333FF|0 |2 |0 |
-ROW |70700 |652 |26926 |0 |5 |777700|0 |2 |0 |
-ROW |70701 |653 |26933 |2 |0 |EE0000|0 |2 |0 |
-ROW |70702 |653 |26943 |2 |1 |EE00EE|0 |2 |0 |
-ROW |70703 |653 |26935 |0 |2 |000000|1 |2 |0 |
-ROW |70704 |653 |26936 |4 |3 |000000|1 |2 |0 |
-ROW |70705 |654 |26934 |2 |0 |880000|0 |2 |0 |
-ROW |70706 |654 |26939 |0 |1 |009900|0 |2 |0 |
-ROW |70707 |654 |26942 |0 |2 |00CCCC|0 |2 |0 |
-ROW |70708 |654 |26938 |0 |3 |000000|0 |2 |0 |
-ROW |70709 |654 |26937 |0 |4 |3333FF|0 |2 |0 |
-ROW |70710 |1447 |33113 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70711 |1447 |33112 |0 |1 |2774A4|0 |2 |0 |
-ROW |70712 |1447 |33099 |0 |2 |F63100|0 |2 |0 |
-ROW |70713 |1447 |33098 |0 |3 |A54F10|0 |2 |0 |
-ROW |70714 |1448 |33125 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70715 |1448 |33110 |0 |1 |2774A4|0 |2 |0 |
-ROW |70716 |1449 |33080 |2 |0 |1A7C11|0 |2 |0 |
-ROW |70717 |1449 |33081 |2 |1 |2774A4|0 |2 |0 |
-ROW |70718 |1450 |33089 |2 |0 |1A7C11|0 |2 |0 |
-ROW |70719 |1450 |33085 |2 |1 |2774A4|0 |2 |0 |
-ROW |70720 |1451 |33082 |2 |0 |1A7C11|0 |2 |0 |
-ROW |70721 |1451 |33086 |2 |1 |2774A4|0 |2 |0 |
-ROW |70722 |1451 |33083 |0 |2 |F63100|0 |2 |0 |
-ROW |70723 |1451 |33084 |0 |3 |A54F10|0 |2 |0 |
-ROW |70724 |1451 |33087 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70725 |1451 |33088 |0 |5 |6C59DC|0 |2 |0 |
-ROW |70726 |1452 |33093 |2 |0 |1A7C11|0 |2 |0 |
-ROW |70727 |1452 |33092 |2 |1 |2774A4|0 |2 |0 |
-ROW |70728 |1453 |33077 |2 |0 |1A7C11|0 |2 |0 |
-ROW |70729 |1453 |33063 |2 |1 |2774A4|0 |2 |0 |
-ROW |70730 |1454 |33094 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70731 |1454 |33059 |0 |1 |2774A4|0 |2 |0 |
-ROW |70732 |1455 |33066 |2 |0 |1A7C11|0 |2 |0 |
-ROW |70733 |1455 |33071 |2 |1 |2774A4|0 |2 |0 |
-ROW |70734 |1455 |33067 |0 |2 |F63100|0 |2 |0 |
-ROW |70735 |1455 |33068 |0 |3 |A54F10|0 |2 |0 |
-ROW |70736 |1455 |33072 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70737 |1455 |33073 |0 |5 |6C59DC|0 |2 |0 |
-ROW |70738 |1159 |30886 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70739 |1159 |30887 |0 |1 |2774A4|0 |2 |0 |
-ROW |70740 |1160 |30888 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70741 |1160 |30882 |0 |1 |2774A4|0 |2 |0 |
-ROW |70742 |1160 |30890 |0 |2 |F63100|0 |2 |0 |
-ROW |70743 |1160 |30881 |0 |3 |A54F10|0 |2 |0 |
-ROW |70744 |1160 |30889 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70745 |1161 |30847 |2 |0 |1A7C11|0 |2 |0 |
-ROW |70746 |1161 |30872 |2 |1 |2774A4|0 |2 |0 |
-ROW |70747 |1162 |30853 |2 |0 |1A7C11|0 |2 |0 |
-ROW |70748 |1162 |30849 |2 |1 |2774A4|0 |2 |0 |
-ROW |70749 |1162 |30852 |2 |2 |F63100|0 |2 |0 |
-ROW |70750 |1162 |30851 |2 |3 |A54F10|0 |2 |0 |
-ROW |70751 |1162 |30848 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |70752 |1163 |30856 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70753 |1163 |30855 |0 |1 |2774A4|0 |2 |0 |
-ROW |70754 |1163 |30854 |2 |2 |F63100|1 |2 |0 |
-ROW |70755 |1164 |30859 |2 |0 |1A7C11|0 |2 |0 |
-ROW |70756 |1164 |30870 |2 |1 |2774A4|0 |2 |0 |
-ROW |70757 |1165 |30860 |2 |0 |1A7C11|0 |2 |0 |
-ROW |70758 |1165 |30871 |2 |1 |2774A4|0 |2 |0 |
-ROW |70759 |1166 |30868 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70760 |1166 |30869 |0 |1 |2774A4|0 |2 |0 |
-ROW |70761 |1166 |30867 |0 |2 |F63100|0 |2 |0 |
-ROW |70762 |1166 |30866 |0 |3 |A54F10|0 |2 |0 |
-ROW |70763 |1166 |30865 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70764 |1167 |30850 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70765 |1167 |30863 |5 |1 |2774A4|0 |2 |0 |
-ROW |70766 |1167 |30861 |5 |2 |F63100|0 |2 |0 |
-ROW |70767 |1168 |30833 |2 |0 |1A7C11|0 |2 |0 |
-ROW |70768 |1168 |30841 |2 |1 |2774A4|0 |2 |0 |
-ROW |70769 |1168 |30857 |2 |2 |F63100|0 |2 |0 |
-ROW |70770 |1169 |30834 |2 |0 |1A7C11|0 |2 |0 |
-ROW |70771 |1169 |30831 |2 |1 |2774A4|0 |2 |0 |
-ROW |70772 |1170 |30846 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70773 |1576 |34320 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70774 |1576 |30845 |0 |1 |2774A4|0 |2 |0 |
-ROW |70775 |1576 |30842 |0 |2 |F63100|0 |2 |0 |
-ROW |70776 |1576 |30873 |2 |3 |A54F10|1 |2 |0 |
-ROW |70777 |1663 |35291 |2 |0 |1A7C11|0 |2 |0 |
-ROW |70778 |1663 |35300 |0 |1 |2774A4|0 |2 |0 |
-ROW |70779 |1664 |35295 |2 |0 |1A7C11|0 |2 |0 |
-ROW |70780 |1664 |35296 |0 |1 |2774A4|0 |2 |0 |
-ROW |70781 |1665 |35301 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70782 |1665 |35306 |0 |1 |2774A4|0 |2 |0 |
-ROW |70783 |1665 |35304 |0 |2 |F63100|0 |2 |0 |
-ROW |70784 |1665 |35302 |0 |3 |A54F10|0 |2 |0 |
-ROW |70785 |1666 |35308 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70786 |1666 |35310 |0 |1 |2774A4|0 |2 |0 |
-ROW |70787 |1666 |35309 |0 |2 |F63100|0 |2 |0 |
-ROW |70788 |1667 |35322 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70789 |1667 |35320 |0 |1 |2774A4|0 |2 |0 |
-ROW |70790 |1668 |35329 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70791 |1668 |35330 |0 |1 |2774A4|0 |2 |0 |
-ROW |70792 |1669 |35332 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70793 |1669 |35334 |0 |1 |2774A4|0 |2 |0 |
-ROW |70794 |1670 |35335 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70795 |1670 |35333 |0 |1 |2774A4|0 |2 |0 |
-ROW |70796 |1671 |35338 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70797 |1671 |35341 |0 |1 |2774A4|0 |2 |0 |
-ROW |70798 |1671 |35339 |0 |2 |F63100|0 |2 |0 |
-ROW |70799 |1671 |35340 |0 |3 |A54F10|0 |2 |0 |
-ROW |70800 |1672 |35347 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70801 |1672 |35346 |0 |1 |2774A4|0 |2 |0 |
-ROW |70802 |1672 |35345 |0 |2 |F63100|0 |2 |0 |
-ROW |70803 |1673 |35350 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70804 |1673 |35351 |0 |1 |2774A4|0 |2 |0 |
-ROW |70805 |1674 |35349 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70806 |1674 |35352 |0 |1 |2774A4|0 |2 |0 |
-ROW |70807 |1674 |35353 |0 |2 |F63100|0 |2 |0 |
-ROW |70808 |1675 |35355 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70809 |1675 |35356 |0 |1 |2774A4|0 |2 |0 |
-ROW |70810 |1505 |33553 |2 |0 |1A7C11|0 |2 |0 |
-ROW |70811 |1505 |33562 |0 |1 |2774A4|0 |2 |0 |
-ROW |70812 |1506 |33557 |2 |0 |1A7C11|0 |2 |0 |
-ROW |70813 |1506 |33558 |0 |1 |2774A4|0 |2 |0 |
-ROW |70814 |1507 |33563 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70815 |1507 |33568 |0 |1 |2774A4|0 |2 |0 |
-ROW |70816 |1507 |33566 |0 |2 |F63100|0 |2 |0 |
-ROW |70817 |1507 |33564 |0 |3 |A54F10|0 |2 |0 |
-ROW |70818 |1508 |33570 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70819 |1508 |33572 |0 |1 |2774A4|0 |2 |0 |
-ROW |70820 |1508 |33571 |0 |2 |F63100|0 |2 |0 |
-ROW |70821 |1509 |33584 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70822 |1509 |33582 |0 |1 |2774A4|0 |2 |0 |
-ROW |70823 |1510 |33591 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70824 |1510 |33592 |0 |1 |2774A4|0 |2 |0 |
-ROW |70825 |1511 |33594 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70826 |1511 |33596 |0 |1 |2774A4|0 |2 |0 |
-ROW |70827 |1512 |33597 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70828 |1512 |33595 |0 |1 |2774A4|0 |2 |0 |
-ROW |70829 |1513 |33600 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70830 |1513 |33603 |0 |1 |2774A4|0 |2 |0 |
-ROW |70831 |1513 |33601 |0 |2 |F63100|0 |2 |0 |
-ROW |70832 |1513 |33602 |0 |3 |A54F10|0 |2 |0 |
-ROW |70833 |1514 |33609 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70834 |1514 |33608 |0 |1 |2774A4|0 |2 |0 |
-ROW |70835 |1514 |33607 |0 |2 |F63100|0 |2 |0 |
-ROW |70836 |1515 |33612 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70837 |1515 |33613 |0 |1 |2774A4|0 |2 |0 |
-ROW |70838 |1516 |33611 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70839 |1516 |33614 |0 |1 |2774A4|0 |2 |0 |
-ROW |70840 |1516 |33615 |0 |2 |F63100|0 |2 |0 |
-ROW |70841 |1517 |33617 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70842 |1517 |33618 |0 |1 |2774A4|0 |2 |0 |
-ROW |70843 |1807 |36817 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70844 |1807 |36816 |0 |1 |2774A4|0 |2 |0 |
-ROW |70845 |1808 |36815 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70846 |1808 |36814 |0 |1 |2774A4|0 |2 |0 |
-ROW |70847 |1808 |36818 |0 |2 |F63100|0 |2 |0 |
-ROW |70848 |1808 |36819 |0 |3 |A54F10|0 |2 |0 |
-ROW |70849 |1809 |36805 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70850 |1809 |36804 |0 |1 |2774A4|0 |2 |0 |
-ROW |70851 |1527 |33819 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70852 |1527 |33839 |0 |1 |2774A4|0 |2 |0 |
-ROW |70853 |1528 |33820 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70854 |1528 |33816 |0 |1 |2774A4|0 |2 |0 |
-ROW |70855 |1529 |33826 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70856 |1529 |33831 |0 |1 |2774A4|0 |2 |0 |
-ROW |70857 |1529 |33829 |0 |2 |F63100|0 |2 |0 |
-ROW |70858 |1529 |33821 |0 |3 |A54F10|0 |2 |0 |
-ROW |70859 |1529 |33825 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70860 |1529 |33833 |0 |5 |6C59DC|0 |2 |0 |
-ROW |70861 |1529 |33823 |2 |6 |AC8C14|0 |2 |0 |
-ROW |70862 |1530 |33828 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70863 |1530 |33832 |0 |1 |2774A4|0 |2 |0 |
-ROW |70864 |1530 |33830 |0 |2 |F63100|0 |2 |0 |
-ROW |70865 |1530 |33822 |0 |3 |A54F10|0 |2 |0 |
-ROW |70866 |1530 |33815 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70867 |1530 |33834 |0 |5 |6C59DC|0 |2 |0 |
-ROW |70868 |1530 |33824 |2 |6 |AC8C14|0 |2 |0 |
-ROW |70869 |1531 |33840 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70870 |1531 |33845 |0 |1 |2774A4|0 |2 |0 |
-ROW |70871 |1532 |33844 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70872 |1532 |33847 |0 |1 |2774A4|0 |2 |0 |
-ROW |70873 |1532 |33843 |0 |2 |F63100|0 |2 |0 |
-ROW |70874 |1532 |33841 |0 |3 |A54F10|0 |2 |0 |
-ROW |70875 |1533 |33863 |2 |0 |1A7C11|0 |2 |0 |
-ROW |70876 |1534 |33792 |2 |0 |1A7C11|0 |2 |0 |
-ROW |70877 |1534 |33791 |0 |1 |2774A4|0 |2 |0 |
-ROW |70878 |1534 |33793 |0 |2 |F63100|0 |2 |0 |
-ROW |70879 |1535 |33802 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70880 |1535 |33770 |0 |1 |2774A4|0 |2 |0 |
-ROW |70881 |1536 |33800 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70882 |1536 |33799 |0 |1 |2774A4|0 |2 |0 |
-ROW |70883 |1536 |33801 |0 |2 |F63100|0 |2 |0 |
-ROW |70884 |1537 |33798 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70885 |1537 |33806 |0 |1 |2774A4|0 |2 |0 |
-ROW |70886 |1537 |33774 |0 |2 |F63100|0 |2 |0 |
-ROW |70887 |1538 |33769 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70888 |1538 |33787 |0 |1 |2774A4|0 |2 |0 |
-ROW |70889 |1538 |33789 |0 |2 |F63100|0 |2 |0 |
-ROW |70890 |1538 |33790 |0 |3 |A54F10|0 |2 |0 |
-ROW |70891 |1539 |33785 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70892 |1539 |33772 |0 |1 |2774A4|0 |2 |0 |
-ROW |70893 |1539 |33773 |0 |2 |F63100|0 |2 |0 |
-ROW |70894 |1539 |33771 |0 |3 |A54F10|0 |2 |0 |
-ROW |70895 |1540 |33776 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70896 |1540 |33775 |0 |1 |2774A4|0 |2 |0 |
-ROW |70897 |1541 |33782 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70898 |1541 |33781 |0 |1 |2774A4|0 |2 |0 |
-ROW |70899 |1541 |33780 |0 |2 |F63100|0 |2 |0 |
-ROW |70900 |1541 |33783 |0 |3 |A54F10|0 |2 |0 |
-ROW |70901 |1541 |33777 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70902 |1541 |33778 |0 |5 |6C59DC|0 |2 |0 |
-ROW |70903 |1542 |33804 |2 |0 |1A7C11|0 |2 |0 |
-ROW |70904 |1542 |33803 |2 |1 |2774A4|0 |2 |0 |
-ROW |70905 |1542 |33805 |2 |2 |F63100|0 |2 |0 |
-ROW |70906 |1543 |33937 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70907 |1543 |33940 |0 |1 |2774A4|0 |2 |0 |
-ROW |70908 |1543 |33936 |0 |2 |F63100|0 |2 |0 |
-ROW |70909 |1543 |33934 |0 |3 |A54F10|0 |2 |0 |
-ROW |70910 |1544 |33915 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70911 |1544 |33911 |0 |1 |2774A4|0 |2 |0 |
-ROW |70912 |1544 |33912 |0 |2 |F63100|0 |2 |0 |
-ROW |70913 |1544 |33910 |0 |3 |A54F10|0 |2 |0 |
-ROW |70914 |1544 |33914 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70915 |1545 |33918 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70916 |1545 |33905 |0 |1 |2774A4|0 |2 |0 |
-ROW |70917 |1545 |33917 |0 |2 |F63100|0 |2 |0 |
-ROW |70918 |1545 |33916 |2 |3 |A54F10|1 |2 |0 |
-ROW |70919 |1546 |33908 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70920 |1546 |33909 |0 |1 |2774A4|0 |2 |0 |
-ROW |70921 |1546 |33902 |0 |2 |F63100|0 |2 |0 |
-ROW |70922 |1547 |33893 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70923 |1547 |33892 |0 |1 |2774A4|0 |2 |0 |
-ROW |70924 |1548 |33899 |2 |0 |1A7C11|0 |2 |0 |
-ROW |70925 |1548 |33898 |2 |1 |2774A4|0 |2 |0 |
-ROW |70926 |1548 |33895 |2 |2 |F63100|0 |2 |0 |
-ROW |70927 |1548 |33900 |2 |3 |A54F10|0 |2 |0 |
-ROW |70928 |1548 |33896 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |70929 |1548 |33891 |2 |5 |6C59DC|0 |2 |0 |
-ROW |70930 |1190 |31140 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70931 |1190 |31141 |0 |1 |2774A4|0 |2 |0 |
-ROW |70932 |1261 |31145 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70933 |1261 |31146 |0 |1 |2774A4|0 |2 |0 |
-ROW |70934 |1261 |31147 |0 |2 |F63100|0 |2 |0 |
-ROW |70935 |1191 |31138 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70936 |1192 |31157 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70937 |1192 |31158 |0 |1 |2774A4|0 |2 |0 |
-ROW |70938 |1193 |31092 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70939 |1193 |31108 |0 |1 |2774A4|0 |2 |0 |
-ROW |70940 |1193 |31110 |0 |2 |F63100|0 |2 |0 |
-ROW |70941 |1193 |31067 |0 |3 |A54F10|0 |2 |0 |
-ROW |70942 |1193 |31086 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70943 |1193 |31087 |0 |5 |6C59DC|0 |2 |0 |
-ROW |70944 |1194 |31120 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70945 |1194 |31105 |0 |1 |2774A4|0 |2 |0 |
-ROW |70946 |1194 |31071 |0 |2 |F63100|0 |2 |0 |
-ROW |70947 |1194 |31081 |0 |3 |A54F10|0 |2 |0 |
-ROW |70948 |1195 |31098 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70949 |1195 |31099 |0 |1 |2774A4|0 |2 |0 |
-ROW |70950 |1196 |31072 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70951 |1196 |31072 |0 |1 |2774A4|0 |2 |0 |
-ROW |70952 |1197 |31103 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70953 |1197 |31074 |0 |1 |2774A4|0 |2 |0 |
-ROW |70954 |1198 |31104 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70955 |1198 |31063 |0 |1 |2774A4|0 |2 |0 |
-ROW |70956 |1198 |31111 |0 |2 |F63100|0 |2 |0 |
-ROW |70957 |1198 |31112 |0 |3 |A54F10|0 |2 |0 |
-ROW |70958 |1198 |31084 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70959 |1199 |31115 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70960 |1199 |31116 |0 |1 |2774A4|0 |2 |0 |
-ROW |70961 |1199 |31062 |0 |2 |F63100|0 |2 |0 |
-ROW |70962 |1199 |31118 |0 |3 |A54F10|0 |2 |0 |
-ROW |70963 |1199 |31056 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70964 |1200 |31107 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70965 |1200 |31090 |0 |1 |2774A4|0 |2 |0 |
-ROW |70966 |1201 |31097 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70967 |1201 |31096 |0 |1 |2774A4|0 |2 |0 |
-ROW |70968 |1202 |31089 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70969 |1202 |31061 |0 |1 |2774A4|0 |2 |0 |
-ROW |70970 |1203 |31064 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70971 |1204 |31065 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70972 |1204 |31066 |0 |1 |2774A4|0 |2 |0 |
-ROW |70973 |1204 |31068 |0 |2 |F63100|0 |2 |0 |
-ROW |70974 |1204 |31070 |0 |3 |A54F10|0 |2 |0 |
-ROW |70975 |1204 |31101 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |70976 |1204 |31106 |0 |5 |6C59DC|0 |2 |0 |
-ROW |70977 |1204 |31114 |0 |6 |AC8C14|0 |2 |0 |
-ROW |70978 |1205 |31069 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70979 |1206 |31076 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70980 |1206 |31078 |0 |1 |2774A4|0 |2 |0 |
-ROW |70981 |1206 |31109 |0 |2 |F63100|0 |2 |0 |
-ROW |70982 |1206 |31075 |0 |3 |A54F10|0 |2 |0 |
-ROW |70983 |1207 |31080 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70984 |1207 |31095 |0 |1 |2774A4|0 |2 |0 |
-ROW |70985 |1208 |31113 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70986 |1208 |31118 |0 |1 |2774A4|0 |2 |0 |
-ROW |70987 |1209 |31058 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70988 |1209 |31077 |0 |1 |2774A4|0 |2 |0 |
-ROW |70989 |1209 |31056 |0 |2 |F63100|0 |2 |0 |
-ROW |70990 |1209 |31117 |0 |3 |A54F10|0 |2 |0 |
-ROW |70991 |1109 |30453 |5 |0 |1A7C11|0 |2 |0 |
-ROW |70992 |1109 |30455 |5 |1 |2774A4|0 |2 |0 |
-ROW |70993 |1110 |30471 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70994 |1110 |30470 |0 |1 |2774A4|0 |2 |0 |
-ROW |70995 |1110 |30466 |0 |2 |F63100|0 |2 |0 |
-ROW |70996 |1110 |30441 |0 |3 |A54F10|0 |2 |0 |
-ROW |70997 |1111 |30463 |0 |0 |1A7C11|0 |2 |0 |
-ROW |70998 |1111 |30452 |0 |1 |2774A4|0 |2 |0 |
-ROW |70999 |1111 |30451 |0 |2 |F63100|0 |2 |0 |
-ROW |71000 |1111 |30437 |0 |3 |A54F10|0 |2 |0 |
-ROW |71001 |1112 |30456 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71002 |1112 |30457 |0 |1 |2774A4|0 |2 |0 |
-ROW |71003 |1112 |30458 |0 |2 |F63100|0 |2 |0 |
-ROW |71004 |1112 |30459 |0 |3 |A54F10|0 |2 |0 |
-ROW |71005 |1113 |30442 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71006 |1113 |30444 |0 |1 |2774A4|0 |2 |0 |
-ROW |71007 |1113 |30445 |0 |2 |F63100|0 |2 |0 |
-ROW |71008 |1114 |30446 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71009 |1114 |30447 |0 |1 |2774A4|0 |2 |0 |
-ROW |71010 |1114 |31168 |0 |2 |F63100|0 |2 |0 |
-ROW |71011 |1114 |30449 |0 |3 |A54F10|0 |2 |0 |
-ROW |71012 |1136 |30659 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71013 |1136 |30661 |5 |1 |2774A4|0 |2 |0 |
-ROW |71014 |1137 |30677 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71015 |1137 |30676 |0 |1 |2774A4|0 |2 |0 |
-ROW |71016 |1137 |30672 |0 |2 |F63100|0 |2 |0 |
-ROW |71017 |1137 |30647 |0 |3 |A54F10|0 |2 |0 |
-ROW |71018 |1138 |30669 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71019 |1138 |30658 |0 |1 |2774A4|0 |2 |0 |
-ROW |71020 |1138 |30657 |0 |2 |F63100|0 |2 |0 |
-ROW |71021 |1138 |30643 |0 |3 |A54F10|0 |2 |0 |
-ROW |71022 |1139 |30662 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71023 |1139 |30663 |0 |1 |2774A4|0 |2 |0 |
-ROW |71024 |1139 |30664 |0 |2 |F63100|0 |2 |0 |
-ROW |71025 |1139 |30665 |0 |3 |A54F10|0 |2 |0 |
-ROW |71026 |1140 |30648 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71027 |1140 |30650 |0 |1 |2774A4|0 |2 |0 |
-ROW |71028 |1140 |30651 |0 |2 |F63100|0 |2 |0 |
-ROW |71029 |1141 |30652 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71030 |1141 |30653 |0 |1 |2774A4|0 |2 |0 |
-ROW |71031 |1141 |31172 |0 |2 |F63100|0 |2 |0 |
-ROW |71032 |1141 |30655 |0 |3 |A54F10|0 |2 |0 |
-ROW |71033 |1115 |30506 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71034 |1115 |30507 |5 |1 |2774A4|0 |2 |0 |
-ROW |71035 |1116 |30504 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71036 |1116 |30505 |0 |1 |2774A4|0 |2 |0 |
-ROW |71037 |1116 |30518 |0 |2 |F63100|0 |2 |0 |
-ROW |71038 |1116 |30492 |0 |3 |A54F10|0 |2 |0 |
-ROW |71039 |1117 |30493 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71040 |1117 |30500 |0 |1 |2774A4|0 |2 |0 |
-ROW |71041 |1117 |30486 |0 |2 |F63100|0 |2 |0 |
-ROW |71042 |1117 |30488 |0 |3 |A54F10|0 |2 |0 |
-ROW |71043 |1118 |30508 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71044 |1118 |30509 |0 |1 |2774A4|0 |2 |0 |
-ROW |71045 |1118 |30503 |0 |2 |F63100|0 |2 |0 |
-ROW |71046 |1118 |30510 |0 |3 |A54F10|0 |2 |0 |
-ROW |71047 |1119 |30491 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71048 |1119 |30494 |0 |1 |2774A4|0 |2 |0 |
-ROW |71049 |1119 |30495 |0 |2 |F63100|0 |2 |0 |
-ROW |71050 |1120 |30496 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71051 |1120 |30497 |0 |1 |2774A4|0 |2 |0 |
-ROW |71052 |1120 |31176 |0 |2 |F63100|0 |2 |0 |
-ROW |71053 |1120 |30499 |0 |3 |A54F10|0 |2 |0 |
-ROW |71054 |1266 |31773 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71055 |1266 |31774 |0 |1 |2774A4|0 |2 |0 |
-ROW |71056 |1267 |31777 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71057 |1267 |31779 |0 |1 |2774A4|0 |2 |0 |
-ROW |71058 |1267 |33168 |0 |2 |F63100|0 |2 |0 |
-ROW |71059 |1268 |31685 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71060 |1268 |31738 |0 |1 |2774A4|0 |2 |0 |
-ROW |71061 |1269 |31723 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71062 |1269 |31757 |0 |1 |2774A4|0 |2 |0 |
-ROW |71063 |1269 |31721 |0 |2 |F63100|0 |2 |0 |
-ROW |71064 |1270 |31728 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71065 |1270 |31759 |0 |1 |2774A4|0 |2 |0 |
-ROW |71066 |1271 |31745 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71067 |1271 |31727 |0 |1 |2774A4|0 |2 |0 |
-ROW |71068 |1272 |31687 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71069 |1272 |31710 |0 |1 |2774A4|0 |2 |0 |
-ROW |71070 |1273 |31705 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71071 |1273 |31703 |0 |1 |2774A4|0 |2 |0 |
-ROW |71072 |1273 |31706 |0 |2 |F63100|0 |2 |0 |
-ROW |71073 |1273 |31701 |0 |3 |A54F10|0 |2 |0 |
-ROW |71074 |1273 |31708 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |71075 |1274 |31715 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71076 |1274 |31726 |0 |1 |2774A4|0 |2 |0 |
-ROW |71077 |1274 |31717 |0 |2 |F63100|0 |2 |0 |
-ROW |71078 |1274 |31716 |0 |3 |A54F10|0 |2 |0 |
-ROW |71079 |1274 |31714 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |71080 |1274 |31713 |0 |5 |6C59DC|0 |2 |0 |
-ROW |71081 |1210 |31261 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71082 |1210 |31262 |0 |1 |2774A4|0 |2 |0 |
-ROW |71083 |1211 |31269 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71084 |1211 |31271 |0 |1 |2774A4|0 |2 |0 |
-ROW |71085 |1211 |33170 |0 |2 |F63100|0 |2 |0 |
-ROW |71086 |1212 |31233 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71087 |1212 |31234 |0 |1 |2774A4|0 |2 |0 |
-ROW |71088 |1213 |31216 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71089 |1213 |31237 |0 |1 |2774A4|0 |2 |0 |
-ROW |71090 |1213 |31214 |0 |2 |F63100|0 |2 |0 |
-ROW |71091 |1214 |31191 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71092 |1214 |31221 |0 |1 |2774A4|0 |2 |0 |
-ROW |71093 |1215 |31206 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71094 |1215 |31220 |0 |1 |2774A4|0 |2 |0 |
-ROW |71095 |1216 |31192 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71096 |1216 |31193 |0 |1 |2774A4|0 |2 |0 |
-ROW |71097 |1217 |31200 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71098 |1217 |31197 |0 |1 |2774A4|0 |2 |0 |
-ROW |71099 |1217 |31201 |0 |2 |F63100|0 |2 |0 |
-ROW |71100 |1217 |31198 |0 |3 |A54F10|0 |2 |0 |
-ROW |71101 |1217 |31202 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |71102 |1218 |31207 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71103 |1218 |31208 |0 |1 |2774A4|0 |2 |0 |
-ROW |71104 |1218 |31210 |0 |2 |F63100|0 |2 |0 |
-ROW |71105 |1218 |31209 |0 |3 |A54F10|0 |2 |0 |
-ROW |71106 |1218 |31219 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |71107 |1218 |31205 |0 |5 |6C59DC|0 |2 |0 |
-ROW |71108 |1380 |32423 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71109 |1380 |32421 |0 |1 |2774A4|0 |2 |0 |
-ROW |71110 |1381 |32405 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71111 |1382 |32426 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71112 |1382 |32408 |0 |1 |2774A4|0 |2 |0 |
-ROW |71113 |1382 |32422 |0 |2 |F63100|0 |2 |0 |
-ROW |71114 |1382 |32425 |0 |3 |A54F10|0 |2 |0 |
-ROW |71115 |1383 |32409 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71116 |1384 |32419 |0 |0 |1A7C11|1 |2 |0 |
-ROW |71117 |1384 |32416 |0 |1 |2774A4|1 |2 |0 |
-ROW |71118 |1384 |32413 |0 |2 |F63100|1 |2 |0 |
-ROW |71119 |1384 |32418 |5 |3 |A54F10|0 |2 |0 |
-ROW |71120 |1384 |32415 |5 |4 |FC6EA3|0 |2 |0 |
-ROW |71121 |1384 |32412 |5 |5 |6C59DC|0 |2 |0 |
-ROW |71122 |1385 |32420 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71123 |1385 |32417 |0 |1 |2774A4|0 |2 |0 |
-ROW |71124 |1385 |32414 |0 |2 |F63100|0 |2 |0 |
-ROW |71125 |1386 |32433 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71126 |1386 |32432 |0 |1 |2774A4|1 |2 |0 |
-ROW |71127 |1387 |32431 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71128 |1387 |32430 |0 |1 |2774A4|0 |2 |0 |
-ROW |71129 |1387 |32429 |0 |2 |F63100|0 |2 |0 |
-ROW |71130 |1387 |32428 |0 |3 |A54F10|0 |2 |0 |
-ROW |71131 |1387 |32427 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |71132 |1388 |32386 |0 |0 |1A7C11|1 |2 |0 |
-ROW |71133 |1388 |32391 |0 |1 |2774A4|1 |2 |0 |
-ROW |71134 |1388 |32387 |0 |2 |F63100|1 |2 |0 |
-ROW |71135 |1388 |32390 |0 |3 |A54F10|1 |2 |0 |
-ROW |71136 |1388 |32395 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |71137 |1388 |32389 |0 |5 |6C59DC|0 |2 |0 |
-ROW |71138 |1389 |32393 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71139 |1389 |32392 |0 |1 |2774A4|0 |2 |0 |
-ROW |71140 |1389 |32394 |0 |2 |F63100|1 |2 |0 |
-ROW |71141 |1389 |32388 |0 |3 |A54F10|1 |2 |0 |
-ROW |71142 |1390 |32401 |5 |0 |1A7C11|1 |2 |0 |
-ROW |71143 |1390 |32402 |0 |1 |2774A4|0 |2 |0 |
-ROW |71144 |1390 |32397 |0 |2 |F63100|1 |2 |0 |
-ROW |71145 |1390 |32398 |0 |3 |A54F10|1 |2 |0 |
-ROW |71146 |1390 |32399 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |71147 |1390 |32400 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71148 |1390 |32396 |0 |6 |AC8C14|1 |2 |0 |
-ROW |71149 |1391 |32367 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71150 |1391 |32366 |0 |1 |2774A4|1 |2 |0 |
-ROW |71151 |1392 |32370 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71152 |1393 |32382 |0 |0 |1A7C11|1 |2 |0 |
-ROW |71153 |1393 |32381 |0 |1 |2774A4|1 |2 |0 |
-ROW |71154 |1393 |32383 |0 |2 |F63100|1 |2 |0 |
-ROW |71155 |1393 |32384 |0 |3 |A54F10|1 |2 |0 |
-ROW |71156 |1394 |32377 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71157 |1394 |32374 |0 |1 |2774A4|1 |2 |0 |
-ROW |71158 |1395 |32403 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71159 |1395 |32385 |0 |1 |2774A4|1 |2 |0 |
-ROW |71160 |1219 |31363 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71161 |1219 |31346 |0 |1 |2774A4|0 |2 |0 |
-ROW |71162 |1219 |31345 |0 |2 |F63100|0 |2 |0 |
-ROW |71163 |1219 |31344 |0 |3 |A54F10|0 |2 |0 |
-ROW |71164 |1219 |31343 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |71165 |1219 |31342 |0 |5 |6C59DC|0 |2 |0 |
-ROW |71166 |1219 |31340 |0 |6 |AC8C14|0 |2 |0 |
-ROW |71167 |1219 |31339 |0 |7 |611F27|0 |2 |0 |
-ROW |71168 |1219 |31341 |0 |8 |F230E0|0 |2 |0 |
-ROW |71169 |1219 |31341 |0 |9 |FFAD40|0 |2 |0 |
-ROW |71170 |1220 |31337 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71171 |1221 |31360 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71172 |1221 |31359 |0 |1 |2774A4|0 |2 |0 |
-ROW |71173 |1221 |31357 |0 |2 |F63100|0 |2 |0 |
-ROW |71174 |1221 |31356 |0 |3 |A54F10|0 |2 |0 |
-ROW |71175 |1221 |31354 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |71176 |1221 |31353 |0 |5 |6C59DC|0 |2 |0 |
-ROW |71177 |1221 |31352 |0 |6 |AC8C14|0 |2 |0 |
-ROW |71178 |1221 |31350 |0 |7 |611F27|0 |2 |0 |
-ROW |71179 |1221 |31351 |0 |8 |F230E0|0 |2 |0 |
-ROW |71180 |1221 |31338 |0 |9 |FFAD40|0 |2 |0 |
-ROW |71181 |1221 |31349 |0 |10 |40CDFF|0 |2 |0 |
-ROW |71182 |1221 |31348 |0 |11 |40FFA0|0 |2 |0 |
-ROW |71183 |1221 |31347 |0 |12 |AE4500|0 |2 |0 |
-ROW |71184 |1222 |31336 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71185 |1456 |33178 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71186 |1456 |33179 |0 |1 |2774A4|0 |2 |0 |
-ROW |71187 |1456 |33180 |0 |2 |F63100|0 |2 |0 |
-ROW |71188 |1087 |30346 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71189 |1087 |30345 |0 |1 |2774A4|0 |2 |0 |
-ROW |71190 |1088 |30350 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71191 |1088 |30349 |5 |1 |2774A4|0 |2 |0 |
-ROW |71192 |1089 |30396 |2 |0 |1A7C11|0 |2 |0 |
-ROW |71193 |1090 |30398 |2 |0 |1A7C11|0 |2 |0 |
-ROW |71194 |1091 |30322 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71195 |1091 |30277 |5 |1 |2774A4|0 |2 |0 |
-ROW |71196 |1092 |30284 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71197 |1093 |30313 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71198 |1093 |30314 |0 |1 |2774A4|0 |2 |0 |
-ROW |71199 |1093 |30315 |5 |2 |F63100|0 |2 |0 |
-ROW |71200 |1093 |30316 |0 |3 |A54F10|0 |2 |0 |
-ROW |71201 |1094 |30279 |2 |0 |1A7C11|0 |2 |0 |
-ROW |71202 |1094 |30280 |2 |1 |2774A4|0 |2 |0 |
-ROW |71203 |1095 |30290 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71204 |1095 |30293 |0 |1 |2774A4|0 |2 |0 |
-ROW |71205 |1096 |30318 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71206 |1096 |30308 |2 |1 |2774A4|0 |2 |0 |
-ROW |71207 |1096 |30320 |2 |2 |F63100|0 |2 |0 |
-ROW |71208 |1097 |30317 |2 |0 |1A7C11|0 |2 |0 |
-ROW |71209 |1098 |30289 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71210 |1098 |30291 |5 |1 |2774A4|0 |2 |0 |
-ROW |71211 |1099 |30334 |2 |0 |1A7C11|0 |2 |0 |
-ROW |71212 |1099 |30325 |2 |1 |2774A4|0 |2 |0 |
-ROW |71213 |1100 |30306 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71214 |1101 |30274 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71215 |1102 |30281 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71216 |1577 |34351 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71217 |1577 |34350 |0 |1 |2774A4|0 |2 |0 |
-ROW |71218 |1578 |34387 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71219 |1578 |34388 |2 |1 |2774A4|0 |2 |0 |
-ROW |71220 |1579 |34393 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71221 |1579 |34386 |0 |1 |2774A4|0 |2 |0 |
-ROW |71222 |1580 |34370 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71223 |1580 |34384 |0 |1 |2774A4|0 |2 |0 |
-ROW |71224 |1580 |34383 |0 |2 |F63100|0 |2 |0 |
-ROW |71225 |1581 |34438 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71226 |1581 |34413 |0 |1 |2774A4|0 |2 |0 |
-ROW |71227 |1581 |34427 |0 |2 |F63100|0 |2 |0 |
-ROW |71228 |1582 |34420 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71229 |1582 |34419 |0 |1 |2774A4|0 |2 |0 |
-ROW |71230 |1582 |34418 |0 |2 |F63100|0 |2 |0 |
-ROW |71231 |1060 |30159 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71232 |1065 |30161 |0 |0 |969696|0 |9 |2 |
-ROW |71233 |1065 |30162 |0 |1 |C80000|0 |9 |0 |
-ROW |71234 |1070 |30142 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71235 |741 |27084 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71236 |741 |27085 |2 |1 |2774A4|0 |2 |0 |
-ROW |71237 |741 |27083 |0 |2 |F63100|1 |2 |0 |
-ROW |71238 |741 |27086 |0 |3 |A54F10|1 |2 |0 |
-ROW |71239 |741 |27082 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |71240 |741 |27079 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71241 |745 |27104 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71242 |745 |27105 |2 |1 |2774A4|0 |2 |0 |
-ROW |71243 |745 |27103 |0 |2 |F63100|1 |2 |0 |
-ROW |71244 |745 |27106 |0 |3 |A54F10|1 |2 |0 |
-ROW |71245 |745 |27102 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |71246 |745 |27099 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71247 |766 |27124 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71248 |766 |27125 |2 |1 |2774A4|0 |2 |0 |
-ROW |71249 |766 |27123 |0 |2 |F63100|1 |2 |0 |
-ROW |71250 |766 |27126 |0 |3 |A54F10|1 |2 |0 |
-ROW |71251 |766 |27122 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |71252 |766 |27119 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71253 |668 |27208 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71254 |1032 |30088 |2 |0 |1A7C11|0 |2 |0 |
-ROW |71255 |1032 |30087 |5 |1 |2774A4|0 |2 |0 |
-ROW |71256 |1033 |30089 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71257 |671 |27240 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71258 |1034 |30093 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71259 |675 |27294 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71260 |1035 |30094 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71261 |1676 |35369 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71262 |1677 |35372 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71263 |1678 |35379 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71264 |1678 |35386 |0 |1 |2774A4|0 |2 |0 |
-ROW |71265 |1678 |35377 |0 |2 |F63100|0 |2 |0 |
-ROW |71266 |1678 |35384 |0 |3 |A54F10|0 |2 |0 |
-ROW |71267 |1678 |35376 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |71268 |1678 |35383 |0 |5 |6C59DC|0 |2 |0 |
-ROW |71269 |1679 |35387 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71270 |1679 |35380 |0 |1 |2774A4|0 |2 |0 |
-ROW |71271 |1680 |35378 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71272 |1680 |35385 |0 |1 |2774A4|0 |2 |0 |
-ROW |71273 |1681 |35403 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71274 |1681 |35404 |0 |1 |2774A4|0 |2 |0 |
-ROW |71275 |1549 |33966 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71276 |1550 |33971 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71277 |1551 |33974 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71278 |1551 |33977 |2 |1 |2774A4|0 |2 |0 |
-ROW |71279 |1551 |33976 |0 |2 |F63100|1 |2 |0 |
-ROW |71280 |1551 |33973 |0 |3 |A54F10|1 |2 |0 |
-ROW |71281 |1551 |33975 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |71282 |1551 |33972 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71283 |1552 |34007 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71284 |1553 |34012 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71285 |1554 |34015 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71286 |1554 |34018 |2 |1 |2774A4|0 |2 |0 |
-ROW |71287 |1554 |34017 |0 |2 |F63100|1 |2 |0 |
-ROW |71288 |1554 |34014 |0 |3 |A54F10|1 |2 |0 |
-ROW |71289 |1554 |34016 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |71290 |1554 |34013 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71291 |1555 |34048 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71292 |1556 |34053 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71293 |1557 |34056 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71294 |1557 |34059 |2 |1 |2774A4|0 |2 |0 |
-ROW |71295 |1557 |34058 |0 |2 |F63100|1 |2 |0 |
-ROW |71296 |1557 |34055 |0 |3 |A54F10|1 |2 |0 |
-ROW |71297 |1557 |34057 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |71298 |1557 |34054 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71299 |1558 |34089 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71300 |1559 |34094 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71301 |1560 |34097 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71302 |1560 |34100 |2 |1 |2774A4|0 |2 |0 |
-ROW |71303 |1560 |34099 |0 |2 |F63100|1 |2 |0 |
-ROW |71304 |1560 |34096 |0 |3 |A54F10|1 |2 |0 |
-ROW |71305 |1560 |34098 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |71306 |1560 |34095 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71307 |1561 |34130 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71308 |1562 |34135 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71309 |1563 |34138 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71310 |1563 |34141 |2 |1 |2774A4|0 |2 |0 |
-ROW |71311 |1563 |34140 |0 |2 |F63100|1 |2 |0 |
-ROW |71312 |1563 |34137 |0 |3 |A54F10|1 |2 |0 |
-ROW |71313 |1563 |34139 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |71314 |1563 |34136 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71315 |1038 |30101 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71316 |786 |28246 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71317 |687 |27417 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71318 |691 |27376 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71319 |694 |27478 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71320 |1042 |30105 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71321 |1043 |30107 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71322 |698 |27511 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71323 |1044 |30108 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71324 |701 |27547 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71325 |1045 |27591 |2 |0 |1A7C11|0 |2 |0 |
-ROW |71326 |1045 |30110 |5 |1 |2774A4|0 |2 |0 |
-ROW |71327 |1046 |30111 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71328 |704 |27586 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71329 |1682 |35439 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71330 |1683 |35441 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71331 |1684 |35443 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71332 |1685 |35446 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71333 |1686 |35450 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71334 |1686 |35465 |0 |1 |2774A4|0 |2 |0 |
-ROW |71335 |1686 |35456 |0 |2 |F63100|0 |2 |0 |
-ROW |71336 |1686 |35447 |0 |3 |A54F10|0 |2 |0 |
-ROW |71337 |1686 |35468 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |71338 |1686 |35471 |0 |5 |6C59DC|0 |2 |0 |
-ROW |71339 |1686 |35459 |0 |6 |AC8C14|0 |2 |0 |
-ROW |71340 |1687 |35449 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71341 |1687 |35464 |0 |1 |2774A4|0 |2 |0 |
-ROW |71342 |1687 |35455 |0 |2 |F63100|0 |2 |0 |
-ROW |71343 |1687 |35461 |0 |3 |A54F10|0 |2 |0 |
-ROW |71344 |1687 |35467 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |71345 |1687 |35470 |0 |5 |6C59DC|0 |2 |0 |
-ROW |71346 |1687 |35457 |0 |6 |AC8C14|0 |2 |0 |
-ROW |71347 |1688 |35473 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71348 |1688 |35463 |0 |1 |2774A4|0 |2 |0 |
-ROW |71349 |1688 |35454 |0 |2 |F63100|0 |2 |0 |
-ROW |71350 |1688 |35472 |0 |3 |A54F10|0 |2 |0 |
-ROW |71351 |1688 |35466 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |71352 |1688 |35469 |0 |5 |6C59DC|0 |2 |0 |
-ROW |71353 |1688 |35458 |0 |6 |AC8C14|0 |2 |0 |
-ROW |71354 |1689 |35474 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71355 |1690 |35476 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71356 |1691 |35478 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71357 |1691 |35480 |0 |1 |2774A4|0 |2 |0 |
-ROW |71358 |1692 |35487 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71359 |1692 |35484 |0 |1 |2774A4|0 |2 |0 |
-ROW |71360 |1693 |35486 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71361 |1693 |35483 |0 |1 |2774A4|0 |2 |0 |
-ROW |71362 |1694 |35490 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71363 |1694 |35488 |0 |1 |2774A4|0 |2 |0 |
-ROW |71364 |1694 |35489 |0 |2 |F63100|0 |2 |0 |
-ROW |71365 |1695 |35497 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71366 |1695 |35493 |0 |1 |2774A4|1 |2 |0 |
-ROW |71367 |1695 |35503 |0 |2 |F63100|0 |2 |0 |
-ROW |71368 |1695 |35499 |0 |3 |A54F10|1 |2 |0 |
-ROW |71369 |1695 |35496 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |71370 |1695 |35502 |0 |5 |6C59DC|0 |2 |0 |
-ROW |71371 |1696 |35508 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71372 |1696 |35507 |0 |1 |2774A4|1 |2 |0 |
-ROW |71373 |1696 |35510 |0 |2 |F63100|0 |2 |0 |
-ROW |71374 |1696 |35509 |0 |3 |A54F10|1 |2 |0 |
-ROW |71375 |1697 |35516 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71376 |1697 |35515 |0 |1 |2774A4|1 |2 |0 |
-ROW |71377 |1697 |35518 |0 |2 |F63100|0 |2 |0 |
-ROW |71378 |1697 |35517 |0 |3 |A54F10|1 |2 |0 |
-ROW |71379 |1698 |35524 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71380 |1698 |35523 |0 |1 |2774A4|1 |2 |0 |
-ROW |71381 |1698 |35526 |0 |2 |F63100|0 |2 |0 |
-ROW |71382 |1698 |35525 |0 |3 |A54F10|1 |2 |0 |
-ROW |71383 |1699 |35531 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71384 |1699 |35529 |0 |1 |2774A4|0 |2 |0 |
-ROW |71385 |1699 |35530 |0 |2 |F63100|0 |2 |0 |
-ROW |71386 |1700 |35411 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71387 |1700 |35409 |0 |1 |2774A4|0 |2 |0 |
-ROW |71388 |1700 |35407 |0 |2 |F63100|0 |2 |0 |
-ROW |71389 |1700 |35413 |0 |3 |A54F10|0 |2 |0 |
-ROW |71390 |1700 |35412 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |71391 |1700 |35410 |0 |5 |6C59DC|0 |2 |0 |
-ROW |71392 |708 |27671 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71393 |1047 |30112 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71394 |1048 |30114 |2 |0 |1A7C11|0 |2 |0 |
-ROW |71395 |1048 |30113 |5 |1 |2774A4|0 |2 |0 |
-ROW |71396 |1049 |30115 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71397 |775 |28143 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71398 |714 |27753 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71399 |1050 |30116 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71400 |856 |28894 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71401 |1051 |30118 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71402 |1564 |34166 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71403 |1564 |34169 |2 |1 |2774A4|0 |2 |0 |
-ROW |71404 |1564 |34168 |0 |2 |F63100|1 |2 |0 |
-ROW |71405 |1564 |34165 |0 |3 |A54F10|1 |2 |0 |
-ROW |71406 |1564 |34167 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |71407 |1564 |34164 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71408 |1565 |34174 |0 |0 |969696|0 |9 |2 |
-ROW |71409 |1565 |34175 |0 |1 |C80000|0 |9 |0 |
-ROW |71410 |1566 |34178 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71411 |1567 |34154 |5 |0 |1A7C11|0 |2 |0 |
ROW |71412 |1810 |36840 |5 |0 |1A7C11|0 |2 |0 |
ROW |71413 |1810 |36843 |2 |1 |2774A4|0 |2 |0 |
ROW |71414 |1810 |36842 |0 |2 |F63100|1 |2 |0 |
ROW |71415 |1810 |36839 |0 |3 |A54F10|1 |2 |0 |
ROW |71416 |1810 |36841 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71417 |1810 |36838 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71418 |1811 |36861 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71419 |1812 |36867 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71420 |1812 |36865 |0 |1 |2774A4|0 |2 |0 |
-ROW |71421 |1812 |36864 |0 |2 |F63100|0 |2 |0 |
-ROW |71422 |1812 |36866 |0 |3 |A54F10|0 |2 |0 |
-ROW |71423 |1813 |36878 |0 |0 |969696|0 |9 |2 |
-ROW |71424 |1813 |36879 |0 |1 |C80000|0 |9 |0 |
-ROW |71425 |1814 |36853 |5 |0 |1A7C11|0 |2 |0 |
ROW |71426 |1815 |36894 |5 |0 |1A7C11|0 |2 |0 |
ROW |71427 |1815 |36897 |2 |1 |2774A4|0 |2 |0 |
ROW |71428 |1815 |36896 |0 |2 |F63100|1 |2 |0 |
ROW |71429 |1815 |36893 |0 |3 |A54F10|1 |2 |0 |
ROW |71430 |1815 |36895 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71431 |1815 |36892 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71432 |1816 |36915 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71433 |1817 |36921 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71434 |1817 |36919 |0 |1 |2774A4|0 |2 |0 |
-ROW |71435 |1817 |36918 |0 |2 |F63100|0 |2 |0 |
-ROW |71436 |1817 |36920 |0 |3 |A54F10|0 |2 |0 |
-ROW |71437 |1818 |36932 |0 |0 |969696|0 |9 |2 |
-ROW |71438 |1818 |36933 |0 |1 |C80000|0 |9 |0 |
-ROW |71439 |1819 |36907 |5 |0 |1A7C11|0 |2 |0 |
ROW |71440 |1820 |36948 |5 |0 |1A7C11|0 |2 |0 |
ROW |71441 |1820 |36951 |2 |1 |2774A4|0 |2 |0 |
ROW |71442 |1820 |36950 |0 |2 |F63100|1 |2 |0 |
ROW |71443 |1820 |36947 |0 |3 |A54F10|1 |2 |0 |
ROW |71444 |1820 |36949 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71445 |1820 |36946 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71446 |1821 |36969 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71447 |1822 |36975 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71448 |1822 |36973 |0 |1 |2774A4|0 |2 |0 |
-ROW |71449 |1822 |36972 |0 |2 |F63100|0 |2 |0 |
-ROW |71450 |1822 |36974 |0 |3 |A54F10|0 |2 |0 |
-ROW |71451 |1823 |36986 |0 |0 |969696|0 |9 |2 |
-ROW |71452 |1823 |36987 |0 |1 |C80000|0 |9 |0 |
-ROW |71453 |1824 |36961 |5 |0 |1A7C11|0 |2 |0 |
ROW |71454 |1825 |37002 |5 |0 |1A7C11|0 |2 |0 |
ROW |71455 |1825 |37005 |2 |1 |2774A4|0 |2 |0 |
ROW |71456 |1825 |37004 |0 |2 |F63100|1 |2 |0 |
ROW |71457 |1825 |37001 |0 |3 |A54F10|1 |2 |0 |
ROW |71458 |1825 |37003 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71459 |1825 |37000 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71460 |1826 |37023 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71461 |1827 |37029 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71462 |1827 |37027 |0 |1 |2774A4|0 |2 |0 |
-ROW |71463 |1827 |37026 |0 |2 |F63100|0 |2 |0 |
-ROW |71464 |1827 |37028 |0 |3 |A54F10|0 |2 |0 |
-ROW |71465 |1828 |37040 |0 |0 |969696|0 |9 |2 |
-ROW |71466 |1828 |37041 |0 |1 |C80000|0 |9 |0 |
-ROW |71467 |1829 |37015 |5 |0 |1A7C11|0 |2 |0 |
ROW |71468 |1830 |37056 |5 |0 |1A7C11|0 |2 |0 |
ROW |71469 |1830 |37059 |2 |1 |2774A4|0 |2 |0 |
ROW |71470 |1830 |37058 |0 |2 |F63100|1 |2 |0 |
ROW |71471 |1830 |37055 |0 |3 |A54F10|1 |2 |0 |
ROW |71472 |1830 |37057 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71473 |1830 |37054 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71474 |1831 |37077 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71475 |1832 |37083 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71476 |1832 |37081 |0 |1 |2774A4|0 |2 |0 |
-ROW |71477 |1832 |37080 |0 |2 |F63100|0 |2 |0 |
-ROW |71478 |1832 |37082 |0 |3 |A54F10|0 |2 |0 |
-ROW |71479 |1833 |37094 |0 |0 |969696|0 |9 |2 |
-ROW |71480 |1833 |37095 |0 |1 |C80000|0 |9 |0 |
-ROW |71481 |1834 |37069 |5 |0 |1A7C11|0 |2 |0 |
ROW |71482 |1835 |37110 |5 |0 |1A7C11|0 |2 |0 |
ROW |71483 |1835 |37113 |2 |1 |2774A4|0 |2 |0 |
ROW |71484 |1835 |37112 |0 |2 |F63100|1 |2 |0 |
ROW |71485 |1835 |37109 |0 |3 |A54F10|1 |2 |0 |
ROW |71486 |1835 |37111 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71487 |1835 |37108 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71488 |1836 |37131 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71489 |1837 |37137 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71490 |1837 |37135 |0 |1 |2774A4|0 |2 |0 |
-ROW |71491 |1837 |37134 |0 |2 |F63100|0 |2 |0 |
-ROW |71492 |1837 |37136 |0 |3 |A54F10|0 |2 |0 |
-ROW |71493 |1838 |37148 |0 |0 |969696|0 |9 |2 |
-ROW |71494 |1838 |37149 |0 |1 |C80000|0 |9 |0 |
-ROW |71495 |1839 |37123 |5 |0 |1A7C11|0 |2 |0 |
ROW |71496 |1840 |37164 |5 |0 |1A7C11|0 |2 |0 |
ROW |71497 |1840 |37167 |2 |1 |2774A4|0 |2 |0 |
ROW |71498 |1840 |37166 |0 |2 |F63100|1 |2 |0 |
ROW |71499 |1840 |37163 |0 |3 |A54F10|1 |2 |0 |
ROW |71500 |1840 |37165 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71501 |1840 |37162 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71502 |1841 |37185 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71503 |1842 |37191 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71504 |1842 |37189 |0 |1 |2774A4|0 |2 |0 |
-ROW |71505 |1842 |37188 |0 |2 |F63100|0 |2 |0 |
-ROW |71506 |1842 |37190 |0 |3 |A54F10|0 |2 |0 |
-ROW |71507 |1843 |37202 |0 |0 |969696|0 |9 |2 |
-ROW |71508 |1843 |37203 |0 |1 |C80000|0 |9 |0 |
-ROW |71509 |1844 |37177 |5 |0 |1A7C11|0 |2 |0 |
ROW |71510 |1845 |37218 |5 |0 |1A7C11|0 |2 |0 |
ROW |71511 |1845 |37221 |2 |1 |2774A4|0 |2 |0 |
ROW |71512 |1845 |37220 |0 |2 |F63100|1 |2 |0 |
ROW |71513 |1845 |37217 |0 |3 |A54F10|1 |2 |0 |
ROW |71514 |1845 |37219 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71515 |1845 |37216 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71516 |1846 |37239 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71517 |1847 |37245 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71518 |1847 |37243 |0 |1 |2774A4|0 |2 |0 |
-ROW |71519 |1847 |37242 |0 |2 |F63100|0 |2 |0 |
-ROW |71520 |1847 |37244 |0 |3 |A54F10|0 |2 |0 |
-ROW |71521 |1848 |37256 |0 |0 |969696|0 |9 |2 |
-ROW |71522 |1848 |37257 |0 |1 |C80000|0 |9 |0 |
-ROW |71523 |1849 |37231 |5 |0 |1A7C11|0 |2 |0 |
ROW |71524 |1850 |37272 |5 |0 |1A7C11|0 |2 |0 |
ROW |71525 |1850 |37275 |2 |1 |2774A4|0 |2 |0 |
ROW |71526 |1850 |37274 |0 |2 |F63100|1 |2 |0 |
ROW |71527 |1850 |37271 |0 |3 |A54F10|1 |2 |0 |
ROW |71528 |1850 |37273 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71529 |1850 |37270 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71530 |1851 |37293 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71531 |1852 |37299 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71532 |1852 |37297 |0 |1 |2774A4|0 |2 |0 |
-ROW |71533 |1852 |37296 |0 |2 |F63100|0 |2 |0 |
-ROW |71534 |1852 |37298 |0 |3 |A54F10|0 |2 |0 |
-ROW |71535 |1853 |37310 |0 |0 |969696|0 |9 |2 |
-ROW |71536 |1853 |37311 |0 |1 |C80000|0 |9 |0 |
-ROW |71537 |1854 |37285 |5 |0 |1A7C11|0 |2 |0 |
ROW |71538 |1855 |37326 |5 |0 |1A7C11|0 |2 |0 |
ROW |71539 |1855 |37329 |2 |1 |2774A4|0 |2 |0 |
ROW |71540 |1855 |37328 |0 |2 |F63100|1 |2 |0 |
ROW |71541 |1855 |37325 |0 |3 |A54F10|1 |2 |0 |
ROW |71542 |1855 |37327 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71543 |1855 |37324 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71544 |1856 |37347 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71545 |1857 |37353 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71546 |1857 |37351 |0 |1 |2774A4|0 |2 |0 |
-ROW |71547 |1857 |37350 |0 |2 |F63100|0 |2 |0 |
-ROW |71548 |1857 |37352 |0 |3 |A54F10|0 |2 |0 |
-ROW |71549 |1858 |37364 |0 |0 |969696|0 |9 |2 |
-ROW |71550 |1858 |37365 |0 |1 |C80000|0 |9 |0 |
-ROW |71551 |1859 |37339 |5 |0 |1A7C11|0 |2 |0 |
ROW |71552 |1860 |37380 |5 |0 |1A7C11|0 |2 |0 |
ROW |71553 |1860 |37383 |2 |1 |2774A4|0 |2 |0 |
ROW |71554 |1860 |37382 |0 |2 |F63100|1 |2 |0 |
ROW |71555 |1860 |37379 |0 |3 |A54F10|1 |2 |0 |
ROW |71556 |1860 |37381 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71557 |1860 |37378 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71558 |1861 |37401 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71559 |1862 |37407 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71560 |1862 |37405 |0 |1 |2774A4|0 |2 |0 |
-ROW |71561 |1862 |37404 |0 |2 |F63100|0 |2 |0 |
-ROW |71562 |1862 |37406 |0 |3 |A54F10|0 |2 |0 |
-ROW |71563 |1863 |37418 |0 |0 |969696|0 |9 |2 |
-ROW |71564 |1863 |37419 |0 |1 |C80000|0 |9 |0 |
-ROW |71565 |1864 |37393 |5 |0 |1A7C11|0 |2 |0 |
ROW |71566 |1865 |37434 |5 |0 |1A7C11|0 |2 |0 |
ROW |71567 |1865 |37437 |2 |1 |2774A4|0 |2 |0 |
ROW |71568 |1865 |37436 |0 |2 |F63100|1 |2 |0 |
ROW |71569 |1865 |37433 |0 |3 |A54F10|1 |2 |0 |
ROW |71570 |1865 |37435 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71571 |1865 |37432 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71572 |1866 |37455 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71573 |1867 |37461 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71574 |1867 |37459 |0 |1 |2774A4|0 |2 |0 |
-ROW |71575 |1867 |37458 |0 |2 |F63100|0 |2 |0 |
-ROW |71576 |1867 |37460 |0 |3 |A54F10|0 |2 |0 |
-ROW |71577 |1868 |37472 |0 |0 |969696|0 |9 |2 |
-ROW |71578 |1868 |37473 |0 |1 |C80000|0 |9 |0 |
-ROW |71579 |1869 |37447 |5 |0 |1A7C11|0 |2 |0 |
ROW |71580 |1870 |37488 |5 |0 |1A7C11|0 |2 |0 |
ROW |71581 |1870 |37491 |2 |1 |2774A4|0 |2 |0 |
ROW |71582 |1870 |37490 |0 |2 |F63100|1 |2 |0 |
ROW |71583 |1870 |37487 |0 |3 |A54F10|1 |2 |0 |
ROW |71584 |1870 |37489 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71585 |1870 |37486 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71586 |1871 |37509 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71587 |1872 |37515 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71588 |1872 |37513 |0 |1 |2774A4|0 |2 |0 |
-ROW |71589 |1872 |37512 |0 |2 |F63100|0 |2 |0 |
-ROW |71590 |1872 |37514 |0 |3 |A54F10|0 |2 |0 |
-ROW |71591 |1873 |37526 |0 |0 |969696|0 |9 |2 |
-ROW |71592 |1873 |37527 |0 |1 |C80000|0 |9 |0 |
-ROW |71593 |1874 |37501 |5 |0 |1A7C11|0 |2 |0 |
ROW |71594 |1875 |37542 |5 |0 |1A7C11|0 |2 |0 |
ROW |71595 |1875 |37545 |2 |1 |2774A4|0 |2 |0 |
ROW |71596 |1875 |37544 |0 |2 |F63100|1 |2 |0 |
ROW |71597 |1875 |37541 |0 |3 |A54F10|1 |2 |0 |
ROW |71598 |1875 |37543 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71599 |1875 |37540 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71600 |1876 |37563 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71601 |1877 |37569 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71602 |1877 |37567 |0 |1 |2774A4|0 |2 |0 |
-ROW |71603 |1877 |37566 |0 |2 |F63100|0 |2 |0 |
-ROW |71604 |1877 |37568 |0 |3 |A54F10|0 |2 |0 |
-ROW |71605 |1878 |37580 |0 |0 |969696|0 |9 |2 |
-ROW |71606 |1878 |37581 |0 |1 |C80000|0 |9 |0 |
-ROW |71607 |1879 |37555 |5 |0 |1A7C11|0 |2 |0 |
ROW |71608 |1880 |37596 |5 |0 |1A7C11|0 |2 |0 |
ROW |71609 |1880 |37599 |2 |1 |2774A4|0 |2 |0 |
ROW |71610 |1880 |37598 |0 |2 |F63100|1 |2 |0 |
ROW |71611 |1880 |37595 |0 |3 |A54F10|1 |2 |0 |
ROW |71612 |1880 |37597 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71613 |1880 |37594 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71614 |1881 |37617 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71615 |1882 |37623 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71616 |1882 |37621 |0 |1 |2774A4|0 |2 |0 |
-ROW |71617 |1882 |37620 |0 |2 |F63100|0 |2 |0 |
-ROW |71618 |1882 |37622 |0 |3 |A54F10|0 |2 |0 |
-ROW |71619 |1883 |37634 |0 |0 |969696|0 |9 |2 |
-ROW |71620 |1883 |37635 |0 |1 |C80000|0 |9 |0 |
-ROW |71621 |1884 |37609 |5 |0 |1A7C11|0 |2 |0 |
ROW |71622 |1885 |37650 |5 |0 |1A7C11|0 |2 |0 |
ROW |71623 |1885 |37653 |2 |1 |2774A4|0 |2 |0 |
ROW |71624 |1885 |37652 |0 |2 |F63100|1 |2 |0 |
ROW |71625 |1885 |37649 |0 |3 |A54F10|1 |2 |0 |
ROW |71626 |1885 |37651 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71627 |1885 |37648 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71628 |1886 |37671 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71629 |1887 |37677 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71630 |1887 |37675 |0 |1 |2774A4|0 |2 |0 |
-ROW |71631 |1887 |37674 |0 |2 |F63100|0 |2 |0 |
-ROW |71632 |1887 |37676 |0 |3 |A54F10|0 |2 |0 |
-ROW |71633 |1888 |37688 |0 |0 |969696|0 |9 |2 |
-ROW |71634 |1888 |37689 |0 |1 |C80000|0 |9 |0 |
-ROW |71635 |1889 |37663 |5 |0 |1A7C11|0 |2 |0 |
ROW |71636 |1890 |37704 |5 |0 |1A7C11|0 |2 |0 |
ROW |71637 |1890 |37707 |2 |1 |2774A4|0 |2 |0 |
ROW |71638 |1890 |37706 |0 |2 |F63100|1 |2 |0 |
ROW |71639 |1890 |37703 |0 |3 |A54F10|1 |2 |0 |
ROW |71640 |1890 |37705 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71641 |1890 |37702 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71642 |1891 |37725 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71643 |1892 |37731 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71644 |1892 |37729 |0 |1 |2774A4|0 |2 |0 |
-ROW |71645 |1892 |37728 |0 |2 |F63100|0 |2 |0 |
-ROW |71646 |1892 |37730 |0 |3 |A54F10|0 |2 |0 |
-ROW |71647 |1893 |37742 |0 |0 |969696|0 |9 |2 |
-ROW |71648 |1893 |37743 |0 |1 |C80000|0 |9 |0 |
-ROW |71649 |1894 |37717 |5 |0 |1A7C11|0 |2 |0 |
ROW |71650 |1895 |37758 |5 |0 |1A7C11|0 |2 |0 |
ROW |71651 |1895 |37761 |2 |1 |2774A4|0 |2 |0 |
ROW |71652 |1895 |37760 |0 |2 |F63100|1 |2 |0 |
ROW |71653 |1895 |37757 |0 |3 |A54F10|1 |2 |0 |
ROW |71654 |1895 |37759 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71655 |1895 |37756 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71656 |1896 |37779 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71657 |1897 |37785 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71658 |1897 |37783 |0 |1 |2774A4|0 |2 |0 |
-ROW |71659 |1897 |37782 |0 |2 |F63100|0 |2 |0 |
-ROW |71660 |1897 |37784 |0 |3 |A54F10|0 |2 |0 |
-ROW |71661 |1898 |37796 |0 |0 |969696|0 |9 |2 |
-ROW |71662 |1898 |37797 |0 |1 |C80000|0 |9 |0 |
-ROW |71663 |1899 |37771 |5 |0 |1A7C11|0 |2 |0 |
ROW |71664 |1900 |37812 |5 |0 |1A7C11|0 |2 |0 |
ROW |71665 |1900 |37815 |2 |1 |2774A4|0 |2 |0 |
ROW |71666 |1900 |37814 |0 |2 |F63100|1 |2 |0 |
ROW |71667 |1900 |37811 |0 |3 |A54F10|1 |2 |0 |
ROW |71668 |1900 |37813 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71669 |1900 |37810 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71670 |1901 |37833 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71671 |1902 |37839 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71672 |1902 |37837 |0 |1 |2774A4|0 |2 |0 |
-ROW |71673 |1902 |37836 |0 |2 |F63100|0 |2 |0 |
-ROW |71674 |1902 |37838 |0 |3 |A54F10|0 |2 |0 |
-ROW |71675 |1903 |37850 |0 |0 |969696|0 |9 |2 |
-ROW |71676 |1903 |37851 |0 |1 |C80000|0 |9 |0 |
-ROW |71677 |1904 |37825 |5 |0 |1A7C11|0 |2 |0 |
ROW |71678 |1905 |37866 |5 |0 |1A7C11|0 |2 |0 |
ROW |71679 |1905 |37869 |2 |1 |2774A4|0 |2 |0 |
ROW |71680 |1905 |37868 |0 |2 |F63100|1 |2 |0 |
ROW |71681 |1905 |37865 |0 |3 |A54F10|1 |2 |0 |
ROW |71682 |1905 |37867 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71683 |1905 |37864 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71684 |1906 |37887 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71685 |1907 |37893 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71686 |1907 |37891 |0 |1 |2774A4|0 |2 |0 |
-ROW |71687 |1907 |37890 |0 |2 |F63100|0 |2 |0 |
-ROW |71688 |1907 |37892 |0 |3 |A54F10|0 |2 |0 |
-ROW |71689 |1908 |37904 |0 |0 |969696|0 |9 |2 |
-ROW |71690 |1908 |37905 |0 |1 |C80000|0 |9 |0 |
-ROW |71691 |1909 |37879 |5 |0 |1A7C11|0 |2 |0 |
ROW |71692 |1910 |37920 |5 |0 |1A7C11|0 |2 |0 |
ROW |71693 |1910 |37923 |2 |1 |2774A4|0 |2 |0 |
ROW |71694 |1910 |37922 |0 |2 |F63100|1 |2 |0 |
ROW |71695 |1910 |37919 |0 |3 |A54F10|1 |2 |0 |
ROW |71696 |1910 |37921 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71697 |1910 |37918 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71698 |1911 |37941 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71699 |1912 |37947 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71700 |1912 |37945 |0 |1 |2774A4|0 |2 |0 |
-ROW |71701 |1912 |37944 |0 |2 |F63100|0 |2 |0 |
-ROW |71702 |1912 |37946 |0 |3 |A54F10|0 |2 |0 |
-ROW |71703 |1913 |37958 |0 |0 |969696|0 |9 |2 |
-ROW |71704 |1913 |37959 |0 |1 |C80000|0 |9 |0 |
-ROW |71705 |1914 |37933 |5 |0 |1A7C11|0 |2 |0 |
ROW |71706 |1915 |37974 |5 |0 |1A7C11|0 |2 |0 |
ROW |71707 |1915 |37977 |2 |1 |2774A4|0 |2 |0 |
ROW |71708 |1915 |37976 |0 |2 |F63100|1 |2 |0 |
ROW |71709 |1915 |37973 |0 |3 |A54F10|1 |2 |0 |
ROW |71710 |1915 |37975 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71711 |1915 |37972 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71712 |1916 |37995 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71713 |1917 |38001 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71714 |1917 |37999 |0 |1 |2774A4|0 |2 |0 |
-ROW |71715 |1917 |37998 |0 |2 |F63100|0 |2 |0 |
-ROW |71716 |1917 |38000 |0 |3 |A54F10|0 |2 |0 |
-ROW |71717 |1918 |38012 |0 |0 |969696|0 |9 |2 |
-ROW |71718 |1918 |38013 |0 |1 |C80000|0 |9 |0 |
-ROW |71719 |1919 |37987 |5 |0 |1A7C11|0 |2 |0 |
ROW |71720 |1920 |38028 |5 |0 |1A7C11|0 |2 |0 |
ROW |71721 |1920 |38031 |2 |1 |2774A4|0 |2 |0 |
ROW |71722 |1920 |38030 |0 |2 |F63100|1 |2 |0 |
ROW |71723 |1920 |38027 |0 |3 |A54F10|1 |2 |0 |
ROW |71724 |1920 |38029 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71725 |1920 |38026 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71726 |1921 |38049 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71727 |1922 |38055 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71728 |1922 |38053 |0 |1 |2774A4|0 |2 |0 |
-ROW |71729 |1922 |38052 |0 |2 |F63100|0 |2 |0 |
-ROW |71730 |1922 |38054 |0 |3 |A54F10|0 |2 |0 |
-ROW |71731 |1923 |38066 |0 |0 |969696|0 |9 |2 |
-ROW |71732 |1923 |38067 |0 |1 |C80000|0 |9 |0 |
-ROW |71733 |1924 |38041 |5 |0 |1A7C11|0 |2 |0 |
ROW |71734 |1925 |38082 |5 |0 |1A7C11|0 |2 |0 |
ROW |71735 |1925 |38085 |2 |1 |2774A4|0 |2 |0 |
ROW |71736 |1925 |38084 |0 |2 |F63100|1 |2 |0 |
ROW |71737 |1925 |38081 |0 |3 |A54F10|1 |2 |0 |
ROW |71738 |1925 |38083 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71739 |1925 |38080 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71740 |1926 |38103 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71741 |1927 |38109 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71742 |1927 |38107 |0 |1 |2774A4|0 |2 |0 |
-ROW |71743 |1927 |38106 |0 |2 |F63100|0 |2 |0 |
-ROW |71744 |1927 |38108 |0 |3 |A54F10|0 |2 |0 |
-ROW |71745 |1928 |38120 |0 |0 |969696|0 |9 |2 |
-ROW |71746 |1928 |38121 |0 |1 |C80000|0 |9 |0 |
-ROW |71747 |1929 |38095 |5 |0 |1A7C11|0 |2 |0 |
ROW |71748 |1930 |38136 |5 |0 |1A7C11|0 |2 |0 |
ROW |71749 |1930 |38139 |2 |1 |2774A4|0 |2 |0 |
ROW |71750 |1930 |38138 |0 |2 |F63100|1 |2 |0 |
ROW |71751 |1930 |38135 |0 |3 |A54F10|1 |2 |0 |
ROW |71752 |1930 |38137 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71753 |1930 |38134 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71754 |1931 |38157 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71755 |1932 |38163 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71756 |1932 |38161 |0 |1 |2774A4|0 |2 |0 |
-ROW |71757 |1932 |38160 |0 |2 |F63100|0 |2 |0 |
-ROW |71758 |1932 |38162 |0 |3 |A54F10|0 |2 |0 |
-ROW |71759 |1933 |38174 |0 |0 |969696|0 |9 |2 |
-ROW |71760 |1933 |38175 |0 |1 |C80000|0 |9 |0 |
-ROW |71761 |1934 |38149 |5 |0 |1A7C11|0 |2 |0 |
ROW |71762 |1935 |38190 |5 |0 |1A7C11|0 |2 |0 |
ROW |71763 |1935 |38193 |2 |1 |2774A4|0 |2 |0 |
ROW |71764 |1935 |38192 |0 |2 |F63100|1 |2 |0 |
ROW |71765 |1935 |38189 |0 |3 |A54F10|1 |2 |0 |
ROW |71766 |1935 |38191 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71767 |1935 |38188 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71768 |1936 |38211 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71769 |1937 |38217 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71770 |1937 |38215 |0 |1 |2774A4|0 |2 |0 |
-ROW |71771 |1937 |38214 |0 |2 |F63100|0 |2 |0 |
-ROW |71772 |1937 |38216 |0 |3 |A54F10|0 |2 |0 |
-ROW |71773 |1938 |38228 |0 |0 |969696|0 |9 |2 |
-ROW |71774 |1938 |38229 |0 |1 |C80000|0 |9 |0 |
-ROW |71775 |1939 |38203 |5 |0 |1A7C11|0 |2 |0 |
ROW |71776 |1940 |38244 |5 |0 |1A7C11|0 |2 |0 |
ROW |71777 |1940 |38247 |2 |1 |2774A4|0 |2 |0 |
ROW |71778 |1940 |38246 |0 |2 |F63100|1 |2 |0 |
ROW |71779 |1940 |38243 |0 |3 |A54F10|1 |2 |0 |
ROW |71780 |1940 |38245 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71781 |1940 |38242 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71782 |1941 |38265 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71783 |1942 |38271 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71784 |1942 |38269 |0 |1 |2774A4|0 |2 |0 |
-ROW |71785 |1942 |38268 |0 |2 |F63100|0 |2 |0 |
-ROW |71786 |1942 |38270 |0 |3 |A54F10|0 |2 |0 |
-ROW |71787 |1943 |38282 |0 |0 |969696|0 |9 |2 |
-ROW |71788 |1943 |38283 |0 |1 |C80000|0 |9 |0 |
-ROW |71789 |1944 |38257 |5 |0 |1A7C11|0 |2 |0 |
ROW |71790 |1945 |38298 |5 |0 |1A7C11|0 |2 |0 |
ROW |71791 |1945 |38301 |2 |1 |2774A4|0 |2 |0 |
ROW |71792 |1945 |38300 |0 |2 |F63100|1 |2 |0 |
ROW |71793 |1945 |38297 |0 |3 |A54F10|1 |2 |0 |
ROW |71794 |1945 |38299 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71795 |1945 |38296 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71796 |1946 |38319 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71797 |1947 |38325 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71798 |1947 |38323 |0 |1 |2774A4|0 |2 |0 |
-ROW |71799 |1947 |38322 |0 |2 |F63100|0 |2 |0 |
-ROW |71800 |1947 |38324 |0 |3 |A54F10|0 |2 |0 |
-ROW |71801 |1948 |38336 |0 |0 |969696|0 |9 |2 |
-ROW |71802 |1948 |38337 |0 |1 |C80000|0 |9 |0 |
-ROW |71803 |1949 |38311 |5 |0 |1A7C11|0 |2 |0 |
ROW |71804 |1950 |38352 |5 |0 |1A7C11|0 |2 |0 |
ROW |71805 |1950 |38355 |2 |1 |2774A4|0 |2 |0 |
ROW |71806 |1950 |38354 |0 |2 |F63100|1 |2 |0 |
ROW |71807 |1950 |38351 |0 |3 |A54F10|1 |2 |0 |
ROW |71808 |1950 |38353 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71809 |1950 |38350 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71810 |1951 |38373 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71811 |1952 |38379 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71812 |1952 |38377 |0 |1 |2774A4|0 |2 |0 |
-ROW |71813 |1952 |38376 |0 |2 |F63100|0 |2 |0 |
-ROW |71814 |1952 |38378 |0 |3 |A54F10|0 |2 |0 |
-ROW |71815 |1953 |38390 |0 |0 |969696|0 |9 |2 |
-ROW |71816 |1953 |38391 |0 |1 |C80000|0 |9 |0 |
-ROW |71817 |1954 |38365 |5 |0 |1A7C11|0 |2 |0 |
ROW |71818 |1955 |38406 |5 |0 |1A7C11|0 |2 |0 |
ROW |71819 |1955 |38409 |2 |1 |2774A4|0 |2 |0 |
ROW |71820 |1955 |38408 |0 |2 |F63100|1 |2 |0 |
ROW |71821 |1955 |38405 |0 |3 |A54F10|1 |2 |0 |
ROW |71822 |1955 |38407 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71823 |1955 |38404 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71824 |1956 |38427 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71825 |1957 |38433 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71826 |1957 |38431 |0 |1 |2774A4|0 |2 |0 |
-ROW |71827 |1957 |38430 |0 |2 |F63100|0 |2 |0 |
-ROW |71828 |1957 |38432 |0 |3 |A54F10|0 |2 |0 |
-ROW |71829 |1958 |38444 |0 |0 |969696|0 |9 |2 |
-ROW |71830 |1958 |38445 |0 |1 |C80000|0 |9 |0 |
-ROW |71831 |1959 |38419 |5 |0 |1A7C11|0 |2 |0 |
ROW |71832 |1960 |38460 |5 |0 |1A7C11|0 |2 |0 |
ROW |71833 |1960 |38463 |2 |1 |2774A4|0 |2 |0 |
ROW |71834 |1960 |38462 |0 |2 |F63100|1 |2 |0 |
ROW |71835 |1960 |38459 |0 |3 |A54F10|1 |2 |0 |
ROW |71836 |1960 |38461 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71837 |1960 |38458 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71838 |1961 |38481 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71839 |1962 |38487 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71840 |1962 |38485 |0 |1 |2774A4|0 |2 |0 |
-ROW |71841 |1962 |38484 |0 |2 |F63100|0 |2 |0 |
-ROW |71842 |1962 |38486 |0 |3 |A54F10|0 |2 |0 |
-ROW |71843 |1963 |38498 |0 |0 |969696|0 |9 |2 |
-ROW |71844 |1963 |38499 |0 |1 |C80000|0 |9 |0 |
-ROW |71845 |1964 |38473 |5 |0 |1A7C11|0 |2 |0 |
ROW |71846 |1965 |38514 |5 |0 |1A7C11|0 |2 |0 |
ROW |71847 |1965 |38517 |2 |1 |2774A4|0 |2 |0 |
ROW |71848 |1965 |38516 |0 |2 |F63100|1 |2 |0 |
ROW |71849 |1965 |38513 |0 |3 |A54F10|1 |2 |0 |
ROW |71850 |1965 |38515 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71851 |1965 |38512 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71852 |1966 |38535 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71853 |1967 |38541 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71854 |1967 |38539 |0 |1 |2774A4|0 |2 |0 |
-ROW |71855 |1967 |38538 |0 |2 |F63100|0 |2 |0 |
-ROW |71856 |1967 |38540 |0 |3 |A54F10|0 |2 |0 |
-ROW |71857 |1968 |38552 |0 |0 |969696|0 |9 |2 |
-ROW |71858 |1968 |38553 |0 |1 |C80000|0 |9 |0 |
-ROW |71859 |1969 |38527 |5 |0 |1A7C11|0 |2 |0 |
ROW |71860 |1970 |38568 |5 |0 |1A7C11|0 |2 |0 |
ROW |71861 |1970 |38571 |2 |1 |2774A4|0 |2 |0 |
ROW |71862 |1970 |38570 |0 |2 |F63100|1 |2 |0 |
ROW |71863 |1970 |38567 |0 |3 |A54F10|1 |2 |0 |
ROW |71864 |1970 |38569 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71865 |1970 |38566 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71866 |1971 |38589 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71867 |1972 |38595 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71868 |1972 |38593 |0 |1 |2774A4|0 |2 |0 |
-ROW |71869 |1972 |38592 |0 |2 |F63100|0 |2 |0 |
-ROW |71870 |1972 |38594 |0 |3 |A54F10|0 |2 |0 |
-ROW |71871 |1973 |38606 |0 |0 |969696|0 |9 |2 |
-ROW |71872 |1973 |38607 |0 |1 |C80000|0 |9 |0 |
-ROW |71873 |1974 |38581 |5 |0 |1A7C11|0 |2 |0 |
ROW |71874 |1975 |38622 |5 |0 |1A7C11|0 |2 |0 |
ROW |71875 |1975 |38625 |2 |1 |2774A4|0 |2 |0 |
ROW |71876 |1975 |38624 |0 |2 |F63100|1 |2 |0 |
ROW |71877 |1975 |38621 |0 |3 |A54F10|1 |2 |0 |
ROW |71878 |1975 |38623 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71879 |1975 |38620 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71880 |1976 |38643 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71881 |1977 |38649 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71882 |1977 |38647 |0 |1 |2774A4|0 |2 |0 |
-ROW |71883 |1977 |38646 |0 |2 |F63100|0 |2 |0 |
-ROW |71884 |1977 |38648 |0 |3 |A54F10|0 |2 |0 |
-ROW |71885 |1978 |38660 |0 |0 |969696|0 |9 |2 |
-ROW |71886 |1978 |38661 |0 |1 |C80000|0 |9 |0 |
-ROW |71887 |1979 |38635 |5 |0 |1A7C11|0 |2 |0 |
ROW |71888 |1980 |38676 |5 |0 |1A7C11|0 |2 |0 |
ROW |71889 |1980 |38679 |2 |1 |2774A4|0 |2 |0 |
ROW |71890 |1980 |38678 |0 |2 |F63100|1 |2 |0 |
ROW |71891 |1980 |38675 |0 |3 |A54F10|1 |2 |0 |
ROW |71892 |1980 |38677 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71893 |1980 |38674 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71894 |1981 |38697 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71895 |1982 |38703 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71896 |1982 |38701 |0 |1 |2774A4|0 |2 |0 |
-ROW |71897 |1982 |38700 |0 |2 |F63100|0 |2 |0 |
-ROW |71898 |1982 |38702 |0 |3 |A54F10|0 |2 |0 |
-ROW |71899 |1983 |38714 |0 |0 |969696|0 |9 |2 |
-ROW |71900 |1983 |38715 |0 |1 |C80000|0 |9 |0 |
-ROW |71901 |1984 |38689 |5 |0 |1A7C11|0 |2 |0 |
ROW |71902 |1985 |38730 |5 |0 |1A7C11|0 |2 |0 |
ROW |71903 |1985 |38733 |2 |1 |2774A4|0 |2 |0 |
ROW |71904 |1985 |38732 |0 |2 |F63100|1 |2 |0 |
ROW |71905 |1985 |38729 |0 |3 |A54F10|1 |2 |0 |
ROW |71906 |1985 |38731 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71907 |1985 |38728 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71908 |1986 |38751 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71909 |1987 |38757 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71910 |1987 |38755 |0 |1 |2774A4|0 |2 |0 |
-ROW |71911 |1987 |38754 |0 |2 |F63100|0 |2 |0 |
-ROW |71912 |1987 |38756 |0 |3 |A54F10|0 |2 |0 |
-ROW |71913 |1988 |38768 |0 |0 |969696|0 |9 |2 |
-ROW |71914 |1988 |38769 |0 |1 |C80000|0 |9 |0 |
-ROW |71915 |1989 |38743 |5 |0 |1A7C11|0 |2 |0 |
ROW |71916 |1990 |38784 |5 |0 |1A7C11|0 |2 |0 |
ROW |71917 |1990 |38787 |2 |1 |2774A4|0 |2 |0 |
ROW |71918 |1990 |38786 |0 |2 |F63100|1 |2 |0 |
ROW |71919 |1990 |38783 |0 |3 |A54F10|1 |2 |0 |
ROW |71920 |1990 |38785 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71921 |1990 |38782 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71922 |1991 |38805 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71923 |1992 |38811 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71924 |1992 |38809 |0 |1 |2774A4|0 |2 |0 |
-ROW |71925 |1992 |38808 |0 |2 |F63100|0 |2 |0 |
-ROW |71926 |1992 |38810 |0 |3 |A54F10|0 |2 |0 |
-ROW |71927 |1993 |38822 |0 |0 |969696|0 |9 |2 |
-ROW |71928 |1993 |38823 |0 |1 |C80000|0 |9 |0 |
-ROW |71929 |1994 |38797 |5 |0 |1A7C11|0 |2 |0 |
ROW |71930 |1995 |38838 |5 |0 |1A7C11|0 |2 |0 |
ROW |71931 |1995 |38841 |2 |1 |2774A4|0 |2 |0 |
ROW |71932 |1995 |38840 |0 |2 |F63100|1 |2 |0 |
ROW |71933 |1995 |38837 |0 |3 |A54F10|1 |2 |0 |
ROW |71934 |1995 |38839 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71935 |1995 |38836 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71936 |1996 |38859 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71937 |1997 |38865 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71938 |1997 |38863 |0 |1 |2774A4|0 |2 |0 |
-ROW |71939 |1997 |38862 |0 |2 |F63100|0 |2 |0 |
-ROW |71940 |1997 |38864 |0 |3 |A54F10|0 |2 |0 |
-ROW |71941 |1998 |38876 |0 |0 |969696|0 |9 |2 |
-ROW |71942 |1998 |38877 |0 |1 |C80000|0 |9 |0 |
-ROW |71943 |1999 |38851 |5 |0 |1A7C11|0 |2 |0 |
ROW |71944 |2000 |38892 |5 |0 |1A7C11|0 |2 |0 |
ROW |71945 |2000 |38895 |2 |1 |2774A4|0 |2 |0 |
ROW |71946 |2000 |38894 |0 |2 |F63100|1 |2 |0 |
ROW |71947 |2000 |38891 |0 |3 |A54F10|1 |2 |0 |
ROW |71948 |2000 |38893 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71949 |2000 |38890 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71950 |2001 |38913 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71951 |2002 |38919 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71952 |2002 |38917 |0 |1 |2774A4|0 |2 |0 |
-ROW |71953 |2002 |38916 |0 |2 |F63100|0 |2 |0 |
-ROW |71954 |2002 |38918 |0 |3 |A54F10|0 |2 |0 |
-ROW |71955 |2003 |38930 |0 |0 |969696|0 |9 |2 |
-ROW |71956 |2003 |38931 |0 |1 |C80000|0 |9 |0 |
-ROW |71957 |2004 |38905 |5 |0 |1A7C11|0 |2 |0 |
ROW |71958 |2005 |38946 |5 |0 |1A7C11|0 |2 |0 |
ROW |71959 |2005 |38949 |2 |1 |2774A4|0 |2 |0 |
ROW |71960 |2005 |38948 |0 |2 |F63100|1 |2 |0 |
ROW |71961 |2005 |38945 |0 |3 |A54F10|1 |2 |0 |
ROW |71962 |2005 |38947 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71963 |2005 |38944 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71964 |2006 |38967 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71965 |2007 |38973 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71966 |2007 |38971 |0 |1 |2774A4|0 |2 |0 |
-ROW |71967 |2007 |38970 |0 |2 |F63100|0 |2 |0 |
-ROW |71968 |2007 |38972 |0 |3 |A54F10|0 |2 |0 |
-ROW |71969 |2008 |38984 |0 |0 |969696|0 |9 |2 |
-ROW |71970 |2008 |38985 |0 |1 |C80000|0 |9 |0 |
-ROW |71971 |2009 |38959 |5 |0 |1A7C11|0 |2 |0 |
ROW |71972 |2010 |39000 |5 |0 |1A7C11|0 |2 |0 |
ROW |71973 |2010 |39003 |2 |1 |2774A4|0 |2 |0 |
ROW |71974 |2010 |39002 |0 |2 |F63100|1 |2 |0 |
ROW |71975 |2010 |38999 |0 |3 |A54F10|1 |2 |0 |
ROW |71976 |2010 |39001 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71977 |2010 |38998 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71978 |2011 |39021 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71979 |2012 |39027 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71980 |2012 |39025 |0 |1 |2774A4|0 |2 |0 |
-ROW |71981 |2012 |39024 |0 |2 |F63100|0 |2 |0 |
-ROW |71982 |2012 |39026 |0 |3 |A54F10|0 |2 |0 |
-ROW |71983 |2013 |39038 |0 |0 |969696|0 |9 |2 |
-ROW |71984 |2013 |39039 |0 |1 |C80000|0 |9 |0 |
-ROW |71985 |2014 |39013 |5 |0 |1A7C11|0 |2 |0 |
ROW |71986 |2015 |39054 |5 |0 |1A7C11|0 |2 |0 |
ROW |71987 |2015 |39057 |2 |1 |2774A4|0 |2 |0 |
ROW |71988 |2015 |39056 |0 |2 |F63100|1 |2 |0 |
ROW |71989 |2015 |39053 |0 |3 |A54F10|1 |2 |0 |
ROW |71990 |2015 |39055 |0 |4 |FC6EA3|1 |2 |0 |
ROW |71991 |2015 |39052 |0 |5 |6C59DC|1 |2 |0 |
-ROW |71992 |2016 |39075 |5 |0 |1A7C11|0 |2 |0 |
-ROW |71993 |2017 |39081 |0 |0 |1A7C11|0 |2 |0 |
-ROW |71994 |2017 |39079 |0 |1 |2774A4|0 |2 |0 |
-ROW |71995 |2017 |39078 |0 |2 |F63100|0 |2 |0 |
-ROW |71996 |2017 |39080 |0 |3 |A54F10|0 |2 |0 |
-ROW |71997 |2018 |39092 |0 |0 |969696|0 |9 |2 |
-ROW |71998 |2018 |39093 |0 |1 |C80000|0 |9 |0 |
-ROW |71999 |2019 |39067 |5 |0 |1A7C11|0 |2 |0 |
ROW |72000 |2020 |39108 |5 |0 |1A7C11|0 |2 |0 |
ROW |72001 |2020 |39111 |2 |1 |2774A4|0 |2 |0 |
ROW |72002 |2020 |39110 |0 |2 |F63100|1 |2 |0 |
ROW |72003 |2020 |39107 |0 |3 |A54F10|1 |2 |0 |
ROW |72004 |2020 |39109 |0 |4 |FC6EA3|1 |2 |0 |
ROW |72005 |2020 |39106 |0 |5 |6C59DC|1 |2 |0 |
-ROW |72006 |2021 |39129 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72007 |2022 |39135 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72008 |2022 |39133 |0 |1 |2774A4|0 |2 |0 |
-ROW |72009 |2022 |39132 |0 |2 |F63100|0 |2 |0 |
-ROW |72010 |2022 |39134 |0 |3 |A54F10|0 |2 |0 |
-ROW |72011 |2023 |39146 |0 |0 |969696|0 |9 |2 |
-ROW |72012 |2023 |39147 |0 |1 |C80000|0 |9 |0 |
-ROW |72013 |2024 |39121 |5 |0 |1A7C11|0 |2 |0 |
ROW |72014 |2025 |39162 |5 |0 |1A7C11|0 |2 |0 |
ROW |72015 |2025 |39165 |2 |1 |2774A4|0 |2 |0 |
ROW |72016 |2025 |39164 |0 |2 |F63100|1 |2 |0 |
ROW |72017 |2025 |39161 |0 |3 |A54F10|1 |2 |0 |
ROW |72018 |2025 |39163 |0 |4 |FC6EA3|1 |2 |0 |
ROW |72019 |2025 |39160 |0 |5 |6C59DC|1 |2 |0 |
-ROW |72020 |2026 |39183 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72021 |2027 |39189 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72022 |2027 |39187 |0 |1 |2774A4|0 |2 |0 |
-ROW |72023 |2027 |39186 |0 |2 |F63100|0 |2 |0 |
-ROW |72024 |2027 |39188 |0 |3 |A54F10|0 |2 |0 |
-ROW |72025 |2028 |39200 |0 |0 |969696|0 |9 |2 |
-ROW |72026 |2028 |39201 |0 |1 |C80000|0 |9 |0 |
-ROW |72027 |2029 |39175 |5 |0 |1A7C11|0 |2 |0 |
ROW |72028 |2030 |39216 |5 |0 |1A7C11|0 |2 |0 |
ROW |72029 |2030 |39219 |2 |1 |2774A4|0 |2 |0 |
ROW |72030 |2030 |39218 |0 |2 |F63100|1 |2 |0 |
ROW |72031 |2030 |39215 |0 |3 |A54F10|1 |2 |0 |
ROW |72032 |2030 |39217 |0 |4 |FC6EA3|1 |2 |0 |
ROW |72033 |2030 |39214 |0 |5 |6C59DC|1 |2 |0 |
-ROW |72034 |2031 |39237 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72035 |2032 |39243 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72036 |2032 |39241 |0 |1 |2774A4|0 |2 |0 |
-ROW |72037 |2032 |39240 |0 |2 |F63100|0 |2 |0 |
-ROW |72038 |2032 |39242 |0 |3 |A54F10|0 |2 |0 |
-ROW |72039 |2033 |39254 |0 |0 |969696|0 |9 |2 |
-ROW |72040 |2033 |39255 |0 |1 |C80000|0 |9 |0 |
-ROW |72041 |2034 |39229 |5 |0 |1A7C11|0 |2 |0 |
ROW |72042 |2035 |39270 |5 |0 |1A7C11|0 |2 |0 |
ROW |72043 |2035 |39273 |2 |1 |2774A4|0 |2 |0 |
ROW |72044 |2035 |39272 |0 |2 |F63100|1 |2 |0 |
ROW |72045 |2035 |39269 |0 |3 |A54F10|1 |2 |0 |
ROW |72046 |2035 |39271 |0 |4 |FC6EA3|1 |2 |0 |
ROW |72047 |2035 |39268 |0 |5 |6C59DC|1 |2 |0 |
-ROW |72048 |2036 |39291 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72049 |2037 |39297 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72050 |2037 |39295 |0 |1 |2774A4|0 |2 |0 |
-ROW |72051 |2037 |39294 |0 |2 |F63100|0 |2 |0 |
-ROW |72052 |2037 |39296 |0 |3 |A54F10|0 |2 |0 |
-ROW |72053 |2038 |39308 |0 |0 |969696|0 |9 |2 |
-ROW |72054 |2038 |39309 |0 |1 |C80000|0 |9 |0 |
-ROW |72055 |2039 |39283 |5 |0 |1A7C11|0 |2 |0 |
ROW |72056 |2040 |39324 |5 |0 |1A7C11|0 |2 |0 |
ROW |72057 |2040 |39327 |2 |1 |2774A4|0 |2 |0 |
ROW |72058 |2040 |39326 |0 |2 |F63100|1 |2 |0 |
ROW |72059 |2040 |39323 |0 |3 |A54F10|1 |2 |0 |
ROW |72060 |2040 |39325 |0 |4 |FC6EA3|1 |2 |0 |
ROW |72061 |2040 |39322 |0 |5 |6C59DC|1 |2 |0 |
-ROW |72062 |2041 |39345 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72063 |2042 |39351 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72064 |2042 |39349 |0 |1 |2774A4|0 |2 |0 |
-ROW |72065 |2042 |39348 |0 |2 |F63100|0 |2 |0 |
-ROW |72066 |2042 |39350 |0 |3 |A54F10|0 |2 |0 |
-ROW |72067 |2043 |39362 |0 |0 |969696|0 |9 |2 |
-ROW |72068 |2043 |39363 |0 |1 |C80000|0 |9 |0 |
-ROW |72069 |2044 |39337 |5 |0 |1A7C11|0 |2 |0 |
ROW |72070 |2045 |39378 |5 |0 |1A7C11|0 |2 |0 |
ROW |72071 |2045 |39381 |2 |1 |2774A4|0 |2 |0 |
ROW |72072 |2045 |39380 |0 |2 |F63100|1 |2 |0 |
ROW |72073 |2045 |39377 |0 |3 |A54F10|1 |2 |0 |
ROW |72074 |2045 |39379 |0 |4 |FC6EA3|1 |2 |0 |
ROW |72075 |2045 |39376 |0 |5 |6C59DC|1 |2 |0 |
-ROW |72076 |2046 |39399 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72077 |2047 |39405 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72078 |2047 |39403 |0 |1 |2774A4|0 |2 |0 |
-ROW |72079 |2047 |39402 |0 |2 |F63100|0 |2 |0 |
-ROW |72080 |2047 |39404 |0 |3 |A54F10|0 |2 |0 |
-ROW |72081 |2048 |39416 |0 |0 |969696|0 |9 |2 |
-ROW |72082 |2048 |39417 |0 |1 |C80000|0 |9 |0 |
-ROW |72083 |2049 |39391 |5 |0 |1A7C11|0 |2 |0 |
ROW |72084 |2050 |39432 |5 |0 |1A7C11|0 |2 |0 |
ROW |72085 |2050 |39435 |2 |1 |2774A4|0 |2 |0 |
ROW |72086 |2050 |39434 |0 |2 |F63100|1 |2 |0 |
ROW |72087 |2050 |39431 |0 |3 |A54F10|1 |2 |0 |
ROW |72088 |2050 |39433 |0 |4 |FC6EA3|1 |2 |0 |
ROW |72089 |2050 |39430 |0 |5 |6C59DC|1 |2 |0 |
-ROW |72090 |2051 |39453 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72091 |2052 |39459 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72092 |2052 |39457 |0 |1 |2774A4|0 |2 |0 |
-ROW |72093 |2052 |39456 |0 |2 |F63100|0 |2 |0 |
-ROW |72094 |2052 |39458 |0 |3 |A54F10|0 |2 |0 |
-ROW |72095 |2053 |39470 |0 |0 |969696|0 |9 |2 |
-ROW |72096 |2053 |39471 |0 |1 |C80000|0 |9 |0 |
-ROW |72097 |2054 |39445 |5 |0 |1A7C11|0 |2 |0 |
ROW |72098 |2055 |39486 |5 |0 |1A7C11|0 |2 |0 |
ROW |72099 |2055 |39489 |2 |1 |2774A4|0 |2 |0 |
ROW |72100 |2055 |39488 |0 |2 |F63100|1 |2 |0 |
ROW |72101 |2055 |39485 |0 |3 |A54F10|1 |2 |0 |
ROW |72102 |2055 |39487 |0 |4 |FC6EA3|1 |2 |0 |
ROW |72103 |2055 |39484 |0 |5 |6C59DC|1 |2 |0 |
-ROW |72104 |2056 |39507 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72105 |2057 |39513 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72106 |2057 |39511 |0 |1 |2774A4|0 |2 |0 |
-ROW |72107 |2057 |39510 |0 |2 |F63100|0 |2 |0 |
-ROW |72108 |2057 |39512 |0 |3 |A54F10|0 |2 |0 |
-ROW |72109 |2058 |39524 |0 |0 |969696|0 |9 |2 |
-ROW |72110 |2058 |39525 |0 |1 |C80000|0 |9 |0 |
-ROW |72111 |2059 |39499 |5 |0 |1A7C11|0 |2 |0 |
ROW |72112 |2060 |39540 |5 |0 |1A7C11|0 |2 |0 |
ROW |72113 |2060 |39543 |2 |1 |2774A4|0 |2 |0 |
ROW |72114 |2060 |39542 |0 |2 |F63100|1 |2 |0 |
ROW |72115 |2060 |39539 |0 |3 |A54F10|1 |2 |0 |
ROW |72116 |2060 |39541 |0 |4 |FC6EA3|1 |2 |0 |
ROW |72117 |2060 |39538 |0 |5 |6C59DC|1 |2 |0 |
-ROW |72118 |2061 |39561 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72119 |2062 |39567 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72120 |2062 |39565 |0 |1 |2774A4|0 |2 |0 |
-ROW |72121 |2062 |39564 |0 |2 |F63100|0 |2 |0 |
-ROW |72122 |2062 |39566 |0 |3 |A54F10|0 |2 |0 |
-ROW |72123 |2063 |39578 |0 |0 |969696|0 |9 |2 |
-ROW |72124 |2063 |39579 |0 |1 |C80000|0 |9 |0 |
-ROW |72125 |2064 |39553 |5 |0 |1A7C11|0 |2 |0 |
ROW |72126 |2065 |39594 |5 |0 |1A7C11|0 |2 |0 |
ROW |72127 |2065 |39597 |2 |1 |2774A4|0 |2 |0 |
ROW |72128 |2065 |39596 |0 |2 |F63100|1 |2 |0 |
ROW |72129 |2065 |39593 |0 |3 |A54F10|1 |2 |0 |
ROW |72130 |2065 |39595 |0 |4 |FC6EA3|1 |2 |0 |
ROW |72131 |2065 |39592 |0 |5 |6C59DC|1 |2 |0 |
-ROW |72132 |2066 |39615 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72133 |2067 |39621 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72134 |2067 |39619 |0 |1 |2774A4|0 |2 |0 |
-ROW |72135 |2067 |39618 |0 |2 |F63100|0 |2 |0 |
-ROW |72136 |2067 |39620 |0 |3 |A54F10|0 |2 |0 |
-ROW |72137 |2068 |39632 |0 |0 |969696|0 |9 |2 |
-ROW |72138 |2068 |39633 |0 |1 |C80000|0 |9 |0 |
-ROW |72139 |2069 |39607 |5 |0 |1A7C11|0 |2 |0 |
ROW |72140 |2070 |39648 |5 |0 |1A7C11|0 |2 |0 |
ROW |72141 |2070 |39651 |2 |1 |2774A4|0 |2 |0 |
ROW |72142 |2070 |39650 |0 |2 |F63100|1 |2 |0 |
ROW |72143 |2070 |39647 |0 |3 |A54F10|1 |2 |0 |
ROW |72144 |2070 |39649 |0 |4 |FC6EA3|1 |2 |0 |
ROW |72145 |2070 |39646 |0 |5 |6C59DC|1 |2 |0 |
-ROW |72146 |2071 |39669 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72147 |2072 |39675 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72148 |2072 |39673 |0 |1 |2774A4|0 |2 |0 |
-ROW |72149 |2072 |39672 |0 |2 |F63100|0 |2 |0 |
-ROW |72150 |2072 |39674 |0 |3 |A54F10|0 |2 |0 |
-ROW |72151 |2073 |39686 |0 |0 |969696|0 |9 |2 |
-ROW |72152 |2073 |39687 |0 |1 |C80000|0 |9 |0 |
-ROW |72153 |2074 |39661 |5 |0 |1A7C11|0 |2 |0 |
ROW |72154 |2075 |39702 |5 |0 |1A7C11|0 |2 |0 |
ROW |72155 |2075 |39705 |2 |1 |2774A4|0 |2 |0 |
ROW |72156 |2075 |39704 |0 |2 |F63100|1 |2 |0 |
ROW |72157 |2075 |39701 |0 |3 |A54F10|1 |2 |0 |
ROW |72158 |2075 |39703 |0 |4 |FC6EA3|1 |2 |0 |
ROW |72159 |2075 |39700 |0 |5 |6C59DC|1 |2 |0 |
-ROW |72160 |2076 |39723 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72161 |2077 |39729 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72162 |2077 |39727 |0 |1 |2774A4|0 |2 |0 |
-ROW |72163 |2077 |39726 |0 |2 |F63100|0 |2 |0 |
-ROW |72164 |2077 |39728 |0 |3 |A54F10|0 |2 |0 |
-ROW |72165 |2078 |39740 |0 |0 |969696|0 |9 |2 |
-ROW |72166 |2078 |39741 |0 |1 |C80000|0 |9 |0 |
-ROW |72167 |2079 |39715 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72168 |724 |27904 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72169 |1396 |32439 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72170 |1396 |32437 |0 |1 |2774A4|0 |2 |0 |
-ROW |72171 |1396 |32436 |0 |2 |F63100|0 |2 |0 |
-ROW |72172 |1396 |32438 |0 |3 |A54F10|0 |2 |0 |
-ROW |72173 |1052 |27907 |0 |0 |969696|0 |9 |2 |
-ROW |72174 |1052 |27908 |0 |1 |C80000|0 |9 |0 |
-ROW |72175 |1053 |30120 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72176 |1457 |33206 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72177 |1457 |33193 |5 |1 |2774A4|0 |2 |0 |
-ROW |72178 |1458 |33195 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72179 |1458 |33203 |5 |1 |2774A4|0 |2 |0 |
-ROW |72180 |1458 |33202 |5 |2 |F63100|0 |2 |0 |
-ROW |72181 |1459 |33200 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72182 |1459 |33194 |5 |1 |2774A4|0 |2 |0 |
-ROW |72183 |1460 |33187 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72184 |1460 |33186 |5 |1 |2774A4|0 |2 |0 |
-ROW |72185 |1460 |33204 |5 |2 |F63100|0 |2 |0 |
-ROW |72186 |1461 |33226 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72187 |1461 |33215 |5 |1 |2774A4|0 |2 |0 |
-ROW |72188 |1462 |33207 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72189 |1463 |33223 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72190 |1463 |33218 |5 |1 |2774A4|0 |2 |0 |
-ROW |72191 |1464 |33210 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72192 |1464 |33209 |5 |1 |2774A4|0 |2 |0 |
-ROW |72193 |1464 |33224 |5 |2 |F63100|0 |2 |0 |
-ROW |72194 |1465 |33249 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72195 |1465 |33236 |5 |1 |2774A4|0 |2 |0 |
-ROW |72196 |1466 |33238 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72197 |1466 |33246 |5 |1 |2774A4|0 |2 |0 |
-ROW |72198 |1466 |33245 |5 |2 |F63100|0 |2 |0 |
-ROW |72199 |1467 |33243 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72200 |1467 |33237 |5 |1 |2774A4|0 |2 |0 |
-ROW |72201 |1468 |33230 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72202 |1468 |33229 |5 |1 |2774A4|0 |2 |0 |
-ROW |72203 |1468 |33247 |5 |2 |F63100|0 |2 |0 |
-ROW |72204 |1469 |33258 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72205 |1470 |33251 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72206 |1471 |33256 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72207 |1472 |33277 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72208 |1473 |33274 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72209 |1473 |33273 |5 |1 |2774A4|0 |2 |0 |
-ROW |72210 |1473 |33272 |5 |2 |F63100|0 |2 |0 |
-ROW |72211 |1474 |33270 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72212 |1475 |33269 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72213 |1476 |33261 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72214 |1476 |33275 |5 |1 |2774A4|0 |2 |0 |
-ROW |72215 |1477 |33296 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72216 |1478 |33293 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72217 |1478 |33292 |5 |1 |2774A4|0 |2 |0 |
-ROW |72218 |1478 |33291 |5 |2 |F63100|0 |2 |0 |
-ROW |72219 |1479 |33289 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72220 |1480 |33288 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72221 |1481 |33280 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72222 |1481 |33294 |5 |1 |2774A4|0 |2 |0 |
-ROW |72223 |1482 |33312 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72224 |1483 |33313 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72225 |1484 |33314 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72226 |1485 |33319 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72227 |1486 |33320 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72228 |1487 |33304 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72229 |1487 |33305 |5 |1 |2774A4|0 |2 |0 |
-ROW |72230 |727 |27936 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72231 |1054 |27935 |2 |0 |1A7C11|0 |2 |0 |
-ROW |72232 |1054 |30122 |5 |1 |2774A4|0 |2 |0 |
-ROW |72233 |1055 |30123 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72234 |730 |27975 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72235 |1056 |30126 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72236 |733 |28003 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72237 |1057 |30131 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72238 |736 |28031 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72239 |1058 |30136 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72240 |2080 |39768 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72241 |2080 |39769 |0 |1 |2774A4|0 |2 |0 |
-ROW |72242 |2080 |39770 |0 |2 |F63100|0 |2 |0 |
-ROW |72243 |2080 |39771 |0 |3 |A54F10|0 |2 |0 |
-ROW |72244 |2081 |39772 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72245 |2081 |39773 |0 |1 |2774A4|0 |2 |0 |
-ROW |72246 |2082 |39774 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72247 |2082 |39775 |0 |1 |2774A4|0 |2 |0 |
-ROW |72248 |2082 |39780 |0 |2 |F63100|0 |2 |0 |
-ROW |72249 |2083 |39777 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72250 |2083 |39778 |0 |1 |2774A4|0 |2 |0 |
-ROW |72251 |2083 |39781 |0 |2 |F63100|0 |2 |0 |
-ROW |72252 |2084 |39792 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72253 |2084 |39790 |0 |1 |2774A4|0 |2 |0 |
-ROW |72254 |2084 |39793 |0 |2 |F63100|0 |2 |0 |
-ROW |72255 |2084 |39795 |0 |3 |A54F10|0 |2 |0 |
-ROW |72256 |2084 |39796 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |72257 |1701 |35553 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72258 |1701 |35556 |0 |1 |2774A4|0 |2 |0 |
-ROW |72259 |1702 |35558 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72260 |1702 |35561 |0 |1 |2774A4|0 |2 |0 |
-ROW |72261 |1703 |35562 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72262 |1704 |35563 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72263 |1705 |35592 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72264 |1705 |35584 |0 |1 |2774A4|0 |2 |0 |
-ROW |72265 |1705 |35594 |0 |2 |F63100|0 |2 |0 |
-ROW |72266 |1705 |35586 |0 |3 |A54F10|0 |2 |0 |
-ROW |72267 |1705 |35595 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |72268 |1705 |35587 |0 |5 |6C59DC|0 |2 |0 |
-ROW |72269 |1706 |35593 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72270 |1706 |35585 |0 |1 |2774A4|0 |2 |0 |
-ROW |72271 |1707 |35583 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72272 |1707 |35591 |0 |1 |2774A4|0 |2 |0 |
-ROW |72273 |1708 |35598 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72274 |1709 |35606 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72275 |1710 |35607 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72276 |1711 |35566 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72277 |1712 |35622 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72278 |1713 |35634 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72279 |1713 |35626 |0 |1 |2774A4|0 |2 |0 |
-ROW |72280 |1713 |35636 |0 |2 |F63100|0 |2 |0 |
-ROW |72281 |1713 |35628 |0 |3 |A54F10|0 |2 |0 |
-ROW |72282 |1713 |35637 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |72283 |1713 |35629 |0 |5 |6C59DC|0 |2 |0 |
-ROW |72284 |1714 |35635 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72285 |1714 |35627 |0 |1 |2774A4|0 |2 |0 |
-ROW |72286 |1715 |35625 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72287 |1715 |35633 |0 |1 |2774A4|0 |2 |0 |
-ROW |72288 |1716 |35640 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72289 |1717 |35641 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72290 |1718 |35610 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72291 |1719 |35658 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72292 |1720 |35659 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72293 |1721 |35660 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72294 |1722 |35661 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72295 |1723 |35669 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72296 |1723 |35679 |0 |1 |2774A4|0 |2 |0 |
-ROW |72297 |1723 |35670 |0 |2 |F63100|0 |2 |0 |
-ROW |72298 |1723 |35665 |0 |3 |A54F10|0 |2 |0 |
-ROW |72299 |1723 |35672 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |72300 |1723 |35666 |0 |5 |6C59DC|0 |2 |0 |
-ROW |72301 |1724 |35663 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72302 |1724 |35664 |0 |1 |2774A4|0 |2 |0 |
-ROW |72303 |1725 |35686 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72304 |1725 |35693 |0 |1 |2774A4|0 |2 |0 |
-ROW |72305 |1725 |35684 |0 |2 |F63100|0 |2 |0 |
-ROW |72306 |1725 |35691 |0 |3 |A54F10|0 |2 |0 |
-ROW |72307 |1725 |35683 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |72308 |1725 |35690 |0 |5 |6C59DC|0 |2 |0 |
-ROW |72309 |1726 |35685 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72310 |1726 |35692 |0 |1 |2774A4|0 |2 |0 |
-ROW |72311 |1727 |35694 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72312 |1727 |35687 |0 |1 |2774A4|0 |2 |0 |
-ROW |72313 |1728 |35707 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72314 |1729 |35708 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72315 |1730 |35725 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72316 |1731 |35726 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72317 |1732 |35727 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72318 |1733 |35728 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72319 |1734 |35736 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72320 |1734 |35746 |0 |1 |2774A4|0 |2 |0 |
-ROW |72321 |1734 |35737 |0 |2 |F63100|0 |2 |0 |
-ROW |72322 |1734 |35732 |0 |3 |A54F10|0 |2 |0 |
-ROW |72323 |1734 |35739 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |72324 |1734 |35733 |0 |5 |6C59DC|0 |2 |0 |
-ROW |72325 |1735 |35730 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72326 |1735 |35731 |0 |1 |2774A4|0 |2 |0 |
-ROW |72327 |1736 |35753 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72328 |1736 |35760 |0 |1 |2774A4|0 |2 |0 |
-ROW |72329 |1736 |35751 |0 |2 |F63100|0 |2 |0 |
-ROW |72330 |1736 |35758 |0 |3 |A54F10|0 |2 |0 |
-ROW |72331 |1736 |35750 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |72332 |1736 |35757 |0 |5 |6C59DC|0 |2 |0 |
-ROW |72333 |1737 |35752 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72334 |1737 |35759 |0 |1 |2774A4|0 |2 |0 |
-ROW |72335 |1738 |35761 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72336 |1738 |35754 |0 |1 |2774A4|0 |2 |0 |
-ROW |72337 |1739 |35774 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72338 |1740 |35775 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72339 |1741 |35791 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72340 |1742 |35799 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72341 |1742 |35802 |0 |1 |2774A4|0 |2 |0 |
-ROW |72342 |1743 |35804 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72343 |1743 |35807 |0 |1 |2774A4|0 |2 |0 |
-ROW |72344 |1744 |35808 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72345 |1745 |35809 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72346 |1746 |35834 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72347 |1746 |35826 |0 |1 |2774A4|0 |2 |0 |
-ROW |72348 |1746 |35836 |0 |2 |F63100|0 |2 |0 |
-ROW |72349 |1746 |35828 |0 |3 |A54F10|0 |2 |0 |
-ROW |72350 |1746 |35837 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |72351 |1746 |35829 |0 |5 |6C59DC|0 |2 |0 |
-ROW |72352 |1747 |35835 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72353 |1747 |35827 |0 |1 |2774A4|0 |2 |0 |
-ROW |72354 |1748 |35825 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72355 |1748 |35833 |0 |1 |2774A4|0 |2 |0 |
-ROW |72356 |1749 |35840 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72357 |1750 |35812 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72358 |1751 |35876 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72359 |1751 |35868 |0 |1 |2774A4|0 |2 |0 |
-ROW |72360 |1751 |35878 |0 |2 |F63100|0 |2 |0 |
-ROW |72361 |1751 |35870 |0 |3 |A54F10|0 |2 |0 |
-ROW |72362 |1751 |35879 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |72363 |1751 |35871 |0 |5 |6C59DC|0 |2 |0 |
-ROW |72364 |1752 |35877 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72365 |1752 |35869 |0 |1 |2774A4|0 |2 |0 |
-ROW |72366 |1753 |35867 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72367 |1753 |35875 |0 |1 |2774A4|0 |2 |0 |
-ROW |72368 |1754 |35882 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72369 |1755 |35890 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72370 |1756 |35891 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72371 |1757 |35850 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72372 |1758 |35920 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72373 |1758 |35912 |0 |1 |2774A4|0 |2 |0 |
-ROW |72374 |1758 |35922 |0 |2 |F63100|0 |2 |0 |
-ROW |72375 |1758 |35914 |0 |3 |A54F10|0 |2 |0 |
-ROW |72376 |1758 |35923 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |72377 |1758 |35915 |0 |5 |6C59DC|0 |2 |0 |
-ROW |72378 |1759 |35921 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72379 |1759 |35913 |0 |1 |2774A4|0 |2 |0 |
-ROW |72380 |1760 |35911 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72381 |1760 |35919 |0 |1 |2774A4|0 |2 |0 |
-ROW |72382 |1761 |35926 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72383 |1762 |35934 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72384 |1763 |35935 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72385 |1764 |35894 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72386 |1765 |35952 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72387 |1766 |35964 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72388 |1766 |35956 |0 |1 |2774A4|0 |2 |0 |
-ROW |72389 |1766 |35966 |0 |2 |F63100|0 |2 |0 |
-ROW |72390 |1766 |35958 |0 |3 |A54F10|0 |2 |0 |
-ROW |72391 |1766 |35967 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |72392 |1766 |35959 |0 |5 |6C59DC|0 |2 |0 |
-ROW |72393 |1767 |35965 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72394 |1767 |35957 |0 |1 |2774A4|0 |2 |0 |
-ROW |72395 |1768 |35955 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72396 |1768 |35963 |0 |1 |2774A4|0 |2 |0 |
-ROW |72397 |1769 |35970 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72398 |1770 |35978 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72399 |1771 |35979 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72400 |1772 |35938 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72401 |1773 |35996 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72402 |1774 |36008 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72403 |1774 |36000 |0 |1 |2774A4|0 |2 |0 |
-ROW |72404 |1774 |36010 |0 |2 |F63100|0 |2 |0 |
-ROW |72405 |1774 |36002 |0 |3 |A54F10|0 |2 |0 |
-ROW |72406 |1774 |36011 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |72407 |1774 |36003 |0 |5 |6C59DC|0 |2 |0 |
-ROW |72408 |1775 |36009 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72409 |1775 |36001 |0 |1 |2774A4|0 |2 |0 |
-ROW |72410 |1776 |35999 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72411 |1776 |36007 |0 |1 |2774A4|0 |2 |0 |
-ROW |72412 |1777 |36014 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72413 |1778 |36022 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72414 |1779 |36023 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72415 |1780 |35982 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72416 |1781 |36041 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72417 |1782 |36053 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72418 |1782 |36045 |0 |1 |2774A4|0 |2 |0 |
-ROW |72419 |1782 |36055 |0 |2 |F63100|0 |2 |0 |
-ROW |72420 |1782 |36047 |0 |3 |A54F10|0 |2 |0 |
-ROW |72421 |1782 |36056 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |72422 |1782 |36048 |0 |5 |6C59DC|0 |2 |0 |
-ROW |72423 |1783 |36054 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72424 |1783 |36046 |0 |1 |2774A4|0 |2 |0 |
-ROW |72425 |1784 |36044 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72426 |1784 |36052 |0 |1 |2774A4|0 |2 |0 |
-ROW |72427 |1785 |36059 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72428 |1786 |36067 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72429 |1787 |36068 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72430 |1788 |36026 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72431 |1789 |36086 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72432 |1790 |36098 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72433 |1790 |36090 |0 |1 |2774A4|0 |2 |0 |
-ROW |72434 |1790 |36100 |0 |2 |F63100|0 |2 |0 |
-ROW |72435 |1790 |36092 |0 |3 |A54F10|0 |2 |0 |
-ROW |72436 |1790 |36101 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |72437 |1790 |36093 |0 |5 |6C59DC|0 |2 |0 |
-ROW |72438 |1791 |36099 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72439 |1791 |36091 |0 |1 |2774A4|0 |2 |0 |
-ROW |72440 |1792 |36089 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72441 |1792 |36097 |0 |1 |2774A4|0 |2 |0 |
-ROW |72442 |1793 |36104 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72443 |1794 |36112 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72444 |1795 |36113 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72445 |1796 |36071 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72446 |1797 |36131 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72447 |1798 |36144 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72448 |1798 |36136 |0 |1 |2774A4|0 |2 |0 |
-ROW |72449 |1798 |36146 |0 |2 |F63100|0 |2 |0 |
-ROW |72450 |1798 |36138 |0 |3 |A54F10|0 |2 |0 |
-ROW |72451 |1798 |36147 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |72452 |1798 |36139 |0 |5 |6C59DC|0 |2 |0 |
-ROW |72453 |1799 |36145 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72454 |1799 |36137 |0 |1 |2774A4|0 |2 |0 |
-ROW |72455 |1800 |36135 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72456 |1800 |36143 |0 |1 |2774A4|0 |2 |0 |
-ROW |72457 |1801 |36150 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72458 |1802 |36158 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72459 |1803 |36159 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72460 |1804 |36116 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72461 |1223 |31370 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72462 |1223 |31371 |5 |1 |2774A4|0 |2 |0 |
-ROW |72463 |1226 |31380 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72464 |1226 |31383 |5 |1 |2774A4|0 |2 |0 |
-ROW |72465 |1229 |31379 |0 |0 |1A7C11|1 |2 |0 |
-ROW |72466 |1229 |31382 |5 |1 |2774A4|0 |2 |0 |
-ROW |72467 |887 |29211 |0 |0 |969696|0 |9 |2 |
-ROW |72468 |887 |29210 |0 |1 |C80000|0 |9 |0 |
-ROW |72469 |899 |29216 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72470 |899 |29217 |2 |1 |2774A4|0 |2 |0 |
-ROW |72471 |899 |29218 |0 |2 |F63100|1 |2 |0 |
-ROW |72472 |899 |29219 |0 |3 |A54F10|1 |2 |0 |
-ROW |72473 |899 |29220 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |72474 |899 |29221 |0 |5 |6C59DC|1 |2 |0 |
-ROW |72475 |911 |29089 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72476 |911 |29102 |0 |1 |2774A4|0 |2 |0 |
-ROW |72477 |908 |29098 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72478 |908 |29097 |0 |1 |2774A4|0 |2 |0 |
-ROW |72479 |908 |29095 |0 |2 |F63100|0 |2 |0 |
-ROW |72480 |908 |29088 |0 |3 |A54F10|0 |2 |0 |
-ROW |72481 |908 |29094 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |72482 |908 |29093 |0 |5 |6C59DC|0 |2 |0 |
-ROW |72483 |908 |29092 |0 |6 |AC8C14|0 |2 |0 |
-ROW |72484 |908 |29091 |0 |7 |611F27|0 |2 |0 |
-ROW |72485 |908 |29090 |0 |8 |F230E0|0 |2 |0 |
-ROW |72486 |905 |29198 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72487 |917 |29104 |2 |0 |1A7C11|0 |2 |0 |
-ROW |72488 |917 |29105 |5 |1 |2774A4|0 |2 |0 |
-ROW |72489 |914 |31364 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72490 |923 |29118 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72491 |923 |29119 |0 |1 |2774A4|0 |2 |0 |
-ROW |72492 |923 |29117 |0 |2 |F63100|0 |2 |0 |
-ROW |72493 |920 |29107 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72494 |920 |29106 |0 |1 |2774A4|0 |2 |0 |
-ROW |72495 |902 |29096 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72496 |902 |29101 |0 |1 |2774A4|0 |2 |0 |
-ROW |72497 |902 |29100 |0 |2 |F63100|0 |2 |0 |
-ROW |72498 |902 |29087 |0 |3 |A54F10|1 |2 |0 |
-ROW |72499 |1279 |31902 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72500 |1279 |31903 |5 |1 |2774A4|0 |2 |0 |
-ROW |72501 |1281 |31933 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72502 |1281 |31936 |5 |1 |2774A4|0 |2 |0 |
-ROW |72503 |1283 |31932 |0 |0 |1A7C11|1 |2 |0 |
-ROW |72504 |1283 |31935 |5 |1 |2774A4|0 |2 |0 |
-ROW |72505 |1285 |31907 |0 |0 |969696|0 |9 |2 |
-ROW |72506 |1285 |31908 |0 |1 |C80000|0 |9 |0 |
-ROW |72507 |1287 |31911 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72508 |1287 |31914 |2 |1 |2774A4|0 |2 |0 |
-ROW |72509 |1287 |31913 |0 |2 |F63100|1 |2 |0 |
-ROW |72510 |1287 |31910 |0 |3 |A54F10|1 |2 |0 |
-ROW |72511 |1287 |31912 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |72512 |1287 |31909 |0 |5 |6C59DC|1 |2 |0 |
-ROW |72513 |1289 |31831 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72514 |1289 |31820 |0 |1 |2774A4|0 |2 |0 |
-ROW |72515 |1291 |31822 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72516 |1291 |31835 |0 |1 |2774A4|0 |2 |0 |
-ROW |72517 |1291 |31825 |0 |2 |F63100|0 |2 |0 |
-ROW |72518 |1291 |31826 |0 |3 |A54F10|0 |2 |0 |
-ROW |72519 |1291 |31823 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |72520 |1291 |31827 |0 |5 |6C59DC|0 |2 |0 |
-ROW |72521 |1291 |31824 |0 |6 |AC8C14|0 |2 |0 |
-ROW |72522 |1291 |31828 |0 |7 |611F27|0 |2 |0 |
-ROW |72523 |1291 |31830 |0 |8 |F230E0|0 |2 |0 |
-ROW |72524 |1293 |31892 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72525 |1295 |31855 |2 |0 |1A7C11|0 |2 |0 |
-ROW |72526 |1295 |31853 |5 |1 |2774A4|0 |2 |0 |
-ROW |72527 |1297 |31893 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72528 |1299 |31838 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72529 |1299 |31839 |0 |1 |2774A4|0 |2 |0 |
-ROW |72530 |1299 |31837 |0 |2 |F63100|0 |2 |0 |
-ROW |72531 |1301 |31850 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72532 |1301 |31852 |0 |1 |2774A4|0 |2 |0 |
-ROW |72533 |1303 |31829 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72534 |1303 |31833 |0 |1 |2774A4|0 |2 |0 |
-ROW |72535 |1303 |31834 |0 |2 |F63100|0 |2 |0 |
-ROW |72536 |1303 |31832 |0 |3 |A54F10|1 |2 |0 |
-ROW |72537 |952 |29436 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72538 |952 |29437 |2 |1 |2774A4|0 |2 |0 |
-ROW |72539 |952 |29438 |0 |2 |F63100|1 |2 |0 |
-ROW |72540 |952 |29439 |0 |3 |A54F10|1 |2 |0 |
-ROW |72541 |952 |29441 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |72542 |952 |29440 |0 |5 |6C59DC|1 |2 |0 |
-ROW |72543 |955 |29434 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72544 |955 |29435 |5 |1 |2774A4|0 |2 |0 |
-ROW |72545 |954 |29448 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72546 |954 |29449 |5 |1 |2774A4|0 |2 |0 |
-ROW |72547 |956 |29452 |0 |0 |1A7C11|1 |2 |0 |
-ROW |72548 |956 |29453 |5 |1 |2774A4|0 |2 |0 |
-ROW |72549 |953 |29446 |0 |0 |969696|0 |9 |2 |
-ROW |72550 |953 |29432 |0 |1 |C80000|0 |9 |0 |
-ROW |72551 |960 |29405 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72552 |960 |29406 |0 |1 |2774A4|0 |2 |0 |
-ROW |72553 |959 |29426 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72554 |959 |29413 |0 |1 |2774A4|0 |2 |0 |
-ROW |72555 |959 |29411 |0 |2 |F63100|0 |2 |0 |
-ROW |72556 |959 |29410 |0 |3 |A54F10|0 |2 |0 |
-ROW |72557 |959 |29399 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |72558 |959 |29409 |0 |5 |6C59DC|0 |2 |0 |
-ROW |72559 |959 |29412 |0 |6 |AC8C14|0 |2 |0 |
-ROW |72560 |959 |29408 |0 |7 |611F27|0 |2 |0 |
-ROW |72561 |959 |29407 |0 |8 |F230E0|0 |2 |0 |
-ROW |72562 |958 |29427 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72563 |962 |29403 |2 |0 |1A7C11|0 |2 |0 |
-ROW |72564 |962 |29402 |5 |1 |2774A4|0 |2 |0 |
-ROW |72565 |961 |29396 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72566 |963 |29400 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72567 |963 |29401 |0 |1 |2774A4|0 |2 |0 |
-ROW |72568 |957 |29420 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72569 |957 |29419 |0 |1 |2774A4|0 |2 |0 |
-ROW |72570 |957 |29418 |0 |2 |F63100|0 |2 |0 |
-ROW |72571 |957 |29417 |0 |3 |A54F10|1 |2 |0 |
-ROW |72572 |866 |29014 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72573 |866 |29015 |5 |1 |2774A4|0 |2 |0 |
-ROW |72574 |868 |29018 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72575 |868 |29019 |0 |1 |2774A4|0 |2 |0 |
-ROW |72576 |868 |29022 |0 |2 |F63100|0 |2 |0 |
-ROW |72577 |868 |29023 |0 |3 |A54F10|0 |2 |0 |
-ROW |72578 |868 |29020 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |72579 |868 |29024 |0 |5 |6C59DC|0 |2 |0 |
-ROW |72580 |868 |29021 |0 |6 |AC8C14|0 |2 |0 |
-ROW |72581 |868 |29025 |0 |7 |611F27|0 |2 |0 |
-ROW |72582 |868 |29026 |0 |8 |F230E0|0 |2 |0 |
-ROW |72583 |870 |29048 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72584 |872 |29028 |0 |0 |969696|0 |9 |2 |
-ROW |72585 |872 |29027 |0 |1 |C80000|0 |9 |0 |
-ROW |72586 |882 |28992 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72587 |882 |28991 |0 |1 |2774A4|0 |2 |0 |
-ROW |72588 |876 |28982 |2 |0 |1A7C11|0 |2 |0 |
-ROW |72589 |876 |28983 |5 |1 |2774A4|0 |2 |0 |
-ROW |72590 |874 |28978 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72591 |878 |28985 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72592 |878 |28984 |0 |1 |2774A4|0 |2 |0 |
-ROW |72593 |880 |28987 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72594 |880 |28988 |0 |1 |2774A4|0 |2 |0 |
-ROW |72595 |880 |28989 |0 |2 |F63100|0 |2 |0 |
-ROW |72596 |880 |28990 |0 |3 |A54F10|1 |2 |0 |
-ROW |72597 |964 |29513 |0 |0 |969696|0 |9 |2 |
-ROW |72598 |964 |29512 |0 |1 |C80000|0 |9 |0 |
-ROW |72599 |1238 |31435 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72600 |1238 |31438 |2 |1 |2774A4|0 |2 |0 |
-ROW |72601 |1238 |31437 |0 |2 |F63100|1 |2 |0 |
-ROW |72602 |1238 |31434 |0 |3 |A54F10|1 |2 |0 |
-ROW |72603 |1238 |31436 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |72604 |1238 |31433 |0 |5 |6C59DC|1 |2 |0 |
-ROW |72605 |1488 |33321 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72606 |1488 |33324 |0 |1 |2774A4|0 |2 |0 |
-ROW |72607 |1490 |33322 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72608 |1490 |33323 |5 |1 |2774A4|0 |2 |0 |
-ROW |72609 |1240 |31441 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72610 |1240 |31442 |5 |1 |2774A4|0 |2 |0 |
-ROW |72611 |1242 |31440 |0 |0 |1A7C11|1 |2 |0 |
-ROW |72612 |1242 |31439 |5 |1 |2774A4|0 |2 |0 |
-ROW |72613 |974 |29456 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72614 |974 |29455 |0 |1 |2774A4|0 |2 |0 |
-ROW |72615 |976 |29458 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72616 |976 |29457 |0 |1 |2774A4|0 |2 |0 |
-ROW |72617 |972 |29454 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72618 |978 |29462 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72619 |980 |31421 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72620 |980 |29466 |0 |1 |2774A4|0 |2 |0 |
-ROW |72621 |1305 |32013 |0 |0 |969696|0 |9 |2 |
-ROW |72622 |1305 |32014 |0 |1 |C80000|0 |9 |0 |
-ROW |72623 |1307 |32017 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72624 |1307 |32020 |2 |1 |2774A4|0 |2 |0 |
-ROW |72625 |1307 |32019 |0 |2 |F63100|1 |2 |0 |
-ROW |72626 |1307 |32016 |0 |3 |A54F10|1 |2 |0 |
-ROW |72627 |1307 |32018 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |72628 |1307 |32015 |0 |5 |6C59DC|1 |2 |0 |
-ROW |72629 |1492 |33329 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72630 |1492 |33332 |0 |1 |2774A4|0 |2 |0 |
-ROW |72631 |1494 |33330 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72632 |1494 |33331 |5 |1 |2774A4|0 |2 |0 |
-ROW |72633 |1309 |32023 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72634 |1309 |32024 |5 |1 |2774A4|0 |2 |0 |
-ROW |72635 |1311 |32022 |0 |0 |1A7C11|1 |2 |0 |
-ROW |72636 |1311 |32021 |5 |1 |2774A4|0 |2 |0 |
-ROW |72637 |1313 |31952 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72638 |1313 |31949 |0 |1 |2774A4|0 |2 |0 |
-ROW |72639 |1315 |31951 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72640 |1315 |31950 |0 |1 |2774A4|0 |2 |0 |
-ROW |72641 |1317 |31954 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72642 |1319 |31973 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72643 |1321 |31969 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72644 |1321 |31970 |0 |1 |2774A4|0 |2 |0 |
-ROW |72645 |1583 |34451 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72646 |1584 |34465 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72647 |1584 |34463 |0 |1 |2774A4|0 |2 |0 |
-ROW |72648 |1585 |34466 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72649 |1585 |34462 |0 |1 |2774A4|0 |2 |0 |
-ROW |72650 |1586 |34499 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72651 |1587 |34513 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72652 |1587 |34511 |0 |1 |2774A4|0 |2 |0 |
-ROW |72653 |1588 |34514 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72654 |1588 |34510 |0 |1 |2774A4|0 |2 |0 |
-ROW |72655 |1589 |34547 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72656 |1590 |34561 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72657 |1590 |34559 |0 |1 |2774A4|0 |2 |0 |
-ROW |72658 |1591 |34562 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72659 |1591 |34558 |0 |1 |2774A4|0 |2 |0 |
-ROW |72660 |1592 |34595 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72661 |1593 |34609 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72662 |1593 |34607 |0 |1 |2774A4|0 |2 |0 |
-ROW |72663 |1594 |34610 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72664 |1594 |34606 |0 |1 |2774A4|0 |2 |0 |
-ROW |72665 |1595 |34643 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72666 |1596 |34657 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72667 |1596 |34655 |0 |1 |2774A4|0 |2 |0 |
-ROW |72668 |1597 |34658 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72669 |1597 |34654 |0 |1 |2774A4|0 |2 |0 |
-ROW |72670 |1619 |35016 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72671 |1620 |35030 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72672 |1620 |35028 |0 |1 |2774A4|0 |2 |0 |
-ROW |72673 |1621 |35031 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72674 |1621 |35027 |0 |1 |2774A4|0 |2 |0 |
-ROW |72675 |1601 |34739 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72676 |1602 |34753 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72677 |1602 |34751 |0 |1 |2774A4|0 |2 |0 |
-ROW |72678 |1603 |34754 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72679 |1603 |34750 |0 |1 |2774A4|0 |2 |0 |
-ROW |72680 |1604 |34787 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72681 |1569 |34192 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72682 |1569 |34180 |0 |1 |2774A4|0 |2 |0 |
-ROW |72683 |1570 |34194 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72684 |1570 |34190 |0 |1 |2774A4|0 |2 |0 |
-ROW |72685 |1605 |34793 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72686 |1606 |34807 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72687 |1606 |34805 |0 |1 |2774A4|0 |2 |0 |
-ROW |72688 |1607 |34808 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72689 |1607 |34804 |0 |1 |2774A4|0 |2 |0 |
-ROW |72690 |1608 |34841 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72691 |1609 |34855 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72692 |1609 |34853 |0 |1 |2774A4|0 |2 |0 |
-ROW |72693 |1610 |34856 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72694 |1610 |34852 |0 |1 |2774A4|0 |2 |0 |
-ROW |72695 |1611 |34889 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72696 |1612 |34903 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72697 |1612 |34901 |0 |1 |2774A4|0 |2 |0 |
-ROW |72698 |1613 |34904 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72699 |1613 |34900 |0 |1 |2774A4|0 |2 |0 |
-ROW |72700 |1518 |33705 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72701 |1519 |33724 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72702 |1519 |33722 |0 |1 |2774A4|0 |2 |0 |
-ROW |72703 |1519 |33726 |0 |2 |F63100|0 |2 |0 |
-ROW |72704 |1520 |33719 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72705 |1520 |33720 |0 |1 |2774A4|0 |2 |0 |
-ROW |72706 |1520 |33721 |0 |2 |F63100|0 |2 |0 |
-ROW |72707 |1521 |33725 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72708 |1521 |33723 |0 |1 |2774A4|0 |2 |0 |
-ROW |72709 |1521 |33727 |0 |2 |F63100|0 |2 |0 |
-ROW |72710 |1522 |33730 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72711 |1523 |33734 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72712 |1523 |33732 |0 |1 |2774A4|0 |2 |0 |
-ROW |72713 |1523 |33736 |0 |2 |F63100|0 |2 |0 |
-ROW |72714 |1524 |33735 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72715 |1524 |33733 |0 |1 |2774A4|0 |2 |0 |
-ROW |72716 |1524 |33737 |0 |2 |F63100|0 |2 |0 |
-ROW |72717 |1525 |33743 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72718 |1525 |33742 |0 |1 |2774A4|0 |2 |0 |
-ROW |72719 |1525 |33738 |0 |2 |F63100|0 |2 |0 |
-ROW |72720 |1526 |33692 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72721 |1526 |33693 |0 |1 |2774A4|0 |2 |0 |
-ROW |72722 |1571 |34269 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72723 |1571 |34270 |0 |1 |2774A4|0 |2 |0 |
-ROW |72724 |1571 |34271 |0 |2 |F63100|0 |2 |0 |
-ROW |72725 |1571 |34272 |0 |3 |A54F10|0 |2 |0 |
-ROW |72726 |1572 |34311 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72727 |1572 |34301 |0 |1 |2774A4|0 |2 |0 |
-ROW |72728 |1573 |34243 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72729 |1573 |34244 |0 |1 |2774A4|0 |2 |0 |
-ROW |72730 |1573 |34246 |0 |2 |F63100|0 |2 |0 |
-ROW |72731 |1573 |34245 |0 |3 |A54F10|0 |2 |0 |
-ROW |72732 |1574 |34239 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72733 |1574 |34227 |0 |1 |2774A4|0 |2 |0 |
-ROW |72734 |1574 |34236 |0 |2 |F63100|0 |2 |0 |
-ROW |72735 |1574 |34237 |0 |3 |A54F10|0 |2 |0 |
-ROW |72736 |1575 |34253 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72737 |1575 |34252 |0 |1 |2774A4|0 |2 |0 |
-ROW |72738 |1575 |34249 |0 |2 |F63100|0 |2 |0 |
-ROW |72739 |1575 |34251 |0 |3 |A54F10|0 |2 |0 |
-ROW |72740 |1496 |33368 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72741 |1497 |33371 |1 |0 |1A7C11|0 |2 |0 |
-ROW |72742 |1497 |33371 |1 |1 |2774A4|0 |2 |0 |
-ROW |72743 |1498 |33379 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72744 |1498 |33382 |2 |1 |2774A4|0 |2 |0 |
-ROW |72745 |1498 |33381 |0 |2 |F63100|1 |2 |0 |
-ROW |72746 |1498 |33378 |0 |3 |A54F10|1 |2 |0 |
-ROW |72747 |1498 |33380 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |72748 |1498 |33377 |0 |5 |6C59DC|1 |2 |0 |
-ROW |72749 |1142 |30689 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72750 |1805 |36187 |5 |0 |1A7C11|0 |2 |0 |
-ROW |72751 |1805 |36192 |2 |1 |2774A4|0 |2 |0 |
-ROW |72752 |1805 |36190 |0 |2 |F63100|1 |2 |0 |
-ROW |72753 |1805 |36185 |0 |3 |A54F10|1 |2 |0 |
-ROW |72754 |1805 |36189 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |72755 |1805 |36184 |0 |5 |6C59DC|1 |2 |0 |
-ROW |72756 |1275 |31794 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72757 |1275 |31792 |0 |1 |2774A4|0 |2 |0 |
-ROW |72758 |1275 |31800 |0 |2 |F63100|1 |2 |0 |
-ROW |72759 |1276 |36771 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72760 |1276 |33390 |0 |1 |2774A4|0 |2 |0 |
-ROW |72761 |1276 |31799 |0 |2 |F63100|0 |2 |0 |
-ROW |72762 |1276 |31797 |0 |3 |A54F10|0 |2 |0 |
-ROW |72763 |1277 |36770 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72764 |1277 |33389 |0 |1 |2774A4|0 |2 |0 |
-ROW |72765 |1277 |31795 |0 |2 |F63100|0 |2 |0 |
-ROW |72766 |1278 |36769 |0 |0 |1A7C11|0 |2 |0 |
-ROW |72767 |1278 |31793 |0 |1 |2774A4|0 |2 |0 |
-ROW |72768 |1278 |31802 |0 |2 |F63100|0 |2 |0 |
-ROW |72769 |1278 |31790 |0 |3 |A54F10|0 |2 |0 |
-ROW |72770 |1278 |31791 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |72771 |1397 |32451 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72772 |1397 |32450 |5 |1 |2774A4|0 |2 |0 |
+ROW |72773 |1398 |32452 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72774 |1398 |32449 |5 |1 |2774A4|0 |2 |0 |
+ROW |72775 |1399 |32444 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72776 |1399 |32446 |5 |1 |2774A4|0 |2 |0 |
+ROW |72777 |1399 |32448 |5 |2 |F63100|0 |2 |0 |
+ROW |72778 |1400 |32460 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72779 |1401 |32458 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72780 |1401 |32457 |5 |1 |2774A4|0 |2 |0 |
+ROW |72781 |1402 |32461 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72782 |1402 |32456 |5 |1 |2774A4|0 |2 |0 |
+ROW |72783 |1172 |30918 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72784 |1172 |30919 |0 |1 |2774A4|0 |2 |0 |
+ROW |72785 |1172 |30920 |0 |2 |F63100|0 |2 |0 |
+ROW |72786 |1172 |30921 |2 |3 |A54F10|0 |2 |0 |
+ROW |72787 |1173 |30922 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72788 |835 |28744 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72789 |835 |28745 |0 |1 |2774A4|0 |2 |0 |
+ROW |72790 |1174 |30913 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72791 |1175 |30906 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72792 |1175 |30908 |0 |1 |2774A4|0 |2 |0 |
+ROW |72793 |1175 |30915 |0 |2 |F63100|0 |2 |0 |
+ROW |72794 |1175 |30897 |0 |3 |A54F10|0 |2 |0 |
+ROW |72795 |1175 |30901 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |72796 |1175 |30899 |0 |5 |6C59DC|0 |2 |0 |
+ROW |72797 |1175 |30907 |0 |6 |AC8C14|0 |2 |0 |
+ROW |72798 |1175 |30905 |0 |7 |611F27|0 |2 |0 |
+ROW |72799 |1175 |30904 |0 |8 |F230E0|0 |2 |0 |
+ROW |72800 |1175 |30900 |0 |9 |FFAD40|0 |2 |0 |
+ROW |72801 |1175 |30898 |0 |10 |40CDFF|0 |2 |0 |
+ROW |72802 |1176 |30910 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72803 |1176 |30909 |0 |1 |2774A4|0 |2 |0 |
+ROW |72804 |836 |28798 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72805 |836 |28799 |0 |1 |2774A4|0 |2 |0 |
+ROW |72806 |836 |28800 |0 |2 |F63100|0 |2 |0 |
+ROW |72807 |836 |28801 |2 |3 |A54F10|0 |2 |0 |
+ROW |72808 |837 |28803 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72809 |838 |28793 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72810 |840 |28787 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72811 |840 |28784 |0 |1 |2774A4|0 |2 |0 |
+ROW |72812 |840 |28782 |0 |2 |F63100|0 |2 |0 |
+ROW |72813 |840 |28781 |0 |3 |A54F10|0 |2 |0 |
+ROW |72814 |840 |28780 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |72815 |840 |28778 |0 |5 |6C59DC|0 |2 |0 |
+ROW |72816 |840 |28786 |0 |6 |AC8C14|0 |2 |0 |
+ROW |72817 |840 |28785 |0 |7 |611F27|0 |2 |0 |
+ROW |72818 |840 |28783 |0 |8 |F230E0|0 |2 |0 |
+ROW |72819 |840 |28779 |0 |9 |FFAD40|0 |2 |0 |
+ROW |72820 |840 |28796 |0 |10 |40CDFF|0 |2 |0 |
+ROW |72821 |839 |28789 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72822 |839 |28788 |0 |1 |2774A4|0 |2 |0 |
+ROW |72823 |1339 |32172 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72824 |1339 |32173 |0 |1 |2774A4|0 |2 |0 |
+ROW |72825 |1403 |32511 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72826 |1403 |32514 |0 |1 |2774A4|0 |2 |0 |
+ROW |72827 |1404 |32512 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72828 |1404 |32515 |0 |1 |2774A4|0 |2 |0 |
+ROW |72829 |1405 |32507 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72830 |1405 |32508 |0 |1 |2774A4|0 |2 |0 |
+ROW |72831 |1405 |32513 |0 |2 |F63100|0 |2 |0 |
+ROW |72832 |1343 |32135 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72833 |1343 |32142 |0 |1 |2774A4|0 |2 |0 |
+ROW |72834 |1344 |32167 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72835 |1344 |32136 |0 |1 |2774A4|0 |2 |0 |
+ROW |72836 |1345 |32141 |1 |0 |1A7C11|0 |2 |0 |
+ROW |72837 |1345 |32138 |1 |1 |2774A4|0 |2 |0 |
+ROW |72838 |1346 |32156 |2 |0 |1A7C11|0 |2 |0 |
+ROW |72839 |1346 |32158 |0 |1 |2774A4|0 |2 |0 |
+ROW |72840 |1346 |32159 |0 |2 |F63100|0 |2 |0 |
+ROW |72841 |1346 |32154 |2 |3 |A54F10|0 |2 |0 |
+ROW |72842 |1346 |32155 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |72843 |1346 |32146 |0 |5 |6C59DC|0 |2 |0 |
+ROW |72844 |1347 |32150 |2 |0 |1A7C11|0 |2 |0 |
+ROW |72845 |1347 |32151 |0 |1 |2774A4|0 |2 |0 |
+ROW |72846 |1347 |32152 |0 |2 |F63100|0 |2 |0 |
+ROW |72847 |1622 |35078 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72848 |1622 |35091 |0 |1 |2774A4|0 |2 |0 |
+ROW |72849 |1622 |35098 |0 |2 |F63100|0 |2 |0 |
+ROW |72850 |1622 |35100 |0 |3 |A54F10|0 |2 |0 |
+ROW |72851 |1622 |35099 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |72852 |1623 |35090 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72853 |1623 |35101 |0 |1 |2774A4|0 |2 |0 |
+ROW |72854 |1624 |35097 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72855 |1624 |35096 |0 |1 |2774A4|0 |2 |0 |
+ROW |72856 |1624 |35095 |0 |2 |F63100|0 |2 |0 |
+ROW |72857 |1625 |35089 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72858 |1625 |35088 |0 |1 |2774A4|0 |2 |0 |
+ROW |72859 |1625 |35087 |0 |2 |F63100|0 |2 |0 |
+ROW |72860 |1625 |35086 |0 |3 |A54F10|0 |2 |0 |
+ROW |72861 |1625 |35085 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |72862 |1626 |35079 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72863 |1626 |35082 |0 |1 |2774A4|0 |2 |0 |
+ROW |72864 |1627 |35080 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72865 |1627 |35102 |0 |1 |2774A4|0 |2 |0 |
+ROW |72866 |1628 |35093 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72867 |1628 |35092 |0 |1 |2774A4|0 |2 |0 |
+ROW |72868 |1628 |35081 |0 |2 |F63100|0 |2 |0 |
+ROW |72869 |1628 |35084 |0 |3 |A54F10|0 |2 |0 |
+ROW |72870 |1628 |35083 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |72871 |1121 |30606 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72872 |1121 |30590 |5 |1 |2774A4|0 |2 |0 |
+ROW |72873 |1121 |30582 |5 |2 |F63100|0 |2 |0 |
+ROW |72874 |1122 |30580 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72875 |1122 |30578 |5 |1 |2774A4|0 |2 |0 |
+ROW |72876 |1123 |30586 |2 |0 |1A7C11|0 |2 |0 |
+ROW |72877 |1123 |30608 |2 |1 |2774A4|0 |2 |0 |
+ROW |72878 |1123 |30585 |2 |2 |F63100|0 |2 |0 |
+ROW |72879 |1123 |30589 |2 |3 |A54F10|0 |2 |0 |
+ROW |72880 |1123 |30584 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |72881 |1123 |30588 |2 |5 |6C59DC|0 |2 |0 |
+ROW |72882 |1124 |30583 |2 |0 |1A7C11|0 |2 |0 |
+ROW |72883 |1124 |30587 |2 |1 |2774A4|0 |2 |0 |
+ROW |72884 |1125 |30555 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72885 |1125 |30554 |2 |1 |2774A4|0 |2 |0 |
+ROW |72886 |1125 |30556 |2 |2 |F63100|0 |2 |0 |
+ROW |72887 |1125 |30557 |2 |3 |A54F10|0 |2 |0 |
+ROW |72888 |1126 |30565 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72889 |1127 |30567 |2 |0 |1A7C11|0 |2 |0 |
+ROW |72890 |1127 |30568 |2 |1 |2774A4|0 |2 |0 |
+ROW |72891 |1128 |30536 |2 |0 |1A7C11|0 |2 |0 |
+ROW |72892 |1129 |30566 |2 |0 |1A7C11|0 |2 |0 |
+ROW |72893 |1129 |30549 |2 |1 |2774A4|0 |2 |0 |
+ROW |72894 |1129 |30553 |2 |2 |F63100|0 |2 |0 |
+ROW |72895 |1129 |30570 |2 |3 |A54F10|0 |2 |0 |
+ROW |72896 |1143 |30714 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72897 |1143 |30716 |0 |1 |2774A4|0 |2 |0 |
+ROW |72898 |1143 |30717 |0 |2 |F63100|0 |2 |0 |
+ROW |72899 |1143 |30715 |0 |3 |A54F10|0 |2 |0 |
+ROW |72900 |1144 |30753 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72901 |1144 |30738 |0 |1 |2774A4|0 |2 |0 |
+ROW |72902 |1145 |30718 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72903 |1145 |30737 |0 |1 |2774A4|0 |2 |0 |
+ROW |72904 |1145 |30727 |0 |2 |F63100|0 |2 |0 |
+ROW |72905 |1145 |30729 |0 |3 |A54F10|0 |2 |0 |
+ROW |72906 |1146 |30730 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72907 |1146 |30732 |0 |1 |2774A4|0 |2 |0 |
+ROW |72908 |1146 |30731 |0 |2 |F63100|0 |2 |0 |
+ROW |72909 |1146 |30733 |0 |3 |A54F10|0 |2 |0 |
+ROW |72910 |1147 |30734 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72911 |1147 |30736 |0 |1 |2774A4|0 |2 |0 |
+ROW |72912 |1147 |30735 |0 |2 |F63100|0 |2 |0 |
+ROW |72913 |1147 |30758 |0 |3 |A54F10|0 |2 |0 |
+ROW |72914 |1148 |30711 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72915 |1148 |30706 |0 |1 |2774A4|0 |2 |0 |
+ROW |72916 |1148 |30710 |0 |2 |F63100|0 |2 |0 |
+ROW |72917 |1148 |30712 |0 |3 |A54F10|0 |2 |0 |
+ROW |72918 |1148 |30702 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |72919 |1148 |30707 |0 |5 |6C59DC|0 |2 |0 |
+ROW |72920 |1148 |30704 |0 |6 |AC8C14|0 |2 |0 |
+ROW |72921 |1177 |30927 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72922 |1177 |30944 |2 |1 |2774A4|0 |2 |0 |
+ROW |72923 |1178 |30935 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72924 |1178 |30942 |0 |1 |2774A4|0 |2 |0 |
+ROW |72925 |1179 |30949 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72926 |1179 |30950 |0 |1 |2774A4|0 |2 |0 |
+ROW |72927 |1179 |30951 |0 |2 |F63100|0 |2 |0 |
+ROW |72928 |1180 |30952 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72929 |1180 |30954 |0 |1 |2774A4|0 |2 |0 |
+ROW |72930 |1180 |30955 |0 |2 |F63100|0 |2 |0 |
+ROW |72931 |1181 |30936 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72932 |1181 |30940 |5 |1 |2774A4|0 |2 |0 |
+ROW |72933 |1182 |30930 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72934 |1182 |30929 |0 |1 |2774A4|0 |2 |0 |
+ROW |72935 |1182 |30928 |0 |2 |F63100|0 |2 |0 |
+ROW |72936 |1182 |30931 |2 |3 |A54F10|1 |2 |0 |
+ROW |72937 |1183 |30934 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72938 |1183 |30941 |0 |1 |2774A4|0 |2 |0 |
+ROW |72939 |1406 |32532 |0 |0 |1A7C11|1 |2 |0 |
+ROW |72940 |1406 |32535 |0 |1 |2774A4|1 |2 |0 |
+ROW |72941 |1406 |32533 |0 |2 |F63100|0 |2 |0 |
+ROW |72942 |1406 |32534 |0 |3 |A54F10|0 |2 |0 |
+ROW |72943 |1406 |32536 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |72944 |1406 |32537 |0 |5 |6C59DC|0 |2 |0 |
+ROW |72945 |1407 |32543 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72946 |1407 |32544 |0 |1 |2774A4|0 |2 |0 |
+ROW |72947 |1408 |32518 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72948 |1408 |32521 |0 |1 |2774A4|0 |2 |0 |
+ROW |72949 |1408 |32523 |0 |2 |F63100|0 |2 |0 |
+ROW |72950 |1408 |32524 |0 |3 |A54F10|0 |2 |0 |
+ROW |72951 |1409 |32562 |0 |0 |1A7C11|1 |2 |0 |
+ROW |72952 |1409 |32565 |0 |1 |2774A4|1 |2 |0 |
+ROW |72953 |1409 |32563 |0 |2 |F63100|0 |2 |0 |
+ROW |72954 |1409 |32564 |0 |3 |A54F10|0 |2 |0 |
+ROW |72955 |1409 |32566 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |72956 |1409 |32567 |0 |5 |6C59DC|0 |2 |0 |
+ROW |72957 |1410 |32573 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72958 |1410 |32574 |0 |1 |2774A4|0 |2 |0 |
+ROW |72959 |1411 |32548 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72960 |1411 |32551 |0 |1 |2774A4|0 |2 |0 |
+ROW |72961 |1411 |32553 |0 |2 |F63100|0 |2 |0 |
+ROW |72962 |1411 |32554 |0 |3 |A54F10|0 |2 |0 |
+ROW |72963 |1250 |31527 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72964 |1250 |31529 |0 |1 |2774A4|0 |2 |0 |
+ROW |72965 |1250 |31499 |0 |2 |F63100|0 |2 |0 |
+ROW |72966 |1251 |31532 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72967 |1251 |31534 |0 |1 |2774A4|0 |2 |0 |
+ROW |72968 |1251 |31538 |0 |2 |F63100|0 |2 |0 |
+ROW |72969 |1251 |31536 |0 |3 |A54F10|0 |2 |0 |
+ROW |72970 |1251 |31528 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |72971 |1251 |31542 |0 |5 |6C59DC|0 |2 |0 |
+ROW |72972 |1252 |31552 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72973 |1252 |31551 |0 |1 |2774A4|0 |2 |0 |
+ROW |72974 |1252 |31541 |0 |2 |F63100|0 |2 |0 |
+ROW |72975 |1253 |31513 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72976 |1253 |31526 |0 |1 |2774A4|0 |2 |0 |
+ROW |72977 |1253 |31525 |0 |2 |F63100|0 |2 |0 |
+ROW |72978 |1254 |31502 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72979 |1254 |31501 |0 |1 |2774A4|0 |2 |0 |
+ROW |72980 |1254 |31503 |0 |2 |F63100|0 |2 |0 |
+ROW |72981 |1255 |31505 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72982 |1255 |31504 |0 |1 |2774A4|0 |2 |0 |
+ROW |72983 |1255 |31506 |0 |2 |F63100|0 |2 |0 |
+ROW |72984 |1256 |31508 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72985 |1256 |31507 |0 |1 |2774A4|0 |2 |0 |
+ROW |72986 |1256 |31509 |0 |2 |F63100|0 |2 |0 |
+ROW |72987 |1257 |31511 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72988 |1257 |31510 |0 |1 |2774A4|0 |2 |0 |
+ROW |72989 |1257 |31500 |0 |2 |F63100|0 |2 |0 |
+ROW |72990 |1258 |31514 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72991 |1258 |31512 |0 |1 |2774A4|0 |2 |0 |
+ROW |72992 |1258 |31515 |0 |2 |F63100|0 |2 |0 |
+ROW |72993 |1259 |31516 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72994 |1259 |31517 |0 |1 |2774A4|0 |2 |0 |
+ROW |72995 |1260 |31523 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72996 |1260 |31522 |0 |1 |2774A4|0 |2 |0 |
+ROW |72997 |1260 |31524 |0 |2 |F63100|0 |2 |0 |
+ROW |72998 |1412 |32601 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72999 |1412 |32602 |0 |1 |2774A4|0 |2 |0 |
+ROW |73000 |1412 |32603 |0 |2 |F63100|0 |2 |0 |
+ROW |73001 |1412 |32604 |0 |3 |A54F10|0 |2 |0 |
+ROW |73002 |1412 |32606 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73003 |1412 |32606 |2 |5 |6C59DC|0 |2 |0 |
+ROW |73004 |1413 |32608 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73005 |1413 |32610 |0 |1 |2774A4|0 |2 |0 |
+ROW |73006 |1413 |32611 |0 |2 |F63100|0 |2 |0 |
+ROW |73007 |1414 |32582 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73008 |1414 |32580 |2 |1 |2774A4|0 |2 |0 |
+ROW |73009 |1414 |32581 |2 |2 |F63100|0 |2 |0 |
+ROW |73010 |1414 |32597 |0 |3 |A54F10|1 |2 |0 |
+ROW |73011 |1414 |32599 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |73012 |1414 |32588 |0 |5 |6C59DC|1 |2 |0 |
+ROW |73013 |1415 |32583 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73014 |1415 |32584 |0 |1 |2774A4|0 |2 |0 |
+ROW |73015 |1415 |32585 |0 |2 |F63100|0 |2 |0 |
+ROW |73016 |1415 |32579 |2 |3 |A54F10|0 |2 |0 |
+ROW |73017 |1416 |32587 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73018 |1416 |32590 |0 |1 |2774A4|0 |2 |0 |
+ROW |73019 |1416 |32589 |0 |2 |F63100|0 |2 |0 |
+ROW |73020 |1417 |32673 |1 |0 |1A7C11|0 |2 |0 |
+ROW |73021 |1417 |32679 |1 |1 |2774A4|0 |2 |0 |
+ROW |73022 |1629 |35114 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73023 |1629 |35113 |5 |1 |2774A4|0 |2 |0 |
+ROW |73024 |1075 |30204 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73025 |1075 |30205 |0 |1 |2774A4|0 |2 |0 |
+ROW |73026 |1630 |35112 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73027 |1630 |35111 |0 |1 |2774A4|0 |2 |0 |
+ROW |73028 |1630 |35110 |0 |2 |F63100|0 |2 |0 |
+ROW |73029 |1630 |35108 |0 |3 |A54F10|0 |2 |0 |
+ROW |73030 |1630 |35105 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73031 |1076 |30209 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73032 |1076 |30208 |0 |1 |2774A4|0 |2 |0 |
+ROW |73033 |1077 |30206 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73034 |1077 |30207 |5 |1 |2774A4|0 |2 |0 |
+ROW |73035 |1078 |30216 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73036 |1078 |30215 |0 |1 |2774A4|0 |2 |0 |
+ROW |73037 |1079 |30210 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73038 |1079 |30211 |0 |1 |2774A4|0 |2 |0 |
+ROW |73039 |1079 |30212 |0 |2 |F63100|0 |2 |0 |
+ROW |73040 |1079 |30213 |0 |3 |A54F10|0 |2 |0 |
+ROW |73041 |1079 |30214 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73042 |1631 |35127 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73043 |1631 |35126 |5 |1 |2774A4|0 |2 |0 |
+ROW |73044 |1632 |35124 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73045 |1632 |35123 |0 |1 |2774A4|0 |2 |0 |
+ROW |73046 |1632 |35122 |0 |2 |F63100|0 |2 |0 |
+ROW |73047 |1632 |30222 |0 |3 |A54F10|0 |2 |0 |
+ROW |73048 |1632 |30223 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73049 |1080 |30226 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73050 |1080 |30225 |0 |1 |2774A4|0 |2 |0 |
+ROW |73051 |1633 |35139 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73052 |1633 |35138 |5 |1 |2774A4|0 |2 |0 |
+ROW |73053 |1081 |30247 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73054 |1081 |30248 |0 |1 |2774A4|0 |2 |0 |
+ROW |73055 |1634 |35137 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73056 |1634 |35136 |0 |1 |2774A4|0 |2 |0 |
+ROW |73057 |1634 |35135 |0 |2 |F63100|0 |2 |0 |
+ROW |73058 |1634 |35133 |0 |3 |A54F10|0 |2 |0 |
+ROW |73059 |1634 |35130 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73060 |1082 |30252 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73061 |1082 |30251 |0 |1 |2774A4|0 |2 |0 |
+ROW |73062 |1083 |30249 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73063 |1083 |30250 |5 |1 |2774A4|0 |2 |0 |
+ROW |73064 |1084 |30259 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73065 |1084 |30258 |0 |1 |2774A4|0 |2 |0 |
+ROW |73066 |1085 |30253 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73067 |1085 |30254 |0 |1 |2774A4|0 |2 |0 |
+ROW |73068 |1085 |30255 |0 |2 |F63100|0 |2 |0 |
+ROW |73069 |1085 |30256 |0 |3 |A54F10|0 |2 |0 |
+ROW |73070 |1085 |30257 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73071 |1635 |35152 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73072 |1635 |35151 |5 |1 |2774A4|0 |2 |0 |
+ROW |73073 |1636 |35149 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73074 |1636 |35148 |0 |1 |2774A4|0 |2 |0 |
+ROW |73075 |1636 |35147 |0 |2 |F63100|0 |2 |0 |
+ROW |73076 |1636 |30265 |0 |3 |A54F10|0 |2 |0 |
+ROW |73077 |1636 |30266 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73078 |1086 |30269 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73079 |1086 |30268 |0 |1 |2774A4|0 |2 |0 |
+ROW |73080 |1184 |30982 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73081 |1184 |30980 |5 |1 |2774A4|0 |2 |0 |
+ROW |73082 |1185 |30983 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73083 |1185 |30981 |0 |1 |2774A4|0 |2 |0 |
+ROW |73084 |1186 |30976 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73085 |1186 |30985 |0 |1 |2774A4|0 |2 |0 |
+ROW |73086 |1186 |30997 |0 |2 |F63100|0 |2 |0 |
+ROW |73087 |1186 |30970 |0 |3 |A54F10|0 |2 |0 |
+ROW |73088 |1186 |30973 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73089 |1186 |30995 |0 |5 |6C59DC|0 |2 |0 |
+ROW |73090 |1186 |30998 |0 |6 |AC8C14|0 |2 |0 |
+ROW |73091 |1186 |30978 |0 |7 |611F27|0 |2 |0 |
+ROW |73092 |1187 |31024 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73093 |1187 |31022 |5 |1 |2774A4|0 |2 |0 |
+ROW |73094 |1188 |31025 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73095 |1188 |31023 |0 |1 |2774A4|0 |2 |0 |
+ROW |73096 |1189 |31018 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73097 |1189 |31027 |0 |1 |2774A4|0 |2 |0 |
+ROW |73098 |1189 |31039 |0 |2 |F63100|0 |2 |0 |
+ROW |73099 |1189 |31012 |0 |3 |A54F10|0 |2 |0 |
+ROW |73100 |1189 |31015 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73101 |1189 |31037 |0 |5 |6C59DC|0 |2 |0 |
+ROW |73102 |1189 |31040 |0 |6 |AC8C14|0 |2 |0 |
+ROW |73103 |1189 |31020 |0 |7 |611F27|0 |2 |0 |
+ROW |73104 |1499 |33478 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73105 |1499 |33467 |0 |1 |2774A4|0 |2 |0 |
+ROW |73106 |1500 |33468 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73107 |1500 |33479 |0 |1 |2774A4|0 |2 |0 |
+ROW |73108 |1501 |33442 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73109 |1501 |33441 |0 |1 |2774A4|0 |2 |0 |
+ROW |73110 |1501 |33440 |0 |2 |F63100|0 |2 |0 |
+ROW |73111 |1502 |33423 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73112 |1502 |33419 |0 |1 |2774A4|0 |2 |0 |
+ROW |73113 |1502 |33422 |0 |2 |F63100|0 |2 |0 |
+ROW |73114 |1502 |33421 |0 |3 |A54F10|0 |2 |0 |
+ROW |73115 |1502 |33412 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73116 |1418 |32700 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73117 |1418 |32699 |0 |1 |2774A4|0 |2 |0 |
+ROW |73118 |1419 |32710 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73119 |1419 |32709 |0 |1 |2774A4|0 |2 |0 |
+ROW |73120 |1420 |32693 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73121 |1420 |32724 |0 |1 |2774A4|0 |2 |0 |
+ROW |73122 |1421 |32730 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73123 |1421 |32731 |0 |1 |2774A4|0 |2 |0 |
+ROW |73124 |1421 |32728 |0 |2 |F63100|0 |2 |0 |
+ROW |73125 |1421 |32729 |0 |3 |A54F10|0 |2 |0 |
+ROW |73126 |1422 |32705 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73127 |1422 |32706 |0 |1 |2774A4|0 |2 |0 |
+ROW |73128 |1423 |32702 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73129 |1423 |32703 |0 |1 |2774A4|0 |2 |0 |
+ROW |73130 |1424 |32708 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73131 |1424 |32722 |2 |1 |2774A4|0 |2 |0 |
+ROW |73132 |1424 |32695 |0 |2 |F63100|0 |2 |0 |
+ROW |73133 |1424 |32753 |0 |3 |A54F10|0 |2 |0 |
+ROW |73134 |1424 |32740 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |73135 |1424 |32723 |0 |5 |6C59DC|0 |2 |0 |
+ROW |73136 |1424 |32747 |0 |6 |AC8C14|0 |2 |0 |
+ROW |73137 |1424 |32748 |2 |7 |611F27|0 |2 |0 |
+ROW |73138 |1424 |32749 |0 |8 |F230E0|0 |2 |0 |
+ROW |73139 |1424 |32750 |0 |9 |FFAD40|0 |2 |0 |
+ROW |73140 |1424 |32751 |2 |10 |40CDFF|0 |2 |0 |
+ROW |73141 |1424 |32752 |0 |11 |40FFA0|0 |2 |0 |
+ROW |73142 |1425 |32746 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73143 |1425 |32745 |2 |1 |2774A4|0 |2 |0 |
+ROW |73144 |1425 |32744 |0 |2 |F63100|0 |2 |0 |
+ROW |73145 |1425 |32743 |0 |3 |A54F10|0 |2 |0 |
+ROW |73146 |1425 |32743 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |73147 |1425 |32742 |0 |5 |6C59DC|0 |2 |0 |
+ROW |73148 |1426 |32720 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73149 |1426 |32721 |0 |1 |2774A4|0 |2 |0 |
+ROW |73150 |1426 |32719 |0 |2 |F63100|0 |2 |0 |
+ROW |73151 |1426 |32718 |0 |3 |A54F10|0 |2 |0 |
+ROW |73152 |1130 |30613 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73153 |1130 |30635 |0 |1 |2774A4|0 |2 |0 |
+ROW |73154 |1130 |30625 |0 |2 |F63100|0 |2 |0 |
+ROW |73155 |1131 |30632 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73156 |1131 |30633 |5 |1 |2774A4|0 |2 |0 |
+ROW |73157 |1131 |30629 |5 |2 |F63100|0 |2 |0 |
+ROW |73158 |1132 |30630 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73159 |1132 |30628 |2 |1 |2774A4|0 |2 |0 |
+ROW |73160 |1132 |30631 |2 |2 |F63100|0 |2 |0 |
+ROW |73161 |1133 |30619 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73162 |1133 |30618 |0 |1 |2774A4|0 |2 |0 |
+ROW |73163 |1134 |30623 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73164 |1134 |30622 |5 |1 |2774A4|0 |2 |0 |
+ROW |73165 |1135 |30615 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73166 |841 |28813 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73167 |841 |28811 |0 |1 |2774A4|0 |2 |0 |
+ROW |73168 |841 |28812 |0 |2 |F63100|0 |2 |0 |
+ROW |73169 |841 |28814 |0 |3 |A54F10|0 |2 |0 |
+ROW |73170 |842 |28817 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73171 |842 |28815 |0 |1 |2774A4|0 |2 |0 |
+ROW |73172 |842 |28816 |0 |2 |F63100|0 |2 |0 |
+ROW |73173 |844 |28808 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73174 |844 |28807 |0 |1 |2774A4|0 |2 |0 |
+ROW |73175 |843 |28818 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73176 |845 |28829 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73177 |845 |28831 |0 |1 |2774A4|0 |2 |0 |
+ROW |73178 |845 |28832 |0 |2 |F63100|0 |2 |0 |
+ROW |73179 |845 |28830 |0 |3 |A54F10|0 |2 |0 |
+ROW |73180 |846 |28826 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73181 |846 |28828 |0 |1 |2774A4|0 |2 |0 |
+ROW |73182 |846 |28827 |0 |2 |F63100|0 |2 |0 |
+ROW |73183 |847 |28825 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73184 |1637 |35187 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73185 |1638 |35189 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73186 |1638 |35188 |5 |1 |2774A4|0 |2 |0 |
+ROW |73187 |1638 |35190 |5 |2 |F63100|0 |2 |0 |
+ROW |73188 |1638 |35191 |5 |3 |A54F10|0 |2 |0 |
+ROW |73189 |1638 |35192 |5 |4 |FC6EA3|0 |2 |0 |
+ROW |73190 |1639 |35198 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73191 |1640 |35200 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73192 |1640 |35199 |5 |1 |2774A4|0 |2 |0 |
+ROW |73193 |1640 |35201 |5 |2 |F63100|0 |2 |0 |
+ROW |73194 |1640 |35202 |5 |3 |A54F10|0 |2 |0 |
+ROW |73195 |1640 |35203 |5 |4 |FC6EA3|0 |2 |0 |
+ROW |73196 |1641 |35221 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73197 |1641 |35220 |5 |1 |2774A4|0 |2 |0 |
+ROW |73198 |1641 |35219 |5 |2 |F63100|0 |2 |0 |
+ROW |73199 |1642 |35214 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73200 |1642 |35216 |5 |1 |2774A4|0 |2 |0 |
+ROW |73201 |1642 |35207 |5 |2 |F63100|0 |2 |0 |
+ROW |73202 |1642 |35213 |5 |3 |A54F10|0 |2 |0 |
+ROW |73203 |1642 |35212 |5 |4 |FC6EA3|0 |2 |0 |
+ROW |73204 |1643 |35228 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73205 |1643 |35229 |5 |1 |2774A4|0 |2 |0 |
+ROW |73206 |1643 |35227 |5 |2 |F63100|0 |2 |0 |
+ROW |73207 |1644 |35231 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73208 |1644 |35230 |5 |1 |2774A4|0 |2 |0 |
+ROW |73209 |1644 |35235 |5 |2 |F63100|0 |2 |0 |
+ROW |73210 |1644 |35233 |5 |3 |A54F10|0 |2 |0 |
+ROW |73211 |1644 |35232 |5 |4 |FC6EA3|0 |2 |0 |
+ROW |73212 |1644 |35234 |5 |5 |6C59DC|0 |2 |0 |
+ROW |73213 |1644 |35236 |5 |6 |AC8C14|0 |2 |0 |
+ROW |73214 |1644 |35237 |5 |7 |611F27|0 |2 |0 |
+ROW |73215 |1645 |35243 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73216 |1645 |35244 |5 |1 |2774A4|0 |2 |0 |
+ROW |73217 |1645 |35245 |5 |2 |F63100|0 |2 |0 |
+ROW |73218 |1646 |35252 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73219 |1646 |35253 |5 |1 |2774A4|0 |2 |0 |
+ROW |73220 |1646 |35254 |5 |2 |F63100|0 |2 |0 |
+ROW |73221 |1647 |35172 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73222 |1647 |35168 |5 |1 |2774A4|0 |2 |0 |
+ROW |73223 |1647 |35164 |5 |2 |F63100|0 |2 |0 |
+ROW |73224 |1647 |35163 |5 |3 |A54F10|0 |2 |0 |
+ROW |73225 |1648 |35170 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73226 |1649 |35167 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73227 |1649 |35166 |5 |1 |2774A4|0 |2 |0 |
+ROW |73228 |1649 |35165 |5 |2 |F63100|0 |2 |0 |
+ROW |73229 |1650 |35176 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73230 |1262 |31592 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73231 |1262 |31584 |0 |1 |2774A4|0 |2 |0 |
+ROW |73232 |1262 |31582 |0 |2 |F63100|0 |2 |0 |
+ROW |73233 |1262 |31585 |0 |3 |A54F10|0 |2 |0 |
+ROW |73234 |1263 |31591 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73235 |1263 |31583 |0 |1 |2774A4|0 |2 |0 |
+ROW |73236 |1263 |31590 |0 |2 |F63100|0 |2 |0 |
+ROW |73237 |1264 |31602 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73238 |1264 |31597 |0 |1 |2774A4|0 |2 |0 |
+ROW |73239 |1264 |31601 |0 |2 |F63100|0 |2 |0 |
+ROW |73240 |1264 |31604 |0 |3 |A54F10|0 |2 |0 |
+ROW |73241 |1265 |31609 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73242 |1265 |31610 |0 |1 |2774A4|0 |2 |0 |
+ROW |73243 |1265 |31608 |0 |2 |F63100|0 |2 |0 |
+ROW |73244 |1001 |29729 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73245 |1001 |29728 |0 |1 |2774A4|0 |2 |0 |
+ROW |73246 |1001 |29727 |0 |2 |F63100|0 |2 |0 |
+ROW |73247 |1001 |29725 |0 |3 |A54F10|0 |2 |0 |
+ROW |73248 |1001 |29723 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73249 |1001 |29733 |0 |5 |6C59DC|0 |2 |0 |
+ROW |73250 |1001 |29737 |0 |6 |AC8C14|0 |2 |0 |
+ROW |73251 |1001 |29731 |0 |7 |611F27|0 |2 |0 |
+ROW |73252 |1000 |29720 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73253 |1000 |29730 |0 |1 |2774A4|0 |2 |0 |
+ROW |73254 |1000 |29721 |0 |2 |F63100|0 |2 |0 |
+ROW |73255 |1000 |29726 |0 |3 |A54F10|0 |2 |0 |
+ROW |73256 |1000 |29724 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73257 |1000 |29734 |0 |5 |6C59DC|0 |2 |0 |
+ROW |73258 |1000 |29722 |0 |6 |AC8C14|0 |2 |0 |
+ROW |73259 |1000 |29732 |0 |7 |611F27|0 |2 |0 |
+ROW |73260 |1027 |30022 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73261 |1027 |30021 |0 |1 |2774A4|0 |2 |0 |
+ROW |73262 |1027 |30019 |0 |2 |F63100|0 |2 |0 |
+ROW |73263 |1008 |29698 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73264 |1008 |29700 |2 |1 |FF0000|0 |2 |0 |
+ROW |73265 |1007 |29691 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73266 |1013 |29657 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73267 |1013 |29658 |0 |1 |2774A4|0 |2 |0 |
+ROW |73268 |1009 |29687 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73269 |1009 |29694 |2 |1 |FF0000|0 |2 |0 |
+ROW |73270 |1029 |30017 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73271 |1029 |30016 |0 |1 |2774A4|0 |2 |0 |
+ROW |73272 |1029 |30015 |0 |2 |F63100|0 |2 |0 |
+ROW |73273 |1031 |30007 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73274 |1031 |30013 |0 |1 |2774A4|0 |2 |0 |
+ROW |73275 |1031 |30011 |0 |2 |F63100|0 |2 |0 |
+ROW |73276 |1031 |30009 |0 |3 |A54F10|0 |2 |0 |
+ROW |73277 |1031 |30005 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73278 |1031 |30003 |0 |5 |6C59DC|0 |2 |0 |
+ROW |73279 |1031 |30023 |0 |6 |AC8C14|0 |2 |0 |
+ROW |73280 |1031 |30001 |0 |7 |611F27|0 |2 |0 |
+ROW |73281 |1030 |30008 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73282 |1030 |30014 |0 |1 |2774A4|0 |2 |0 |
+ROW |73283 |1030 |30012 |0 |2 |F63100|0 |2 |0 |
+ROW |73284 |1030 |30010 |0 |3 |A54F10|0 |2 |0 |
+ROW |73285 |1030 |30006 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73286 |1030 |30004 |0 |5 |6C59DC|0 |2 |0 |
+ROW |73287 |1030 |30000 |0 |6 |AC8C14|0 |2 |0 |
+ROW |73288 |1030 |30002 |0 |7 |611F27|0 |2 |0 |
+ROW |73289 |1011 |29695 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73290 |1028 |30020 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73291 |1010 |29701 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73292 |1010 |29697 |0 |1 |2774A4|0 |2 |0 |
+ROW |73293 |1012 |29692 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73294 |1015 |29812 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73295 |1015 |29811 |0 |1 |2774A4|0 |2 |0 |
+ROW |73296 |1015 |29810 |0 |2 |F63100|0 |2 |0 |
+ROW |73297 |1015 |29808 |0 |3 |A54F10|0 |2 |0 |
+ROW |73298 |1015 |29806 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73299 |1015 |29816 |0 |5 |6C59DC|0 |2 |0 |
+ROW |73300 |1015 |29820 |0 |6 |AC8C14|0 |2 |0 |
+ROW |73301 |1015 |29814 |0 |7 |611F27|0 |2 |0 |
+ROW |73302 |1014 |29803 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73303 |1014 |29813 |0 |1 |2774A4|0 |2 |0 |
+ROW |73304 |1014 |29804 |0 |2 |F63100|0 |2 |0 |
+ROW |73305 |1014 |29809 |0 |3 |A54F10|0 |2 |0 |
+ROW |73306 |1014 |29807 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73307 |1014 |29817 |0 |5 |6C59DC|0 |2 |0 |
+ROW |73308 |1014 |29805 |0 |6 |AC8C14|0 |2 |0 |
+ROW |73309 |1014 |29815 |0 |7 |611F27|0 |2 |0 |
+ROW |73310 |1016 |29768 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73311 |1016 |29767 |0 |1 |2774A4|0 |2 |0 |
+ROW |73312 |1016 |29765 |0 |2 |F63100|0 |2 |0 |
+ROW |73313 |1022 |29782 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73314 |1022 |29781 |2 |1 |FF0000|0 |2 |0 |
+ROW |73315 |1021 |29783 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73316 |1023 |29780 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73317 |1023 |29784 |2 |1 |FF0000|0 |2 |0 |
+ROW |73318 |1018 |29763 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73319 |1018 |29762 |0 |1 |2774A4|0 |2 |0 |
+ROW |73320 |1018 |29761 |0 |2 |F63100|0 |2 |0 |
+ROW |73321 |1020 |29753 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73322 |1020 |29759 |0 |1 |2774A4|0 |2 |0 |
+ROW |73323 |1020 |29757 |0 |2 |F63100|0 |2 |0 |
+ROW |73324 |1020 |29755 |0 |3 |A54F10|0 |2 |0 |
+ROW |73325 |1020 |29751 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73326 |1020 |29749 |0 |5 |6C59DC|0 |2 |0 |
+ROW |73327 |1020 |29769 |0 |6 |AC8C14|0 |2 |0 |
+ROW |73328 |1020 |29747 |0 |7 |611F27|0 |2 |0 |
+ROW |73329 |1019 |29754 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73330 |1019 |29760 |0 |1 |2774A4|0 |2 |0 |
+ROW |73331 |1019 |29758 |0 |2 |F63100|0 |2 |0 |
+ROW |73332 |1019 |29756 |0 |3 |A54F10|0 |2 |0 |
+ROW |73333 |1019 |29752 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73334 |1019 |29750 |0 |5 |6C59DC|0 |2 |0 |
+ROW |73335 |1019 |29746 |0 |6 |AC8C14|0 |2 |0 |
+ROW |73336 |1019 |29748 |0 |7 |611F27|0 |2 |0 |
+ROW |73337 |1025 |29775 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73338 |1017 |29766 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73339 |1024 |29776 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73340 |1024 |29777 |0 |1 |2774A4|0 |2 |0 |
+ROW |73341 |1026 |29772 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73342 |1356 |32276 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73343 |1356 |32275 |0 |1 |2774A4|0 |2 |0 |
+ROW |73344 |1357 |32281 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73345 |1357 |32267 |0 |1 |2774A4|0 |2 |0 |
+ROW |73346 |1357 |32279 |0 |2 |F63100|0 |2 |0 |
+ROW |73347 |1358 |32268 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73348 |1358 |32274 |0 |1 |2774A4|0 |2 |0 |
+ROW |73349 |1358 |32271 |0 |2 |F63100|0 |2 |0 |
+ROW |73350 |1359 |32288 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73351 |1359 |32291 |0 |1 |2774A4|0 |2 |0 |
+ROW |73352 |1360 |32247 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73353 |1360 |32245 |0 |1 |2774A4|0 |2 |0 |
+ROW |73354 |1360 |32246 |0 |2 |F63100|0 |2 |0 |
+ROW |73355 |1361 |32248 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73356 |1361 |32249 |0 |1 |2774A4|0 |2 |0 |
+ROW |73357 |1361 |32250 |0 |2 |F63100|0 |2 |0 |
+ROW |73358 |1362 |32240 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73359 |1362 |32273 |0 |1 |2774A4|0 |2 |0 |
+ROW |73360 |1363 |32282 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73361 |1363 |32283 |0 |1 |2774A4|0 |2 |0 |
+ROW |73362 |1363 |32289 |0 |2 |F63100|0 |2 |0 |
+ROW |73363 |1363 |32290 |0 |3 |A54F10|0 |2 |0 |
+ROW |73364 |1363 |32286 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73365 |1363 |32287 |0 |5 |6C59DC|0 |2 |0 |
+ROW |73366 |1363 |32241 |0 |6 |AC8C14|0 |2 |0 |
+ROW |73367 |1363 |32242 |0 |7 |611F27|0 |2 |0 |
+ROW |73368 |1363 |32243 |0 |8 |F230E0|0 |2 |0 |
+ROW |73369 |1363 |32244 |0 |9 |FFAD40|0 |2 |0 |
+ROW |73370 |1363 |32277 |0 |10 |40CDFF|0 |2 |0 |
+ROW |73371 |1363 |32278 |0 |11 |40FFA0|0 |2 |0 |
+ROW |73372 |1427 |32768 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73373 |1427 |32767 |5 |1 |2774A4|0 |2 |0 |
+ROW |73374 |1428 |32774 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73375 |1428 |32772 |5 |1 |2774A4|0 |2 |0 |
+ROW |73376 |1428 |32775 |5 |2 |F63100|0 |2 |0 |
+ROW |73377 |1428 |32773 |5 |3 |A54F10|0 |2 |0 |
+ROW |73378 |1429 |32779 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73379 |1429 |32777 |5 |1 |2774A4|0 |2 |0 |
+ROW |73380 |1429 |32778 |5 |2 |F63100|0 |2 |0 |
+ROW |73381 |1806 |36785 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73382 |1806 |36786 |0 |1 |2774A4|0 |2 |0 |
+ROW |73383 |1806 |36787 |0 |2 |F63100|0 |2 |0 |
+ROW |73384 |1430 |32837 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73385 |1430 |32836 |2 |1 |2774A4|0 |2 |0 |
+ROW |73386 |1430 |32835 |2 |2 |F63100|0 |2 |0 |
+ROW |73387 |1431 |32856 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73388 |1432 |32828 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73389 |1433 |32847 |5 |0 |34bdeb|0 |2 |0 |
+ROW |73390 |1434 |32797 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73391 |1434 |32796 |5 |1 |2774A4|0 |2 |0 |
+ROW |73392 |1434 |32801 |2 |2 |F63100|0 |2 |0 |
+ROW |73393 |1435 |32834 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73394 |1436 |32819 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73395 |1437 |32826 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73396 |1614 |34976 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73397 |1614 |34975 |0 |1 |2774A4|0 |2 |0 |
+ROW |73398 |1614 |34978 |0 |2 |F63100|0 |2 |0 |
+ROW |73399 |1614 |34979 |0 |3 |A54F10|0 |2 |0 |
+ROW |73400 |1614 |34980 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73401 |1615 |34982 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73402 |1615 |34997 |0 |1 |2774A4|0 |2 |0 |
+ROW |73403 |1615 |35001 |0 |2 |F63100|0 |2 |0 |
+ROW |73404 |1615 |35000 |0 |3 |A54F10|0 |2 |0 |
+ROW |73405 |1615 |34998 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73406 |1615 |34996 |0 |5 |6C59DC|0 |2 |0 |
+ROW |73407 |1616 |35015 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73408 |1616 |35014 |0 |1 |2774A4|0 |2 |0 |
+ROW |73409 |1617 |35012 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73410 |1617 |35013 |0 |1 |2774A4|0 |2 |0 |
+ROW |73411 |1618 |34951 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73412 |1618 |34952 |0 |1 |2774A4|0 |2 |0 |
+ROW |73413 |1618 |34953 |0 |2 |F63100|0 |2 |0 |
+ROW |73414 |1618 |34954 |0 |3 |A54F10|0 |2 |0 |
+ROW |73415 |1618 |34956 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73416 |1618 |34950 |0 |5 |6C59DC|0 |2 |0 |
+ROW |73417 |1618 |34957 |0 |6 |AC8C14|0 |2 |0 |
+ROW |73418 |1618 |34959 |0 |7 |611F27|0 |2 |0 |
+ROW |73419 |1618 |34965 |0 |8 |F230E0|0 |2 |0 |
+ROW |73420 |1445 |22404 |0 |0 |990099|0 |2 |0 |
+ROW |73421 |1445 |22399 |0 |1 |990000|0 |2 |0 |
+ROW |73422 |1445 |22416 |0 |2 |0000EE|0 |2 |0 |
+ROW |73423 |1445 |25366 |0 |3 |FF33FF|0 |2 |0 |
+ROW |73424 |1445 |22418 |0 |4 |009600|0 |2 |0 |
+ROW |73425 |1445 |22402 |0 |5 |003300|0 |2 |0 |
+ROW |73426 |1445 |22400 |0 |6 |33FFFF|0 |2 |0 |
+ROW |73427 |1445 |22689 |0 |7 |DD0000|0 |2 |0 |
+ROW |73428 |1445 |23171 |0 |8 |000099|0 |2 |0 |
+ROW |73429 |1445 |22401 |0 |9 |00FF00|0 |2 |0 |
+ROW |73430 |1445 |33023 |0 |10 |5A2B57|0 |2 |0 |
+ROW |73431 |1651 |22406 |0 |0 |00EE00|0 |2 |0 |
+ROW |73432 |1651 |25665 |0 |1 |0000EE|0 |2 |0 |
+ROW |73433 |1651 |25666 |0 |2 |FFAA00|0 |2 |0 |
+ROW |73434 |1651 |28537 |0 |3 |00EEEE|0 |2 |0 |
+ROW |73435 |1651 |28535 |0 |4 |990099|0 |2 |0 |
+ROW |73436 |1652 |22426 |0 |0 |00EE00|0 |2 |0 |
+ROW |73437 |1652 |22408 |0 |1 |FFAA00|0 |2 |0 |
+ROW |73438 |1652 |22412 |0 |2 |990099|0 |2 |0 |
+ROW |73439 |1652 |22414 |0 |3 |FF66FF|0 |2 |0 |
+ROW |73440 |1652 |23663 |0 |4 |009999|0 |2 |0 |
+ROW |73441 |1652 |33022 |0 |5 |2B5429|0 |2 |0 |
+ROW |73442 |1652 |22430 |0 |6 |8048B4|0 |2 |0 |
+ROW |73443 |1652 |22420 |0 |7 |FD5434|0 |2 |0 |
+ROW |73444 |1653 |22422 |0 |0 |00EE00|0 |2 |0 |
+ROW |73445 |1653 |22424 |0 |1 |0000EE|0 |2 |0 |
+ROW |73446 |1653 |25370 |0 |2 |FFAA00|0 |2 |0 |
+ROW |73447 |1653 |29822 |0 |3 |00EEEE|0 |2 |0 |
+ROW |73448 |1653 |34317 |0 |4 |990099|0 |2 |0 |
+ROW |73449 |1653 |34316 |0 |5 |EE0000|0 |2 |0 |
+ROW |73450 |1654 |33021 |0 |0 |C80000|0 |2 |0 |
+ROW |73451 |1654 |33020 |0 |1 |00C800|0 |2 |0 |
+ROW |73452 |527 |22199 |0 |0 |C80000|0 |2 |0 |
+ROW |73453 |527 |22196 |0 |1 |00C800|0 |2 |0 |
+ROW |73454 |410 |22185 |0 |0 |009900|0 |2 |0 |
+ROW |73455 |410 |22189 |0 |1 |DD0000|0 |2 |0 |
+ROW |73456 |410 |22396 |0 |2 |00DDDD|0 |2 |0 |
+ROW |73457 |410 |22183 |0 |3 |3333FF|0 |2 |0 |
+ROW |73458 |410 |22191 |0 |4 |999900|0 |2 |0 |
+ROW |73459 |410 |23634 |0 |5 |00FF00|0 |2 |0 |
+ROW |73460 |404 |22404 |0 |0 |990099|0 |2 |0 |
+ROW |73461 |404 |22399 |0 |1 |990000|0 |2 |0 |
+ROW |73462 |404 |22416 |0 |2 |0000EE|0 |2 |0 |
+ROW |73463 |404 |22430 |0 |3 |FF33FF|0 |2 |0 |
+ROW |73464 |404 |22418 |0 |4 |009600|0 |2 |0 |
+ROW |73465 |404 |22402 |0 |5 |003300|0 |2 |0 |
+ROW |73466 |404 |22420 |0 |6 |CCCC00|0 |2 |0 |
+ROW |73467 |404 |22400 |0 |7 |33FFFF|0 |2 |0 |
+ROW |73468 |404 |22689 |0 |8 |DD0000|0 |2 |0 |
+ROW |73469 |404 |23171 |0 |9 |000099|0 |2 |0 |
+ROW |73470 |404 |22401 |0 |10 |00FF00|0 |2 |0 |
+ROW |73471 |404 |33023 |0 |11 |5A2B57|0 |2 |0 |
+ROW |73472 |406 |22426 |0 |1 |00EE00|0 |2 |0 |
+ROW |73473 |406 |22422 |0 |2 |0000EE|0 |2 |0 |
+ROW |73474 |406 |22408 |0 |3 |FFAA00|0 |2 |0 |
+ROW |73475 |406 |22424 |0 |4 |00EEEE|0 |2 |0 |
+ROW |73476 |406 |22412 |0 |5 |990099|0 |2 |0 |
+ROW |73477 |406 |22406 |0 |6 |EE0000|0 |2 |0 |
+ROW |73478 |406 |22414 |0 |7 |FF66FF|0 |2 |0 |
+ROW |73479 |406 |23663 |0 |8 |009999|0 |2 |0 |
+ROW |73480 |406 |25366 |0 |9 |BBBB00|0 |2 |0 |
+ROW |73481 |406 |25370 |0 |10 |AA0000|0 |2 |0 |
+ROW |73482 |406 |25665 |0 |11 |990000|0 |2 |0 |
+ROW |73483 |406 |25666 |0 |12 |008800|0 |2 |0 |
+ROW |73484 |406 |28535 |0 |13 |80B0E0|0 |2 |0 |
+ROW |73485 |406 |28537 |0 |14 |4080B0|0 |2 |0 |
+ROW |73486 |406 |29822 |0 |15 |8000FF|0 |2 |0 |
+ROW |73487 |406 |33022 |0 |16 |2B5429|0 |2 |0 |
+ROW |73488 |406 |34317 |0 |17 |8048B4|0 |2 |0 |
+ROW |73489 |406 |34316 |0 |18 |FD5434|0 |2 |0 |
+ROW |73490 |406 |35274 |0 |19 |790E1F|0 |2 |0 |
+ROW |73491 |406 |35272 |0 |20 |87AC4D|0 |2 |0 |
+ROW |73492 |788 |28248 |0 |0 |008800|0 |2 |0 |
+ROW |73493 |788 |28533 |0 |1 |EE0000|0 |2 |0 |
+ROW |73494 |392 |22187 |5 |0 |00C800|0 |2 |0 |
+ROW |73495 |392 |23251 |0 |1 |F63100|0 |2 |0 |
+ROW |73496 |1444 |28581 |0 |0 |990099|0 |2 |0 |
+ROW |73497 |1444 |28574 |0 |1 |990000|0 |2 |0 |
+ROW |73498 |1444 |28571 |0 |2 |0000EE|0 |2 |0 |
+ROW |73499 |1444 |28562 |0 |3 |FF33FF|0 |2 |0 |
+ROW |73500 |1444 |28570 |0 |4 |009600|0 |2 |0 |
+ROW |73501 |1444 |28569 |0 |5 |003300|0 |2 |0 |
+ROW |73502 |1444 |28552 |0 |6 |33FFFF|0 |2 |0 |
+ROW |73503 |1444 |28573 |0 |7 |DD0000|0 |2 |0 |
+ROW |73504 |1444 |28579 |0 |8 |000099|0 |2 |0 |
+ROW |73505 |1444 |28559 |0 |9 |00FF00|0 |2 |0 |
+ROW |73506 |1444 |33017 |0 |10 |5A2B57|0 |2 |0 |
+ROW |73507 |1659 |28567 |0 |0 |00EE00|0 |2 |0 |
+ROW |73508 |1659 |28575 |0 |1 |0000EE|0 |2 |0 |
+ROW |73509 |1659 |28576 |0 |2 |FFAA00|0 |2 |0 |
+ROW |73510 |1659 |28583 |0 |3 |00EEEE|0 |2 |0 |
+ROW |73511 |1659 |28582 |0 |4 |990099|0 |2 |0 |
+ROW |73512 |1660 |28572 |0 |0 |00EE00|0 |2 |0 |
+ROW |73513 |1660 |28568 |0 |1 |FFAA00|0 |2 |0 |
+ROW |73514 |1660 |28564 |0 |2 |990099|0 |2 |0 |
+ROW |73515 |1660 |28578 |0 |3 |FF66FF|0 |2 |0 |
+ROW |73516 |1660 |28580 |0 |4 |009999|0 |2 |0 |
+ROW |73517 |1660 |33016 |0 |5 |2B5429|0 |2 |0 |
+ROW |73518 |1660 |28565 |0 |6 |8048B4|0 |2 |0 |
+ROW |73519 |1660 |28577 |0 |7 |FD5434|0 |2 |0 |
+ROW |73520 |1661 |28566 |0 |0 |00EE00|0 |2 |0 |
+ROW |73521 |1661 |28561 |0 |1 |0000EE|0 |2 |0 |
+ROW |73522 |1661 |28563 |0 |2 |FFAA00|0 |2 |0 |
+ROW |73523 |1661 |29821 |0 |3 |00EEEE|0 |2 |0 |
+ROW |73524 |1661 |34314 |0 |4 |990099|0 |2 |0 |
+ROW |73525 |1661 |34315 |0 |5 |EE0000|0 |2 |0 |
+ROW |73526 |1662 |33015 |0 |0 |C80000|0 |2 |0 |
+ROW |73527 |1662 |33014 |0 |1 |00C800|0 |2 |0 |
+ROW |73528 |797 |28546 |0 |0 |C80000|0 |2 |0 |
+ROW |73529 |797 |28545 |0 |1 |00C800|0 |2 |0 |
+ROW |73530 |798 |28551 |0 |0 |009900|0 |2 |0 |
+ROW |73531 |798 |28543 |0 |1 |DD0000|0 |2 |0 |
+ROW |73532 |798 |28542 |0 |2 |00DDDD|0 |2 |0 |
+ROW |73533 |798 |28549 |0 |3 |3333FF|0 |2 |0 |
+ROW |73534 |798 |28544 |0 |4 |999900|0 |2 |0 |
+ROW |73535 |798 |28548 |0 |5 |00FF00|0 |2 |0 |
+ROW |73536 |799 |28581 |0 |0 |990099|0 |2 |0 |
+ROW |73537 |799 |28574 |0 |1 |990000|0 |2 |0 |
+ROW |73538 |799 |28571 |0 |2 |0000EE|0 |2 |0 |
+ROW |73539 |799 |28565 |0 |3 |FF33FF|0 |2 |0 |
+ROW |73540 |799 |28570 |0 |4 |009600|0 |2 |0 |
+ROW |73541 |799 |28569 |0 |5 |003300|0 |2 |0 |
+ROW |73542 |799 |28577 |0 |6 |CCCC00|0 |2 |0 |
+ROW |73543 |799 |28552 |0 |7 |33FFFF|0 |2 |0 |
+ROW |73544 |799 |28573 |0 |8 |DD0000|0 |2 |0 |
+ROW |73545 |799 |28579 |0 |9 |000099|0 |2 |0 |
+ROW |73546 |799 |28559 |0 |10 |00FF00|0 |2 |0 |
+ROW |73547 |799 |33017 |0 |11 |5A2B57|0 |2 |0 |
+ROW |73548 |800 |28572 |0 |1 |00EE00|0 |2 |0 |
+ROW |73549 |800 |28566 |0 |2 |0000EE|0 |2 |0 |
+ROW |73550 |800 |28568 |0 |3 |FFAA00|0 |2 |0 |
+ROW |73551 |800 |28561 |0 |4 |00EEEE|0 |2 |0 |
+ROW |73552 |800 |28564 |0 |5 |990099|0 |2 |0 |
+ROW |73553 |800 |28567 |0 |6 |EE0000|0 |2 |0 |
+ROW |73554 |800 |28578 |0 |7 |FF66FF|0 |2 |0 |
+ROW |73555 |800 |28580 |0 |8 |009999|0 |2 |0 |
+ROW |73556 |800 |28562 |0 |9 |BBBB00|0 |2 |0 |
+ROW |73557 |800 |28563 |0 |10 |AA0000|0 |2 |0 |
+ROW |73558 |800 |28575 |0 |11 |990000|0 |2 |0 |
+ROW |73559 |800 |28576 |0 |12 |008800|0 |2 |0 |
+ROW |73560 |800 |28582 |0 |13 |80B0E0|0 |2 |0 |
+ROW |73561 |800 |28583 |0 |14 |4080B0|0 |2 |0 |
+ROW |73562 |800 |29821 |0 |15 |8000FF|0 |2 |0 |
+ROW |73563 |800 |33016 |0 |16 |2B5429|0 |2 |0 |
+ROW |73564 |800 |34314 |0 |17 |8048B4|0 |2 |0 |
+ROW |73565 |800 |34315 |0 |18 |FD5434|0 |2 |0 |
+ROW |73566 |800 |35279 |0 |19 |790E1F|0 |2 |0 |
+ROW |73567 |800 |35278 |0 |20 |87AC4D|0 |2 |0 |
+ROW |73568 |801 |28560 |0 |0 |008800|0 |2 |0 |
+ROW |73569 |801 |28584 |0 |1 |EE0000|0 |2 |0 |
+ROW |73570 |802 |28550 |5 |0 |00C800|0 |2 |0 |
+ROW |73571 |802 |28540 |0 |1 |F63100|0 |2 |0 |
+ROW |73572 |1438 |33001 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73573 |1438 |33002 |0 |1 |2774A4|0 |2 |0 |
+ROW |73574 |1438 |33000 |2 |2 |F63100|0 |2 |0 |
+ROW |73575 |1439 |33005 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73576 |1439 |33004 |0 |1 |2774A4|0 |2 |0 |
+ROW |73577 |1440 |32980 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73578 |1440 |32970 |0 |1 |2774A4|0 |2 |0 |
+ROW |73579 |1441 |32967 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73580 |1441 |32968 |0 |1 |2774A4|0 |2 |0 |
+ROW |73581 |1441 |32995 |2 |2 |F63100|0 |2 |0 |
+ROW |73582 |1442 |32997 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73583 |1442 |32984 |0 |1 |2774A4|0 |2 |0 |
+ROW |73584 |1443 |32973 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73585 |1443 |32971 |0 |1 |2774A4|0 |2 |0 |
+ROW |73586 |1503 |33518 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73587 |1504 |33501 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73588 |803 |28599 |0 |0 |DD0000|0 |2 |0 |
+ROW |73589 |803 |28596 |0 |1 |00DDDD|0 |2 |0 |
+ROW |73590 |803 |28597 |0 |2 |3333FF|0 |2 |0 |
+ROW |73591 |803 |28598 |0 |3 |00FF00|0 |2 |0 |
+ROW |73592 |804 |28602 |0 |1 |990099|0 |2 |0 |
+ROW |73593 |804 |28606 |0 |2 |990000|0 |2 |0 |
+ROW |73594 |804 |28608 |0 |3 |0000EE|0 |2 |0 |
+ROW |73595 |804 |28615 |0 |4 |FF33FF|0 |2 |0 |
+ROW |73596 |804 |28610 |0 |5 |00EE00|0 |2 |0 |
+ROW |73597 |804 |28611 |0 |6 |003300|0 |2 |0 |
+ROW |73598 |804 |28616 |0 |7 |33FFFF|0 |2 |0 |
+ROW |73599 |804 |28607 |0 |8 |DD0000|0 |2 |0 |
+ROW |73600 |804 |28604 |0 |9 |000099|0 |2 |0 |
+ROW |73601 |804 |28588 |0 |10 |00FF00|0 |2 |0 |
+ROW |73602 |804 |33013 |0 |11 |BB2A02|0 |2 |0 |
+ROW |73603 |805 |28612 |0 |1 |FFAA00|0 |2 |0 |
+ROW |73604 |805 |28600 |0 |2 |990099|0 |2 |0 |
+ROW |73605 |805 |28613 |0 |3 |EE0000|0 |2 |0 |
+ROW |73606 |805 |28605 |0 |4 |FF66FF|0 |2 |0 |
+ROW |73607 |805 |28614 |0 |5 |960000|0 |2 |0 |
+ROW |73608 |805 |28601 |0 |6 |009600|0 |2 |0 |
+ROW |73609 |805 |28603 |0 |7 |009999|0 |2 |0 |
+ROW |73610 |805 |28609 |0 |8 |BBBB00|0 |2 |0 |
+ROW |73611 |805 |33012 |0 |9 |F230E0|0 |2 |0 |
+ROW |73612 |806 |28595 |0 |0 |00C800|0 |2 |0 |
+ROW |73613 |806 |28586 |0 |1 |C80000|0 |2 |0 |
+ROW |73614 |529 |23357 |0 |0 |DD0000|0 |2 |0 |
+ROW |73615 |529 |23341 |0 |1 |00DDDD|0 |2 |0 |
+ROW |73616 |529 |23342 |0 |2 |3333FF|0 |2 |0 |
+ROW |73617 |529 |28251 |0 |3 |00FF00|0 |2 |0 |
+ROW |73618 |530 |23345 |0 |1 |990099|0 |2 |0 |
+ROW |73619 |530 |23348 |0 |2 |990000|0 |2 |0 |
+ROW |73620 |530 |23355 |0 |3 |0000EE|0 |2 |0 |
+ROW |73621 |530 |23352 |0 |4 |FF33FF|0 |2 |0 |
+ROW |73622 |530 |23356 |0 |5 |007700|0 |2 |0 |
+ROW |73623 |530 |23354 |0 |6 |003300|0 |2 |0 |
+ROW |73624 |530 |23346 |0 |7 |33FFFF|0 |2 |0 |
+ROW |73625 |530 |23349 |0 |8 |DD0000|0 |2 |0 |
+ROW |73626 |530 |23344 |0 |9 |000099|0 |7 |0 |
+ROW |73627 |530 |28250 |0 |10 |00FF00|0 |2 |0 |
+ROW |73628 |530 |33019 |0 |11 |BB2A02|0 |2 |0 |
+ROW |73629 |531 |23353 |0 |1 |FFAA00|0 |2 |0 |
+ROW |73630 |531 |23347 |0 |2 |990099|0 |2 |0 |
+ROW |73631 |531 |23350 |0 |3 |EE0000|0 |2 |0 |
+ROW |73632 |531 |23343 |0 |4 |FF66FF|0 |2 |0 |
+ROW |73633 |531 |23351 |0 |5 |0000EE|0 |2 |0 |
+ROW |73634 |531 |23360 |0 |6 |00EE00|0 |2 |0 |
+ROW |73635 |531 |25369 |0 |7 |009999|0 |2 |0 |
+ROW |73636 |531 |25368 |0 |8 |BBBB00|0 |2 |0 |
+ROW |73637 |531 |28618 |0 |9 |990000|0 |2 |0 |
+ROW |73638 |531 |28619 |0 |10 |008800|0 |2 |0 |
+ROW |73639 |531 |33018 |0 |11 |BB2A02|0 |2 |0 |
+ROW |73640 |807 |28617 |0 |0 |008800|0 |2 |0 |
+ROW |73641 |532 |23340 |5 |0 |00C800|0 |2 |0 |
+ROW |73642 |532 |23358 |5 |1 |C80000|1 |2 |0 |
+ROW |73643 |472 |22945 |5 |0 |00AA00|0 |2 |0 |
+ROW |73644 |472 |22946 |5 |1 |3333FF|0 |2 |0 |
+ROW |73645 |473 |22950 |0 |0 |C80000|0 |2 |2 |
+ROW |73646 |473 |22948 |0 |1 |00C800|0 |2 |0 |
+ROW |73647 |471 |22924 |0 |0 |009900|0 |2 |0 |
+ROW |73648 |471 |22920 |0 |1 |000099|0 |2 |0 |
+ROW |73649 |469 |22922 |0 |0 |009900|0 |2 |0 |
+ROW |73650 |469 |22923 |0 |1 |000099|0 |2 |0 |
+ROW |73651 |469 |22921 |0 |2 |990000|0 |2 |0 |
+ROW |73652 |498 |23109 |0 |0 |009999|0 |2 |0 |
+ROW |73653 |498 |23112 |0 |1 |990099|0 |2 |0 |
+ROW |73654 |498 |23115 |0 |2 |999900|0 |2 |0 |
+ROW |73655 |498 |23113 |0 |3 |990000|0 |2 |0 |
+ROW |73656 |498 |23114 |0 |4 |000099|0 |2 |0 |
+ROW |73657 |498 |23110 |0 |5 |009900|0 |2 |0 |
+ROW |73658 |540 |22942 |5 |0 |00C800|0 |2 |0 |
+ROW |73659 |492 |23073 |5 |0 |00AA00|0 |2 |0 |
+ROW |73660 |492 |23074 |5 |1 |3333FF|0 |2 |0 |
+ROW |73661 |467 |22910 |0 |0 |C80000|0 |2 |2 |
+ROW |73662 |467 |22908 |0 |1 |00C800|0 |2 |0 |
+ROW |73663 |465 |22884 |0 |0 |009900|0 |2 |0 |
+ROW |73664 |465 |22880 |0 |1 |000099|0 |2 |0 |
+ROW |73665 |463 |22882 |0 |0 |009900|0 |2 |0 |
+ROW |73666 |463 |22883 |0 |1 |000099|0 |2 |0 |
+ROW |73667 |463 |22881 |0 |2 |990000|0 |2 |0 |
+ROW |73668 |462 |22886 |1 |0 |009999|0 |2 |0 |
+ROW |73669 |462 |22888 |1 |1 |990099|0 |2 |0 |
+ROW |73670 |462 |22891 |1 |2 |990000|0 |2 |0 |
+ROW |73671 |462 |22892 |1 |3 |000099|0 |2 |0 |
+ROW |73672 |462 |22885 |1 |4 |009900|0 |2 |0 |
+ROW |73673 |541 |22902 |5 |0 |00C800|0 |2 |0 |
+ROW |73674 |464 |22897 |0 |0 |AA0000|0 |2 |2 |
+ROW |73675 |464 |22895 |0 |1 |00AA00|0 |2 |0 |
+ROW |73676 |478 |22985 |5 |0 |00AA00|0 |2 |0 |
+ROW |73677 |478 |22986 |5 |1 |3333FF|0 |2 |0 |
+ROW |73678 |479 |22990 |0 |0 |C80000|0 |2 |2 |
+ROW |73679 |479 |22988 |0 |1 |00C800|0 |2 |0 |
+ROW |73680 |475 |22962 |0 |0 |009900|0 |2 |0 |
+ROW |73681 |475 |22963 |0 |1 |000099|0 |2 |0 |
+ROW |73682 |475 |22961 |0 |2 |990000|0 |2 |0 |
+ROW |73683 |474 |22968 |1 |0 |990099|0 |2 |0 |
+ROW |73684 |474 |22971 |1 |1 |990000|0 |2 |0 |
+ROW |73685 |474 |22972 |1 |2 |000099|0 |2 |0 |
+ROW |73686 |474 |22965 |1 |3 |009900|0 |2 |0 |
+ROW |73687 |542 |22982 |5 |0 |00C800|0 |2 |0 |
+ROW |73688 |491 |23070 |0 |0 |C80000|0 |2 |2 |
+ROW |73689 |491 |23068 |0 |1 |00C800|0 |2 |0 |
+ROW |73690 |487 |23042 |0 |0 |009900|0 |2 |0 |
+ROW |73691 |487 |23043 |0 |1 |000099|0 |2 |0 |
+ROW |73692 |487 |23041 |0 |2 |990000|0 |2 |0 |
+ROW |73693 |543 |23062 |5 |0 |00C800|0 |2 |0 |
+ROW |73694 |494 |23077 |5 |0 |00AA00|0 |2 |0 |
+ROW |73695 |494 |23078 |5 |1 |3333FF|0 |2 |0 |
+ROW |73696 |493 |23075 |5 |0 |00AA00|0 |2 |0 |
+ROW |73697 |493 |23076 |5 |1 |3333FF|0 |2 |0 |
+ROW |73698 |461 |22870 |0 |0 |C80000|0 |2 |2 |
+ROW |73699 |461 |22868 |0 |1 |00C800|0 |2 |0 |
+ROW |73700 |459 |22844 |0 |0 |009900|0 |2 |0 |
+ROW |73701 |459 |22840 |0 |1 |000099|0 |2 |0 |
+ROW |73702 |457 |22842 |0 |0 |009900|0 |2 |0 |
+ROW |73703 |457 |22843 |0 |1 |000099|0 |2 |0 |
+ROW |73704 |457 |22841 |0 |2 |990000|0 |2 |0 |
+ROW |73705 |456 |22846 |1 |0 |009999|0 |2 |0 |
+ROW |73706 |456 |22848 |1 |1 |990099|0 |2 |0 |
+ROW |73707 |456 |22851 |1 |2 |990000|0 |2 |0 |
+ROW |73708 |456 |22852 |1 |3 |000099|0 |2 |0 |
+ROW |73709 |456 |22845 |1 |4 |009900|0 |2 |0 |
+ROW |73710 |544 |22862 |5 |0 |00C800|0 |2 |0 |
+ROW |73711 |458 |22857 |0 |0 |AA0000|0 |2 |2 |
+ROW |73712 |458 |22855 |0 |1 |00AA00|0 |2 |0 |
+ROW |73713 |484 |23025 |5 |0 |00AA00|0 |2 |0 |
+ROW |73714 |484 |23026 |5 |1 |3333FF|0 |2 |0 |
+ROW |73715 |485 |23030 |0 |0 |C80000|0 |2 |2 |
+ROW |73716 |485 |23028 |0 |1 |00C800|0 |2 |0 |
+ROW |73717 |483 |23004 |0 |0 |009900|0 |2 |0 |
+ROW |73718 |483 |23000 |0 |1 |000099|0 |2 |0 |
+ROW |73719 |481 |23002 |0 |0 |009900|0 |2 |0 |
+ROW |73720 |481 |23003 |0 |1 |000099|0 |2 |0 |
+ROW |73721 |481 |23001 |0 |2 |990000|0 |2 |0 |
+ROW |73722 |480 |23007 |1 |0 |999900|0 |2 |0 |
+ROW |73723 |480 |23011 |1 |1 |990000|0 |2 |0 |
+ROW |73724 |480 |23012 |1 |2 |000099|0 |2 |0 |
+ROW |73725 |480 |23005 |1 |3 |009900|0 |2 |0 |
+ROW |73726 |545 |23022 |5 |0 |00C800|0 |2 |0 |
+ROW |73727 |482 |23017 |0 |0 |AA0000|0 |2 |2 |
+ROW |73728 |482 |23015 |0 |1 |00AA00|0 |2 |0 |
+ROW |73729 |651 |26928 |5 |0 |EE0000|0 |2 |0 |
+ROW |73730 |651 |26927 |0 |1 |000000|1 |2 |0 |
+ROW |73731 |652 |26925 |2 |0 |880000|0 |2 |0 |
+ROW |73732 |652 |26932 |0 |1 |009900|0 |2 |0 |
+ROW |73733 |652 |26930 |0 |2 |00CCCC|0 |2 |0 |
+ROW |73734 |652 |26931 |0 |3 |000000|0 |2 |0 |
+ROW |73735 |652 |26929 |0 |4 |3333FF|0 |2 |0 |
+ROW |73736 |652 |26926 |0 |5 |777700|0 |2 |0 |
+ROW |73737 |653 |26933 |2 |0 |EE0000|0 |2 |0 |
+ROW |73738 |653 |26943 |2 |1 |EE00EE|0 |2 |0 |
+ROW |73739 |653 |26935 |0 |2 |000000|1 |2 |0 |
+ROW |73740 |653 |26936 |4 |3 |000000|1 |2 |0 |
+ROW |73741 |654 |26934 |2 |0 |880000|0 |2 |0 |
+ROW |73742 |654 |26939 |0 |1 |009900|0 |2 |0 |
+ROW |73743 |654 |26942 |0 |2 |00CCCC|0 |2 |0 |
+ROW |73744 |654 |26938 |0 |3 |000000|0 |2 |0 |
+ROW |73745 |654 |26937 |0 |4 |3333FF|0 |2 |0 |
+ROW |73746 |1447 |33113 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73747 |1447 |33112 |0 |1 |2774A4|0 |2 |0 |
+ROW |73748 |1447 |33099 |0 |2 |F63100|0 |2 |0 |
+ROW |73749 |1447 |33098 |0 |3 |A54F10|0 |2 |0 |
+ROW |73750 |1448 |33125 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73751 |1448 |33110 |0 |1 |2774A4|0 |2 |0 |
+ROW |73752 |1449 |33080 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73753 |1449 |33081 |2 |1 |2774A4|0 |2 |0 |
+ROW |73754 |1450 |33089 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73755 |1450 |33085 |2 |1 |2774A4|0 |2 |0 |
+ROW |73756 |1451 |33082 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73757 |1451 |33086 |2 |1 |2774A4|0 |2 |0 |
+ROW |73758 |1451 |33083 |0 |2 |F63100|0 |2 |0 |
+ROW |73759 |1451 |33084 |0 |3 |A54F10|0 |2 |0 |
+ROW |73760 |1451 |33087 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73761 |1451 |33088 |0 |5 |6C59DC|0 |2 |0 |
+ROW |73762 |1452 |33093 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73763 |1452 |33092 |2 |1 |2774A4|0 |2 |0 |
+ROW |73764 |1453 |33077 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73765 |1453 |33063 |2 |1 |2774A4|0 |2 |0 |
+ROW |73766 |1454 |33094 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73767 |1454 |33059 |0 |1 |2774A4|0 |2 |0 |
+ROW |73768 |1455 |33066 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73769 |1455 |33071 |2 |1 |2774A4|0 |2 |0 |
+ROW |73770 |1455 |33067 |0 |2 |F63100|0 |2 |0 |
+ROW |73771 |1455 |33068 |0 |3 |A54F10|0 |2 |0 |
+ROW |73772 |1455 |33072 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73773 |1455 |33073 |0 |5 |6C59DC|0 |2 |0 |
+ROW |73774 |1159 |30886 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73775 |1159 |30887 |0 |1 |2774A4|0 |2 |0 |
+ROW |73776 |1160 |30888 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73777 |1160 |30882 |0 |1 |2774A4|0 |2 |0 |
+ROW |73778 |1160 |30890 |0 |2 |F63100|0 |2 |0 |
+ROW |73779 |1160 |30881 |0 |3 |A54F10|0 |2 |0 |
+ROW |73780 |1160 |30889 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73781 |1161 |30847 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73782 |1161 |30872 |2 |1 |2774A4|0 |2 |0 |
+ROW |73783 |1162 |30853 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73784 |1162 |30849 |2 |1 |2774A4|0 |2 |0 |
+ROW |73785 |1162 |30852 |2 |2 |F63100|0 |2 |0 |
+ROW |73786 |1162 |30851 |2 |3 |A54F10|0 |2 |0 |
+ROW |73787 |1162 |30848 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |73788 |1163 |30856 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73789 |1163 |30855 |0 |1 |2774A4|0 |2 |0 |
+ROW |73790 |1163 |30854 |2 |2 |F63100|1 |2 |0 |
+ROW |73791 |1164 |30859 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73792 |1164 |30870 |2 |1 |2774A4|0 |2 |0 |
+ROW |73793 |1165 |30860 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73794 |1165 |30871 |2 |1 |2774A4|0 |2 |0 |
+ROW |73795 |1166 |30868 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73796 |1166 |30869 |0 |1 |2774A4|0 |2 |0 |
+ROW |73797 |1166 |30867 |0 |2 |F63100|0 |2 |0 |
+ROW |73798 |1166 |30866 |0 |3 |A54F10|0 |2 |0 |
+ROW |73799 |1166 |30865 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73800 |1167 |30850 |5 |0 |1A7C11|0 |2 |0 |
+ROW |73801 |1167 |30863 |5 |1 |2774A4|0 |2 |0 |
+ROW |73802 |1167 |30861 |5 |2 |F63100|0 |2 |0 |
+ROW |73803 |1168 |30833 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73804 |1168 |30841 |2 |1 |2774A4|0 |2 |0 |
+ROW |73805 |1168 |30857 |2 |2 |F63100|0 |2 |0 |
+ROW |73806 |1169 |30834 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73807 |1169 |30831 |2 |1 |2774A4|0 |2 |0 |
+ROW |73808 |1170 |30846 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73809 |1576 |34320 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73810 |1576 |30845 |0 |1 |2774A4|0 |2 |0 |
+ROW |73811 |1576 |30842 |0 |2 |F63100|0 |2 |0 |
+ROW |73812 |1576 |30873 |2 |3 |A54F10|1 |2 |0 |
+ROW |73813 |1663 |35291 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73814 |1663 |35300 |0 |1 |2774A4|0 |2 |0 |
+ROW |73815 |1664 |35295 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73816 |1664 |35296 |0 |1 |2774A4|0 |2 |0 |
+ROW |73817 |1665 |35301 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73818 |1665 |35306 |0 |1 |2774A4|0 |2 |0 |
+ROW |73819 |1665 |35304 |0 |2 |F63100|0 |2 |0 |
+ROW |73820 |1665 |35302 |0 |3 |A54F10|0 |2 |0 |
+ROW |73821 |1666 |35308 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73822 |1666 |35310 |0 |1 |2774A4|0 |2 |0 |
+ROW |73823 |1666 |35309 |0 |2 |F63100|0 |2 |0 |
+ROW |73824 |1667 |35322 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73825 |1667 |35320 |0 |1 |2774A4|0 |2 |0 |
+ROW |73826 |1668 |35329 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73827 |1668 |35330 |0 |1 |2774A4|0 |2 |0 |
+ROW |73828 |1669 |35332 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73829 |1669 |35334 |0 |1 |2774A4|0 |2 |0 |
+ROW |73830 |1670 |35335 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73831 |1670 |35333 |0 |1 |2774A4|0 |2 |0 |
+ROW |73832 |1671 |35338 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73833 |1671 |35341 |0 |1 |2774A4|0 |2 |0 |
+ROW |73834 |1671 |35339 |0 |2 |F63100|0 |2 |0 |
+ROW |73835 |1671 |35340 |0 |3 |A54F10|0 |2 |0 |
+ROW |73836 |1672 |35347 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73837 |1672 |35346 |0 |1 |2774A4|0 |2 |0 |
+ROW |73838 |1672 |35345 |0 |2 |F63100|0 |2 |0 |
+ROW |73839 |1673 |35350 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73840 |1673 |35351 |0 |1 |2774A4|0 |2 |0 |
+ROW |73841 |1674 |35349 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73842 |1674 |35352 |0 |1 |2774A4|0 |2 |0 |
+ROW |73843 |1674 |35353 |0 |2 |F63100|0 |2 |0 |
+ROW |73844 |1675 |35355 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73845 |1675 |35356 |0 |1 |2774A4|0 |2 |0 |
+ROW |73846 |1505 |33553 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73847 |1505 |33562 |0 |1 |2774A4|0 |2 |0 |
+ROW |73848 |1506 |33557 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73849 |1506 |33558 |0 |1 |2774A4|0 |2 |0 |
+ROW |73850 |1507 |33563 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73851 |1507 |33568 |0 |1 |2774A4|0 |2 |0 |
+ROW |73852 |1507 |33566 |0 |2 |F63100|0 |2 |0 |
+ROW |73853 |1507 |33564 |0 |3 |A54F10|0 |2 |0 |
+ROW |73854 |1508 |33570 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73855 |1508 |33572 |0 |1 |2774A4|0 |2 |0 |
+ROW |73856 |1508 |33571 |0 |2 |F63100|0 |2 |0 |
+ROW |73857 |1509 |33584 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73858 |1509 |33582 |0 |1 |2774A4|0 |2 |0 |
+ROW |73859 |1510 |33591 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73860 |1510 |33592 |0 |1 |2774A4|0 |2 |0 |
+ROW |73861 |1511 |33594 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73862 |1511 |33596 |0 |1 |2774A4|0 |2 |0 |
+ROW |73863 |1512 |33597 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73864 |1512 |33595 |0 |1 |2774A4|0 |2 |0 |
+ROW |73865 |1513 |33600 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73866 |1513 |33603 |0 |1 |2774A4|0 |2 |0 |
+ROW |73867 |1513 |33601 |0 |2 |F63100|0 |2 |0 |
+ROW |73868 |1513 |33602 |0 |3 |A54F10|0 |2 |0 |
+ROW |73869 |1514 |33609 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73870 |1514 |33608 |0 |1 |2774A4|0 |2 |0 |
+ROW |73871 |1514 |33607 |0 |2 |F63100|0 |2 |0 |
+ROW |73872 |1515 |33612 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73873 |1515 |33613 |0 |1 |2774A4|0 |2 |0 |
+ROW |73874 |1516 |33611 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73875 |1516 |33614 |0 |1 |2774A4|0 |2 |0 |
+ROW |73876 |1516 |33615 |0 |2 |F63100|0 |2 |0 |
+ROW |73877 |1517 |33617 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73878 |1517 |33618 |0 |1 |2774A4|0 |2 |0 |
+ROW |73879 |1807 |36817 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73880 |1807 |36816 |0 |1 |2774A4|0 |2 |0 |
+ROW |73881 |1808 |36815 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73882 |1808 |36814 |0 |1 |2774A4|0 |2 |0 |
+ROW |73883 |1808 |36818 |0 |2 |F63100|0 |2 |0 |
+ROW |73884 |1808 |36819 |0 |3 |A54F10|0 |2 |0 |
+ROW |73885 |1809 |36805 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73886 |1809 |36804 |0 |1 |2774A4|0 |2 |0 |
+ROW |73887 |1527 |33819 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73888 |1527 |33839 |0 |1 |2774A4|0 |2 |0 |
+ROW |73889 |1528 |33820 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73890 |1528 |33816 |0 |1 |2774A4|0 |2 |0 |
+ROW |73891 |1529 |33826 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73892 |1529 |33831 |0 |1 |2774A4|0 |2 |0 |
+ROW |73893 |1529 |33829 |0 |2 |F63100|0 |2 |0 |
+ROW |73894 |1529 |33821 |0 |3 |A54F10|0 |2 |0 |
+ROW |73895 |1529 |33825 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73896 |1529 |33833 |0 |5 |6C59DC|0 |2 |0 |
+ROW |73897 |1529 |33823 |2 |6 |AC8C14|0 |2 |0 |
+ROW |73898 |1530 |33828 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73899 |1530 |33832 |0 |1 |2774A4|0 |2 |0 |
+ROW |73900 |1530 |33830 |0 |2 |F63100|0 |2 |0 |
+ROW |73901 |1530 |33822 |0 |3 |A54F10|0 |2 |0 |
+ROW |73902 |1530 |33815 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73903 |1530 |33834 |0 |5 |6C59DC|0 |2 |0 |
+ROW |73904 |1530 |33824 |2 |6 |AC8C14|0 |2 |0 |
+ROW |73905 |1531 |33840 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73906 |1531 |33845 |0 |1 |2774A4|0 |2 |0 |
+ROW |73907 |1532 |33844 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73908 |1532 |33847 |0 |1 |2774A4|0 |2 |0 |
+ROW |73909 |1532 |33843 |0 |2 |F63100|0 |2 |0 |
+ROW |73910 |1532 |33841 |0 |3 |A54F10|0 |2 |0 |
+ROW |73911 |1533 |33863 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73912 |1534 |33792 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73913 |1534 |33791 |0 |1 |2774A4|0 |2 |0 |
+ROW |73914 |1534 |33793 |0 |2 |F63100|0 |2 |0 |
+ROW |73915 |1535 |33802 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73916 |1535 |33770 |0 |1 |2774A4|0 |2 |0 |
+ROW |73917 |1536 |33800 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73918 |1536 |33799 |0 |1 |2774A4|0 |2 |0 |
+ROW |73919 |1536 |33801 |0 |2 |F63100|0 |2 |0 |
+ROW |73920 |1537 |33798 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73921 |1537 |33806 |0 |1 |2774A4|0 |2 |0 |
+ROW |73922 |1537 |33774 |0 |2 |F63100|0 |2 |0 |
+ROW |73923 |1538 |33769 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73924 |1538 |33787 |0 |1 |2774A4|0 |2 |0 |
+ROW |73925 |1538 |33789 |0 |2 |F63100|0 |2 |0 |
+ROW |73926 |1538 |33790 |0 |3 |A54F10|0 |2 |0 |
+ROW |73927 |1539 |33785 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73928 |1539 |33772 |0 |1 |2774A4|0 |2 |0 |
+ROW |73929 |1539 |33773 |0 |2 |F63100|0 |2 |0 |
+ROW |73930 |1539 |33771 |0 |3 |A54F10|0 |2 |0 |
+ROW |73931 |1540 |33776 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73932 |1540 |33775 |0 |1 |2774A4|0 |2 |0 |
+ROW |73933 |1541 |33782 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73934 |1541 |33781 |0 |1 |2774A4|0 |2 |0 |
+ROW |73935 |1541 |33780 |0 |2 |F63100|0 |2 |0 |
+ROW |73936 |1541 |33783 |0 |3 |A54F10|0 |2 |0 |
+ROW |73937 |1541 |33777 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73938 |1541 |33778 |0 |5 |6C59DC|0 |2 |0 |
+ROW |73939 |1542 |33804 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73940 |1542 |33803 |2 |1 |2774A4|0 |2 |0 |
+ROW |73941 |1542 |33805 |2 |2 |F63100|0 |2 |0 |
+ROW |73942 |1543 |33937 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73943 |1543 |33940 |0 |1 |2774A4|0 |2 |0 |
+ROW |73944 |1543 |33936 |0 |2 |F63100|0 |2 |0 |
+ROW |73945 |1543 |33934 |0 |3 |A54F10|0 |2 |0 |
+ROW |73946 |1544 |33915 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73947 |1544 |33911 |0 |1 |2774A4|0 |2 |0 |
+ROW |73948 |1544 |33912 |0 |2 |F63100|0 |2 |0 |
+ROW |73949 |1544 |33910 |0 |3 |A54F10|0 |2 |0 |
+ROW |73950 |1544 |33914 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73951 |1545 |33918 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73952 |1545 |33905 |0 |1 |2774A4|0 |2 |0 |
+ROW |73953 |1545 |33917 |0 |2 |F63100|0 |2 |0 |
+ROW |73954 |1545 |33916 |2 |3 |A54F10|1 |2 |0 |
+ROW |73955 |1546 |33908 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73956 |1546 |33909 |0 |1 |2774A4|0 |2 |0 |
+ROW |73957 |1546 |33902 |0 |2 |F63100|0 |2 |0 |
+ROW |73958 |1547 |33893 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73959 |1547 |33892 |0 |1 |2774A4|0 |2 |0 |
+ROW |73960 |1548 |33899 |2 |0 |1A7C11|0 |2 |0 |
+ROW |73961 |1548 |33898 |2 |1 |2774A4|0 |2 |0 |
+ROW |73962 |1548 |33895 |2 |2 |F63100|0 |2 |0 |
+ROW |73963 |1548 |33900 |2 |3 |A54F10|0 |2 |0 |
+ROW |73964 |1548 |33896 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |73965 |1548 |33891 |2 |5 |6C59DC|0 |2 |0 |
+ROW |73966 |1190 |31140 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73967 |1190 |31141 |0 |1 |2774A4|0 |2 |0 |
+ROW |73968 |1261 |31145 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73969 |1261 |31146 |0 |1 |2774A4|0 |2 |0 |
+ROW |73970 |1261 |31147 |0 |2 |F63100|0 |2 |0 |
+ROW |73971 |1191 |31138 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73972 |1192 |31157 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73973 |1192 |31158 |0 |1 |2774A4|0 |2 |0 |
+ROW |73974 |1193 |31092 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73975 |1193 |31108 |0 |1 |2774A4|0 |2 |0 |
+ROW |73976 |1193 |31110 |0 |2 |F63100|0 |2 |0 |
+ROW |73977 |1193 |31067 |0 |3 |A54F10|0 |2 |0 |
+ROW |73978 |1193 |31086 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73979 |1193 |31087 |0 |5 |6C59DC|0 |2 |0 |
+ROW |73980 |1194 |31120 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73981 |1194 |31105 |0 |1 |2774A4|0 |2 |0 |
+ROW |73982 |1194 |31071 |0 |2 |F63100|0 |2 |0 |
+ROW |73983 |1194 |31081 |0 |3 |A54F10|0 |2 |0 |
+ROW |73984 |1195 |31098 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73985 |1195 |31099 |0 |1 |2774A4|0 |2 |0 |
+ROW |73986 |1196 |31072 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73987 |1196 |31072 |0 |1 |2774A4|0 |2 |0 |
+ROW |73988 |1197 |31103 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73989 |1197 |31074 |0 |1 |2774A4|0 |2 |0 |
+ROW |73990 |1198 |31104 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73991 |1198 |31063 |0 |1 |2774A4|0 |2 |0 |
+ROW |73992 |1198 |31111 |0 |2 |F63100|0 |2 |0 |
+ROW |73993 |1198 |31112 |0 |3 |A54F10|0 |2 |0 |
+ROW |73994 |1198 |31084 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |73995 |1199 |31115 |0 |0 |1A7C11|0 |2 |0 |
+ROW |73996 |1199 |31116 |0 |1 |2774A4|0 |2 |0 |
+ROW |73997 |1199 |31062 |0 |2 |F63100|0 |2 |0 |
+ROW |73998 |1199 |31118 |0 |3 |A54F10|0 |2 |0 |
+ROW |73999 |1199 |31056 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |74000 |1200 |31107 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74001 |1200 |31090 |0 |1 |2774A4|0 |2 |0 |
+ROW |74002 |1201 |31097 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74003 |1201 |31096 |0 |1 |2774A4|0 |2 |0 |
+ROW |74004 |1202 |31089 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74005 |1202 |31061 |0 |1 |2774A4|0 |2 |0 |
+ROW |74006 |1203 |31064 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74007 |1204 |31065 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74008 |1204 |31066 |0 |1 |2774A4|0 |2 |0 |
+ROW |74009 |1204 |31068 |0 |2 |F63100|0 |2 |0 |
+ROW |74010 |1204 |31070 |0 |3 |A54F10|0 |2 |0 |
+ROW |74011 |1204 |31101 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |74012 |1204 |31106 |0 |5 |6C59DC|0 |2 |0 |
+ROW |74013 |1204 |31114 |0 |6 |AC8C14|0 |2 |0 |
+ROW |74014 |1205 |31069 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74015 |1206 |31076 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74016 |1206 |31078 |0 |1 |2774A4|0 |2 |0 |
+ROW |74017 |1206 |31109 |0 |2 |F63100|0 |2 |0 |
+ROW |74018 |1206 |31075 |0 |3 |A54F10|0 |2 |0 |
+ROW |74019 |1207 |31080 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74020 |1207 |31095 |0 |1 |2774A4|0 |2 |0 |
+ROW |74021 |1208 |31113 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74022 |1208 |31118 |0 |1 |2774A4|0 |2 |0 |
+ROW |74023 |1209 |31058 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74024 |1209 |31077 |0 |1 |2774A4|0 |2 |0 |
+ROW |74025 |1209 |31056 |0 |2 |F63100|0 |2 |0 |
+ROW |74026 |1209 |31117 |0 |3 |A54F10|0 |2 |0 |
+ROW |74027 |1109 |30453 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74028 |1109 |30455 |5 |1 |2774A4|0 |2 |0 |
+ROW |74029 |1110 |30471 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74030 |1110 |30470 |0 |1 |2774A4|0 |2 |0 |
+ROW |74031 |1110 |30466 |0 |2 |F63100|0 |2 |0 |
+ROW |74032 |1110 |30441 |0 |3 |A54F10|0 |2 |0 |
+ROW |74033 |1111 |30463 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74034 |1111 |30452 |0 |1 |2774A4|0 |2 |0 |
+ROW |74035 |1111 |30451 |0 |2 |F63100|0 |2 |0 |
+ROW |74036 |1111 |30437 |0 |3 |A54F10|0 |2 |0 |
+ROW |74037 |1112 |30456 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74038 |1112 |30457 |0 |1 |2774A4|0 |2 |0 |
+ROW |74039 |1112 |30458 |0 |2 |F63100|0 |2 |0 |
+ROW |74040 |1112 |30459 |0 |3 |A54F10|0 |2 |0 |
+ROW |74041 |1113 |30442 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74042 |1113 |30444 |0 |1 |2774A4|0 |2 |0 |
+ROW |74043 |1113 |30445 |0 |2 |F63100|0 |2 |0 |
+ROW |74044 |1114 |30446 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74045 |1114 |30447 |0 |1 |2774A4|0 |2 |0 |
+ROW |74046 |1114 |31168 |0 |2 |F63100|0 |2 |0 |
+ROW |74047 |1114 |30449 |0 |3 |A54F10|0 |2 |0 |
+ROW |74048 |1136 |30659 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74049 |1136 |30661 |5 |1 |2774A4|0 |2 |0 |
+ROW |74050 |1137 |30677 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74051 |1137 |30676 |0 |1 |2774A4|0 |2 |0 |
+ROW |74052 |1137 |30672 |0 |2 |F63100|0 |2 |0 |
+ROW |74053 |1137 |30647 |0 |3 |A54F10|0 |2 |0 |
+ROW |74054 |1138 |30669 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74055 |1138 |30658 |0 |1 |2774A4|0 |2 |0 |
+ROW |74056 |1138 |30657 |0 |2 |F63100|0 |2 |0 |
+ROW |74057 |1138 |30643 |0 |3 |A54F10|0 |2 |0 |
+ROW |74058 |1139 |30662 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74059 |1139 |30663 |0 |1 |2774A4|0 |2 |0 |
+ROW |74060 |1139 |30664 |0 |2 |F63100|0 |2 |0 |
+ROW |74061 |1139 |30665 |0 |3 |A54F10|0 |2 |0 |
+ROW |74062 |1140 |30648 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74063 |1140 |30650 |0 |1 |2774A4|0 |2 |0 |
+ROW |74064 |1140 |30651 |0 |2 |F63100|0 |2 |0 |
+ROW |74065 |1141 |30652 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74066 |1141 |30653 |0 |1 |2774A4|0 |2 |0 |
+ROW |74067 |1141 |31172 |0 |2 |F63100|0 |2 |0 |
+ROW |74068 |1141 |30655 |0 |3 |A54F10|0 |2 |0 |
+ROW |74069 |1115 |30506 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74070 |1115 |30507 |5 |1 |2774A4|0 |2 |0 |
+ROW |74071 |1116 |30504 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74072 |1116 |30505 |0 |1 |2774A4|0 |2 |0 |
+ROW |74073 |1116 |30518 |0 |2 |F63100|0 |2 |0 |
+ROW |74074 |1116 |30492 |0 |3 |A54F10|0 |2 |0 |
+ROW |74075 |1117 |30493 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74076 |1117 |30500 |0 |1 |2774A4|0 |2 |0 |
+ROW |74077 |1117 |30486 |0 |2 |F63100|0 |2 |0 |
+ROW |74078 |1117 |30488 |0 |3 |A54F10|0 |2 |0 |
+ROW |74079 |1118 |30508 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74080 |1118 |30509 |0 |1 |2774A4|0 |2 |0 |
+ROW |74081 |1118 |30503 |0 |2 |F63100|0 |2 |0 |
+ROW |74082 |1118 |30510 |0 |3 |A54F10|0 |2 |0 |
+ROW |74083 |1119 |30491 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74084 |1119 |30494 |0 |1 |2774A4|0 |2 |0 |
+ROW |74085 |1119 |30495 |0 |2 |F63100|0 |2 |0 |
+ROW |74086 |1120 |30496 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74087 |1120 |30497 |0 |1 |2774A4|0 |2 |0 |
+ROW |74088 |1120 |31176 |0 |2 |F63100|0 |2 |0 |
+ROW |74089 |1120 |30499 |0 |3 |A54F10|0 |2 |0 |
+ROW |74090 |1266 |31773 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74091 |1266 |31774 |0 |1 |2774A4|0 |2 |0 |
+ROW |74092 |1267 |31777 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74093 |1267 |31779 |0 |1 |2774A4|0 |2 |0 |
+ROW |74094 |1267 |33168 |0 |2 |F63100|0 |2 |0 |
+ROW |74095 |1268 |31685 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74096 |1268 |31738 |0 |1 |2774A4|0 |2 |0 |
+ROW |74097 |1269 |31723 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74098 |1269 |31757 |0 |1 |2774A4|0 |2 |0 |
+ROW |74099 |1269 |31721 |0 |2 |F63100|0 |2 |0 |
+ROW |74100 |1270 |31728 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74101 |1270 |31759 |0 |1 |2774A4|0 |2 |0 |
+ROW |74102 |1271 |31745 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74103 |1271 |31727 |0 |1 |2774A4|0 |2 |0 |
+ROW |74104 |1272 |31687 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74105 |1272 |31710 |0 |1 |2774A4|0 |2 |0 |
+ROW |74106 |1273 |31705 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74107 |1273 |31703 |0 |1 |2774A4|0 |2 |0 |
+ROW |74108 |1273 |31706 |0 |2 |F63100|0 |2 |0 |
+ROW |74109 |1273 |31701 |0 |3 |A54F10|0 |2 |0 |
+ROW |74110 |1273 |31708 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |74111 |1274 |31715 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74112 |1274 |31726 |0 |1 |2774A4|0 |2 |0 |
+ROW |74113 |1274 |31717 |0 |2 |F63100|0 |2 |0 |
+ROW |74114 |1274 |31716 |0 |3 |A54F10|0 |2 |0 |
+ROW |74115 |1274 |31714 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |74116 |1274 |31713 |0 |5 |6C59DC|0 |2 |0 |
+ROW |74117 |1210 |31261 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74118 |1210 |31262 |0 |1 |2774A4|0 |2 |0 |
+ROW |74119 |1211 |31269 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74120 |1211 |31271 |0 |1 |2774A4|0 |2 |0 |
+ROW |74121 |1211 |33170 |0 |2 |F63100|0 |2 |0 |
+ROW |74122 |1212 |31233 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74123 |1212 |31234 |0 |1 |2774A4|0 |2 |0 |
+ROW |74124 |1213 |31216 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74125 |1213 |31237 |0 |1 |2774A4|0 |2 |0 |
+ROW |74126 |1213 |31214 |0 |2 |F63100|0 |2 |0 |
+ROW |74127 |1214 |31191 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74128 |1214 |31221 |0 |1 |2774A4|0 |2 |0 |
+ROW |74129 |1215 |31206 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74130 |1215 |31220 |0 |1 |2774A4|0 |2 |0 |
+ROW |74131 |1216 |31192 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74132 |1216 |31193 |0 |1 |2774A4|0 |2 |0 |
+ROW |74133 |1217 |31200 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74134 |1217 |31197 |0 |1 |2774A4|0 |2 |0 |
+ROW |74135 |1217 |31201 |0 |2 |F63100|0 |2 |0 |
+ROW |74136 |1217 |31198 |0 |3 |A54F10|0 |2 |0 |
+ROW |74137 |1217 |31202 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |74138 |1218 |31207 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74139 |1218 |31208 |0 |1 |2774A4|0 |2 |0 |
+ROW |74140 |1218 |31210 |0 |2 |F63100|0 |2 |0 |
+ROW |74141 |1218 |31209 |0 |3 |A54F10|0 |2 |0 |
+ROW |74142 |1218 |31219 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |74143 |1218 |31205 |0 |5 |6C59DC|0 |2 |0 |
+ROW |74144 |1380 |32423 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74145 |1380 |32421 |0 |1 |2774A4|0 |2 |0 |
+ROW |74146 |1381 |32405 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74147 |1382 |32426 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74148 |1382 |32408 |0 |1 |2774A4|0 |2 |0 |
+ROW |74149 |1382 |32422 |0 |2 |F63100|0 |2 |0 |
+ROW |74150 |1382 |32425 |0 |3 |A54F10|0 |2 |0 |
+ROW |74151 |1383 |32409 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74152 |1384 |32419 |0 |0 |1A7C11|1 |2 |0 |
+ROW |74153 |1384 |32416 |0 |1 |2774A4|1 |2 |0 |
+ROW |74154 |1384 |32413 |0 |2 |F63100|1 |2 |0 |
+ROW |74155 |1384 |32418 |5 |3 |A54F10|0 |2 |0 |
+ROW |74156 |1384 |32415 |5 |4 |FC6EA3|0 |2 |0 |
+ROW |74157 |1384 |32412 |5 |5 |6C59DC|0 |2 |0 |
+ROW |74158 |1385 |32420 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74159 |1385 |32417 |0 |1 |2774A4|0 |2 |0 |
+ROW |74160 |1385 |32414 |0 |2 |F63100|0 |2 |0 |
+ROW |74161 |1386 |32433 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74162 |1386 |32432 |0 |1 |2774A4|1 |2 |0 |
+ROW |74163 |1387 |32431 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74164 |1387 |32430 |0 |1 |2774A4|0 |2 |0 |
+ROW |74165 |1387 |32429 |0 |2 |F63100|0 |2 |0 |
+ROW |74166 |1387 |32428 |0 |3 |A54F10|0 |2 |0 |
+ROW |74167 |1387 |32427 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |74168 |1388 |32386 |0 |0 |1A7C11|1 |2 |0 |
+ROW |74169 |1388 |32391 |0 |1 |2774A4|1 |2 |0 |
+ROW |74170 |1388 |32387 |0 |2 |F63100|1 |2 |0 |
+ROW |74171 |1388 |32390 |0 |3 |A54F10|1 |2 |0 |
+ROW |74172 |1388 |32395 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |74173 |1388 |32389 |0 |5 |6C59DC|0 |2 |0 |
+ROW |74174 |1389 |32393 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74175 |1389 |32392 |0 |1 |2774A4|0 |2 |0 |
+ROW |74176 |1389 |32394 |0 |2 |F63100|1 |2 |0 |
+ROW |74177 |1389 |32388 |0 |3 |A54F10|1 |2 |0 |
+ROW |74178 |1390 |32401 |5 |0 |1A7C11|1 |2 |0 |
+ROW |74179 |1390 |32402 |0 |1 |2774A4|0 |2 |0 |
+ROW |74180 |1390 |32397 |0 |2 |F63100|1 |2 |0 |
+ROW |74181 |1390 |32398 |0 |3 |A54F10|1 |2 |0 |
+ROW |74182 |1390 |32399 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |74183 |1390 |32400 |0 |5 |6C59DC|1 |2 |0 |
+ROW |74184 |1390 |32396 |0 |6 |AC8C14|1 |2 |0 |
+ROW |74185 |1391 |32367 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74186 |1391 |32366 |0 |1 |2774A4|1 |2 |0 |
+ROW |74187 |1392 |32370 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74188 |1393 |32382 |0 |0 |1A7C11|1 |2 |0 |
+ROW |74189 |1393 |32381 |0 |1 |2774A4|1 |2 |0 |
+ROW |74190 |1393 |32383 |0 |2 |F63100|1 |2 |0 |
+ROW |74191 |1393 |32384 |0 |3 |A54F10|1 |2 |0 |
+ROW |74192 |1394 |32377 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74193 |1394 |32374 |0 |1 |2774A4|1 |2 |0 |
+ROW |74194 |1395 |32403 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74195 |1395 |32385 |0 |1 |2774A4|1 |2 |0 |
+ROW |74196 |1219 |31363 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74197 |1219 |31346 |0 |1 |2774A4|0 |2 |0 |
+ROW |74198 |1219 |31345 |0 |2 |F63100|0 |2 |0 |
+ROW |74199 |1219 |31344 |0 |3 |A54F10|0 |2 |0 |
+ROW |74200 |1219 |31343 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |74201 |1219 |31342 |0 |5 |6C59DC|0 |2 |0 |
+ROW |74202 |1219 |31340 |0 |6 |AC8C14|0 |2 |0 |
+ROW |74203 |1219 |31339 |0 |7 |611F27|0 |2 |0 |
+ROW |74204 |1219 |31341 |0 |8 |F230E0|0 |2 |0 |
+ROW |74205 |1219 |31341 |0 |9 |FFAD40|0 |2 |0 |
+ROW |74206 |1220 |31337 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74207 |1221 |31360 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74208 |1221 |31359 |0 |1 |2774A4|0 |2 |0 |
+ROW |74209 |1221 |31357 |0 |2 |F63100|0 |2 |0 |
+ROW |74210 |1221 |31356 |0 |3 |A54F10|0 |2 |0 |
+ROW |74211 |1221 |31354 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |74212 |1221 |31353 |0 |5 |6C59DC|0 |2 |0 |
+ROW |74213 |1221 |31352 |0 |6 |AC8C14|0 |2 |0 |
+ROW |74214 |1221 |31350 |0 |7 |611F27|0 |2 |0 |
+ROW |74215 |1221 |31351 |0 |8 |F230E0|0 |2 |0 |
+ROW |74216 |1221 |31338 |0 |9 |FFAD40|0 |2 |0 |
+ROW |74217 |1221 |31349 |0 |10 |40CDFF|0 |2 |0 |
+ROW |74218 |1221 |31348 |0 |11 |40FFA0|0 |2 |0 |
+ROW |74219 |1221 |31347 |0 |12 |AE4500|0 |2 |0 |
+ROW |74220 |1222 |31336 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74221 |1456 |33178 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74222 |1456 |33179 |0 |1 |2774A4|0 |2 |0 |
+ROW |74223 |1456 |33180 |0 |2 |F63100|0 |2 |0 |
+ROW |74224 |1087 |30346 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74225 |1087 |30345 |0 |1 |2774A4|0 |2 |0 |
+ROW |74226 |1088 |30350 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74227 |1088 |30349 |5 |1 |2774A4|0 |2 |0 |
+ROW |74228 |1089 |30396 |2 |0 |1A7C11|0 |2 |0 |
+ROW |74229 |1090 |30398 |2 |0 |1A7C11|0 |2 |0 |
+ROW |74230 |1091 |30322 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74231 |1091 |30277 |5 |1 |2774A4|0 |2 |0 |
+ROW |74232 |1092 |30284 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74233 |1093 |30313 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74234 |1093 |30314 |0 |1 |2774A4|0 |2 |0 |
+ROW |74235 |1093 |30315 |5 |2 |F63100|0 |2 |0 |
+ROW |74236 |1093 |30316 |0 |3 |A54F10|0 |2 |0 |
+ROW |74237 |1094 |30279 |2 |0 |1A7C11|0 |2 |0 |
+ROW |74238 |1094 |30280 |2 |1 |2774A4|0 |2 |0 |
+ROW |74239 |1095 |30290 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74240 |1095 |30293 |0 |1 |2774A4|0 |2 |0 |
+ROW |74241 |1096 |30318 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74242 |1096 |30308 |2 |1 |2774A4|0 |2 |0 |
+ROW |74243 |1096 |30320 |2 |2 |F63100|0 |2 |0 |
+ROW |74244 |1097 |30317 |2 |0 |1A7C11|0 |2 |0 |
+ROW |74245 |1098 |30289 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74246 |1098 |30291 |5 |1 |2774A4|0 |2 |0 |
+ROW |74247 |1099 |30334 |2 |0 |1A7C11|0 |2 |0 |
+ROW |74248 |1099 |30325 |2 |1 |2774A4|0 |2 |0 |
+ROW |74249 |1100 |30306 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74250 |1101 |30274 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74251 |1102 |30281 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74252 |1577 |34351 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74253 |1577 |34350 |0 |1 |2774A4|0 |2 |0 |
+ROW |74254 |1578 |34387 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74255 |1578 |34388 |2 |1 |2774A4|0 |2 |0 |
+ROW |74256 |1579 |34393 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74257 |1579 |34386 |0 |1 |2774A4|0 |2 |0 |
+ROW |74258 |1580 |34370 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74259 |1580 |34384 |0 |1 |2774A4|0 |2 |0 |
+ROW |74260 |1580 |34383 |0 |2 |F63100|0 |2 |0 |
+ROW |74261 |1581 |34438 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74262 |1581 |34413 |0 |1 |2774A4|0 |2 |0 |
+ROW |74263 |1581 |34427 |0 |2 |F63100|0 |2 |0 |
+ROW |74264 |1582 |34420 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74265 |1582 |34419 |0 |1 |2774A4|0 |2 |0 |
+ROW |74266 |1582 |34418 |0 |2 |F63100|0 |2 |0 |
+ROW |74267 |1060 |30159 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74268 |1065 |30161 |0 |0 |969696|0 |9 |2 |
+ROW |74269 |1065 |30162 |0 |1 |C80000|0 |9 |0 |
+ROW |74270 |1070 |30142 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74271 |741 |27084 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74272 |741 |27085 |2 |1 |2774A4|0 |2 |0 |
+ROW |74273 |741 |27083 |0 |2 |F63100|1 |2 |0 |
+ROW |74274 |741 |27086 |0 |3 |A54F10|1 |2 |0 |
+ROW |74275 |741 |27082 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |74276 |741 |27079 |0 |5 |6C59DC|1 |2 |0 |
+ROW |74277 |745 |27104 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74278 |745 |27105 |2 |1 |2774A4|0 |2 |0 |
+ROW |74279 |745 |27103 |0 |2 |F63100|1 |2 |0 |
+ROW |74280 |745 |27106 |0 |3 |A54F10|1 |2 |0 |
+ROW |74281 |745 |27102 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |74282 |745 |27099 |0 |5 |6C59DC|1 |2 |0 |
+ROW |74283 |766 |27124 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74284 |766 |27125 |2 |1 |2774A4|0 |2 |0 |
+ROW |74285 |766 |27123 |0 |2 |F63100|1 |2 |0 |
+ROW |74286 |766 |27126 |0 |3 |A54F10|1 |2 |0 |
+ROW |74287 |766 |27122 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |74288 |766 |27119 |0 |5 |6C59DC|1 |2 |0 |
+ROW |74289 |668 |27208 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74290 |1032 |30088 |2 |0 |1A7C11|0 |2 |0 |
+ROW |74291 |1032 |30087 |5 |1 |2774A4|0 |2 |0 |
+ROW |74292 |1033 |30089 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74293 |671 |27240 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74294 |1034 |30093 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74295 |675 |27294 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74296 |1035 |30094 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74297 |1676 |35369 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74298 |1677 |35372 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74299 |1678 |35379 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74300 |1678 |35386 |0 |1 |2774A4|0 |2 |0 |
+ROW |74301 |1678 |35377 |0 |2 |F63100|0 |2 |0 |
+ROW |74302 |1678 |35384 |0 |3 |A54F10|0 |2 |0 |
+ROW |74303 |1678 |35376 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |74304 |1678 |35383 |0 |5 |6C59DC|0 |2 |0 |
+ROW |74305 |1679 |35387 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74306 |1679 |35380 |0 |1 |2774A4|0 |2 |0 |
+ROW |74307 |1680 |35378 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74308 |1680 |35385 |0 |1 |2774A4|0 |2 |0 |
+ROW |74309 |1681 |35403 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74310 |1681 |35404 |0 |1 |2774A4|0 |2 |0 |
+ROW |74311 |1549 |33966 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74312 |1550 |33971 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74313 |1551 |33974 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74314 |1551 |33977 |2 |1 |2774A4|0 |2 |0 |
+ROW |74315 |1551 |33976 |0 |2 |F63100|1 |2 |0 |
+ROW |74316 |1551 |33973 |0 |3 |A54F10|1 |2 |0 |
+ROW |74317 |1551 |33975 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |74318 |1551 |33972 |0 |5 |6C59DC|1 |2 |0 |
+ROW |74319 |1552 |34007 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74320 |1553 |34012 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74321 |1554 |34015 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74322 |1554 |34018 |2 |1 |2774A4|0 |2 |0 |
+ROW |74323 |1554 |34017 |0 |2 |F63100|1 |2 |0 |
+ROW |74324 |1554 |34014 |0 |3 |A54F10|1 |2 |0 |
+ROW |74325 |1554 |34016 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |74326 |1554 |34013 |0 |5 |6C59DC|1 |2 |0 |
+ROW |74327 |1555 |34048 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74328 |1556 |34053 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74329 |1557 |34056 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74330 |1557 |34059 |2 |1 |2774A4|0 |2 |0 |
+ROW |74331 |1557 |34058 |0 |2 |F63100|1 |2 |0 |
+ROW |74332 |1557 |34055 |0 |3 |A54F10|1 |2 |0 |
+ROW |74333 |1557 |34057 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |74334 |1557 |34054 |0 |5 |6C59DC|1 |2 |0 |
+ROW |74335 |1558 |34089 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74336 |1559 |34094 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74337 |1560 |34097 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74338 |1560 |34100 |2 |1 |2774A4|0 |2 |0 |
+ROW |74339 |1560 |34099 |0 |2 |F63100|1 |2 |0 |
+ROW |74340 |1560 |34096 |0 |3 |A54F10|1 |2 |0 |
+ROW |74341 |1560 |34098 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |74342 |1560 |34095 |0 |5 |6C59DC|1 |2 |0 |
+ROW |74343 |1561 |34130 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74344 |1562 |34135 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74345 |1563 |34138 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74346 |1563 |34141 |2 |1 |2774A4|0 |2 |0 |
+ROW |74347 |1563 |34140 |0 |2 |F63100|1 |2 |0 |
+ROW |74348 |1563 |34137 |0 |3 |A54F10|1 |2 |0 |
+ROW |74349 |1563 |34139 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |74350 |1563 |34136 |0 |5 |6C59DC|1 |2 |0 |
+ROW |74351 |1038 |30101 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74352 |786 |28246 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74353 |687 |27417 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74354 |691 |27376 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74355 |694 |27478 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74356 |1042 |30105 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74357 |1043 |30107 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74358 |698 |27511 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74359 |1044 |30108 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74360 |701 |27547 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74361 |1045 |27591 |2 |0 |1A7C11|0 |2 |0 |
+ROW |74362 |1045 |30110 |5 |1 |2774A4|0 |2 |0 |
+ROW |74363 |1046 |30111 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74364 |704 |27586 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74365 |1682 |35439 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74366 |1683 |35441 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74367 |1684 |35443 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74368 |1685 |35446 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74369 |1686 |35450 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74370 |1686 |35465 |0 |1 |2774A4|0 |2 |0 |
+ROW |74371 |1686 |35456 |0 |2 |F63100|0 |2 |0 |
+ROW |74372 |1686 |35447 |0 |3 |A54F10|0 |2 |0 |
+ROW |74373 |1686 |35468 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |74374 |1686 |35471 |0 |5 |6C59DC|0 |2 |0 |
+ROW |74375 |1686 |35459 |0 |6 |AC8C14|0 |2 |0 |
+ROW |74376 |1687 |35449 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74377 |1687 |35464 |0 |1 |2774A4|0 |2 |0 |
+ROW |74378 |1687 |35455 |0 |2 |F63100|0 |2 |0 |
+ROW |74379 |1687 |35461 |0 |3 |A54F10|0 |2 |0 |
+ROW |74380 |1687 |35467 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |74381 |1687 |35470 |0 |5 |6C59DC|0 |2 |0 |
+ROW |74382 |1687 |35457 |0 |6 |AC8C14|0 |2 |0 |
+ROW |74383 |1688 |35473 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74384 |1688 |35463 |0 |1 |2774A4|0 |2 |0 |
+ROW |74385 |1688 |35454 |0 |2 |F63100|0 |2 |0 |
+ROW |74386 |1688 |35472 |0 |3 |A54F10|0 |2 |0 |
+ROW |74387 |1688 |35466 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |74388 |1688 |35469 |0 |5 |6C59DC|0 |2 |0 |
+ROW |74389 |1688 |35458 |0 |6 |AC8C14|0 |2 |0 |
+ROW |74390 |1689 |35474 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74391 |1690 |35476 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74392 |1691 |35478 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74393 |1691 |35480 |0 |1 |2774A4|0 |2 |0 |
+ROW |74394 |1692 |35487 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74395 |1692 |35484 |0 |1 |2774A4|0 |2 |0 |
+ROW |74396 |1693 |35486 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74397 |1693 |35483 |0 |1 |2774A4|0 |2 |0 |
+ROW |74398 |1694 |35490 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74399 |1694 |35488 |0 |1 |2774A4|0 |2 |0 |
+ROW |74400 |1694 |35489 |0 |2 |F63100|0 |2 |0 |
+ROW |74401 |1695 |35497 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74402 |1695 |35493 |0 |1 |2774A4|1 |2 |0 |
+ROW |74403 |1695 |35503 |0 |2 |F63100|0 |2 |0 |
+ROW |74404 |1695 |35499 |0 |3 |A54F10|1 |2 |0 |
+ROW |74405 |1695 |35496 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |74406 |1695 |35502 |0 |5 |6C59DC|0 |2 |0 |
+ROW |74407 |1696 |35508 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74408 |1696 |35507 |0 |1 |2774A4|1 |2 |0 |
+ROW |74409 |1696 |35510 |0 |2 |F63100|0 |2 |0 |
+ROW |74410 |1696 |35509 |0 |3 |A54F10|1 |2 |0 |
+ROW |74411 |1697 |35516 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74412 |1697 |35515 |0 |1 |2774A4|1 |2 |0 |
+ROW |74413 |1697 |35518 |0 |2 |F63100|0 |2 |0 |
+ROW |74414 |1697 |35517 |0 |3 |A54F10|1 |2 |0 |
+ROW |74415 |1698 |35524 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74416 |1698 |35523 |0 |1 |2774A4|1 |2 |0 |
+ROW |74417 |1698 |35526 |0 |2 |F63100|0 |2 |0 |
+ROW |74418 |1698 |35525 |0 |3 |A54F10|1 |2 |0 |
+ROW |74419 |1699 |35531 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74420 |1699 |35529 |0 |1 |2774A4|0 |2 |0 |
+ROW |74421 |1699 |35530 |0 |2 |F63100|0 |2 |0 |
+ROW |74422 |1700 |35411 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74423 |1700 |35409 |0 |1 |2774A4|0 |2 |0 |
+ROW |74424 |1700 |35407 |0 |2 |F63100|0 |2 |0 |
+ROW |74425 |1700 |35413 |0 |3 |A54F10|0 |2 |0 |
+ROW |74426 |1700 |35412 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |74427 |1700 |35410 |0 |5 |6C59DC|0 |2 |0 |
+ROW |74428 |708 |27671 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74429 |1047 |30112 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74430 |1048 |30114 |2 |0 |1A7C11|0 |2 |0 |
+ROW |74431 |1048 |30113 |5 |1 |2774A4|0 |2 |0 |
+ROW |74432 |1049 |30115 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74433 |775 |28143 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74434 |714 |27753 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74435 |1050 |30116 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74436 |856 |28894 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74437 |1051 |30118 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74438 |1564 |34166 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74439 |1564 |34169 |2 |1 |2774A4|0 |2 |0 |
+ROW |74440 |1564 |34168 |0 |2 |F63100|1 |2 |0 |
+ROW |74441 |1564 |34165 |0 |3 |A54F10|1 |2 |0 |
+ROW |74442 |1564 |34167 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |74443 |1564 |34164 |0 |5 |6C59DC|1 |2 |0 |
+ROW |74444 |1565 |34174 |0 |0 |969696|0 |9 |2 |
+ROW |74445 |1565 |34175 |0 |1 |C80000|0 |9 |0 |
+ROW |74446 |1566 |34178 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74447 |1567 |34154 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74448 |1811 |36861 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74449 |1812 |36867 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74450 |1812 |36865 |0 |1 |2774A4|0 |2 |0 |
+ROW |74451 |1812 |36864 |0 |2 |F63100|0 |2 |0 |
+ROW |74452 |1812 |36866 |0 |3 |A54F10|0 |2 |0 |
+ROW |74453 |1813 |36878 |0 |0 |969696|0 |9 |2 |
+ROW |74454 |1813 |36879 |0 |1 |C80000|0 |9 |0 |
+ROW |74455 |1814 |36853 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74456 |1816 |36915 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74457 |1817 |36921 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74458 |1817 |36919 |0 |1 |2774A4|0 |2 |0 |
+ROW |74459 |1817 |36918 |0 |2 |F63100|0 |2 |0 |
+ROW |74460 |1817 |36920 |0 |3 |A54F10|0 |2 |0 |
+ROW |74461 |1818 |36932 |0 |0 |969696|0 |9 |2 |
+ROW |74462 |1818 |36933 |0 |1 |C80000|0 |9 |0 |
+ROW |74463 |1819 |36907 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74464 |1821 |36969 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74465 |1822 |36975 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74466 |1822 |36973 |0 |1 |2774A4|0 |2 |0 |
+ROW |74467 |1822 |36972 |0 |2 |F63100|0 |2 |0 |
+ROW |74468 |1822 |36974 |0 |3 |A54F10|0 |2 |0 |
+ROW |74469 |1823 |36986 |0 |0 |969696|0 |9 |2 |
+ROW |74470 |1823 |36987 |0 |1 |C80000|0 |9 |0 |
+ROW |74471 |1824 |36961 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74472 |1826 |37023 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74473 |1827 |37029 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74474 |1827 |37027 |0 |1 |2774A4|0 |2 |0 |
+ROW |74475 |1827 |37026 |0 |2 |F63100|0 |2 |0 |
+ROW |74476 |1827 |37028 |0 |3 |A54F10|0 |2 |0 |
+ROW |74477 |1828 |37040 |0 |0 |969696|0 |9 |2 |
+ROW |74478 |1828 |37041 |0 |1 |C80000|0 |9 |0 |
+ROW |74479 |1829 |37015 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74480 |1831 |37077 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74481 |1832 |37083 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74482 |1832 |37081 |0 |1 |2774A4|0 |2 |0 |
+ROW |74483 |1832 |37080 |0 |2 |F63100|0 |2 |0 |
+ROW |74484 |1832 |37082 |0 |3 |A54F10|0 |2 |0 |
+ROW |74485 |1833 |37094 |0 |0 |969696|0 |9 |2 |
+ROW |74486 |1833 |37095 |0 |1 |C80000|0 |9 |0 |
+ROW |74487 |1834 |37069 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74488 |1836 |37131 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74489 |1837 |37137 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74490 |1837 |37135 |0 |1 |2774A4|0 |2 |0 |
+ROW |74491 |1837 |37134 |0 |2 |F63100|0 |2 |0 |
+ROW |74492 |1837 |37136 |0 |3 |A54F10|0 |2 |0 |
+ROW |74493 |1838 |37148 |0 |0 |969696|0 |9 |2 |
+ROW |74494 |1838 |37149 |0 |1 |C80000|0 |9 |0 |
+ROW |74495 |1839 |37123 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74496 |1841 |37185 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74497 |1842 |37191 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74498 |1842 |37189 |0 |1 |2774A4|0 |2 |0 |
+ROW |74499 |1842 |37188 |0 |2 |F63100|0 |2 |0 |
+ROW |74500 |1842 |37190 |0 |3 |A54F10|0 |2 |0 |
+ROW |74501 |1843 |37202 |0 |0 |969696|0 |9 |2 |
+ROW |74502 |1843 |37203 |0 |1 |C80000|0 |9 |0 |
+ROW |74503 |1844 |37177 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74504 |1846 |37239 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74505 |1847 |37245 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74506 |1847 |37243 |0 |1 |2774A4|0 |2 |0 |
+ROW |74507 |1847 |37242 |0 |2 |F63100|0 |2 |0 |
+ROW |74508 |1847 |37244 |0 |3 |A54F10|0 |2 |0 |
+ROW |74509 |1848 |37256 |0 |0 |969696|0 |9 |2 |
+ROW |74510 |1848 |37257 |0 |1 |C80000|0 |9 |0 |
+ROW |74511 |1849 |37231 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74512 |1851 |37293 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74513 |1852 |37299 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74514 |1852 |37297 |0 |1 |2774A4|0 |2 |0 |
+ROW |74515 |1852 |37296 |0 |2 |F63100|0 |2 |0 |
+ROW |74516 |1852 |37298 |0 |3 |A54F10|0 |2 |0 |
+ROW |74517 |1853 |37310 |0 |0 |969696|0 |9 |2 |
+ROW |74518 |1853 |37311 |0 |1 |C80000|0 |9 |0 |
+ROW |74519 |1854 |37285 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74520 |1856 |37347 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74521 |1857 |37353 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74522 |1857 |37351 |0 |1 |2774A4|0 |2 |0 |
+ROW |74523 |1857 |37350 |0 |2 |F63100|0 |2 |0 |
+ROW |74524 |1857 |37352 |0 |3 |A54F10|0 |2 |0 |
+ROW |74525 |1858 |37364 |0 |0 |969696|0 |9 |2 |
+ROW |74526 |1858 |37365 |0 |1 |C80000|0 |9 |0 |
+ROW |74527 |1859 |37339 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74528 |1861 |37401 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74529 |1862 |37407 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74530 |1862 |37405 |0 |1 |2774A4|0 |2 |0 |
+ROW |74531 |1862 |37404 |0 |2 |F63100|0 |2 |0 |
+ROW |74532 |1862 |37406 |0 |3 |A54F10|0 |2 |0 |
+ROW |74533 |1863 |37418 |0 |0 |969696|0 |9 |2 |
+ROW |74534 |1863 |37419 |0 |1 |C80000|0 |9 |0 |
+ROW |74535 |1864 |37393 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74536 |1866 |37455 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74537 |1867 |37461 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74538 |1867 |37459 |0 |1 |2774A4|0 |2 |0 |
+ROW |74539 |1867 |37458 |0 |2 |F63100|0 |2 |0 |
+ROW |74540 |1867 |37460 |0 |3 |A54F10|0 |2 |0 |
+ROW |74541 |1868 |37472 |0 |0 |969696|0 |9 |2 |
+ROW |74542 |1868 |37473 |0 |1 |C80000|0 |9 |0 |
+ROW |74543 |1869 |37447 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74544 |1871 |37509 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74545 |1872 |37515 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74546 |1872 |37513 |0 |1 |2774A4|0 |2 |0 |
+ROW |74547 |1872 |37512 |0 |2 |F63100|0 |2 |0 |
+ROW |74548 |1872 |37514 |0 |3 |A54F10|0 |2 |0 |
+ROW |74549 |1873 |37526 |0 |0 |969696|0 |9 |2 |
+ROW |74550 |1873 |37527 |0 |1 |C80000|0 |9 |0 |
+ROW |74551 |1874 |37501 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74552 |1876 |37563 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74553 |1877 |37569 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74554 |1877 |37567 |0 |1 |2774A4|0 |2 |0 |
+ROW |74555 |1877 |37566 |0 |2 |F63100|0 |2 |0 |
+ROW |74556 |1877 |37568 |0 |3 |A54F10|0 |2 |0 |
+ROW |74557 |1878 |37580 |0 |0 |969696|0 |9 |2 |
+ROW |74558 |1878 |37581 |0 |1 |C80000|0 |9 |0 |
+ROW |74559 |1879 |37555 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74560 |1881 |37617 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74561 |1882 |37623 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74562 |1882 |37621 |0 |1 |2774A4|0 |2 |0 |
+ROW |74563 |1882 |37620 |0 |2 |F63100|0 |2 |0 |
+ROW |74564 |1882 |37622 |0 |3 |A54F10|0 |2 |0 |
+ROW |74565 |1883 |37634 |0 |0 |969696|0 |9 |2 |
+ROW |74566 |1883 |37635 |0 |1 |C80000|0 |9 |0 |
+ROW |74567 |1884 |37609 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74568 |1886 |37671 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74569 |1887 |37677 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74570 |1887 |37675 |0 |1 |2774A4|0 |2 |0 |
+ROW |74571 |1887 |37674 |0 |2 |F63100|0 |2 |0 |
+ROW |74572 |1887 |37676 |0 |3 |A54F10|0 |2 |0 |
+ROW |74573 |1888 |37688 |0 |0 |969696|0 |9 |2 |
+ROW |74574 |1888 |37689 |0 |1 |C80000|0 |9 |0 |
+ROW |74575 |1889 |37663 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74576 |1891 |37725 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74577 |1892 |37731 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74578 |1892 |37729 |0 |1 |2774A4|0 |2 |0 |
+ROW |74579 |1892 |37728 |0 |2 |F63100|0 |2 |0 |
+ROW |74580 |1892 |37730 |0 |3 |A54F10|0 |2 |0 |
+ROW |74581 |1893 |37742 |0 |0 |969696|0 |9 |2 |
+ROW |74582 |1893 |37743 |0 |1 |C80000|0 |9 |0 |
+ROW |74583 |1894 |37717 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74584 |1896 |37779 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74585 |1897 |37785 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74586 |1897 |37783 |0 |1 |2774A4|0 |2 |0 |
+ROW |74587 |1897 |37782 |0 |2 |F63100|0 |2 |0 |
+ROW |74588 |1897 |37784 |0 |3 |A54F10|0 |2 |0 |
+ROW |74589 |1898 |37796 |0 |0 |969696|0 |9 |2 |
+ROW |74590 |1898 |37797 |0 |1 |C80000|0 |9 |0 |
+ROW |74591 |1899 |37771 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74592 |1901 |37833 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74593 |1902 |37839 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74594 |1902 |37837 |0 |1 |2774A4|0 |2 |0 |
+ROW |74595 |1902 |37836 |0 |2 |F63100|0 |2 |0 |
+ROW |74596 |1902 |37838 |0 |3 |A54F10|0 |2 |0 |
+ROW |74597 |1903 |37850 |0 |0 |969696|0 |9 |2 |
+ROW |74598 |1903 |37851 |0 |1 |C80000|0 |9 |0 |
+ROW |74599 |1904 |37825 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74600 |1906 |37887 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74601 |1907 |37893 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74602 |1907 |37891 |0 |1 |2774A4|0 |2 |0 |
+ROW |74603 |1907 |37890 |0 |2 |F63100|0 |2 |0 |
+ROW |74604 |1907 |37892 |0 |3 |A54F10|0 |2 |0 |
+ROW |74605 |1908 |37904 |0 |0 |969696|0 |9 |2 |
+ROW |74606 |1908 |37905 |0 |1 |C80000|0 |9 |0 |
+ROW |74607 |1909 |37879 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74608 |1911 |37941 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74609 |1912 |37947 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74610 |1912 |37945 |0 |1 |2774A4|0 |2 |0 |
+ROW |74611 |1912 |37944 |0 |2 |F63100|0 |2 |0 |
+ROW |74612 |1912 |37946 |0 |3 |A54F10|0 |2 |0 |
+ROW |74613 |1913 |37958 |0 |0 |969696|0 |9 |2 |
+ROW |74614 |1913 |37959 |0 |1 |C80000|0 |9 |0 |
+ROW |74615 |1914 |37933 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74616 |1916 |37995 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74617 |1917 |38001 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74618 |1917 |37999 |0 |1 |2774A4|0 |2 |0 |
+ROW |74619 |1917 |37998 |0 |2 |F63100|0 |2 |0 |
+ROW |74620 |1917 |38000 |0 |3 |A54F10|0 |2 |0 |
+ROW |74621 |1918 |38012 |0 |0 |969696|0 |9 |2 |
+ROW |74622 |1918 |38013 |0 |1 |C80000|0 |9 |0 |
+ROW |74623 |1919 |37987 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74624 |1921 |38049 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74625 |1922 |38055 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74626 |1922 |38053 |0 |1 |2774A4|0 |2 |0 |
+ROW |74627 |1922 |38052 |0 |2 |F63100|0 |2 |0 |
+ROW |74628 |1922 |38054 |0 |3 |A54F10|0 |2 |0 |
+ROW |74629 |1923 |38066 |0 |0 |969696|0 |9 |2 |
+ROW |74630 |1923 |38067 |0 |1 |C80000|0 |9 |0 |
+ROW |74631 |1924 |38041 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74632 |1926 |38103 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74633 |1927 |38109 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74634 |1927 |38107 |0 |1 |2774A4|0 |2 |0 |
+ROW |74635 |1927 |38106 |0 |2 |F63100|0 |2 |0 |
+ROW |74636 |1927 |38108 |0 |3 |A54F10|0 |2 |0 |
+ROW |74637 |1928 |38120 |0 |0 |969696|0 |9 |2 |
+ROW |74638 |1928 |38121 |0 |1 |C80000|0 |9 |0 |
+ROW |74639 |1929 |38095 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74640 |1931 |38157 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74641 |1932 |38163 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74642 |1932 |38161 |0 |1 |2774A4|0 |2 |0 |
+ROW |74643 |1932 |38160 |0 |2 |F63100|0 |2 |0 |
+ROW |74644 |1932 |38162 |0 |3 |A54F10|0 |2 |0 |
+ROW |74645 |1933 |38174 |0 |0 |969696|0 |9 |2 |
+ROW |74646 |1933 |38175 |0 |1 |C80000|0 |9 |0 |
+ROW |74647 |1934 |38149 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74648 |1936 |38211 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74649 |1937 |38217 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74650 |1937 |38215 |0 |1 |2774A4|0 |2 |0 |
+ROW |74651 |1937 |38214 |0 |2 |F63100|0 |2 |0 |
+ROW |74652 |1937 |38216 |0 |3 |A54F10|0 |2 |0 |
+ROW |74653 |1938 |38228 |0 |0 |969696|0 |9 |2 |
+ROW |74654 |1938 |38229 |0 |1 |C80000|0 |9 |0 |
+ROW |74655 |1939 |38203 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74656 |1941 |38265 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74657 |1942 |38271 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74658 |1942 |38269 |0 |1 |2774A4|0 |2 |0 |
+ROW |74659 |1942 |38268 |0 |2 |F63100|0 |2 |0 |
+ROW |74660 |1942 |38270 |0 |3 |A54F10|0 |2 |0 |
+ROW |74661 |1943 |38282 |0 |0 |969696|0 |9 |2 |
+ROW |74662 |1943 |38283 |0 |1 |C80000|0 |9 |0 |
+ROW |74663 |1944 |38257 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74664 |1946 |38319 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74665 |1947 |38325 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74666 |1947 |38323 |0 |1 |2774A4|0 |2 |0 |
+ROW |74667 |1947 |38322 |0 |2 |F63100|0 |2 |0 |
+ROW |74668 |1947 |38324 |0 |3 |A54F10|0 |2 |0 |
+ROW |74669 |1948 |38336 |0 |0 |969696|0 |9 |2 |
+ROW |74670 |1948 |38337 |0 |1 |C80000|0 |9 |0 |
+ROW |74671 |1949 |38311 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74672 |1951 |38373 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74673 |1952 |38379 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74674 |1952 |38377 |0 |1 |2774A4|0 |2 |0 |
+ROW |74675 |1952 |38376 |0 |2 |F63100|0 |2 |0 |
+ROW |74676 |1952 |38378 |0 |3 |A54F10|0 |2 |0 |
+ROW |74677 |1953 |38390 |0 |0 |969696|0 |9 |2 |
+ROW |74678 |1953 |38391 |0 |1 |C80000|0 |9 |0 |
+ROW |74679 |1954 |38365 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74680 |1956 |38427 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74681 |1957 |38433 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74682 |1957 |38431 |0 |1 |2774A4|0 |2 |0 |
+ROW |74683 |1957 |38430 |0 |2 |F63100|0 |2 |0 |
+ROW |74684 |1957 |38432 |0 |3 |A54F10|0 |2 |0 |
+ROW |74685 |1958 |38444 |0 |0 |969696|0 |9 |2 |
+ROW |74686 |1958 |38445 |0 |1 |C80000|0 |9 |0 |
+ROW |74687 |1959 |38419 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74688 |1961 |38481 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74689 |1962 |38487 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74690 |1962 |38485 |0 |1 |2774A4|0 |2 |0 |
+ROW |74691 |1962 |38484 |0 |2 |F63100|0 |2 |0 |
+ROW |74692 |1962 |38486 |0 |3 |A54F10|0 |2 |0 |
+ROW |74693 |1963 |38498 |0 |0 |969696|0 |9 |2 |
+ROW |74694 |1963 |38499 |0 |1 |C80000|0 |9 |0 |
+ROW |74695 |1964 |38473 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74696 |1966 |38535 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74697 |1967 |38541 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74698 |1967 |38539 |0 |1 |2774A4|0 |2 |0 |
+ROW |74699 |1967 |38538 |0 |2 |F63100|0 |2 |0 |
+ROW |74700 |1967 |38540 |0 |3 |A54F10|0 |2 |0 |
+ROW |74701 |1968 |38552 |0 |0 |969696|0 |9 |2 |
+ROW |74702 |1968 |38553 |0 |1 |C80000|0 |9 |0 |
+ROW |74703 |1969 |38527 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74704 |1971 |38589 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74705 |1972 |38595 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74706 |1972 |38593 |0 |1 |2774A4|0 |2 |0 |
+ROW |74707 |1972 |38592 |0 |2 |F63100|0 |2 |0 |
+ROW |74708 |1972 |38594 |0 |3 |A54F10|0 |2 |0 |
+ROW |74709 |1973 |38606 |0 |0 |969696|0 |9 |2 |
+ROW |74710 |1973 |38607 |0 |1 |C80000|0 |9 |0 |
+ROW |74711 |1974 |38581 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74712 |1976 |38643 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74713 |1977 |38649 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74714 |1977 |38647 |0 |1 |2774A4|0 |2 |0 |
+ROW |74715 |1977 |38646 |0 |2 |F63100|0 |2 |0 |
+ROW |74716 |1977 |38648 |0 |3 |A54F10|0 |2 |0 |
+ROW |74717 |1978 |38660 |0 |0 |969696|0 |9 |2 |
+ROW |74718 |1978 |38661 |0 |1 |C80000|0 |9 |0 |
+ROW |74719 |1979 |38635 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74720 |1981 |38697 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74721 |1982 |38703 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74722 |1982 |38701 |0 |1 |2774A4|0 |2 |0 |
+ROW |74723 |1982 |38700 |0 |2 |F63100|0 |2 |0 |
+ROW |74724 |1982 |38702 |0 |3 |A54F10|0 |2 |0 |
+ROW |74725 |1983 |38714 |0 |0 |969696|0 |9 |2 |
+ROW |74726 |1983 |38715 |0 |1 |C80000|0 |9 |0 |
+ROW |74727 |1984 |38689 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74728 |1986 |38751 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74729 |1987 |38757 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74730 |1987 |38755 |0 |1 |2774A4|0 |2 |0 |
+ROW |74731 |1987 |38754 |0 |2 |F63100|0 |2 |0 |
+ROW |74732 |1987 |38756 |0 |3 |A54F10|0 |2 |0 |
+ROW |74733 |1988 |38768 |0 |0 |969696|0 |9 |2 |
+ROW |74734 |1988 |38769 |0 |1 |C80000|0 |9 |0 |
+ROW |74735 |1989 |38743 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74736 |1991 |38805 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74737 |1992 |38811 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74738 |1992 |38809 |0 |1 |2774A4|0 |2 |0 |
+ROW |74739 |1992 |38808 |0 |2 |F63100|0 |2 |0 |
+ROW |74740 |1992 |38810 |0 |3 |A54F10|0 |2 |0 |
+ROW |74741 |1993 |38822 |0 |0 |969696|0 |9 |2 |
+ROW |74742 |1993 |38823 |0 |1 |C80000|0 |9 |0 |
+ROW |74743 |1994 |38797 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74744 |1996 |38859 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74745 |1997 |38865 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74746 |1997 |38863 |0 |1 |2774A4|0 |2 |0 |
+ROW |74747 |1997 |38862 |0 |2 |F63100|0 |2 |0 |
+ROW |74748 |1997 |38864 |0 |3 |A54F10|0 |2 |0 |
+ROW |74749 |1998 |38876 |0 |0 |969696|0 |9 |2 |
+ROW |74750 |1998 |38877 |0 |1 |C80000|0 |9 |0 |
+ROW |74751 |1999 |38851 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74752 |2001 |38913 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74753 |2002 |38919 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74754 |2002 |38917 |0 |1 |2774A4|0 |2 |0 |
+ROW |74755 |2002 |38916 |0 |2 |F63100|0 |2 |0 |
+ROW |74756 |2002 |38918 |0 |3 |A54F10|0 |2 |0 |
+ROW |74757 |2003 |38930 |0 |0 |969696|0 |9 |2 |
+ROW |74758 |2003 |38931 |0 |1 |C80000|0 |9 |0 |
+ROW |74759 |2004 |38905 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74760 |2006 |38967 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74761 |2007 |38973 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74762 |2007 |38971 |0 |1 |2774A4|0 |2 |0 |
+ROW |74763 |2007 |38970 |0 |2 |F63100|0 |2 |0 |
+ROW |74764 |2007 |38972 |0 |3 |A54F10|0 |2 |0 |
+ROW |74765 |2008 |38984 |0 |0 |969696|0 |9 |2 |
+ROW |74766 |2008 |38985 |0 |1 |C80000|0 |9 |0 |
+ROW |74767 |2009 |38959 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74768 |2011 |39021 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74769 |2012 |39027 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74770 |2012 |39025 |0 |1 |2774A4|0 |2 |0 |
+ROW |74771 |2012 |39024 |0 |2 |F63100|0 |2 |0 |
+ROW |74772 |2012 |39026 |0 |3 |A54F10|0 |2 |0 |
+ROW |74773 |2013 |39038 |0 |0 |969696|0 |9 |2 |
+ROW |74774 |2013 |39039 |0 |1 |C80000|0 |9 |0 |
+ROW |74775 |2014 |39013 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74776 |2016 |39075 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74777 |2017 |39081 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74778 |2017 |39079 |0 |1 |2774A4|0 |2 |0 |
+ROW |74779 |2017 |39078 |0 |2 |F63100|0 |2 |0 |
+ROW |74780 |2017 |39080 |0 |3 |A54F10|0 |2 |0 |
+ROW |74781 |2018 |39092 |0 |0 |969696|0 |9 |2 |
+ROW |74782 |2018 |39093 |0 |1 |C80000|0 |9 |0 |
+ROW |74783 |2019 |39067 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74784 |2021 |39129 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74785 |2022 |39135 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74786 |2022 |39133 |0 |1 |2774A4|0 |2 |0 |
+ROW |74787 |2022 |39132 |0 |2 |F63100|0 |2 |0 |
+ROW |74788 |2022 |39134 |0 |3 |A54F10|0 |2 |0 |
+ROW |74789 |2023 |39146 |0 |0 |969696|0 |9 |2 |
+ROW |74790 |2023 |39147 |0 |1 |C80000|0 |9 |0 |
+ROW |74791 |2024 |39121 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74792 |2026 |39183 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74793 |2027 |39189 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74794 |2027 |39187 |0 |1 |2774A4|0 |2 |0 |
+ROW |74795 |2027 |39186 |0 |2 |F63100|0 |2 |0 |
+ROW |74796 |2027 |39188 |0 |3 |A54F10|0 |2 |0 |
+ROW |74797 |2028 |39200 |0 |0 |969696|0 |9 |2 |
+ROW |74798 |2028 |39201 |0 |1 |C80000|0 |9 |0 |
+ROW |74799 |2029 |39175 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74800 |2031 |39237 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74801 |2032 |39243 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74802 |2032 |39241 |0 |1 |2774A4|0 |2 |0 |
+ROW |74803 |2032 |39240 |0 |2 |F63100|0 |2 |0 |
+ROW |74804 |2032 |39242 |0 |3 |A54F10|0 |2 |0 |
+ROW |74805 |2033 |39254 |0 |0 |969696|0 |9 |2 |
+ROW |74806 |2033 |39255 |0 |1 |C80000|0 |9 |0 |
+ROW |74807 |2034 |39229 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74808 |2036 |39291 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74809 |2037 |39297 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74810 |2037 |39295 |0 |1 |2774A4|0 |2 |0 |
+ROW |74811 |2037 |39294 |0 |2 |F63100|0 |2 |0 |
+ROW |74812 |2037 |39296 |0 |3 |A54F10|0 |2 |0 |
+ROW |74813 |2038 |39308 |0 |0 |969696|0 |9 |2 |
+ROW |74814 |2038 |39309 |0 |1 |C80000|0 |9 |0 |
+ROW |74815 |2039 |39283 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74816 |2041 |39345 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74817 |2042 |39351 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74818 |2042 |39349 |0 |1 |2774A4|0 |2 |0 |
+ROW |74819 |2042 |39348 |0 |2 |F63100|0 |2 |0 |
+ROW |74820 |2042 |39350 |0 |3 |A54F10|0 |2 |0 |
+ROW |74821 |2043 |39362 |0 |0 |969696|0 |9 |2 |
+ROW |74822 |2043 |39363 |0 |1 |C80000|0 |9 |0 |
+ROW |74823 |2044 |39337 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74824 |2046 |39399 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74825 |2047 |39405 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74826 |2047 |39403 |0 |1 |2774A4|0 |2 |0 |
+ROW |74827 |2047 |39402 |0 |2 |F63100|0 |2 |0 |
+ROW |74828 |2047 |39404 |0 |3 |A54F10|0 |2 |0 |
+ROW |74829 |2048 |39416 |0 |0 |969696|0 |9 |2 |
+ROW |74830 |2048 |39417 |0 |1 |C80000|0 |9 |0 |
+ROW |74831 |2049 |39391 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74832 |2051 |39453 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74833 |2052 |39459 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74834 |2052 |39457 |0 |1 |2774A4|0 |2 |0 |
+ROW |74835 |2052 |39456 |0 |2 |F63100|0 |2 |0 |
+ROW |74836 |2052 |39458 |0 |3 |A54F10|0 |2 |0 |
+ROW |74837 |2053 |39470 |0 |0 |969696|0 |9 |2 |
+ROW |74838 |2053 |39471 |0 |1 |C80000|0 |9 |0 |
+ROW |74839 |2054 |39445 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74840 |2056 |39507 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74841 |2057 |39513 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74842 |2057 |39511 |0 |1 |2774A4|0 |2 |0 |
+ROW |74843 |2057 |39510 |0 |2 |F63100|0 |2 |0 |
+ROW |74844 |2057 |39512 |0 |3 |A54F10|0 |2 |0 |
+ROW |74845 |2058 |39524 |0 |0 |969696|0 |9 |2 |
+ROW |74846 |2058 |39525 |0 |1 |C80000|0 |9 |0 |
+ROW |74847 |2059 |39499 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74848 |2061 |39561 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74849 |2062 |39567 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74850 |2062 |39565 |0 |1 |2774A4|0 |2 |0 |
+ROW |74851 |2062 |39564 |0 |2 |F63100|0 |2 |0 |
+ROW |74852 |2062 |39566 |0 |3 |A54F10|0 |2 |0 |
+ROW |74853 |2063 |39578 |0 |0 |969696|0 |9 |2 |
+ROW |74854 |2063 |39579 |0 |1 |C80000|0 |9 |0 |
+ROW |74855 |2064 |39553 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74856 |2066 |39615 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74857 |2067 |39621 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74858 |2067 |39619 |0 |1 |2774A4|0 |2 |0 |
+ROW |74859 |2067 |39618 |0 |2 |F63100|0 |2 |0 |
+ROW |74860 |2067 |39620 |0 |3 |A54F10|0 |2 |0 |
+ROW |74861 |2068 |39632 |0 |0 |969696|0 |9 |2 |
+ROW |74862 |2068 |39633 |0 |1 |C80000|0 |9 |0 |
+ROW |74863 |2069 |39607 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74864 |2071 |39669 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74865 |2072 |39675 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74866 |2072 |39673 |0 |1 |2774A4|0 |2 |0 |
+ROW |74867 |2072 |39672 |0 |2 |F63100|0 |2 |0 |
+ROW |74868 |2072 |39674 |0 |3 |A54F10|0 |2 |0 |
+ROW |74869 |2073 |39686 |0 |0 |969696|0 |9 |2 |
+ROW |74870 |2073 |39687 |0 |1 |C80000|0 |9 |0 |
+ROW |74871 |2074 |39661 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74872 |2076 |39723 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74873 |2077 |39729 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74874 |2077 |39727 |0 |1 |2774A4|0 |2 |0 |
+ROW |74875 |2077 |39726 |0 |2 |F63100|0 |2 |0 |
+ROW |74876 |2077 |39728 |0 |3 |A54F10|0 |2 |0 |
+ROW |74877 |2078 |39740 |0 |0 |969696|0 |9 |2 |
+ROW |74878 |2078 |39741 |0 |1 |C80000|0 |9 |0 |
+ROW |74879 |2079 |39715 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74880 |724 |27904 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74881 |1396 |32439 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74882 |1396 |32437 |0 |1 |2774A4|0 |2 |0 |
+ROW |74883 |1396 |32436 |0 |2 |F63100|0 |2 |0 |
+ROW |74884 |1396 |32438 |0 |3 |A54F10|0 |2 |0 |
+ROW |74885 |1052 |27907 |0 |0 |969696|0 |9 |2 |
+ROW |74886 |1052 |27908 |0 |1 |C80000|0 |9 |0 |
+ROW |74887 |1053 |30120 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74888 |1457 |33206 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74889 |1457 |33193 |5 |1 |2774A4|0 |2 |0 |
+ROW |74890 |1458 |33195 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74891 |1458 |33203 |5 |1 |2774A4|0 |2 |0 |
+ROW |74892 |1458 |33202 |5 |2 |F63100|0 |2 |0 |
+ROW |74893 |1459 |33200 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74894 |1459 |33194 |5 |1 |2774A4|0 |2 |0 |
+ROW |74895 |1460 |33187 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74896 |1460 |33186 |5 |1 |2774A4|0 |2 |0 |
+ROW |74897 |1460 |33204 |5 |2 |F63100|0 |2 |0 |
+ROW |74898 |1461 |33226 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74899 |1461 |33215 |5 |1 |2774A4|0 |2 |0 |
+ROW |74900 |1462 |33207 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74901 |1463 |33223 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74902 |1463 |33218 |5 |1 |2774A4|0 |2 |0 |
+ROW |74903 |1464 |33210 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74904 |1464 |33209 |5 |1 |2774A4|0 |2 |0 |
+ROW |74905 |1464 |33224 |5 |2 |F63100|0 |2 |0 |
+ROW |74906 |1465 |33249 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74907 |1465 |33236 |5 |1 |2774A4|0 |2 |0 |
+ROW |74908 |1466 |33238 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74909 |1466 |33246 |5 |1 |2774A4|0 |2 |0 |
+ROW |74910 |1466 |33245 |5 |2 |F63100|0 |2 |0 |
+ROW |74911 |1467 |33243 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74912 |1467 |33237 |5 |1 |2774A4|0 |2 |0 |
+ROW |74913 |1468 |33230 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74914 |1468 |33229 |5 |1 |2774A4|0 |2 |0 |
+ROW |74915 |1468 |33247 |5 |2 |F63100|0 |2 |0 |
+ROW |74916 |1469 |33258 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74917 |1470 |33251 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74918 |1471 |33256 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74919 |1472 |33277 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74920 |1473 |33274 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74921 |1473 |33273 |5 |1 |2774A4|0 |2 |0 |
+ROW |74922 |1473 |33272 |5 |2 |F63100|0 |2 |0 |
+ROW |74923 |1474 |33270 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74924 |1475 |33269 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74925 |1476 |33261 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74926 |1476 |33275 |5 |1 |2774A4|0 |2 |0 |
+ROW |74927 |1477 |33296 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74928 |1478 |33293 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74929 |1478 |33292 |5 |1 |2774A4|0 |2 |0 |
+ROW |74930 |1478 |33291 |5 |2 |F63100|0 |2 |0 |
+ROW |74931 |1479 |33289 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74932 |1480 |33288 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74933 |1481 |33280 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74934 |1481 |33294 |5 |1 |2774A4|0 |2 |0 |
+ROW |74935 |1482 |33312 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74936 |1483 |33313 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74937 |1484 |33314 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74938 |1485 |33319 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74939 |1486 |33320 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74940 |1487 |33304 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74941 |1487 |33305 |5 |1 |2774A4|0 |2 |0 |
+ROW |74942 |727 |27936 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74943 |1054 |27935 |2 |0 |1A7C11|0 |2 |0 |
+ROW |74944 |1054 |30122 |5 |1 |2774A4|0 |2 |0 |
+ROW |74945 |1055 |30123 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74946 |730 |27975 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74947 |1056 |30126 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74948 |733 |28003 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74949 |1057 |30131 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74950 |736 |28031 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74951 |1058 |30136 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74952 |2080 |39768 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74953 |2080 |39769 |0 |1 |2774A4|0 |2 |0 |
+ROW |74954 |2080 |39770 |0 |2 |F63100|0 |2 |0 |
+ROW |74955 |2080 |39771 |0 |3 |A54F10|0 |2 |0 |
+ROW |74956 |2081 |39772 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74957 |2081 |39773 |0 |1 |2774A4|0 |2 |0 |
+ROW |74958 |2082 |39774 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74959 |2082 |39775 |0 |1 |2774A4|0 |2 |0 |
+ROW |74960 |2082 |39780 |0 |2 |F63100|0 |2 |0 |
+ROW |74961 |2083 |39777 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74962 |2083 |39778 |0 |1 |2774A4|0 |2 |0 |
+ROW |74963 |2083 |39781 |0 |2 |F63100|0 |2 |0 |
+ROW |74964 |2084 |39792 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74965 |2084 |39790 |0 |1 |2774A4|0 |2 |0 |
+ROW |74966 |2084 |39793 |0 |2 |F63100|0 |2 |0 |
+ROW |74967 |2084 |39795 |0 |3 |A54F10|0 |2 |0 |
+ROW |74968 |2084 |39796 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |74969 |1701 |35553 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74970 |1701 |35556 |0 |1 |2774A4|0 |2 |0 |
+ROW |74971 |1702 |35558 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74972 |1702 |35561 |0 |1 |2774A4|0 |2 |0 |
+ROW |74973 |1703 |35562 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74974 |1704 |35563 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74975 |1705 |35592 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74976 |1705 |35584 |0 |1 |2774A4|0 |2 |0 |
+ROW |74977 |1705 |35594 |0 |2 |F63100|0 |2 |0 |
+ROW |74978 |1705 |35586 |0 |3 |A54F10|0 |2 |0 |
+ROW |74979 |1705 |35595 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |74980 |1705 |35587 |0 |5 |6C59DC|0 |2 |0 |
+ROW |74981 |1706 |35593 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74982 |1706 |35585 |0 |1 |2774A4|0 |2 |0 |
+ROW |74983 |1707 |35583 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74984 |1707 |35591 |0 |1 |2774A4|0 |2 |0 |
+ROW |74985 |1708 |35598 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74986 |1709 |35606 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74987 |1710 |35607 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74988 |1711 |35566 |5 |0 |1A7C11|0 |2 |0 |
+ROW |74989 |1712 |35622 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74990 |1713 |35634 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74991 |1713 |35626 |0 |1 |2774A4|0 |2 |0 |
+ROW |74992 |1713 |35636 |0 |2 |F63100|0 |2 |0 |
+ROW |74993 |1713 |35628 |0 |3 |A54F10|0 |2 |0 |
+ROW |74994 |1713 |35637 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |74995 |1713 |35629 |0 |5 |6C59DC|0 |2 |0 |
+ROW |74996 |1714 |35635 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74997 |1714 |35627 |0 |1 |2774A4|0 |2 |0 |
+ROW |74998 |1715 |35625 |0 |0 |1A7C11|0 |2 |0 |
+ROW |74999 |1715 |35633 |0 |1 |2774A4|0 |2 |0 |
+ROW |75000 |1716 |35640 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75001 |1717 |35641 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75002 |1718 |35610 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75003 |1719 |35658 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75004 |1720 |35659 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75005 |1721 |35660 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75006 |1722 |35661 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75007 |1723 |35669 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75008 |1723 |35679 |0 |1 |2774A4|0 |2 |0 |
+ROW |75009 |1723 |35670 |0 |2 |F63100|0 |2 |0 |
+ROW |75010 |1723 |35665 |0 |3 |A54F10|0 |2 |0 |
+ROW |75011 |1723 |35672 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |75012 |1723 |35666 |0 |5 |6C59DC|0 |2 |0 |
+ROW |75013 |1724 |35663 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75014 |1724 |35664 |0 |1 |2774A4|0 |2 |0 |
+ROW |75015 |1725 |35686 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75016 |1725 |35693 |0 |1 |2774A4|0 |2 |0 |
+ROW |75017 |1725 |35684 |0 |2 |F63100|0 |2 |0 |
+ROW |75018 |1725 |35691 |0 |3 |A54F10|0 |2 |0 |
+ROW |75019 |1725 |35683 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |75020 |1725 |35690 |0 |5 |6C59DC|0 |2 |0 |
+ROW |75021 |1726 |35685 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75022 |1726 |35692 |0 |1 |2774A4|0 |2 |0 |
+ROW |75023 |1727 |35694 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75024 |1727 |35687 |0 |1 |2774A4|0 |2 |0 |
+ROW |75025 |1728 |35707 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75026 |1729 |35708 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75027 |1730 |35725 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75028 |1731 |35726 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75029 |1732 |35727 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75030 |1733 |35728 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75031 |1734 |35736 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75032 |1734 |35746 |0 |1 |2774A4|0 |2 |0 |
+ROW |75033 |1734 |35737 |0 |2 |F63100|0 |2 |0 |
+ROW |75034 |1734 |35732 |0 |3 |A54F10|0 |2 |0 |
+ROW |75035 |1734 |35739 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |75036 |1734 |35733 |0 |5 |6C59DC|0 |2 |0 |
+ROW |75037 |1735 |35730 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75038 |1735 |35731 |0 |1 |2774A4|0 |2 |0 |
+ROW |75039 |1736 |35753 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75040 |1736 |35760 |0 |1 |2774A4|0 |2 |0 |
+ROW |75041 |1736 |35751 |0 |2 |F63100|0 |2 |0 |
+ROW |75042 |1736 |35758 |0 |3 |A54F10|0 |2 |0 |
+ROW |75043 |1736 |35750 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |75044 |1736 |35757 |0 |5 |6C59DC|0 |2 |0 |
+ROW |75045 |1737 |35752 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75046 |1737 |35759 |0 |1 |2774A4|0 |2 |0 |
+ROW |75047 |1738 |35761 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75048 |1738 |35754 |0 |1 |2774A4|0 |2 |0 |
+ROW |75049 |1739 |35774 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75050 |1740 |35775 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75051 |1741 |35791 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75052 |1742 |35799 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75053 |1742 |35802 |0 |1 |2774A4|0 |2 |0 |
+ROW |75054 |1743 |35804 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75055 |1743 |35807 |0 |1 |2774A4|0 |2 |0 |
+ROW |75056 |1744 |35808 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75057 |1745 |35809 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75058 |1746 |35834 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75059 |1746 |35826 |0 |1 |2774A4|0 |2 |0 |
+ROW |75060 |1746 |35836 |0 |2 |F63100|0 |2 |0 |
+ROW |75061 |1746 |35828 |0 |3 |A54F10|0 |2 |0 |
+ROW |75062 |1746 |35837 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |75063 |1746 |35829 |0 |5 |6C59DC|0 |2 |0 |
+ROW |75064 |1747 |35835 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75065 |1747 |35827 |0 |1 |2774A4|0 |2 |0 |
+ROW |75066 |1748 |35825 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75067 |1748 |35833 |0 |1 |2774A4|0 |2 |0 |
+ROW |75068 |1749 |35840 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75069 |1750 |35812 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75070 |1751 |35876 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75071 |1751 |35868 |0 |1 |2774A4|0 |2 |0 |
+ROW |75072 |1751 |35878 |0 |2 |F63100|0 |2 |0 |
+ROW |75073 |1751 |35870 |0 |3 |A54F10|0 |2 |0 |
+ROW |75074 |1751 |35879 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |75075 |1751 |35871 |0 |5 |6C59DC|0 |2 |0 |
+ROW |75076 |1752 |35877 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75077 |1752 |35869 |0 |1 |2774A4|0 |2 |0 |
+ROW |75078 |1753 |35867 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75079 |1753 |35875 |0 |1 |2774A4|0 |2 |0 |
+ROW |75080 |1754 |35882 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75081 |1755 |35890 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75082 |1756 |35891 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75083 |1757 |35850 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75084 |1758 |35920 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75085 |1758 |35912 |0 |1 |2774A4|0 |2 |0 |
+ROW |75086 |1758 |35922 |0 |2 |F63100|0 |2 |0 |
+ROW |75087 |1758 |35914 |0 |3 |A54F10|0 |2 |0 |
+ROW |75088 |1758 |35923 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |75089 |1758 |35915 |0 |5 |6C59DC|0 |2 |0 |
+ROW |75090 |1759 |35921 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75091 |1759 |35913 |0 |1 |2774A4|0 |2 |0 |
+ROW |75092 |1760 |35911 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75093 |1760 |35919 |0 |1 |2774A4|0 |2 |0 |
+ROW |75094 |1761 |35926 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75095 |1762 |35934 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75096 |1763 |35935 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75097 |1764 |35894 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75098 |1765 |35952 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75099 |1766 |35964 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75100 |1766 |35956 |0 |1 |2774A4|0 |2 |0 |
+ROW |75101 |1766 |35966 |0 |2 |F63100|0 |2 |0 |
+ROW |75102 |1766 |35958 |0 |3 |A54F10|0 |2 |0 |
+ROW |75103 |1766 |35967 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |75104 |1766 |35959 |0 |5 |6C59DC|0 |2 |0 |
+ROW |75105 |1767 |35965 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75106 |1767 |35957 |0 |1 |2774A4|0 |2 |0 |
+ROW |75107 |1768 |35955 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75108 |1768 |35963 |0 |1 |2774A4|0 |2 |0 |
+ROW |75109 |1769 |35970 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75110 |1770 |35978 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75111 |1771 |35979 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75112 |1772 |35938 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75113 |1773 |35996 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75114 |1774 |36008 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75115 |1774 |36000 |0 |1 |2774A4|0 |2 |0 |
+ROW |75116 |1774 |36010 |0 |2 |F63100|0 |2 |0 |
+ROW |75117 |1774 |36002 |0 |3 |A54F10|0 |2 |0 |
+ROW |75118 |1774 |36011 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |75119 |1774 |36003 |0 |5 |6C59DC|0 |2 |0 |
+ROW |75120 |1775 |36009 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75121 |1775 |36001 |0 |1 |2774A4|0 |2 |0 |
+ROW |75122 |1776 |35999 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75123 |1776 |36007 |0 |1 |2774A4|0 |2 |0 |
+ROW |75124 |1777 |36014 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75125 |1778 |36022 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75126 |1779 |36023 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75127 |1780 |35982 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75128 |1781 |36041 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75129 |1782 |36053 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75130 |1782 |36045 |0 |1 |2774A4|0 |2 |0 |
+ROW |75131 |1782 |36055 |0 |2 |F63100|0 |2 |0 |
+ROW |75132 |1782 |36047 |0 |3 |A54F10|0 |2 |0 |
+ROW |75133 |1782 |36056 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |75134 |1782 |36048 |0 |5 |6C59DC|0 |2 |0 |
+ROW |75135 |1783 |36054 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75136 |1783 |36046 |0 |1 |2774A4|0 |2 |0 |
+ROW |75137 |1784 |36044 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75138 |1784 |36052 |0 |1 |2774A4|0 |2 |0 |
+ROW |75139 |1785 |36059 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75140 |1786 |36067 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75141 |1787 |36068 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75142 |1788 |36026 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75143 |1789 |36086 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75144 |1790 |36098 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75145 |1790 |36090 |0 |1 |2774A4|0 |2 |0 |
+ROW |75146 |1790 |36100 |0 |2 |F63100|0 |2 |0 |
+ROW |75147 |1790 |36092 |0 |3 |A54F10|0 |2 |0 |
+ROW |75148 |1790 |36101 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |75149 |1790 |36093 |0 |5 |6C59DC|0 |2 |0 |
+ROW |75150 |1791 |36099 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75151 |1791 |36091 |0 |1 |2774A4|0 |2 |0 |
+ROW |75152 |1792 |36089 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75153 |1792 |36097 |0 |1 |2774A4|0 |2 |0 |
+ROW |75154 |1793 |36104 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75155 |1794 |36112 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75156 |1795 |36113 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75157 |1796 |36071 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75158 |1797 |36131 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75159 |1798 |36144 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75160 |1798 |36136 |0 |1 |2774A4|0 |2 |0 |
+ROW |75161 |1798 |36146 |0 |2 |F63100|0 |2 |0 |
+ROW |75162 |1798 |36138 |0 |3 |A54F10|0 |2 |0 |
+ROW |75163 |1798 |36147 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |75164 |1798 |36139 |0 |5 |6C59DC|0 |2 |0 |
+ROW |75165 |1799 |36145 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75166 |1799 |36137 |0 |1 |2774A4|0 |2 |0 |
+ROW |75167 |1800 |36135 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75168 |1800 |36143 |0 |1 |2774A4|0 |2 |0 |
+ROW |75169 |1801 |36150 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75170 |1802 |36158 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75171 |1803 |36159 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75172 |1804 |36116 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75173 |1223 |31370 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75174 |1223 |31371 |5 |1 |2774A4|0 |2 |0 |
+ROW |75175 |1226 |31380 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75176 |1226 |31383 |5 |1 |2774A4|0 |2 |0 |
+ROW |75177 |1229 |31379 |0 |0 |1A7C11|1 |2 |0 |
+ROW |75178 |1229 |31382 |5 |1 |2774A4|0 |2 |0 |
+ROW |75179 |887 |29211 |0 |0 |969696|0 |9 |2 |
+ROW |75180 |887 |29210 |0 |1 |C80000|0 |9 |0 |
+ROW |75181 |899 |29216 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75182 |899 |29217 |2 |1 |2774A4|0 |2 |0 |
+ROW |75183 |899 |29218 |0 |2 |F63100|1 |2 |0 |
+ROW |75184 |899 |29219 |0 |3 |A54F10|1 |2 |0 |
+ROW |75185 |899 |29220 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |75186 |899 |29221 |0 |5 |6C59DC|1 |2 |0 |
+ROW |75187 |911 |29089 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75188 |911 |29102 |0 |1 |2774A4|0 |2 |0 |
+ROW |75189 |908 |29098 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75190 |908 |29097 |0 |1 |2774A4|0 |2 |0 |
+ROW |75191 |908 |29095 |0 |2 |F63100|0 |2 |0 |
+ROW |75192 |908 |29088 |0 |3 |A54F10|0 |2 |0 |
+ROW |75193 |908 |29094 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |75194 |908 |29093 |0 |5 |6C59DC|0 |2 |0 |
+ROW |75195 |908 |29092 |0 |6 |AC8C14|0 |2 |0 |
+ROW |75196 |908 |29091 |0 |7 |611F27|0 |2 |0 |
+ROW |75197 |908 |29090 |0 |8 |F230E0|0 |2 |0 |
+ROW |75198 |905 |29198 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75199 |917 |29104 |2 |0 |1A7C11|0 |2 |0 |
+ROW |75200 |917 |29105 |5 |1 |2774A4|0 |2 |0 |
+ROW |75201 |914 |31364 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75202 |923 |29118 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75203 |923 |29119 |0 |1 |2774A4|0 |2 |0 |
+ROW |75204 |923 |29117 |0 |2 |F63100|0 |2 |0 |
+ROW |75205 |920 |29107 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75206 |920 |29106 |0 |1 |2774A4|0 |2 |0 |
+ROW |75207 |902 |29096 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75208 |902 |29101 |0 |1 |2774A4|0 |2 |0 |
+ROW |75209 |902 |29100 |0 |2 |F63100|0 |2 |0 |
+ROW |75210 |902 |29087 |0 |3 |A54F10|1 |2 |0 |
+ROW |75211 |1279 |31902 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75212 |1279 |31903 |5 |1 |2774A4|0 |2 |0 |
+ROW |75213 |1281 |31933 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75214 |1281 |31936 |5 |1 |2774A4|0 |2 |0 |
+ROW |75215 |1283 |31932 |0 |0 |1A7C11|1 |2 |0 |
+ROW |75216 |1283 |31935 |5 |1 |2774A4|0 |2 |0 |
+ROW |75217 |1285 |31907 |0 |0 |969696|0 |9 |2 |
+ROW |75218 |1285 |31908 |0 |1 |C80000|0 |9 |0 |
+ROW |75219 |1287 |31911 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75220 |1287 |31914 |2 |1 |2774A4|0 |2 |0 |
+ROW |75221 |1287 |31913 |0 |2 |F63100|1 |2 |0 |
+ROW |75222 |1287 |31910 |0 |3 |A54F10|1 |2 |0 |
+ROW |75223 |1287 |31912 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |75224 |1287 |31909 |0 |5 |6C59DC|1 |2 |0 |
+ROW |75225 |1289 |31831 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75226 |1289 |31820 |0 |1 |2774A4|0 |2 |0 |
+ROW |75227 |1291 |31822 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75228 |1291 |31835 |0 |1 |2774A4|0 |2 |0 |
+ROW |75229 |1291 |31825 |0 |2 |F63100|0 |2 |0 |
+ROW |75230 |1291 |31826 |0 |3 |A54F10|0 |2 |0 |
+ROW |75231 |1291 |31823 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |75232 |1291 |31827 |0 |5 |6C59DC|0 |2 |0 |
+ROW |75233 |1291 |31824 |0 |6 |AC8C14|0 |2 |0 |
+ROW |75234 |1291 |31828 |0 |7 |611F27|0 |2 |0 |
+ROW |75235 |1291 |31830 |0 |8 |F230E0|0 |2 |0 |
+ROW |75236 |1293 |31892 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75237 |1295 |31855 |2 |0 |1A7C11|0 |2 |0 |
+ROW |75238 |1295 |31853 |5 |1 |2774A4|0 |2 |0 |
+ROW |75239 |1297 |31893 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75240 |1299 |31838 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75241 |1299 |31839 |0 |1 |2774A4|0 |2 |0 |
+ROW |75242 |1299 |31837 |0 |2 |F63100|0 |2 |0 |
+ROW |75243 |1301 |31850 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75244 |1301 |31852 |0 |1 |2774A4|0 |2 |0 |
+ROW |75245 |1303 |31829 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75246 |1303 |31833 |0 |1 |2774A4|0 |2 |0 |
+ROW |75247 |1303 |31834 |0 |2 |F63100|0 |2 |0 |
+ROW |75248 |1303 |31832 |0 |3 |A54F10|1 |2 |0 |
+ROW |75249 |952 |29436 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75250 |952 |29437 |2 |1 |2774A4|0 |2 |0 |
+ROW |75251 |952 |29438 |0 |2 |F63100|1 |2 |0 |
+ROW |75252 |952 |29439 |0 |3 |A54F10|1 |2 |0 |
+ROW |75253 |952 |29441 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |75254 |952 |29440 |0 |5 |6C59DC|1 |2 |0 |
+ROW |75255 |955 |29434 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75256 |955 |29435 |5 |1 |2774A4|0 |2 |0 |
+ROW |75257 |954 |29448 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75258 |954 |29449 |5 |1 |2774A4|0 |2 |0 |
+ROW |75259 |956 |29452 |0 |0 |1A7C11|1 |2 |0 |
+ROW |75260 |956 |29453 |5 |1 |2774A4|0 |2 |0 |
+ROW |75261 |953 |29446 |0 |0 |969696|0 |9 |2 |
+ROW |75262 |953 |29432 |0 |1 |C80000|0 |9 |0 |
+ROW |75263 |960 |29405 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75264 |960 |29406 |0 |1 |2774A4|0 |2 |0 |
+ROW |75265 |959 |29426 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75266 |959 |29413 |0 |1 |2774A4|0 |2 |0 |
+ROW |75267 |959 |29411 |0 |2 |F63100|0 |2 |0 |
+ROW |75268 |959 |29410 |0 |3 |A54F10|0 |2 |0 |
+ROW |75269 |959 |29399 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |75270 |959 |29409 |0 |5 |6C59DC|0 |2 |0 |
+ROW |75271 |959 |29412 |0 |6 |AC8C14|0 |2 |0 |
+ROW |75272 |959 |29408 |0 |7 |611F27|0 |2 |0 |
+ROW |75273 |959 |29407 |0 |8 |F230E0|0 |2 |0 |
+ROW |75274 |958 |29427 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75275 |962 |29403 |2 |0 |1A7C11|0 |2 |0 |
+ROW |75276 |962 |29402 |5 |1 |2774A4|0 |2 |0 |
+ROW |75277 |961 |29396 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75278 |963 |29400 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75279 |963 |29401 |0 |1 |2774A4|0 |2 |0 |
+ROW |75280 |957 |29420 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75281 |957 |29419 |0 |1 |2774A4|0 |2 |0 |
+ROW |75282 |957 |29418 |0 |2 |F63100|0 |2 |0 |
+ROW |75283 |957 |29417 |0 |3 |A54F10|1 |2 |0 |
+ROW |75284 |866 |29014 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75285 |866 |29015 |5 |1 |2774A4|0 |2 |0 |
+ROW |75286 |868 |29018 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75287 |868 |29019 |0 |1 |2774A4|0 |2 |0 |
+ROW |75288 |868 |29022 |0 |2 |F63100|0 |2 |0 |
+ROW |75289 |868 |29023 |0 |3 |A54F10|0 |2 |0 |
+ROW |75290 |868 |29020 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |75291 |868 |29024 |0 |5 |6C59DC|0 |2 |0 |
+ROW |75292 |868 |29021 |0 |6 |AC8C14|0 |2 |0 |
+ROW |75293 |868 |29025 |0 |7 |611F27|0 |2 |0 |
+ROW |75294 |868 |29026 |0 |8 |F230E0|0 |2 |0 |
+ROW |75295 |870 |29048 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75296 |872 |29028 |0 |0 |969696|0 |9 |2 |
+ROW |75297 |872 |29027 |0 |1 |C80000|0 |9 |0 |
+ROW |75298 |882 |28992 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75299 |882 |28991 |0 |1 |2774A4|0 |2 |0 |
+ROW |75300 |876 |28982 |2 |0 |1A7C11|0 |2 |0 |
+ROW |75301 |876 |28983 |5 |1 |2774A4|0 |2 |0 |
+ROW |75302 |874 |28978 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75303 |878 |28985 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75304 |878 |28984 |0 |1 |2774A4|0 |2 |0 |
+ROW |75305 |880 |28987 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75306 |880 |28988 |0 |1 |2774A4|0 |2 |0 |
+ROW |75307 |880 |28989 |0 |2 |F63100|0 |2 |0 |
+ROW |75308 |880 |28990 |0 |3 |A54F10|1 |2 |0 |
+ROW |75309 |964 |29513 |0 |0 |969696|0 |9 |2 |
+ROW |75310 |964 |29512 |0 |1 |C80000|0 |9 |0 |
+ROW |75311 |1238 |31435 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75312 |1238 |31438 |2 |1 |2774A4|0 |2 |0 |
+ROW |75313 |1238 |31437 |0 |2 |F63100|1 |2 |0 |
+ROW |75314 |1238 |31434 |0 |3 |A54F10|1 |2 |0 |
+ROW |75315 |1238 |31436 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |75316 |1238 |31433 |0 |5 |6C59DC|1 |2 |0 |
+ROW |75317 |1488 |33321 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75318 |1488 |33324 |0 |1 |2774A4|0 |2 |0 |
+ROW |75319 |1490 |33322 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75320 |1490 |33323 |5 |1 |2774A4|0 |2 |0 |
+ROW |75321 |1240 |31441 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75322 |1240 |31442 |5 |1 |2774A4|0 |2 |0 |
+ROW |75323 |1242 |31440 |0 |0 |1A7C11|1 |2 |0 |
+ROW |75324 |1242 |31439 |5 |1 |2774A4|0 |2 |0 |
+ROW |75325 |974 |29456 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75326 |974 |29455 |0 |1 |2774A4|0 |2 |0 |
+ROW |75327 |976 |29458 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75328 |976 |29457 |0 |1 |2774A4|0 |2 |0 |
+ROW |75329 |972 |29454 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75330 |978 |29462 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75331 |980 |31421 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75332 |980 |29466 |0 |1 |2774A4|0 |2 |0 |
+ROW |75333 |1305 |32013 |0 |0 |969696|0 |9 |2 |
+ROW |75334 |1305 |32014 |0 |1 |C80000|0 |9 |0 |
+ROW |75335 |1307 |32017 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75336 |1307 |32020 |2 |1 |2774A4|0 |2 |0 |
+ROW |75337 |1307 |32019 |0 |2 |F63100|1 |2 |0 |
+ROW |75338 |1307 |32016 |0 |3 |A54F10|1 |2 |0 |
+ROW |75339 |1307 |32018 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |75340 |1307 |32015 |0 |5 |6C59DC|1 |2 |0 |
+ROW |75341 |1492 |33329 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75342 |1492 |33332 |0 |1 |2774A4|0 |2 |0 |
+ROW |75343 |1494 |33330 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75344 |1494 |33331 |5 |1 |2774A4|0 |2 |0 |
+ROW |75345 |1309 |32023 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75346 |1309 |32024 |5 |1 |2774A4|0 |2 |0 |
+ROW |75347 |1311 |32022 |0 |0 |1A7C11|1 |2 |0 |
+ROW |75348 |1311 |32021 |5 |1 |2774A4|0 |2 |0 |
+ROW |75349 |1313 |31952 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75350 |1313 |31949 |0 |1 |2774A4|0 |2 |0 |
+ROW |75351 |1315 |31951 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75352 |1315 |31950 |0 |1 |2774A4|0 |2 |0 |
+ROW |75353 |1317 |31954 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75354 |1319 |31973 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75355 |1321 |31969 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75356 |1321 |31970 |0 |1 |2774A4|0 |2 |0 |
+ROW |75357 |1583 |34451 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75358 |1584 |34465 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75359 |1584 |34463 |0 |1 |2774A4|0 |2 |0 |
+ROW |75360 |1585 |34466 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75361 |1585 |34462 |0 |1 |2774A4|0 |2 |0 |
+ROW |75362 |1586 |34499 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75363 |1587 |34513 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75364 |1587 |34511 |0 |1 |2774A4|0 |2 |0 |
+ROW |75365 |1588 |34514 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75366 |1588 |34510 |0 |1 |2774A4|0 |2 |0 |
+ROW |75367 |1589 |34547 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75368 |1590 |34561 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75369 |1590 |34559 |0 |1 |2774A4|0 |2 |0 |
+ROW |75370 |1591 |34562 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75371 |1591 |34558 |0 |1 |2774A4|0 |2 |0 |
+ROW |75372 |1592 |34595 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75373 |1593 |34609 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75374 |1593 |34607 |0 |1 |2774A4|0 |2 |0 |
+ROW |75375 |1594 |34610 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75376 |1594 |34606 |0 |1 |2774A4|0 |2 |0 |
+ROW |75377 |1595 |34643 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75378 |1596 |34657 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75379 |1596 |34655 |0 |1 |2774A4|0 |2 |0 |
+ROW |75380 |1597 |34658 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75381 |1597 |34654 |0 |1 |2774A4|0 |2 |0 |
+ROW |75382 |1619 |35016 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75383 |1620 |35030 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75384 |1620 |35028 |0 |1 |2774A4|0 |2 |0 |
+ROW |75385 |1621 |35031 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75386 |1621 |35027 |0 |1 |2774A4|0 |2 |0 |
+ROW |75387 |1601 |34739 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75388 |1602 |34753 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75389 |1602 |34751 |0 |1 |2774A4|0 |2 |0 |
+ROW |75390 |1603 |34754 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75391 |1603 |34750 |0 |1 |2774A4|0 |2 |0 |
+ROW |75392 |1604 |34787 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75393 |1569 |34192 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75394 |1569 |34180 |0 |1 |2774A4|0 |2 |0 |
+ROW |75395 |1570 |34194 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75396 |1570 |34190 |0 |1 |2774A4|0 |2 |0 |
+ROW |75397 |1605 |34793 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75398 |1606 |34807 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75399 |1606 |34805 |0 |1 |2774A4|0 |2 |0 |
+ROW |75400 |1607 |34808 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75401 |1607 |34804 |0 |1 |2774A4|0 |2 |0 |
+ROW |75402 |1608 |34841 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75403 |1609 |34855 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75404 |1609 |34853 |0 |1 |2774A4|0 |2 |0 |
+ROW |75405 |1610 |34856 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75406 |1610 |34852 |0 |1 |2774A4|0 |2 |0 |
+ROW |75407 |1611 |34889 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75408 |1612 |34903 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75409 |1612 |34901 |0 |1 |2774A4|0 |2 |0 |
+ROW |75410 |1613 |34904 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75411 |1613 |34900 |0 |1 |2774A4|0 |2 |0 |
+ROW |75412 |1518 |33705 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75413 |1519 |33724 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75414 |1519 |33722 |0 |1 |2774A4|0 |2 |0 |
+ROW |75415 |1519 |33726 |0 |2 |F63100|0 |2 |0 |
+ROW |75416 |1520 |33719 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75417 |1520 |33720 |0 |1 |2774A4|0 |2 |0 |
+ROW |75418 |1520 |33721 |0 |2 |F63100|0 |2 |0 |
+ROW |75419 |1521 |33725 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75420 |1521 |33723 |0 |1 |2774A4|0 |2 |0 |
+ROW |75421 |1521 |33727 |0 |2 |F63100|0 |2 |0 |
+ROW |75422 |1522 |33730 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75423 |1523 |33734 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75424 |1523 |33732 |0 |1 |2774A4|0 |2 |0 |
+ROW |75425 |1523 |33736 |0 |2 |F63100|0 |2 |0 |
+ROW |75426 |1524 |33735 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75427 |1524 |33733 |0 |1 |2774A4|0 |2 |0 |
+ROW |75428 |1524 |33737 |0 |2 |F63100|0 |2 |0 |
+ROW |75429 |1525 |33743 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75430 |1525 |33742 |0 |1 |2774A4|0 |2 |0 |
+ROW |75431 |1525 |33738 |0 |2 |F63100|0 |2 |0 |
+ROW |75432 |1526 |33692 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75433 |1526 |33693 |0 |1 |2774A4|0 |2 |0 |
+ROW |75434 |1571 |34269 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75435 |1571 |34270 |0 |1 |2774A4|0 |2 |0 |
+ROW |75436 |1571 |34271 |0 |2 |F63100|0 |2 |0 |
+ROW |75437 |1571 |34272 |0 |3 |A54F10|0 |2 |0 |
+ROW |75438 |1572 |34311 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75439 |1572 |34301 |0 |1 |2774A4|0 |2 |0 |
+ROW |75440 |1573 |34243 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75441 |1573 |34244 |0 |1 |2774A4|0 |2 |0 |
+ROW |75442 |1573 |34246 |0 |2 |F63100|0 |2 |0 |
+ROW |75443 |1573 |34245 |0 |3 |A54F10|0 |2 |0 |
+ROW |75444 |1574 |34239 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75445 |1574 |34227 |0 |1 |2774A4|0 |2 |0 |
+ROW |75446 |1574 |34236 |0 |2 |F63100|0 |2 |0 |
+ROW |75447 |1574 |34237 |0 |3 |A54F10|0 |2 |0 |
+ROW |75448 |1575 |34253 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75449 |1575 |34252 |0 |1 |2774A4|0 |2 |0 |
+ROW |75450 |1575 |34249 |0 |2 |F63100|0 |2 |0 |
+ROW |75451 |1575 |34251 |0 |3 |A54F10|0 |2 |0 |
+ROW |75452 |1496 |33368 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75453 |1497 |33371 |1 |0 |1A7C11|0 |2 |0 |
+ROW |75454 |1497 |33371 |1 |1 |2774A4|0 |2 |0 |
+ROW |75455 |1498 |33379 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75456 |1498 |33382 |2 |1 |2774A4|0 |2 |0 |
+ROW |75457 |1498 |33381 |0 |2 |F63100|1 |2 |0 |
+ROW |75458 |1498 |33378 |0 |3 |A54F10|1 |2 |0 |
+ROW |75459 |1498 |33380 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |75460 |1498 |33377 |0 |5 |6C59DC|1 |2 |0 |
+ROW |75461 |1142 |30689 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75462 |1805 |36187 |5 |0 |1A7C11|0 |2 |0 |
+ROW |75463 |1805 |36192 |2 |1 |2774A4|0 |2 |0 |
+ROW |75464 |1805 |36190 |0 |2 |F63100|1 |2 |0 |
+ROW |75465 |1805 |36185 |0 |3 |A54F10|1 |2 |0 |
+ROW |75466 |1805 |36189 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |75467 |1805 |36184 |0 |5 |6C59DC|1 |2 |0 |
+ROW |75468 |1275 |31794 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75469 |1275 |31792 |0 |1 |2774A4|0 |2 |0 |
+ROW |75470 |1275 |31800 |0 |2 |F63100|1 |2 |0 |
+ROW |75471 |1276 |36771 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75472 |1276 |33390 |0 |1 |2774A4|0 |2 |0 |
+ROW |75473 |1276 |31799 |0 |2 |F63100|0 |2 |0 |
+ROW |75474 |1276 |31797 |0 |3 |A54F10|0 |2 |0 |
+ROW |75475 |1277 |36770 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75476 |1277 |33389 |0 |1 |2774A4|0 |2 |0 |
+ROW |75477 |1277 |31795 |0 |2 |F63100|0 |2 |0 |
+ROW |75478 |1278 |36769 |0 |0 |1A7C11|0 |2 |0 |
+ROW |75479 |1278 |31793 |0 |1 |2774A4|0 |2 |0 |
+ROW |75480 |1278 |31802 |0 |2 |F63100|0 |2 |0 |
+ROW |75481 |1278 |31790 |0 |3 |A54F10|0 |2 |0 |
+ROW |75482 |1278 |31791 |0 |4 |FC6EA3|0 |2 |0 |
TABLE |hostmacro
FIELDS|hostmacroid|hostid|macro |value |description |type|
@@ -32392,7 +32421,7 @@ ROW |904 |10285 |{$MEMORY.UTIL.MAX}
ROW |905 |10285 |{$NET.IF.IFALIAS.MATCHES} |^.*$ | |0 |
ROW |906 |10285 |{$NET.IF.IFALIAS.NOT_MATCHES} |CHANGE_IF_NEEDED | |0 |
ROW |907 |10285 |{$NET.IF.IFNAME.MATCHES} |^.*$ | |0 |
-ROW |908 |10285 |{$NET.IF.IFNAME.NOT_MATCHES} |(^Software Loopback Interface&pipe;^NULL[0-9.]*$&pipe;^[Ll]o[0-9.]*$&pipe;^[Ss]ystem$&pipe;^Nu[0-9.]*$&pipe;^veth[0-9a-z]+$&pipe;docker[0-9]+&pipe;br-[a-z0-9]{12}) |Filter out loopbacks, nulls, docker veth links and docker0 bridge by default |0 |
+ROW |908 |10285 |{$NET.IF.IFNAME.NOT_MATCHES} |(^Software Loopback Interface&pipe;^NULL[0-9.]*$&pipe;^[Ll]o[0-9.]*$&pipe;^[Ss]ystem$&pipe;^Nu[0-9.]*$&pipe;^veth[0-9A-z]+$&pipe;docker[0-9]+&pipe;br-[a-z0-9]{12}) |Filter out loopbacks, nulls, docker veth links and docker0 bridge by default |0 |
ROW |909 |10285 |{$NET.IF.IFOPERSTATUS.MATCHES} |^.*$ | |0 |
ROW |910 |10285 |{$NET.IF.IFOPERSTATUS.NOT_MATCHES} |^7$ |Ignore notPresent(7) |0 |
ROW |911 |10285 |{$NODE_EXPORTER_PORT} |9100 |TCP Port node_exporter is listening on. |0 |
@@ -32877,7 +32906,7 @@ ROW |1475 |10341 |{$SWAP.PFREE.MIN.WARN}
ROW |1476 |10342 |{$IF.ERRORS.WARN} |2 | |0 |
ROW |1477 |10342 |{$IFCONTROL} |1 | |0 |
ROW |1478 |10342 |{$NET.IF.IFNAME.MATCHES} |^.*$ | |0 |
-ROW |1479 |10342 |{$NET.IF.IFNAME.NOT_MATCHES} |(^Software Loopback Interface&pipe;^NULL[0-9.]*$&pipe;^[Ll]o[0-9.]*$&pipe;^[Ss]ystem$&pipe;^Nu[0-9.]*$&pipe;^veth[0-9a-z]+$&pipe;docker[0-9]+&pipe;br-[a-z0-9]{12}) |Filter out loopbacks, nulls, docker veth links and docker0 bridge by default |0 |
+ROW |1479 |10342 |{$NET.IF.IFNAME.NOT_MATCHES} |(^Software Loopback Interface&pipe;^NULL[0-9.]*$&pipe;^[Ll]o[0-9.]*$&pipe;^[Ss]ystem$&pipe;^Nu[0-9.]*$&pipe;^veth[0-9A-z]+$&pipe;docker[0-9]+&pipe;br-[a-z0-9]{12}) |Filter out loopbacks, nulls, docker veth links and docker0 bridge by default |0 |
ROW |1480 |10344 |{$CPU.INTERRUPT.CRIT.MAX} |50 |The critical threshold of the % Interrupt Time counter. |0 |
ROW |1481 |10344 |{$CPU.PRIV.CRIT.MAX} |30 |The threshold of the % Privileged Time counter. |0 |
ROW |1482 |10344 |{$CPU.QUEUE.CRIT.MAX} |3 |The threshold of the Processor Queue Length counter. |0 |
@@ -39434,10 +39463,10 @@ ROW |3922 |259 |1 |available
ROW |3923 |259 |2 |unknown |0 |2 |
ROW |3924 |260 |1 |up |0 |0 |
ROW |3925 |260 |2 |down |0 |1 |
-ROW |3926 |260 |4 |unknown |0 |2 |
-ROW |3927 |260 |5 |dormant |0 |3 |
-ROW |3928 |260 |6 |notPresent |0 |4 |
-ROW |3929 |260 |7 |lowerLayerDown |0 |5 |
+ROW |3926 |260 |4 |unknown |0 |3 |
+ROW |3927 |260 |5 |dormant |0 |4 |
+ROW |3928 |260 |6 |notPresent |0 |5 |
+ROW |3929 |260 |7 |lowerLayerDown |0 |6 |
ROW |3930 |261 |1 |other |0 |0 |
ROW |3931 |261 |2 |regular1822 |0 |1 |
ROW |3932 |261 |3 |hdh1822 |0 |2 |
@@ -42341,6 +42370,15 @@ ROW |6829 |65 |0 |unknown
ROW |6830 |65 |3 |lowerlayerdown |0 |3 |
ROW |6831 |64 |0 |unknown |0 |0 |
ROW |6832 |64 |3 |lowerlayerdown |0 |3 |
+ROW |6833 |565 |0 |Standby |0 |0 |
+ROW |6834 |565 |1 |Stopped |0 |1 |
+ROW |6835 |565 |2 |Unavailable |0 |2 |
+ROW |6836 |565 |3 |Active |0 |3 |
+ROW |6837 |566 |0 |Standby |0 |0 |
+ROW |6838 |566 |1 |Stopped |0 |1 |
+ROW |6839 |566 |2 |Unavailable |0 |2 |
+ROW |6840 |566 |3 |Active |0 |3 |
+ROW |6841 |260 |3 |testing |0 |2 |
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|
@@ -47355,6 +47393,19 @@ ROW |6403 |39793 |39753 |
ROW |6404 |39794 |39753 |
ROW |6405 |39795 |39753 |
ROW |6406 |39796 |39753 |
+ROW |6407 |39803 |30571 |
+ROW |6408 |39808 |39806 |
+ROW |6409 |39809 |39806 |
+ROW |6410 |39810 |39806 |
+ROW |6411 |39811 |39806 |
+ROW |6412 |39812 |39807 |
+ROW |6413 |39813 |39807 |
+ROW |6414 |39814 |39807 |
+ROW |6415 |39815 |39807 |
+ROW |6416 |39817 |39816 |
+ROW |6417 |39818 |39816 |
+ROW |6418 |39819 |39816 |
+ROW |6419 |39820 |39816 |
TABLE |host_discovery
FIELDS|hostid|parent_hostid|parent_itemid|
@@ -47407,11 +47458,11 @@ ROW |261 |27321 |9 |{#IFADMINSTATUS} |{$NET.IF.IFA
ROW |262 |27331 |8 |{#IFOPERSTATUS} |1 |
ROW |263 |27331 |8 |{#SNMPVALUE} |(2&pipe;3) |
ROW |266 |27393 |8 |{#ENT_SN} |.+ |
-ROW |267 |27393 |8 |{#ENT_CLASS} |[^3] |
+ROW |267 |27393 |8 |{#ENT_CLASS} |^3$ |
ROW |268 |27399 |8 |{#ENT_SN} |.+ |
-ROW |269 |27399 |8 |{#ENT_CLASS} |[^3] |
+ROW |269 |27399 |8 |{#ENT_CLASS} |^3$ |
ROW |272 |27410 |8 |{#ENT_SN} |.+ |
-ROW |273 |27410 |8 |{#ENT_CLASS} |[^3] |
+ROW |273 |27410 |8 |{#ENT_CLASS} |^3$ |
ROW |274 |27450 |8 |{#IFADMINSTATUS} |{$NET.IF.IFADMINSTATUS.MATCHES} |
ROW |275 |27450 |9 |{#IFADMINSTATUS} |{$NET.IF.IFADMINSTATUS.NOT_MATCHES} |
ROW |276 |27460 |8 |{#IFOPERSTATUS} |1 |
@@ -47493,7 +47544,7 @@ ROW |399 |28197 |8 |{#SNMPVALUE} |10
ROW |400 |28198 |8 |{#ENT_CLASS} |3 |
ROW |401 |28199 |8 |{#ENT_CLASS} |6 |
ROW |402 |28207 |8 |{#ENT_SN} |.+ |
-ROW |403 |28207 |8 |{#ENT_CLASS} |[^3] |
+ROW |403 |28207 |8 |{#ENT_CLASS} |^3$ |
ROW |404 |28223 |8 |{#IFADMINSTATUS} |{$NET.IF.IFADMINSTATUS.MATCHES} |
ROW |405 |28223 |9 |{#IFADMINSTATUS} |{$NET.IF.IFADMINSTATUS.NOT_MATCHES} |
ROW |407 |27098 |8 |{#IFOPERSTATUS} |{$NET.IF.IFOPERSTATUS.MATCHES} |
@@ -49759,6 +49810,8 @@ ROW |34319 |
ROW |35275 |
ROW |35276 |
ROW |35277 |
+ROW |39805 |
+ROW |39807 |
TABLE |item_preproc
FIELDS|item_preprocid|itemid|step|type|params |error_handler|error_handler_params |
@@ -51997,191 +52050,191 @@ ROW |79954 |30402 |1 |12 |$.Replication.slave_priority
ROW |79955 |30403 |1 |12 |$.Replication.slave_read_only |0 | |
ROW |79956 |30403 |2 |20 |1d |0 | |
ROW |79957 |30404 |1 |12 |$.Replication.slave_repl_offset |0 | |
-ROW |79958 |27152 |1 |20 |1h |0 | |
+ROW |79958 |27152 |1 |20 |12h |0 | |
ROW |79959 |29844 |1 |1 |0.01 |0 | |
-ROW |79960 |29845 |1 |20 |1h |0 | |
-ROW |79961 |29846 |1 |20 |1d |0 | |
-ROW |79962 |29847 |1 |20 |1h |0 | |
-ROW |79963 |29848 |1 |20 |1d |0 | |
-ROW |79964 |27199 |1 |20 |1h |0 | |
-ROW |79965 |27232 |1 |20 |1h |0 | |
-ROW |79966 |27268 |1 |20 |1h |0 | |
-ROW |79967 |27289 |1 |20 |1h |0 | |
-ROW |79968 |27340 |1 |20 |1h |0 | |
-ROW |79969 |27372 |1 |20 |1h |0 | |
-ROW |79970 |27469 |1 |20 |1h |0 | |
-ROW |79971 |27503 |1 |20 |1h |0 | |
-ROW |79972 |27539 |1 |20 |1h |0 | |
-ROW |79973 |27575 |1 |20 |1h |0 | |
-ROW |79974 |27638 |1 |20 |1h |0 | |
-ROW |79975 |27661 |1 |20 |1h |0 | |
-ROW |79976 |27741 |1 |20 |1h |0 | |
-ROW |79977 |27773 |1 |20 |1h |0 | |
-ROW |79978 |27807 |1 |20 |1h |0 | |
-ROW |79979 |27889 |1 |20 |1h |0 | |
-ROW |79980 |27926 |1 |20 |1h |0 | |
-ROW |79981 |27963 |1 |20 |1h |0 | |
-ROW |79982 |27993 |1 |20 |1h |0 | |
-ROW |79983 |28022 |1 |20 |1h |0 | |
-ROW |79984 |28137 |1 |20 |1h |0 | |
-ROW |79986 |28240 |1 |20 |1h |0 | |
-ROW |79987 |28289 |1 |20 |1h |0 | |
-ROW |79988 |28337 |1 |20 |1h |0 | |
-ROW |79989 |28384 |1 |20 |1h |0 | |
-ROW |79990 |28461 |1 |20 |1h |0 | |
-ROW |79991 |28489 |1 |20 |1h |0 | |
-ROW |79992 |28964 |1 |20 |1h |0 | |
-ROW |79993 |29057 |1 |20 |1h |0 | |
+ROW |79960 |29845 |1 |20 |12h |0 | |
+ROW |79961 |29846 |1 |20 |12h |0 | |
+ROW |79962 |29847 |1 |20 |12h |0 | |
+ROW |79963 |29848 |1 |20 |12h |0 | |
+ROW |79964 |27199 |1 |20 |12h |0 | |
+ROW |79965 |27232 |1 |20 |12h |0 | |
+ROW |79966 |27268 |1 |20 |12h |0 | |
+ROW |79967 |27289 |1 |20 |12h |0 | |
+ROW |79968 |27340 |1 |20 |12h |0 | |
+ROW |79969 |27372 |1 |20 |12h |0 | |
+ROW |79970 |27469 |1 |20 |12h |0 | |
+ROW |79971 |27503 |1 |20 |12h |0 | |
+ROW |79972 |27539 |1 |20 |12h |0 | |
+ROW |79973 |27575 |1 |20 |12h |0 | |
+ROW |79974 |27638 |1 |20 |12h |0 | |
+ROW |79975 |27661 |1 |20 |12h |0 | |
+ROW |79976 |27741 |1 |20 |12h |0 | |
+ROW |79977 |27773 |1 |20 |12h |0 | |
+ROW |79978 |27807 |1 |20 |12h |0 | |
+ROW |79979 |27889 |1 |20 |12h |0 | |
+ROW |79980 |27926 |1 |20 |12h |0 | |
+ROW |79981 |27963 |1 |20 |12h |0 | |
+ROW |79982 |27993 |1 |20 |12h |0 | |
+ROW |79983 |28022 |1 |20 |12h |0 | |
+ROW |79984 |28137 |1 |20 |12h |0 | |
+ROW |79986 |28240 |1 |20 |12h |0 | |
+ROW |79987 |28289 |1 |20 |12h |0 | |
+ROW |79988 |28337 |1 |20 |12h |0 | |
+ROW |79989 |28384 |1 |20 |12h |0 | |
+ROW |79990 |28461 |1 |20 |12h |0 | |
+ROW |79991 |28489 |1 |20 |12h |0 | |
+ROW |79992 |28964 |1 |20 |12h |0 | |
+ROW |79993 |29057 |1 |20 |12h |0 | |
ROW |79994 |29834 |1 |1 |0.01 |0 | |
-ROW |79995 |29835 |1 |20 |1h |0 | |
-ROW |79996 |29836 |1 |20 |1d |0 | |
-ROW |79997 |29837 |1 |20 |1h |0 | |
-ROW |79998 |29838 |1 |20 |1d |0 | |
+ROW |79995 |29835 |1 |20 |12h |0 | |
+ROW |79996 |29836 |1 |20 |12h |0 | |
+ROW |79997 |29837 |1 |20 |12h |0 | |
+ROW |79998 |29838 |1 |20 |12h |0 | |
ROW |79999 |29849 |1 |1 |0.01 |0 | |
-ROW |80000 |29850 |1 |20 |1h |0 | |
-ROW |80001 |29851 |1 |20 |1d |0 | |
-ROW |80002 |29852 |1 |20 |1h |0 | |
-ROW |80003 |29853 |1 |20 |1d |0 | |
+ROW |80000 |29850 |1 |20 |12h |0 | |
+ROW |80001 |29851 |1 |20 |12h |0 | |
+ROW |80002 |29852 |1 |20 |12h |0 | |
+ROW |80003 |29853 |1 |20 |12h |0 | |
ROW |80004 |29854 |1 |1 |0.01 |0 | |
-ROW |80005 |29855 |1 |20 |1h |0 | |
-ROW |80006 |29856 |1 |20 |1d |0 | |
-ROW |80007 |29857 |1 |20 |1h |0 | |
-ROW |80008 |29858 |1 |20 |1d |0 | |
+ROW |80005 |29855 |1 |20 |12h |0 | |
+ROW |80006 |29856 |1 |20 |12h |0 | |
+ROW |80007 |29857 |1 |20 |12h |0 | |
+ROW |80008 |29858 |1 |20 |12h |0 | |
ROW |80009 |29859 |1 |1 |0.01 |0 | |
-ROW |80010 |29860 |1 |20 |1h |0 | |
-ROW |80011 |29861 |1 |20 |1d |0 | |
-ROW |80012 |29862 |1 |20 |1h |0 | |
-ROW |80013 |29863 |1 |20 |1d |0 | |
+ROW |80010 |29860 |1 |20 |12h |0 | |
+ROW |80011 |29861 |1 |20 |12h |0 | |
+ROW |80012 |29862 |1 |20 |12h |0 | |
+ROW |80013 |29863 |1 |20 |12h |0 | |
ROW |80014 |29864 |1 |1 |0.01 |0 | |
-ROW |80015 |29865 |1 |20 |1h |0 | |
-ROW |80016 |29866 |1 |20 |1d |0 | |
-ROW |80017 |29867 |1 |20 |1h |0 | |
-ROW |80018 |29868 |1 |20 |1d |0 | |
+ROW |80015 |29865 |1 |20 |12h |0 | |
+ROW |80016 |29866 |1 |20 |12h |0 | |
+ROW |80017 |29867 |1 |20 |12h |0 | |
+ROW |80018 |29868 |1 |20 |12h |0 | |
ROW |80019 |29869 |1 |1 |0.01 |0 | |
-ROW |80020 |29870 |1 |20 |1h |0 | |
-ROW |80021 |29871 |1 |20 |1d |0 | |
-ROW |80022 |29872 |1 |20 |1h |0 | |
-ROW |80023 |29873 |1 |20 |1d |0 | |
+ROW |80020 |29870 |1 |20 |12h |0 | |
+ROW |80021 |29871 |1 |20 |12h |0 | |
+ROW |80022 |29872 |1 |20 |12h |0 | |
+ROW |80023 |29873 |1 |20 |12h |0 | |
ROW |80024 |29874 |1 |1 |0.01 |0 | |
-ROW |80025 |29875 |1 |20 |1h |0 | |
-ROW |80026 |29876 |1 |20 |1d |0 | |
-ROW |80027 |29877 |1 |20 |1h |0 | |
-ROW |80028 |29878 |1 |20 |1d |0 | |
+ROW |80025 |29875 |1 |20 |12h |0 | |
+ROW |80026 |29876 |1 |20 |12h |0 | |
+ROW |80027 |29877 |1 |20 |12h |0 | |
+ROW |80028 |29878 |1 |20 |12h |0 | |
ROW |80029 |29879 |1 |1 |0.01 |0 | |
-ROW |80030 |29880 |1 |20 |1h |0 | |
-ROW |80031 |29881 |1 |20 |1d |0 | |
-ROW |80032 |29882 |1 |20 |1h |0 | |
-ROW |80033 |29883 |1 |20 |1d |0 | |
+ROW |80030 |29880 |1 |20 |12h |0 | |
+ROW |80031 |29881 |1 |20 |12h |0 | |
+ROW |80032 |29882 |1 |20 |12h |0 | |
+ROW |80033 |29883 |1 |20 |12h |0 | |
ROW |80034 |29884 |1 |1 |0.01 |0 | |
-ROW |80035 |29885 |1 |20 |1h |0 | |
-ROW |80036 |29886 |1 |20 |1d |0 | |
-ROW |80037 |29887 |1 |20 |1h |0 | |
-ROW |80038 |29888 |1 |20 |1d |0 | |
+ROW |80035 |29885 |1 |20 |12h |0 | |
+ROW |80036 |29886 |1 |20 |12h |0 | |
+ROW |80037 |29887 |1 |20 |12h |0 | |
+ROW |80038 |29888 |1 |20 |12h |0 | |
ROW |80039 |29889 |1 |1 |0.01 |0 | |
-ROW |80040 |29890 |1 |20 |1h |0 | |
-ROW |80041 |29891 |1 |20 |1d |0 | |
-ROW |80042 |29892 |1 |20 |1h |0 | |
-ROW |80043 |29893 |1 |20 |1d |0 | |
+ROW |80040 |29890 |1 |20 |12h |0 | |
+ROW |80041 |29891 |1 |20 |12h |0 | |
+ROW |80042 |29892 |1 |20 |12h |0 | |
+ROW |80043 |29893 |1 |20 |12h |0 | |
ROW |80044 |29894 |1 |1 |0.01 |0 | |
-ROW |80045 |29895 |1 |20 |1h |0 | |
-ROW |80046 |29896 |1 |20 |1d |0 | |
-ROW |80047 |29897 |1 |20 |1h |0 | |
-ROW |80048 |29898 |1 |20 |1d |0 | |
+ROW |80045 |29895 |1 |20 |12h |0 | |
+ROW |80046 |29896 |1 |20 |12h |0 | |
+ROW |80047 |29897 |1 |20 |12h |0 | |
+ROW |80048 |29898 |1 |20 |12h |0 | |
ROW |80049 |29899 |1 |1 |0.01 |0 | |
-ROW |80050 |29900 |1 |20 |1h |0 | |
-ROW |80051 |29901 |1 |20 |1d |0 | |
-ROW |80052 |29902 |1 |20 |1h |0 | |
-ROW |80053 |29903 |1 |20 |1d |0 | |
+ROW |80050 |29900 |1 |20 |12h |0 | |
+ROW |80051 |29901 |1 |20 |12h |0 | |
+ROW |80052 |29902 |1 |20 |12h |0 | |
+ROW |80053 |29903 |1 |20 |12h |0 | |
ROW |80054 |29904 |1 |1 |0.01 |0 | |
-ROW |80055 |29905 |1 |20 |1h |0 | |
-ROW |80056 |29906 |1 |20 |1d |0 | |
-ROW |80057 |29907 |1 |20 |1h |0 | |
-ROW |80058 |29908 |1 |20 |1d |0 | |
+ROW |80055 |29905 |1 |20 |12h |0 | |
+ROW |80056 |29906 |1 |20 |12h |0 | |
+ROW |80057 |29907 |1 |20 |12h |0 | |
+ROW |80058 |29908 |1 |20 |12h |0 | |
ROW |80059 |29909 |1 |1 |0.01 |0 | |
-ROW |80060 |29910 |1 |20 |1h |0 | |
-ROW |80061 |29911 |1 |20 |1d |0 | |
-ROW |80062 |29912 |1 |20 |1h |0 | |
-ROW |80063 |29913 |1 |20 |1d |0 | |
+ROW |80060 |29910 |1 |20 |12h |0 | |
+ROW |80061 |29911 |1 |20 |12h |0 | |
+ROW |80062 |29912 |1 |20 |12h |0 | |
+ROW |80063 |29913 |1 |20 |12h |0 | |
ROW |80064 |29914 |1 |1 |0.01 |0 | |
-ROW |80065 |29915 |1 |20 |1h |0 | |
-ROW |80066 |29916 |1 |20 |1d |0 | |
-ROW |80067 |29917 |1 |20 |1h |0 | |
-ROW |80068 |29918 |1 |20 |1d |0 | |
+ROW |80065 |29915 |1 |20 |12h |0 | |
+ROW |80066 |29916 |1 |20 |12h |0 | |
+ROW |80067 |29917 |1 |20 |12h |0 | |
+ROW |80068 |29918 |1 |20 |12h |0 | |
ROW |80069 |29919 |1 |1 |0.01 |0 | |
-ROW |80070 |29920 |1 |20 |1h |0 | |
-ROW |80071 |29921 |1 |20 |1d |0 | |
-ROW |80072 |29922 |1 |20 |1h |0 | |
-ROW |80073 |29923 |1 |20 |1d |0 | |
+ROW |80070 |29920 |1 |20 |12h |0 | |
+ROW |80071 |29921 |1 |20 |12h |0 | |
+ROW |80072 |29922 |1 |20 |12h |0 | |
+ROW |80073 |29923 |1 |20 |12h |0 | |
ROW |80074 |29924 |1 |1 |0.01 |0 | |
-ROW |80075 |29925 |1 |20 |1h |0 | |
-ROW |80076 |29926 |1 |20 |1d |0 | |
-ROW |80077 |29927 |1 |20 |1h |0 | |
-ROW |80078 |29928 |1 |20 |1d |0 | |
+ROW |80075 |29925 |1 |20 |12h |0 | |
+ROW |80076 |29926 |1 |20 |12h |0 | |
+ROW |80077 |29927 |1 |20 |12h |0 | |
+ROW |80078 |29928 |1 |20 |12h |0 | |
ROW |80079 |29929 |1 |1 |0.01 |0 | |
-ROW |80080 |29930 |1 |20 |1h |0 | |
-ROW |80081 |29931 |1 |20 |1d |0 | |
-ROW |80082 |29932 |1 |20 |1h |0 | |
-ROW |80083 |29933 |1 |20 |1d |0 | |
+ROW |80080 |29930 |1 |20 |12h |0 | |
+ROW |80081 |29931 |1 |20 |12h |0 | |
+ROW |80082 |29932 |1 |20 |12h |0 | |
+ROW |80083 |29933 |1 |20 |12h |0 | |
ROW |80084 |29934 |1 |1 |0.01 |0 | |
-ROW |80085 |29935 |1 |20 |1h |0 | |
-ROW |80086 |29936 |1 |20 |1d |0 | |
-ROW |80087 |29937 |1 |20 |1h |0 | |
-ROW |80088 |29938 |1 |20 |1d |0 | |
+ROW |80085 |29935 |1 |20 |12h |0 | |
+ROW |80086 |29936 |1 |20 |12h |0 | |
+ROW |80087 |29937 |1 |20 |12h |0 | |
+ROW |80088 |29938 |1 |20 |12h |0 | |
ROW |80089 |29939 |1 |1 |0.01 |0 | |
-ROW |80090 |29940 |1 |20 |1h |0 | |
-ROW |80091 |29941 |1 |20 |1d |0 | |
-ROW |80092 |29942 |1 |20 |1h |0 | |
-ROW |80093 |29943 |1 |20 |1d |0 | |
+ROW |80090 |29940 |1 |20 |12h |0 | |
+ROW |80091 |29941 |1 |20 |12h |0 | |
+ROW |80092 |29942 |1 |20 |12h |0 | |
+ROW |80093 |29943 |1 |20 |12h |0 | |
ROW |80094 |29944 |1 |1 |0.01 |0 | |
-ROW |80095 |29945 |1 |20 |1h |0 | |
-ROW |80096 |29946 |1 |20 |1d |0 | |
-ROW |80097 |29947 |1 |20 |1h |0 | |
-ROW |80098 |29948 |1 |20 |1d |0 | |
+ROW |80095 |29945 |1 |20 |12h |0 | |
+ROW |80096 |29946 |1 |20 |12h |0 | |
+ROW |80097 |29947 |1 |20 |12h |0 | |
+ROW |80098 |29948 |1 |20 |12h |0 | |
ROW |80104 |29954 |1 |1 |0.01 |0 | |
-ROW |80105 |29955 |1 |20 |1h |0 | |
-ROW |80106 |29956 |1 |20 |1d |0 | |
-ROW |80107 |29957 |1 |20 |1h |0 | |
-ROW |80108 |29958 |1 |20 |1d |0 | |
+ROW |80105 |29955 |1 |20 |12h |0 | |
+ROW |80106 |29956 |1 |20 |12h |0 | |
+ROW |80107 |29957 |1 |20 |12h |0 | |
+ROW |80108 |29958 |1 |20 |12h |0 | |
ROW |80109 |29959 |1 |1 |0.01 |0 | |
-ROW |80110 |29960 |1 |20 |1h |0 | |
-ROW |80111 |29961 |1 |20 |1d |0 | |
-ROW |80112 |29962 |1 |20 |1h |0 | |
-ROW |80113 |29963 |1 |20 |1d |0 | |
+ROW |80110 |29960 |1 |20 |12h |0 | |
+ROW |80111 |29961 |1 |20 |12h |0 | |
+ROW |80112 |29962 |1 |20 |12h |0 | |
+ROW |80113 |29963 |1 |20 |12h |0 | |
ROW |80114 |29964 |1 |1 |0.01 |0 | |
-ROW |80115 |29965 |1 |20 |1h |0 | |
-ROW |80116 |29966 |1 |20 |1d |0 | |
-ROW |80117 |29967 |1 |20 |1h |0 | |
-ROW |80118 |29968 |1 |20 |1d |0 | |
+ROW |80115 |29965 |1 |20 |12h |0 | |
+ROW |80116 |29966 |1 |20 |12h |0 | |
+ROW |80117 |29967 |1 |20 |12h |0 | |
+ROW |80118 |29968 |1 |20 |12h |0 | |
ROW |80119 |29969 |1 |1 |0.01 |0 | |
-ROW |80120 |29970 |1 |20 |1h |0 | |
-ROW |80121 |29971 |1 |20 |1d |0 | |
-ROW |80122 |29972 |1 |20 |1h |0 | |
-ROW |80123 |29973 |1 |20 |1d |0 | |
+ROW |80120 |29970 |1 |20 |12h |0 | |
+ROW |80121 |29971 |1 |20 |12h |0 | |
+ROW |80122 |29972 |1 |20 |12h |0 | |
+ROW |80123 |29973 |1 |20 |12h |0 | |
ROW |80124 |29974 |1 |1 |0.01 |0 | |
-ROW |80125 |29975 |1 |20 |1h |0 | |
-ROW |80126 |29976 |1 |20 |1d |0 | |
-ROW |80127 |29977 |1 |20 |1h |0 | |
-ROW |80128 |29978 |1 |20 |1d |0 | |
+ROW |80125 |29975 |1 |20 |12h |0 | |
+ROW |80126 |29976 |1 |20 |12h |0 | |
+ROW |80127 |29977 |1 |20 |12h |0 | |
+ROW |80128 |29978 |1 |20 |12h |0 | |
ROW |80129 |29979 |1 |1 |0.01 |0 | |
-ROW |80130 |29980 |1 |20 |1h |0 | |
-ROW |80131 |29981 |1 |20 |1d |0 | |
-ROW |80132 |29982 |1 |20 |1h |0 | |
-ROW |80133 |29983 |1 |20 |1d |0 | |
+ROW |80130 |29980 |1 |20 |12h |0 | |
+ROW |80131 |29981 |1 |20 |12h |0 | |
+ROW |80132 |29982 |1 |20 |12h |0 | |
+ROW |80133 |29983 |1 |20 |12h |0 | |
ROW |80134 |29984 |1 |1 |0.01 |0 | |
-ROW |80135 |29985 |1 |20 |1h |0 | |
-ROW |80136 |29986 |1 |20 |1d |0 | |
-ROW |80137 |29987 |1 |20 |1h |0 | |
-ROW |80138 |29988 |1 |20 |1d |0 | |
+ROW |80135 |29985 |1 |20 |12h |0 | |
+ROW |80136 |29986 |1 |20 |12h |0 | |
+ROW |80137 |29987 |1 |20 |12h |0 | |
+ROW |80138 |29988 |1 |20 |12h |0 | |
ROW |80139 |29989 |1 |1 |0.01 |0 | |
-ROW |80140 |29990 |1 |20 |1h |0 | |
-ROW |80141 |29991 |1 |20 |1d |0 | |
-ROW |80142 |29992 |1 |20 |1h |0 | |
-ROW |80143 |29993 |1 |20 |1d |0 | |
-ROW |80144 |30050 |1 |20 |1d |0 | |
-ROW |80145 |30051 |1 |20 |1d |0 | |
-ROW |80146 |30052 |1 |20 |1h |0 | |
-ROW |80147 |30053 |1 |20 |1h |0 | |
-ROW |80148 |30054 |1 |20 |1h |0 | |
+ROW |80140 |29990 |1 |20 |12h |0 | |
+ROW |80141 |29991 |1 |20 |12h |0 | |
+ROW |80142 |29992 |1 |20 |12h |0 | |
+ROW |80143 |29993 |1 |20 |12h |0 | |
+ROW |80144 |30050 |1 |20 |12h |0 | |
+ROW |80145 |30051 |1 |20 |12h |0 | |
+ROW |80146 |30052 |1 |20 |12h |0 | |
+ROW |80147 |30053 |1 |20 |12h |0 | |
+ROW |80148 |30054 |1 |20 |12h |0 | |
ROW |80149 |30055 |1 |1 |0.01 |0 | |
ROW |80150 |30142 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
ROW |80151 |30143 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
@@ -52636,8 +52689,8 @@ ROW |80619 |29087 |1 |20 |1d
ROW |80620 |29089 |1 |10 | |0 | |
ROW |80621 |29102 |1 |10 | |0 | |
ROW |80622 |29111 |1 |20 |1h |0 | |
-ROW |80623 |29113 |1 |20 |1h |0 | |
-ROW |80624 |29114 |1 |20 |1d |0 | |
+ROW |80623 |29113 |1 |20 |12h |0 | |
+ROW |80624 |29114 |1 |20 |12h |0 | |
ROW |80625 |29116 |1 |20 |1d |0 | |
ROW |80626 |29117 |1 |20 |1d |0 | |
ROW |80627 |29120 |1 |20 |1h |0 | |
@@ -52648,8 +52701,8 @@ ROW |80631 |29124 |1 |20 |1d
ROW |80632 |29126 |1 |10 | |0 | |
ROW |80633 |29139 |1 |10 | |0 | |
ROW |80634 |29148 |1 |20 |1h |0 | |
-ROW |80635 |29150 |1 |20 |1h |0 | |
-ROW |80636 |29151 |1 |20 |1d |0 | |
+ROW |80635 |29150 |1 |20 |12h |0 | |
+ROW |80636 |29151 |1 |20 |12h |0 | |
ROW |80637 |29153 |1 |20 |1d |0 | |
ROW |80638 |29154 |1 |20 |1d |0 | |
ROW |80639 |29157 |1 |20 |1h |0 | |
@@ -52660,8 +52713,8 @@ ROW |80643 |29161 |1 |20 |1d
ROW |80644 |29163 |1 |10 | |0 | |
ROW |80645 |29176 |1 |10 | |0 | |
ROW |80646 |29185 |1 |20 |1h |0 | |
-ROW |80647 |29187 |1 |20 |1h |0 | |
-ROW |80648 |29188 |1 |20 |1d |0 | |
+ROW |80647 |29187 |1 |20 |12h |0 | |
+ROW |80648 |29188 |1 |20 |12h |0 | |
ROW |80649 |29190 |1 |20 |1d |0 | |
ROW |80650 |29191 |1 |20 |1d |0 | |
ROW |80651 |29194 |1 |20 |1h |0 | |
@@ -52764,11 +52817,11 @@ ROW |80747 |31832 |1 |20 |1d
ROW |80748 |31836 |1 |20 |1d |0 | |
ROW |80749 |31837 |1 |20 |1d |0 | |
ROW |80750 |31840 |1 |20 |1h |0 | |
-ROW |80751 |31841 |1 |20 |1h |0 | |
+ROW |80751 |31841 |1 |20 |12h |0 | |
ROW |80752 |31843 |1 |20 |1d |0 | |
ROW |80753 |31844 |1 |20 |1d |0 | |
ROW |80754 |31845 |1 |20 |1d |0 | |
-ROW |80755 |31846 |1 |20 |1d |0 | |
+ROW |80755 |31846 |1 |20 |12h |0 | |
ROW |80756 |31849 |1 |20 |1h |0 | |
ROW |80757 |31856 |1 |10 | |0 | |
ROW |80758 |31867 |1 |10 | |0 | |
@@ -52776,11 +52829,11 @@ ROW |80759 |31868 |1 |20 |1d
ROW |80760 |31872 |1 |20 |1d |0 | |
ROW |80761 |31873 |1 |20 |1d |0 | |
ROW |80762 |31876 |1 |20 |1h |0 | |
-ROW |80763 |31877 |1 |20 |1h |0 | |
+ROW |80763 |31877 |1 |20 |12h |0 | |
ROW |80764 |31879 |1 |20 |1d |0 | |
ROW |80765 |31880 |1 |20 |1d |0 | |
ROW |80766 |31881 |1 |20 |1d |0 | |
-ROW |80767 |31882 |1 |20 |1d |0 | |
+ROW |80767 |31882 |1 |20 |12h |0 | |
ROW |80768 |31885 |1 |20 |1h |0 | |
ROW |80769 |31892 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
ROW |80770 |31893 |1 |21 |return (100-value); |0 | |
@@ -53956,11 +54009,11 @@ ROW |81939 |32042 |2 |20 |1d
ROW |81940 |32043 |3 |20 |1h |0 | |
ROW |81941 |32044 |2 |20 |1d |0 | |
ROW |81942 |32045 |2 |20 |1d |0 | |
-ROW |81943 |33341 |1 |20 |1d |0 | |
-ROW |81944 |33342 |1 |20 |1d |0 | |
-ROW |81945 |33343 |1 |20 |1h |0 | |
-ROW |81946 |33344 |1 |20 |1h |0 | |
-ROW |81947 |33345 |1 |20 |1h |0 | |
+ROW |81943 |33341 |1 |20 |12h |0 | |
+ROW |81944 |33342 |1 |20 |12h |0 | |
+ROW |81945 |33343 |1 |20 |12h |0 | |
+ROW |81946 |33344 |1 |20 |12h |0 | |
+ROW |81947 |33345 |1 |20 |12h |0 | |
ROW |81948 |33346 |1 |1 |0.01 |0 | |
ROW |81949 |33348 |1 |20 |10m |0 | |
ROW |81950 |33349 |1 |20 |6h |0 | |
@@ -54422,11 +54475,11 @@ ROW |82406 |33678 |1 |12 |$[?(@.disk_name=='{#NAME}')].temperature.
ROW |82407 |33678 |2 |20 |6h |0 | |
ROW |82408 |33679 |1 |12 |$[?(@.disk_name=='{#NAME}')].ata_smart_data.self_test.status.passed.first() |0 | |
ROW |82409 |33679 |2 |20 |6h |0 | |
-ROW |82410 |33684 |1 |20 |1d |0 | |
-ROW |82411 |33685 |1 |20 |1d |0 | |
-ROW |82412 |33686 |1 |20 |1h |0 | |
-ROW |82413 |33687 |1 |20 |1h |0 | |
-ROW |82414 |33688 |1 |20 |1h |0 | |
+ROW |82410 |33684 |1 |20 |12h |0 | |
+ROW |82411 |33685 |1 |20 |12h |0 | |
+ROW |82412 |33686 |1 |20 |12h |0 | |
+ROW |82413 |33687 |1 |20 |12h |0 | |
+ROW |82414 |33688 |1 |20 |12h |0 | |
ROW |82415 |33689 |1 |1 |0.01 |0 | |
ROW |82416 |33691 |1 |20 |6h |0 | |
ROW |82417 |33692 |1 |1 |1048576 |0 | |
@@ -54879,12 +54932,12 @@ ROW |82864 |34142 |1 |1 |1000000
ROW |82865 |34142 |2 |20 |1h |0 | |
ROW |82866 |34143 |1 |20 |6h |0 | |
ROW |82867 |34144 |1 |20 |6h |0 | |
-ROW |82868 |34153 |1 |20 |1d |0 | |
+ROW |82868 |34153 |1 |20 |12h |0 | |
ROW |82869 |34154 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
-ROW |82870 |34155 |1 |20 |1d |0 | |
-ROW |82871 |34156 |1 |20 |1h |0 | |
-ROW |82872 |34157 |1 |20 |1h |0 | |
-ROW |82873 |34158 |1 |20 |1h |0 | |
+ROW |82870 |34155 |1 |20 |12h |0 | |
+ROW |82871 |34156 |1 |20 |12h |0 | |
+ROW |82872 |34157 |1 |20 |12h |0 | |
+ROW |82873 |34158 |1 |20 |12h |0 | |
ROW |82874 |34159 |1 |1 |0.01 |0 | |
ROW |82875 |34161 |1 |20 |6h |0 | |
ROW |82876 |34162 |1 |20 |6h |0 | |
@@ -54917,8 +54970,8 @@ ROW |82903 |34182 |1 |20 |6h
ROW |82904 |34183 |1 |20 |6h |0 | |
ROW |82906 |34185 |1 |20 |6h |0 | |
ROW |82907 |34186 |1 |20 |6h |0 | |
-ROW |82908 |34187 |1 |20 |1d |0 | |
-ROW |82909 |34188 |1 |20 |1d |0 | |
+ROW |82908 |34187 |1 |20 |12h |0 | |
+ROW |82909 |34188 |1 |20 |12h |0 | |
ROW |82910 |34190 |1 |1 |0.1 |0 | |
ROW |82911 |34190 |2 |20 |6h |0 | |
ROW |82912 |34191 |1 |20 |6h |0 | |
@@ -55323,8 +55376,8 @@ ROW |83310 |34455 |1 |20 |6h
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 |83314 |34459 |1 |20 |12h |0 | |
+ROW |83315 |34460 |1 |20 |12h |0 | |
ROW |83316 |34462 |1 |1 |0.1 |0 | |
ROW |83317 |34462 |2 |20 |6h |0 | |
ROW |83318 |34463 |1 |1 |0.1 |0 | |
@@ -55376,8 +55429,8 @@ ROW |83363 |34503 |1 |20 |6h
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 |83367 |34507 |1 |20 |12h |0 | |
+ROW |83368 |34508 |1 |20 |12h |0 | |
ROW |83369 |34510 |1 |1 |0.1 |0 | |
ROW |83370 |34510 |2 |20 |6h |0 | |
ROW |83371 |34511 |1 |1 |0.1 |0 | |
@@ -55429,8 +55482,8 @@ ROW |83416 |34551 |1 |20 |6h
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 |83420 |34555 |1 |20 |12h |0 | |
+ROW |83421 |34556 |1 |20 |12h |0 | |
ROW |83422 |34558 |1 |1 |0.1 |0 | |
ROW |83423 |34558 |2 |20 |6h |0 | |
ROW |83424 |34559 |1 |1 |0.1 |0 | |
@@ -55482,8 +55535,8 @@ ROW |83469 |34599 |1 |20 |6h
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 |83473 |34603 |1 |20 |12h |0 | |
+ROW |83474 |34604 |1 |20 |12h |0 | |
ROW |83475 |34606 |1 |1 |0.1 |0 | |
ROW |83476 |34606 |2 |20 |6h |0 | |
ROW |83477 |34607 |1 |1 |0.1 |0 | |
@@ -55535,8 +55588,8 @@ ROW |83522 |34647 |1 |20 |6h
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 |83526 |34651 |1 |20 |12h |0 | |
+ROW |83527 |34652 |1 |20 |12h |0 | |
ROW |83528 |34654 |1 |1 |0.1 |0 | |
ROW |83529 |34654 |2 |20 |6h |0 | |
ROW |83530 |34655 |1 |1 |0.1 |0 | |
@@ -55641,8 +55694,8 @@ ROW |83628 |34743 |1 |20 |6h
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 |83632 |34747 |1 |20 |12h |0 | |
+ROW |83633 |34748 |1 |20 |12h |0 | |
ROW |83634 |34750 |1 |1 |0.1 |0 | |
ROW |83635 |34750 |2 |20 |6h |0 | |
ROW |83636 |34751 |1 |1 |0.1 |0 | |
@@ -55702,8 +55755,8 @@ ROW |83689 |34797 |1 |20 |6h
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 |83693 |34801 |1 |20 |12h |0 | |
+ROW |83694 |34802 |1 |20 |12h |0 | |
ROW |83695 |34804 |1 |1 |0.1 |0 | |
ROW |83696 |34804 |2 |20 |6h |0 | |
ROW |83697 |34805 |1 |1 |0.1 |0 | |
@@ -55755,8 +55808,8 @@ ROW |83742 |34845 |1 |20 |6h
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 |83746 |34849 |1 |20 |12h |0 | |
+ROW |83747 |34850 |1 |20 |12h |0 | |
ROW |83748 |34852 |1 |1 |0.1 |0 | |
ROW |83749 |34852 |2 |20 |6h |0 | |
ROW |83750 |34853 |1 |1 |0.1 |0 | |
@@ -55808,8 +55861,8 @@ ROW |83795 |34893 |1 |20 |6h
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 |83799 |34897 |1 |20 |12h |0 | |
+ROW |83800 |34898 |1 |20 |12h |0 | |
ROW |83801 |34900 |1 |1 |0.1 |0 | |
ROW |83802 |34900 |2 |20 |6h |0 | |
ROW |83803 |34901 |1 |1 |0.1 |0 | |
@@ -55923,8 +55976,8 @@ ROW |83910 |35020 |1 |20 |6h
ROW |83911 |35021 |1 |20 |6h |0 | |
ROW |83912 |35022 |1 |20 |6h |0 | |
ROW |83913 |35023 |1 |20 |6h |0 | |
-ROW |83914 |35024 |1 |20 |1d |0 | |
-ROW |83915 |35025 |1 |20 |1d |0 | |
+ROW |83914 |35024 |1 |20 |12h |0 | |
+ROW |83915 |35025 |1 |20 |12h |0 | |
ROW |83916 |35027 |1 |1 |0.1 |0 | |
ROW |83917 |35027 |2 |20 |6h |0 | |
ROW |83918 |35028 |1 |1 |0.1 |0 | |
@@ -57196,11 +57249,11 @@ ROW |85190 |31422 |1 |20 |1h
ROW |85191 |31426 |1 |20 |1h |0 | |
ROW |85192 |31974 |1 |20 |1h |0 | |
ROW |85193 |32001 |1 |20 |1h |0 | |
-ROW |85194 |36160 |1 |20 |1d |0 | |
-ROW |85195 |36161 |1 |20 |1d |0 | |
-ROW |85196 |36162 |1 |20 |1h |0 | |
-ROW |85197 |36163 |1 |20 |1h |0 | |
-ROW |85198 |36164 |1 |20 |1h |0 | |
+ROW |85194 |36160 |1 |20 |12h |0 | |
+ROW |85195 |36161 |1 |20 |12h |0 | |
+ROW |85196 |36162 |1 |20 |12h |0 | |
+ROW |85197 |36163 |1 |20 |12h |0 | |
+ROW |85198 |36164 |1 |20 |12h |0 | |
ROW |85199 |36165 |1 |1 |0.01 |0 | |
ROW |85200 |36167 |1 |20 |1h |0 | |
ROW |85201 |36171 |1 |21 |var result = [];&bsn;&bsn;JSON.parse(value).forEach(function (netif) {&bsn; if (typeof netif["{#IFNAME}"] === 'undefined') {&bsn; netif["{#IFNAME}"] = netif["{#IFDESCR}"];&bsn; }&bsn; if (typeof netif["{#IFALIAS}"] === 'undefined') {&bsn; netif["{#IFALIAS}"] = "";&bsn; }&bsn; result.push(netif);&bsn;});&bsn;&bsn;return JSON.stringify(result); |0 | |
@@ -57979,11 +58032,11 @@ ROW |85973 |36821 |1 |12 |$[?(@.disk_name=='{#NAME}')].ata_smart_at
ROW |85974 |36821 |2 |20 |6h |0 | |
ROW |85975 |36824 |1 |20 |1h |0 | |
ROW |85976 |36825 |1 |20 |1h |0 | |
-ROW |85977 |36830 |1 |20 |1d |0 | |
-ROW |85978 |36831 |1 |20 |1d |0 | |
-ROW |85979 |36832 |1 |20 |1h |0 | |
-ROW |85980 |36833 |1 |20 |1h |0 | |
-ROW |85981 |36834 |1 |20 |1h |0 | |
+ROW |85977 |36830 |1 |20 |12h |0 | |
+ROW |85978 |36831 |1 |20 |12h |0 | |
+ROW |85979 |36832 |1 |20 |12h |0 | |
+ROW |85980 |36833 |1 |20 |12h |0 | |
+ROW |85981 |36834 |1 |20 |12h |0 | |
ROW |85982 |36835 |1 |1 |0.01 |0 | |
ROW |85983 |36838 |1 |10 | |0 | |
ROW |85984 |36839 |1 |10 | |0 | |
@@ -58011,11 +58064,11 @@ ROW |86005 |36874 |1 |20 |1h
ROW |86006 |36876 |1 |20 |1h |0 | |
ROW |86007 |36878 |1 |1 |1024 |0 | |
ROW |86008 |36879 |1 |1 |1024 |0 | |
-ROW |86009 |36884 |1 |20 |1d |0 | |
-ROW |86010 |36885 |1 |20 |1d |0 | |
-ROW |86011 |36886 |1 |20 |1h |0 | |
-ROW |86012 |36887 |1 |20 |1h |0 | |
-ROW |86013 |36888 |1 |20 |1h |0 | |
+ROW |86009 |36884 |1 |20 |12h |0 | |
+ROW |86010 |36885 |1 |20 |12h |0 | |
+ROW |86011 |36886 |1 |20 |12h |0 | |
+ROW |86012 |36887 |1 |20 |12h |0 | |
+ROW |86013 |36888 |1 |20 |12h |0 | |
ROW |86014 |36889 |1 |1 |0.01 |0 | |
ROW |86015 |36892 |1 |10 | |0 | |
ROW |86016 |36893 |1 |10 | |0 | |
@@ -58043,11 +58096,11 @@ ROW |86037 |36928 |1 |20 |1h
ROW |86038 |36930 |1 |20 |1h |0 | |
ROW |86039 |36932 |1 |1 |1024 |0 | |
ROW |86040 |36933 |1 |1 |1024 |0 | |
-ROW |86041 |36938 |1 |20 |1d |0 | |
-ROW |86042 |36939 |1 |20 |1d |0 | |
-ROW |86043 |36940 |1 |20 |1h |0 | |
-ROW |86044 |36941 |1 |20 |1h |0 | |
-ROW |86045 |36942 |1 |20 |1h |0 | |
+ROW |86041 |36938 |1 |20 |12h |0 | |
+ROW |86042 |36939 |1 |20 |12h |0 | |
+ROW |86043 |36940 |1 |20 |12h |0 | |
+ROW |86044 |36941 |1 |20 |12h |0 | |
+ROW |86045 |36942 |1 |20 |12h |0 | |
ROW |86046 |36943 |1 |1 |0.01 |0 | |
ROW |86047 |36946 |1 |10 | |0 | |
ROW |86048 |36947 |1 |10 | |0 | |
@@ -58075,11 +58128,11 @@ ROW |86069 |36982 |1 |20 |1h
ROW |86070 |36984 |1 |20 |1h |0 | |
ROW |86071 |36986 |1 |1 |1024 |0 | |
ROW |86072 |36987 |1 |1 |1024 |0 | |
-ROW |86073 |36992 |1 |20 |1d |0 | |
-ROW |86074 |36993 |1 |20 |1d |0 | |
-ROW |86075 |36994 |1 |20 |1h |0 | |
-ROW |86076 |36995 |1 |20 |1h |0 | |
-ROW |86077 |36996 |1 |20 |1h |0 | |
+ROW |86073 |36992 |1 |20 |12h |0 | |
+ROW |86074 |36993 |1 |20 |12h |0 | |
+ROW |86075 |36994 |1 |20 |12h |0 | |
+ROW |86076 |36995 |1 |20 |12h |0 | |
+ROW |86077 |36996 |1 |20 |12h |0 | |
ROW |86078 |36997 |1 |1 |0.01 |0 | |
ROW |86079 |37000 |1 |10 | |0 | |
ROW |86080 |37001 |1 |10 | |0 | |
@@ -58107,11 +58160,11 @@ ROW |86101 |37036 |1 |20 |1h
ROW |86102 |37038 |1 |20 |1h |0 | |
ROW |86103 |37040 |1 |1 |1024 |0 | |
ROW |86104 |37041 |1 |1 |1024 |0 | |
-ROW |86105 |37046 |1 |20 |1d |0 | |
-ROW |86106 |37047 |1 |20 |1d |0 | |
-ROW |86107 |37048 |1 |20 |1h |0 | |
-ROW |86108 |37049 |1 |20 |1h |0 | |
-ROW |86109 |37050 |1 |20 |1h |0 | |
+ROW |86105 |37046 |1 |20 |12h |0 | |
+ROW |86106 |37047 |1 |20 |12h |0 | |
+ROW |86107 |37048 |1 |20 |12h |0 | |
+ROW |86108 |37049 |1 |20 |12h |0 | |
+ROW |86109 |37050 |1 |20 |12h |0 | |
ROW |86110 |37051 |1 |1 |0.01 |0 | |
ROW |86111 |37054 |1 |10 | |0 | |
ROW |86112 |37055 |1 |10 | |0 | |
@@ -58139,11 +58192,11 @@ ROW |86133 |37090 |1 |20 |1h
ROW |86134 |37092 |1 |20 |1h |0 | |
ROW |86135 |37094 |1 |1 |1024 |0 | |
ROW |86136 |37095 |1 |1 |1024 |0 | |
-ROW |86137 |37100 |1 |20 |1d |0 | |
-ROW |86138 |37101 |1 |20 |1d |0 | |
-ROW |86139 |37102 |1 |20 |1h |0 | |
-ROW |86140 |37103 |1 |20 |1h |0 | |
-ROW |86141 |37104 |1 |20 |1h |0 | |
+ROW |86137 |37100 |1 |20 |12h |0 | |
+ROW |86138 |37101 |1 |20 |12h |0 | |
+ROW |86139 |37102 |1 |20 |12h |0 | |
+ROW |86140 |37103 |1 |20 |12h |0 | |
+ROW |86141 |37104 |1 |20 |12h |0 | |
ROW |86142 |37105 |1 |1 |0.01 |0 | |
ROW |86143 |37108 |1 |10 | |0 | |
ROW |86144 |37109 |1 |10 | |0 | |
@@ -58171,11 +58224,11 @@ ROW |86165 |37144 |1 |20 |1h
ROW |86166 |37146 |1 |20 |1h |0 | |
ROW |86167 |37148 |1 |1 |1024 |0 | |
ROW |86168 |37149 |1 |1 |1024 |0 | |
-ROW |86169 |37154 |1 |20 |1d |0 | |
-ROW |86170 |37155 |1 |20 |1d |0 | |
-ROW |86171 |37156 |1 |20 |1h |0 | |
-ROW |86172 |37157 |1 |20 |1h |0 | |
-ROW |86173 |37158 |1 |20 |1h |0 | |
+ROW |86169 |37154 |1 |20 |12h |0 | |
+ROW |86170 |37155 |1 |20 |12h |0 | |
+ROW |86171 |37156 |1 |20 |12h |0 | |
+ROW |86172 |37157 |1 |20 |12h |0 | |
+ROW |86173 |37158 |1 |20 |12h |0 | |
ROW |86174 |37159 |1 |1 |0.01 |0 | |
ROW |86175 |37162 |1 |10 | |0 | |
ROW |86176 |37163 |1 |10 | |0 | |
@@ -58203,11 +58256,11 @@ ROW |86197 |37198 |1 |20 |1h
ROW |86198 |37200 |1 |20 |1h |0 | |
ROW |86199 |37202 |1 |1 |1024 |0 | |
ROW |86200 |37203 |1 |1 |1024 |0 | |
-ROW |86201 |37208 |1 |20 |1d |0 | |
-ROW |86202 |37209 |1 |20 |1d |0 | |
-ROW |86203 |37210 |1 |20 |1h |0 | |
-ROW |86204 |37211 |1 |20 |1h |0 | |
-ROW |86205 |37212 |1 |20 |1h |0 | |
+ROW |86201 |37208 |1 |20 |12h |0 | |
+ROW |86202 |37209 |1 |20 |12h |0 | |
+ROW |86203 |37210 |1 |20 |12h |0 | |
+ROW |86204 |37211 |1 |20 |12h |0 | |
+ROW |86205 |37212 |1 |20 |12h |0 | |
ROW |86206 |37213 |1 |1 |0.01 |0 | |
ROW |86207 |37216 |1 |10 | |0 | |
ROW |86208 |37217 |1 |10 | |0 | |
@@ -58235,11 +58288,11 @@ ROW |86229 |37252 |1 |20 |1h
ROW |86230 |37254 |1 |20 |1h |0 | |
ROW |86231 |37256 |1 |1 |1024 |0 | |
ROW |86232 |37257 |1 |1 |1024 |0 | |
-ROW |86233 |37262 |1 |20 |1d |0 | |
-ROW |86234 |37263 |1 |20 |1d |0 | |
-ROW |86235 |37264 |1 |20 |1h |0 | |
-ROW |86236 |37265 |1 |20 |1h |0 | |
-ROW |86237 |37266 |1 |20 |1h |0 | |
+ROW |86233 |37262 |1 |20 |12h |0 | |
+ROW |86234 |37263 |1 |20 |12h |0 | |
+ROW |86235 |37264 |1 |20 |12h |0 | |
+ROW |86236 |37265 |1 |20 |12h |0 | |
+ROW |86237 |37266 |1 |20 |12h |0 | |
ROW |86238 |37267 |1 |1 |0.01 |0 | |
ROW |86239 |37270 |1 |10 | |0 | |
ROW |86240 |37271 |1 |10 | |0 | |
@@ -58267,11 +58320,11 @@ ROW |86261 |37306 |1 |20 |1h
ROW |86262 |37308 |1 |20 |1h |0 | |
ROW |86263 |37310 |1 |1 |1024 |0 | |
ROW |86264 |37311 |1 |1 |1024 |0 | |
-ROW |86265 |37316 |1 |20 |1d |0 | |
-ROW |86266 |37317 |1 |20 |1d |0 | |
-ROW |86267 |37318 |1 |20 |1h |0 | |
-ROW |86268 |37319 |1 |20 |1h |0 | |
-ROW |86269 |37320 |1 |20 |1h |0 | |
+ROW |86265 |37316 |1 |20 |12h |0 | |
+ROW |86266 |37317 |1 |20 |12h |0 | |
+ROW |86267 |37318 |1 |20 |12h |0 | |
+ROW |86268 |37319 |1 |20 |12h |0 | |
+ROW |86269 |37320 |1 |20 |12h |0 | |
ROW |86270 |37321 |1 |1 |0.01 |0 | |
ROW |86271 |37324 |1 |10 | |0 | |
ROW |86272 |37325 |1 |10 | |0 | |
@@ -58299,11 +58352,11 @@ ROW |86293 |37360 |1 |20 |1h
ROW |86294 |37362 |1 |20 |1h |0 | |
ROW |86295 |37364 |1 |1 |1024 |0 | |
ROW |86296 |37365 |1 |1 |1024 |0 | |
-ROW |86297 |37370 |1 |20 |1d |0 | |
-ROW |86298 |37371 |1 |20 |1d |0 | |
-ROW |86299 |37372 |1 |20 |1h |0 | |
-ROW |86300 |37373 |1 |20 |1h |0 | |
-ROW |86301 |37374 |1 |20 |1h |0 | |
+ROW |86297 |37370 |1 |20 |12h |0 | |
+ROW |86298 |37371 |1 |20 |12h |0 | |
+ROW |86299 |37372 |1 |20 |12h |0 | |
+ROW |86300 |37373 |1 |20 |12h |0 | |
+ROW |86301 |37374 |1 |20 |12h |0 | |
ROW |86302 |37375 |1 |1 |0.01 |0 | |
ROW |86303 |37378 |1 |10 | |0 | |
ROW |86304 |37379 |1 |10 | |0 | |
@@ -58331,11 +58384,11 @@ ROW |86325 |37414 |1 |20 |1h
ROW |86326 |37416 |1 |20 |1h |0 | |
ROW |86327 |37418 |1 |1 |1024 |0 | |
ROW |86328 |37419 |1 |1 |1024 |0 | |
-ROW |86329 |37424 |1 |20 |1d |0 | |
-ROW |86330 |37425 |1 |20 |1d |0 | |
-ROW |86331 |37426 |1 |20 |1h |0 | |
-ROW |86332 |37427 |1 |20 |1h |0 | |
-ROW |86333 |37428 |1 |20 |1h |0 | |
+ROW |86329 |37424 |1 |20 |12h |0 | |
+ROW |86330 |37425 |1 |20 |12h |0 | |
+ROW |86331 |37426 |1 |20 |12h |0 | |
+ROW |86332 |37427 |1 |20 |12h |0 | |
+ROW |86333 |37428 |1 |20 |12h |0 | |
ROW |86334 |37429 |1 |1 |0.01 |0 | |
ROW |86335 |37432 |1 |10 | |0 | |
ROW |86336 |37433 |1 |10 | |0 | |
@@ -58363,11 +58416,11 @@ ROW |86357 |37468 |1 |20 |1h
ROW |86358 |37470 |1 |20 |1h |0 | |
ROW |86359 |37472 |1 |1 |1024 |0 | |
ROW |86360 |37473 |1 |1 |1024 |0 | |
-ROW |86361 |37478 |1 |20 |1d |0 | |
-ROW |86362 |37479 |1 |20 |1d |0 | |
-ROW |86363 |37480 |1 |20 |1h |0 | |
-ROW |86364 |37481 |1 |20 |1h |0 | |
-ROW |86365 |37482 |1 |20 |1h |0 | |
+ROW |86361 |37478 |1 |20 |12h |0 | |
+ROW |86362 |37479 |1 |20 |12h |0 | |
+ROW |86363 |37480 |1 |20 |12h |0 | |
+ROW |86364 |37481 |1 |20 |12h |0 | |
+ROW |86365 |37482 |1 |20 |12h |0 | |
ROW |86366 |37483 |1 |1 |0.01 |0 | |
ROW |86367 |37486 |1 |10 | |0 | |
ROW |86368 |37487 |1 |10 | |0 | |
@@ -58395,11 +58448,11 @@ ROW |86389 |37522 |1 |20 |1h
ROW |86390 |37524 |1 |20 |1h |0 | |
ROW |86391 |37526 |1 |1 |1024 |0 | |
ROW |86392 |37527 |1 |1 |1024 |0 | |
-ROW |86393 |37532 |1 |20 |1d |0 | |
-ROW |86394 |37533 |1 |20 |1d |0 | |
-ROW |86395 |37534 |1 |20 |1h |0 | |
-ROW |86396 |37535 |1 |20 |1h |0 | |
-ROW |86397 |37536 |1 |20 |1h |0 | |
+ROW |86393 |37532 |1 |20 |12h |0 | |
+ROW |86394 |37533 |1 |20 |12h |0 | |
+ROW |86395 |37534 |1 |20 |12h |0 | |
+ROW |86396 |37535 |1 |20 |12h |0 | |
+ROW |86397 |37536 |1 |20 |12h |0 | |
ROW |86398 |37537 |1 |1 |0.01 |0 | |
ROW |86399 |37540 |1 |10 | |0 | |
ROW |86400 |37541 |1 |10 | |0 | |
@@ -58427,11 +58480,11 @@ ROW |86421 |37576 |1 |20 |1h
ROW |86422 |37578 |1 |20 |1h |0 | |
ROW |86423 |37580 |1 |1 |1024 |0 | |
ROW |86424 |37581 |1 |1 |1024 |0 | |
-ROW |86425 |37586 |1 |20 |1d |0 | |
-ROW |86426 |37587 |1 |20 |1d |0 | |
-ROW |86427 |37588 |1 |20 |1h |0 | |
-ROW |86428 |37589 |1 |20 |1h |0 | |
-ROW |86429 |37590 |1 |20 |1h |0 | |
+ROW |86425 |37586 |1 |20 |12h |0 | |
+ROW |86426 |37587 |1 |20 |12h |0 | |
+ROW |86427 |37588 |1 |20 |12h |0 | |
+ROW |86428 |37589 |1 |20 |12h |0 | |
+ROW |86429 |37590 |1 |20 |12h |0 | |
ROW |86430 |37591 |1 |1 |0.01 |0 | |
ROW |86431 |37594 |1 |10 | |0 | |
ROW |86432 |37595 |1 |10 | |0 | |
@@ -58459,11 +58512,11 @@ ROW |86453 |37630 |1 |20 |1h
ROW |86454 |37632 |1 |20 |1h |0 | |
ROW |86455 |37634 |1 |1 |1024 |0 | |
ROW |86456 |37635 |1 |1 |1024 |0 | |
-ROW |86457 |37640 |1 |20 |1d |0 | |
-ROW |86458 |37641 |1 |20 |1d |0 | |
-ROW |86459 |37642 |1 |20 |1h |0 | |
-ROW |86460 |37643 |1 |20 |1h |0 | |
-ROW |86461 |37644 |1 |20 |1h |0 | |
+ROW |86457 |37640 |1 |20 |12h |0 | |
+ROW |86458 |37641 |1 |20 |12h |0 | |
+ROW |86459 |37642 |1 |20 |12h |0 | |
+ROW |86460 |37643 |1 |20 |12h |0 | |
+ROW |86461 |37644 |1 |20 |12h |0 | |
ROW |86462 |37645 |1 |1 |0.01 |0 | |
ROW |86463 |37648 |1 |10 | |0 | |
ROW |86464 |37649 |1 |10 | |0 | |
@@ -58491,11 +58544,11 @@ ROW |86485 |37684 |1 |20 |1h
ROW |86486 |37686 |1 |20 |1h |0 | |
ROW |86487 |37688 |1 |1 |1024 |0 | |
ROW |86488 |37689 |1 |1 |1024 |0 | |
-ROW |86489 |37694 |1 |20 |1d |0 | |
-ROW |86490 |37695 |1 |20 |1d |0 | |
-ROW |86491 |37696 |1 |20 |1h |0 | |
-ROW |86492 |37697 |1 |20 |1h |0 | |
-ROW |86493 |37698 |1 |20 |1h |0 | |
+ROW |86489 |37694 |1 |20 |12h |0 | |
+ROW |86490 |37695 |1 |20 |12h |0 | |
+ROW |86491 |37696 |1 |20 |12h |0 | |
+ROW |86492 |37697 |1 |20 |12h |0 | |
+ROW |86493 |37698 |1 |20 |12h |0 | |
ROW |86494 |37699 |1 |1 |0.01 |0 | |
ROW |86495 |37702 |1 |10 | |0 | |
ROW |86496 |37703 |1 |10 | |0 | |
@@ -58523,11 +58576,11 @@ ROW |86517 |37738 |1 |20 |1h
ROW |86518 |37740 |1 |20 |1h |0 | |
ROW |86519 |37742 |1 |1 |1024 |0 | |
ROW |86520 |37743 |1 |1 |1024 |0 | |
-ROW |86521 |37748 |1 |20 |1d |0 | |
-ROW |86522 |37749 |1 |20 |1d |0 | |
-ROW |86523 |37750 |1 |20 |1h |0 | |
-ROW |86524 |37751 |1 |20 |1h |0 | |
-ROW |86525 |37752 |1 |20 |1h |0 | |
+ROW |86521 |37748 |1 |20 |12h |0 | |
+ROW |86522 |37749 |1 |20 |12h |0 | |
+ROW |86523 |37750 |1 |20 |12h |0 | |
+ROW |86524 |37751 |1 |20 |12h |0 | |
+ROW |86525 |37752 |1 |20 |12h |0 | |
ROW |86526 |37753 |1 |1 |0.01 |0 | |
ROW |86527 |37756 |1 |10 | |0 | |
ROW |86528 |37757 |1 |10 | |0 | |
@@ -58555,11 +58608,11 @@ ROW |86549 |37792 |1 |20 |1h
ROW |86550 |37794 |1 |20 |1h |0 | |
ROW |86551 |37796 |1 |1 |1024 |0 | |
ROW |86552 |37797 |1 |1 |1024 |0 | |
-ROW |86553 |37802 |1 |20 |1d |0 | |
-ROW |86554 |37803 |1 |20 |1d |0 | |
-ROW |86555 |37804 |1 |20 |1h |0 | |
-ROW |86556 |37805 |1 |20 |1h |0 | |
-ROW |86557 |37806 |1 |20 |1h |0 | |
+ROW |86553 |37802 |1 |20 |12h |0 | |
+ROW |86554 |37803 |1 |20 |12h |0 | |
+ROW |86555 |37804 |1 |20 |12h |0 | |
+ROW |86556 |37805 |1 |20 |12h |0 | |
+ROW |86557 |37806 |1 |20 |12h |0 | |
ROW |86558 |37807 |1 |1 |0.01 |0 | |
ROW |86559 |37810 |1 |10 | |0 | |
ROW |86560 |37811 |1 |10 | |0 | |
@@ -58587,11 +58640,11 @@ ROW |86581 |37846 |1 |20 |1h
ROW |86582 |37848 |1 |20 |1h |0 | |
ROW |86583 |37850 |1 |1 |1024 |0 | |
ROW |86584 |37851 |1 |1 |1024 |0 | |
-ROW |86585 |37856 |1 |20 |1d |0 | |
-ROW |86586 |37857 |1 |20 |1d |0 | |
-ROW |86587 |37858 |1 |20 |1h |0 | |
-ROW |86588 |37859 |1 |20 |1h |0 | |
-ROW |86589 |37860 |1 |20 |1h |0 | |
+ROW |86585 |37856 |1 |20 |12h |0 | |
+ROW |86586 |37857 |1 |20 |12h |0 | |
+ROW |86587 |37858 |1 |20 |12h |0 | |
+ROW |86588 |37859 |1 |20 |12h |0 | |
+ROW |86589 |37860 |1 |20 |12h |0 | |
ROW |86590 |37861 |1 |1 |0.01 |0 | |
ROW |86591 |37864 |1 |10 | |0 | |
ROW |86592 |37865 |1 |10 | |0 | |
@@ -58619,11 +58672,11 @@ ROW |86613 |37900 |1 |20 |1h
ROW |86614 |37902 |1 |20 |1h |0 | |
ROW |86615 |37904 |1 |1 |1024 |0 | |
ROW |86616 |37905 |1 |1 |1024 |0 | |
-ROW |86617 |37910 |1 |20 |1d |0 | |
-ROW |86618 |37911 |1 |20 |1d |0 | |
-ROW |86619 |37912 |1 |20 |1h |0 | |
-ROW |86620 |37913 |1 |20 |1h |0 | |
-ROW |86621 |37914 |1 |20 |1h |0 | |
+ROW |86617 |37910 |1 |20 |12h |0 | |
+ROW |86618 |37911 |1 |20 |12h |0 | |
+ROW |86619 |37912 |1 |20 |12h |0 | |
+ROW |86620 |37913 |1 |20 |12h |0 | |
+ROW |86621 |37914 |1 |20 |12h |0 | |
ROW |86622 |37915 |1 |1 |0.01 |0 | |
ROW |86623 |37918 |1 |10 | |0 | |
ROW |86624 |37919 |1 |10 | |0 | |
@@ -58651,11 +58704,11 @@ ROW |86645 |37954 |1 |20 |1h
ROW |86646 |37956 |1 |20 |1h |0 | |
ROW |86647 |37958 |1 |1 |1024 |0 | |
ROW |86648 |37959 |1 |1 |1024 |0 | |
-ROW |86649 |37964 |1 |20 |1d |0 | |
-ROW |86650 |37965 |1 |20 |1d |0 | |
-ROW |86651 |37966 |1 |20 |1h |0 | |
-ROW |86652 |37967 |1 |20 |1h |0 | |
-ROW |86653 |37968 |1 |20 |1h |0 | |
+ROW |86649 |37964 |1 |20 |12h |0 | |
+ROW |86650 |37965 |1 |20 |12h |0 | |
+ROW |86651 |37966 |1 |20 |12h |0 | |
+ROW |86652 |37967 |1 |20 |12h |0 | |
+ROW |86653 |37968 |1 |20 |12h |0 | |
ROW |86654 |37969 |1 |1 |0.01 |0 | |
ROW |86655 |37972 |1 |10 | |0 | |
ROW |86656 |37973 |1 |10 | |0 | |
@@ -58683,11 +58736,11 @@ ROW |86677 |38008 |1 |20 |1h
ROW |86678 |38010 |1 |20 |1h |0 | |
ROW |86679 |38012 |1 |1 |1024 |0 | |
ROW |86680 |38013 |1 |1 |1024 |0 | |
-ROW |86681 |38018 |1 |20 |1d |0 | |
-ROW |86682 |38019 |1 |20 |1d |0 | |
-ROW |86683 |38020 |1 |20 |1h |0 | |
-ROW |86684 |38021 |1 |20 |1h |0 | |
-ROW |86685 |38022 |1 |20 |1h |0 | |
+ROW |86681 |38018 |1 |20 |12h |0 | |
+ROW |86682 |38019 |1 |20 |12h |0 | |
+ROW |86683 |38020 |1 |20 |12h |0 | |
+ROW |86684 |38021 |1 |20 |12h |0 | |
+ROW |86685 |38022 |1 |20 |12h |0 | |
ROW |86686 |38023 |1 |1 |0.01 |0 | |
ROW |86687 |38026 |1 |10 | |0 | |
ROW |86688 |38027 |1 |10 | |0 | |
@@ -58715,11 +58768,11 @@ ROW |86709 |38062 |1 |20 |1h
ROW |86710 |38064 |1 |20 |1h |0 | |
ROW |86711 |38066 |1 |1 |1024 |0 | |
ROW |86712 |38067 |1 |1 |1024 |0 | |
-ROW |86713 |38072 |1 |20 |1d |0 | |
-ROW |86714 |38073 |1 |20 |1d |0 | |
-ROW |86715 |38074 |1 |20 |1h |0 | |
-ROW |86716 |38075 |1 |20 |1h |0 | |
-ROW |86717 |38076 |1 |20 |1h |0 | |
+ROW |86713 |38072 |1 |20 |12h |0 | |
+ROW |86714 |38073 |1 |20 |12h |0 | |
+ROW |86715 |38074 |1 |20 |12h |0 | |
+ROW |86716 |38075 |1 |20 |12h |0 | |
+ROW |86717 |38076 |1 |20 |12h |0 | |
ROW |86718 |38077 |1 |1 |0.01 |0 | |
ROW |86719 |38080 |1 |10 | |0 | |
ROW |86720 |38081 |1 |10 | |0 | |
@@ -58747,11 +58800,11 @@ ROW |86741 |38116 |1 |20 |1h
ROW |86742 |38118 |1 |20 |1h |0 | |
ROW |86743 |38120 |1 |1 |1024 |0 | |
ROW |86744 |38121 |1 |1 |1024 |0 | |
-ROW |86745 |38126 |1 |20 |1d |0 | |
-ROW |86746 |38127 |1 |20 |1d |0 | |
-ROW |86747 |38128 |1 |20 |1h |0 | |
-ROW |86748 |38129 |1 |20 |1h |0 | |
-ROW |86749 |38130 |1 |20 |1h |0 | |
+ROW |86745 |38126 |1 |20 |12h |0 | |
+ROW |86746 |38127 |1 |20 |12h |0 | |
+ROW |86747 |38128 |1 |20 |12h |0 | |
+ROW |86748 |38129 |1 |20 |12h |0 | |
+ROW |86749 |38130 |1 |20 |12h |0 | |
ROW |86750 |38131 |1 |1 |0.01 |0 | |
ROW |86751 |38134 |1 |10 | |0 | |
ROW |86752 |38135 |1 |10 | |0 | |
@@ -58779,11 +58832,11 @@ ROW |86773 |38170 |1 |20 |1h
ROW |86774 |38172 |1 |20 |1h |0 | |
ROW |86775 |38174 |1 |1 |1024 |0 | |
ROW |86776 |38175 |1 |1 |1024 |0 | |
-ROW |86777 |38180 |1 |20 |1d |0 | |
-ROW |86778 |38181 |1 |20 |1d |0 | |
-ROW |86779 |38182 |1 |20 |1h |0 | |
-ROW |86780 |38183 |1 |20 |1h |0 | |
-ROW |86781 |38184 |1 |20 |1h |0 | |
+ROW |86777 |38180 |1 |20 |12h |0 | |
+ROW |86778 |38181 |1 |20 |12h |0 | |
+ROW |86779 |38182 |1 |20 |12h |0 | |
+ROW |86780 |38183 |1 |20 |12h |0 | |
+ROW |86781 |38184 |1 |20 |12h |0 | |
ROW |86782 |38185 |1 |1 |0.01 |0 | |
ROW |86783 |38188 |1 |10 | |0 | |
ROW |86784 |38189 |1 |10 | |0 | |
@@ -58811,11 +58864,11 @@ ROW |86805 |38224 |1 |20 |1h
ROW |86806 |38226 |1 |20 |1h |0 | |
ROW |86807 |38228 |1 |1 |1024 |0 | |
ROW |86808 |38229 |1 |1 |1024 |0 | |
-ROW |86809 |38234 |1 |20 |1d |0 | |
-ROW |86810 |38235 |1 |20 |1d |0 | |
-ROW |86811 |38236 |1 |20 |1h |0 | |
-ROW |86812 |38237 |1 |20 |1h |0 | |
-ROW |86813 |38238 |1 |20 |1h |0 | |
+ROW |86809 |38234 |1 |20 |12h |0 | |
+ROW |86810 |38235 |1 |20 |12h |0 | |
+ROW |86811 |38236 |1 |20 |12h |0 | |
+ROW |86812 |38237 |1 |20 |12h |0 | |
+ROW |86813 |38238 |1 |20 |12h |0 | |
ROW |86814 |38239 |1 |1 |0.01 |0 | |
ROW |86815 |38242 |1 |10 | |0 | |
ROW |86816 |38243 |1 |10 | |0 | |
@@ -58843,11 +58896,11 @@ ROW |86837 |38278 |1 |20 |1h
ROW |86838 |38280 |1 |20 |1h |0 | |
ROW |86839 |38282 |1 |1 |1024 |0 | |
ROW |86840 |38283 |1 |1 |1024 |0 | |
-ROW |86841 |38288 |1 |20 |1d |0 | |
-ROW |86842 |38289 |1 |20 |1d |0 | |
-ROW |86843 |38290 |1 |20 |1h |0 | |
-ROW |86844 |38291 |1 |20 |1h |0 | |
-ROW |86845 |38292 |1 |20 |1h |0 | |
+ROW |86841 |38288 |1 |20 |12h |0 | |
+ROW |86842 |38289 |1 |20 |12h |0 | |
+ROW |86843 |38290 |1 |20 |12h |0 | |
+ROW |86844 |38291 |1 |20 |12h |0 | |
+ROW |86845 |38292 |1 |20 |12h |0 | |
ROW |86846 |38293 |1 |1 |0.01 |0 | |
ROW |86847 |38296 |1 |10 | |0 | |
ROW |86848 |38297 |1 |10 | |0 | |
@@ -58875,11 +58928,11 @@ ROW |86869 |38332 |1 |20 |1h
ROW |86870 |38334 |1 |20 |1h |0 | |
ROW |86871 |38336 |1 |1 |1024 |0 | |
ROW |86872 |38337 |1 |1 |1024 |0 | |
-ROW |86873 |38342 |1 |20 |1d |0 | |
-ROW |86874 |38343 |1 |20 |1d |0 | |
-ROW |86875 |38344 |1 |20 |1h |0 | |
-ROW |86876 |38345 |1 |20 |1h |0 | |
-ROW |86877 |38346 |1 |20 |1h |0 | |
+ROW |86873 |38342 |1 |20 |12h |0 | |
+ROW |86874 |38343 |1 |20 |12h |0 | |
+ROW |86875 |38344 |1 |20 |12h |0 | |
+ROW |86876 |38345 |1 |20 |12h |0 | |
+ROW |86877 |38346 |1 |20 |12h |0 | |
ROW |86878 |38347 |1 |1 |0.01 |0 | |
ROW |86879 |38350 |1 |10 | |0 | |
ROW |86880 |38351 |1 |10 | |0 | |
@@ -58907,11 +58960,11 @@ ROW |86901 |38386 |1 |20 |1h
ROW |86902 |38388 |1 |20 |1h |0 | |
ROW |86903 |38390 |1 |1 |1024 |0 | |
ROW |86904 |38391 |1 |1 |1024 |0 | |
-ROW |86905 |38396 |1 |20 |1d |0 | |
-ROW |86906 |38397 |1 |20 |1d |0 | |
-ROW |86907 |38398 |1 |20 |1h |0 | |
-ROW |86908 |38399 |1 |20 |1h |0 | |
-ROW |86909 |38400 |1 |20 |1h |0 | |
+ROW |86905 |38396 |1 |20 |12h |0 | |
+ROW |86906 |38397 |1 |20 |12h |0 | |
+ROW |86907 |38398 |1 |20 |12h |0 | |
+ROW |86908 |38399 |1 |20 |12h |0 | |
+ROW |86909 |38400 |1 |20 |12h |0 | |
ROW |86910 |38401 |1 |1 |0.01 |0 | |
ROW |86911 |38404 |1 |10 | |0 | |
ROW |86912 |38405 |1 |10 | |0 | |
@@ -58939,11 +58992,11 @@ ROW |86933 |38440 |1 |20 |1h
ROW |86934 |38442 |1 |20 |1h |0 | |
ROW |86935 |38444 |1 |1 |1024 |0 | |
ROW |86936 |38445 |1 |1 |1024 |0 | |
-ROW |86937 |38450 |1 |20 |1d |0 | |
-ROW |86938 |38451 |1 |20 |1d |0 | |
-ROW |86939 |38452 |1 |20 |1h |0 | |
-ROW |86940 |38453 |1 |20 |1h |0 | |
-ROW |86941 |38454 |1 |20 |1h |0 | |
+ROW |86937 |38450 |1 |20 |12h |0 | |
+ROW |86938 |38451 |1 |20 |12h |0 | |
+ROW |86939 |38452 |1 |20 |12h |0 | |
+ROW |86940 |38453 |1 |20 |12h |0 | |
+ROW |86941 |38454 |1 |20 |12h |0 | |
ROW |86942 |38455 |1 |1 |0.01 |0 | |
ROW |86943 |38458 |1 |10 | |0 | |
ROW |86944 |38459 |1 |10 | |0 | |
@@ -58971,11 +59024,11 @@ ROW |86965 |38494 |1 |20 |1h
ROW |86966 |38496 |1 |20 |1h |0 | |
ROW |86967 |38498 |1 |1 |1024 |0 | |
ROW |86968 |38499 |1 |1 |1024 |0 | |
-ROW |86969 |38504 |1 |20 |1d |0 | |
-ROW |86970 |38505 |1 |20 |1d |0 | |
-ROW |86971 |38506 |1 |20 |1h |0 | |
-ROW |86972 |38507 |1 |20 |1h |0 | |
-ROW |86973 |38508 |1 |20 |1h |0 | |
+ROW |86969 |38504 |1 |20 |12h |0 | |
+ROW |86970 |38505 |1 |20 |12h |0 | |
+ROW |86971 |38506 |1 |20 |12h |0 | |
+ROW |86972 |38507 |1 |20 |12h |0 | |
+ROW |86973 |38508 |1 |20 |12h |0 | |
ROW |86974 |38509 |1 |1 |0.01 |0 | |
ROW |86975 |38512 |1 |10 | |0 | |
ROW |86976 |38513 |1 |10 | |0 | |
@@ -59003,11 +59056,11 @@ ROW |86997 |38548 |1 |20 |1h
ROW |86998 |38550 |1 |20 |1h |0 | |
ROW |86999 |38552 |1 |1 |1024 |0 | |
ROW |87000 |38553 |1 |1 |1024 |0 | |
-ROW |87001 |38558 |1 |20 |1d |0 | |
-ROW |87002 |38559 |1 |20 |1d |0 | |
-ROW |87003 |38560 |1 |20 |1h |0 | |
-ROW |87004 |38561 |1 |20 |1h |0 | |
-ROW |87005 |38562 |1 |20 |1h |0 | |
+ROW |87001 |38558 |1 |20 |12h |0 | |
+ROW |87002 |38559 |1 |20 |12h |0 | |
+ROW |87003 |38560 |1 |20 |12h |0 | |
+ROW |87004 |38561 |1 |20 |12h |0 | |
+ROW |87005 |38562 |1 |20 |12h |0 | |
ROW |87006 |38563 |1 |1 |0.01 |0 | |
ROW |87007 |38566 |1 |10 | |0 | |
ROW |87008 |38567 |1 |10 | |0 | |
@@ -59035,11 +59088,11 @@ ROW |87029 |38602 |1 |20 |1h
ROW |87030 |38604 |1 |20 |1h |0 | |
ROW |87031 |38606 |1 |1 |1024 |0 | |
ROW |87032 |38607 |1 |1 |1024 |0 | |
-ROW |87033 |38612 |1 |20 |1d |0 | |
-ROW |87034 |38613 |1 |20 |1d |0 | |
-ROW |87035 |38614 |1 |20 |1h |0 | |
-ROW |87036 |38615 |1 |20 |1h |0 | |
-ROW |87037 |38616 |1 |20 |1h |0 | |
+ROW |87033 |38612 |1 |20 |12h |0 | |
+ROW |87034 |38613 |1 |20 |12h |0 | |
+ROW |87035 |38614 |1 |20 |12h |0 | |
+ROW |87036 |38615 |1 |20 |12h |0 | |
+ROW |87037 |38616 |1 |20 |12h |0 | |
ROW |87038 |38617 |1 |1 |0.01 |0 | |
ROW |87039 |38620 |1 |10 | |0 | |
ROW |87040 |38621 |1 |10 | |0 | |
@@ -59067,11 +59120,11 @@ ROW |87061 |38656 |1 |20 |1h
ROW |87062 |38658 |1 |20 |1h |0 | |
ROW |87063 |38660 |1 |1 |1024 |0 | |
ROW |87064 |38661 |1 |1 |1024 |0 | |
-ROW |87065 |38666 |1 |20 |1d |0 | |
-ROW |87066 |38667 |1 |20 |1d |0 | |
-ROW |87067 |38668 |1 |20 |1h |0 | |
-ROW |87068 |38669 |1 |20 |1h |0 | |
-ROW |87069 |38670 |1 |20 |1h |0 | |
+ROW |87065 |38666 |1 |20 |12h |0 | |
+ROW |87066 |38667 |1 |20 |12h |0 | |
+ROW |87067 |38668 |1 |20 |12h |0 | |
+ROW |87068 |38669 |1 |20 |12h |0 | |
+ROW |87069 |38670 |1 |20 |12h |0 | |
ROW |87070 |38671 |1 |1 |0.01 |0 | |
ROW |87071 |38674 |1 |10 | |0 | |
ROW |87072 |38675 |1 |10 | |0 | |
@@ -59099,11 +59152,11 @@ ROW |87093 |38710 |1 |20 |1h
ROW |87094 |38712 |1 |20 |1h |0 | |
ROW |87095 |38714 |1 |1 |1024 |0 | |
ROW |87096 |38715 |1 |1 |1024 |0 | |
-ROW |87097 |38720 |1 |20 |1d |0 | |
-ROW |87098 |38721 |1 |20 |1d |0 | |
-ROW |87099 |38722 |1 |20 |1h |0 | |
-ROW |87100 |38723 |1 |20 |1h |0 | |
-ROW |87101 |38724 |1 |20 |1h |0 | |
+ROW |87097 |38720 |1 |20 |12h |0 | |
+ROW |87098 |38721 |1 |20 |12h |0 | |
+ROW |87099 |38722 |1 |20 |12h |0 | |
+ROW |87100 |38723 |1 |20 |12h |0 | |
+ROW |87101 |38724 |1 |20 |12h |0 | |
ROW |87102 |38725 |1 |1 |0.01 |0 | |
ROW |87103 |38728 |1 |10 | |0 | |
ROW |87104 |38729 |1 |10 | |0 | |
@@ -59131,11 +59184,11 @@ ROW |87125 |38764 |1 |20 |1h
ROW |87126 |38766 |1 |20 |1h |0 | |
ROW |87127 |38768 |1 |1 |1024 |0 | |
ROW |87128 |38769 |1 |1 |1024 |0 | |
-ROW |87129 |38774 |1 |20 |1d |0 | |
-ROW |87130 |38775 |1 |20 |1d |0 | |
-ROW |87131 |38776 |1 |20 |1h |0 | |
-ROW |87132 |38777 |1 |20 |1h |0 | |
-ROW |87133 |38778 |1 |20 |1h |0 | |
+ROW |87129 |38774 |1 |20 |12h |0 | |
+ROW |87130 |38775 |1 |20 |12h |0 | |
+ROW |87131 |38776 |1 |20 |12h |0 | |
+ROW |87132 |38777 |1 |20 |12h |0 | |
+ROW |87133 |38778 |1 |20 |12h |0 | |
ROW |87134 |38779 |1 |1 |0.01 |0 | |
ROW |87135 |38782 |1 |10 | |0 | |
ROW |87136 |38783 |1 |10 | |0 | |
@@ -59163,11 +59216,11 @@ ROW |87157 |38818 |1 |20 |1h
ROW |87158 |38820 |1 |20 |1h |0 | |
ROW |87159 |38822 |1 |1 |1024 |0 | |
ROW |87160 |38823 |1 |1 |1024 |0 | |
-ROW |87161 |38828 |1 |20 |1d |0 | |
-ROW |87162 |38829 |1 |20 |1d |0 | |
-ROW |87163 |38830 |1 |20 |1h |0 | |
-ROW |87164 |38831 |1 |20 |1h |0 | |
-ROW |87165 |38832 |1 |20 |1h |0 | |
+ROW |87161 |38828 |1 |20 |12h |0 | |
+ROW |87162 |38829 |1 |20 |12h |0 | |
+ROW |87163 |38830 |1 |20 |12h |0 | |
+ROW |87164 |38831 |1 |20 |12h |0 | |
+ROW |87165 |38832 |1 |20 |12h |0 | |
ROW |87166 |38833 |1 |1 |0.01 |0 | |
ROW |87167 |38836 |1 |10 | |0 | |
ROW |87168 |38837 |1 |10 | |0 | |
@@ -59195,11 +59248,11 @@ ROW |87189 |38872 |1 |20 |1h
ROW |87190 |38874 |1 |20 |1h |0 | |
ROW |87191 |38876 |1 |1 |1024 |0 | |
ROW |87192 |38877 |1 |1 |1024 |0 | |
-ROW |87193 |38882 |1 |20 |1d |0 | |
-ROW |87194 |38883 |1 |20 |1d |0 | |
-ROW |87195 |38884 |1 |20 |1h |0 | |
-ROW |87196 |38885 |1 |20 |1h |0 | |
-ROW |87197 |38886 |1 |20 |1h |0 | |
+ROW |87193 |38882 |1 |20 |12h |0 | |
+ROW |87194 |38883 |1 |20 |12h |0 | |
+ROW |87195 |38884 |1 |20 |12h |0 | |
+ROW |87196 |38885 |1 |20 |12h |0 | |
+ROW |87197 |38886 |1 |20 |12h |0 | |
ROW |87198 |38887 |1 |1 |0.01 |0 | |
ROW |87199 |38890 |1 |10 | |0 | |
ROW |87200 |38891 |1 |10 | |0 | |
@@ -59227,11 +59280,11 @@ ROW |87221 |38926 |1 |20 |1h
ROW |87222 |38928 |1 |20 |1h |0 | |
ROW |87223 |38930 |1 |1 |1024 |0 | |
ROW |87224 |38931 |1 |1 |1024 |0 | |
-ROW |87225 |38936 |1 |20 |1d |0 | |
-ROW |87226 |38937 |1 |20 |1d |0 | |
-ROW |87227 |38938 |1 |20 |1h |0 | |
-ROW |87228 |38939 |1 |20 |1h |0 | |
-ROW |87229 |38940 |1 |20 |1h |0 | |
+ROW |87225 |38936 |1 |20 |12h |0 | |
+ROW |87226 |38937 |1 |20 |12h |0 | |
+ROW |87227 |38938 |1 |20 |12h |0 | |
+ROW |87228 |38939 |1 |20 |12h |0 | |
+ROW |87229 |38940 |1 |20 |12h |0 | |
ROW |87230 |38941 |1 |1 |0.01 |0 | |
ROW |87231 |38944 |1 |10 | |0 | |
ROW |87232 |38945 |1 |10 | |0 | |
@@ -59259,11 +59312,11 @@ ROW |87253 |38980 |1 |20 |1h
ROW |87254 |38982 |1 |20 |1h |0 | |
ROW |87255 |38984 |1 |1 |1024 |0 | |
ROW |87256 |38985 |1 |1 |1024 |0 | |
-ROW |87257 |38990 |1 |20 |1d |0 | |
-ROW |87258 |38991 |1 |20 |1d |0 | |
-ROW |87259 |38992 |1 |20 |1h |0 | |
-ROW |87260 |38993 |1 |20 |1h |0 | |
-ROW |87261 |38994 |1 |20 |1h |0 | |
+ROW |87257 |38990 |1 |20 |12h |0 | |
+ROW |87258 |38991 |1 |20 |12h |0 | |
+ROW |87259 |38992 |1 |20 |12h |0 | |
+ROW |87260 |38993 |1 |20 |12h |0 | |
+ROW |87261 |38994 |1 |20 |12h |0 | |
ROW |87262 |38995 |1 |1 |0.01 |0 | |
ROW |87263 |38998 |1 |10 | |0 | |
ROW |87264 |38999 |1 |10 | |0 | |
@@ -59291,11 +59344,11 @@ ROW |87285 |39034 |1 |20 |1h
ROW |87286 |39036 |1 |20 |1h |0 | |
ROW |87287 |39038 |1 |1 |1024 |0 | |
ROW |87288 |39039 |1 |1 |1024 |0 | |
-ROW |87289 |39044 |1 |20 |1d |0 | |
-ROW |87290 |39045 |1 |20 |1d |0 | |
-ROW |87291 |39046 |1 |20 |1h |0 | |
-ROW |87292 |39047 |1 |20 |1h |0 | |
-ROW |87293 |39048 |1 |20 |1h |0 | |
+ROW |87289 |39044 |1 |20 |12h |0 | |
+ROW |87290 |39045 |1 |20 |12h |0 | |
+ROW |87291 |39046 |1 |20 |12h |0 | |
+ROW |87292 |39047 |1 |20 |12h |0 | |
+ROW |87293 |39048 |1 |20 |12h |0 | |
ROW |87294 |39049 |1 |1 |0.01 |0 | |
ROW |87295 |39052 |1 |10 | |0 | |
ROW |87296 |39053 |1 |10 | |0 | |
@@ -59323,11 +59376,11 @@ ROW |87317 |39088 |1 |20 |1h
ROW |87318 |39090 |1 |20 |1h |0 | |
ROW |87319 |39092 |1 |1 |1024 |0 | |
ROW |87320 |39093 |1 |1 |1024 |0 | |
-ROW |87321 |39098 |1 |20 |1d |0 | |
-ROW |87322 |39099 |1 |20 |1d |0 | |
-ROW |87323 |39100 |1 |20 |1h |0 | |
-ROW |87324 |39101 |1 |20 |1h |0 | |
-ROW |87325 |39102 |1 |20 |1h |0 | |
+ROW |87321 |39098 |1 |20 |12h |0 | |
+ROW |87322 |39099 |1 |20 |12h |0 | |
+ROW |87323 |39100 |1 |20 |12h |0 | |
+ROW |87324 |39101 |1 |20 |12h |0 | |
+ROW |87325 |39102 |1 |20 |12h |0 | |
ROW |87326 |39103 |1 |1 |0.01 |0 | |
ROW |87327 |39106 |1 |10 | |0 | |
ROW |87328 |39107 |1 |10 | |0 | |
@@ -59355,11 +59408,11 @@ ROW |87349 |39142 |1 |20 |1h
ROW |87350 |39144 |1 |20 |1h |0 | |
ROW |87351 |39146 |1 |1 |1024 |0 | |
ROW |87352 |39147 |1 |1 |1024 |0 | |
-ROW |87353 |39152 |1 |20 |1d |0 | |
-ROW |87354 |39153 |1 |20 |1d |0 | |
-ROW |87355 |39154 |1 |20 |1h |0 | |
-ROW |87356 |39155 |1 |20 |1h |0 | |
-ROW |87357 |39156 |1 |20 |1h |0 | |
+ROW |87353 |39152 |1 |20 |12h |0 | |
+ROW |87354 |39153 |1 |20 |12h |0 | |
+ROW |87355 |39154 |1 |20 |12h |0 | |
+ROW |87356 |39155 |1 |20 |12h |0 | |
+ROW |87357 |39156 |1 |20 |12h |0 | |
ROW |87358 |39157 |1 |1 |0.01 |0 | |
ROW |87359 |39160 |1 |10 | |0 | |
ROW |87360 |39161 |1 |10 | |0 | |
@@ -59387,11 +59440,11 @@ ROW |87381 |39196 |1 |20 |1h
ROW |87382 |39198 |1 |20 |1h |0 | |
ROW |87383 |39200 |1 |1 |1024 |0 | |
ROW |87384 |39201 |1 |1 |1024 |0 | |
-ROW |87385 |39206 |1 |20 |1d |0 | |
-ROW |87386 |39207 |1 |20 |1d |0 | |
-ROW |87387 |39208 |1 |20 |1h |0 | |
-ROW |87388 |39209 |1 |20 |1h |0 | |
-ROW |87389 |39210 |1 |20 |1h |0 | |
+ROW |87385 |39206 |1 |20 |12h |0 | |
+ROW |87386 |39207 |1 |20 |12h |0 | |
+ROW |87387 |39208 |1 |20 |12h |0 | |
+ROW |87388 |39209 |1 |20 |12h |0 | |
+ROW |87389 |39210 |1 |20 |12h |0 | |
ROW |87390 |39211 |1 |1 |0.01 |0 | |
ROW |87391 |39214 |1 |10 | |0 | |
ROW |87392 |39215 |1 |10 | |0 | |
@@ -59419,11 +59472,11 @@ ROW |87413 |39250 |1 |20 |1h
ROW |87414 |39252 |1 |20 |1h |0 | |
ROW |87415 |39254 |1 |1 |1024 |0 | |
ROW |87416 |39255 |1 |1 |1024 |0 | |
-ROW |87417 |39260 |1 |20 |1d |0 | |
-ROW |87418 |39261 |1 |20 |1d |0 | |
-ROW |87419 |39262 |1 |20 |1h |0 | |
-ROW |87420 |39263 |1 |20 |1h |0 | |
-ROW |87421 |39264 |1 |20 |1h |0 | |
+ROW |87417 |39260 |1 |20 |12h |0 | |
+ROW |87418 |39261 |1 |20 |12h |0 | |
+ROW |87419 |39262 |1 |20 |12h |0 | |
+ROW |87420 |39263 |1 |20 |12h |0 | |
+ROW |87421 |39264 |1 |20 |12h |0 | |
ROW |87422 |39265 |1 |1 |0.01 |0 | |
ROW |87423 |39268 |1 |10 | |0 | |
ROW |87424 |39269 |1 |10 | |0 | |
@@ -59451,11 +59504,11 @@ ROW |87445 |39304 |1 |20 |1h
ROW |87446 |39306 |1 |20 |1h |0 | |
ROW |87447 |39308 |1 |1 |1024 |0 | |
ROW |87448 |39309 |1 |1 |1024 |0 | |
-ROW |87449 |39314 |1 |20 |1d |0 | |
-ROW |87450 |39315 |1 |20 |1d |0 | |
-ROW |87451 |39316 |1 |20 |1h |0 | |
-ROW |87452 |39317 |1 |20 |1h |0 | |
-ROW |87453 |39318 |1 |20 |1h |0 | |
+ROW |87449 |39314 |1 |20 |12h |0 | |
+ROW |87450 |39315 |1 |20 |12h |0 | |
+ROW |87451 |39316 |1 |20 |12h |0 | |
+ROW |87452 |39317 |1 |20 |12h |0 | |
+ROW |87453 |39318 |1 |20 |12h |0 | |
ROW |87454 |39319 |1 |1 |0.01 |0 | |
ROW |87455 |39322 |1 |10 | |0 | |
ROW |87456 |39323 |1 |10 | |0 | |
@@ -59483,11 +59536,11 @@ ROW |87477 |39358 |1 |20 |1h
ROW |87478 |39360 |1 |20 |1h |0 | |
ROW |87479 |39362 |1 |1 |1024 |0 | |
ROW |87480 |39363 |1 |1 |1024 |0 | |
-ROW |87481 |39368 |1 |20 |1d |0 | |
-ROW |87482 |39369 |1 |20 |1d |0 | |
-ROW |87483 |39370 |1 |20 |1h |0 | |
-ROW |87484 |39371 |1 |20 |1h |0 | |
-ROW |87485 |39372 |1 |20 |1h |0 | |
+ROW |87481 |39368 |1 |20 |12h |0 | |
+ROW |87482 |39369 |1 |20 |12h |0 | |
+ROW |87483 |39370 |1 |20 |12h |0 | |
+ROW |87484 |39371 |1 |20 |12h |0 | |
+ROW |87485 |39372 |1 |20 |12h |0 | |
ROW |87486 |39373 |1 |1 |0.01 |0 | |
ROW |87487 |39376 |1 |10 | |0 | |
ROW |87488 |39377 |1 |10 | |0 | |
@@ -59515,11 +59568,11 @@ ROW |87509 |39412 |1 |20 |1h
ROW |87510 |39414 |1 |20 |1h |0 | |
ROW |87511 |39416 |1 |1 |1024 |0 | |
ROW |87512 |39417 |1 |1 |1024 |0 | |
-ROW |87513 |39422 |1 |20 |1d |0 | |
-ROW |87514 |39423 |1 |20 |1d |0 | |
-ROW |87515 |39424 |1 |20 |1h |0 | |
-ROW |87516 |39425 |1 |20 |1h |0 | |
-ROW |87517 |39426 |1 |20 |1h |0 | |
+ROW |87513 |39422 |1 |20 |12h |0 | |
+ROW |87514 |39423 |1 |20 |12h |0 | |
+ROW |87515 |39424 |1 |20 |12h |0 | |
+ROW |87516 |39425 |1 |20 |12h |0 | |
+ROW |87517 |39426 |1 |20 |12h |0 | |
ROW |87518 |39427 |1 |1 |0.01 |0 | |
ROW |87519 |39430 |1 |10 | |0 | |
ROW |87520 |39431 |1 |10 | |0 | |
@@ -59547,11 +59600,11 @@ ROW |87541 |39466 |1 |20 |1h
ROW |87542 |39468 |1 |20 |1h |0 | |
ROW |87543 |39470 |1 |1 |1024 |0 | |
ROW |87544 |39471 |1 |1 |1024 |0 | |
-ROW |87545 |39476 |1 |20 |1d |0 | |
-ROW |87546 |39477 |1 |20 |1d |0 | |
-ROW |87547 |39478 |1 |20 |1h |0 | |
-ROW |87548 |39479 |1 |20 |1h |0 | |
-ROW |87549 |39480 |1 |20 |1h |0 | |
+ROW |87545 |39476 |1 |20 |12h |0 | |
+ROW |87546 |39477 |1 |20 |12h |0 | |
+ROW |87547 |39478 |1 |20 |12h |0 | |
+ROW |87548 |39479 |1 |20 |12h |0 | |
+ROW |87549 |39480 |1 |20 |12h |0 | |
ROW |87550 |39481 |1 |1 |0.01 |0 | |
ROW |87551 |39484 |1 |10 | |0 | |
ROW |87552 |39485 |1 |10 | |0 | |
@@ -59579,11 +59632,11 @@ ROW |87573 |39520 |1 |20 |1h
ROW |87574 |39522 |1 |20 |1h |0 | |
ROW |87575 |39524 |1 |1 |1024 |0 | |
ROW |87576 |39525 |1 |1 |1024 |0 | |
-ROW |87577 |39530 |1 |20 |1d |0 | |
-ROW |87578 |39531 |1 |20 |1d |0 | |
-ROW |87579 |39532 |1 |20 |1h |0 | |
-ROW |87580 |39533 |1 |20 |1h |0 | |
-ROW |87581 |39534 |1 |20 |1h |0 | |
+ROW |87577 |39530 |1 |20 |12h |0 | |
+ROW |87578 |39531 |1 |20 |12h |0 | |
+ROW |87579 |39532 |1 |20 |12h |0 | |
+ROW |87580 |39533 |1 |20 |12h |0 | |
+ROW |87581 |39534 |1 |20 |12h |0 | |
ROW |87582 |39535 |1 |1 |0.01 |0 | |
ROW |87583 |39538 |1 |10 | |0 | |
ROW |87584 |39539 |1 |10 | |0 | |
@@ -59611,11 +59664,11 @@ ROW |87605 |39574 |1 |20 |1h
ROW |87606 |39576 |1 |20 |1h |0 | |
ROW |87607 |39578 |1 |1 |1024 |0 | |
ROW |87608 |39579 |1 |1 |1024 |0 | |
-ROW |87609 |39584 |1 |20 |1d |0 | |
-ROW |87610 |39585 |1 |20 |1d |0 | |
-ROW |87611 |39586 |1 |20 |1h |0 | |
-ROW |87612 |39587 |1 |20 |1h |0 | |
-ROW |87613 |39588 |1 |20 |1h |0 | |
+ROW |87609 |39584 |1 |20 |12h |0 | |
+ROW |87610 |39585 |1 |20 |12h |0 | |
+ROW |87611 |39586 |1 |20 |12h |0 | |
+ROW |87612 |39587 |1 |20 |12h |0 | |
+ROW |87613 |39588 |1 |20 |12h |0 | |
ROW |87614 |39589 |1 |1 |0.01 |0 | |
ROW |87615 |39592 |1 |10 | |0 | |
ROW |87616 |39593 |1 |10 | |0 | |
@@ -59643,11 +59696,11 @@ ROW |87637 |39628 |1 |20 |1h
ROW |87638 |39630 |1 |20 |1h |0 | |
ROW |87639 |39632 |1 |1 |1024 |0 | |
ROW |87640 |39633 |1 |1 |1024 |0 | |
-ROW |87641 |39638 |1 |20 |1d |0 | |
-ROW |87642 |39639 |1 |20 |1d |0 | |
-ROW |87643 |39640 |1 |20 |1h |0 | |
-ROW |87644 |39641 |1 |20 |1h |0 | |
-ROW |87645 |39642 |1 |20 |1h |0 | |
+ROW |87641 |39638 |1 |20 |12h |0 | |
+ROW |87642 |39639 |1 |20 |12h |0 | |
+ROW |87643 |39640 |1 |20 |12h |0 | |
+ROW |87644 |39641 |1 |20 |12h |0 | |
+ROW |87645 |39642 |1 |20 |12h |0 | |
ROW |87646 |39643 |1 |1 |0.01 |0 | |
ROW |87647 |39646 |1 |10 | |0 | |
ROW |87648 |39647 |1 |10 | |0 | |
@@ -59675,11 +59728,11 @@ ROW |87669 |39682 |1 |20 |1h
ROW |87670 |39684 |1 |20 |1h |0 | |
ROW |87671 |39686 |1 |1 |1024 |0 | |
ROW |87672 |39687 |1 |1 |1024 |0 | |
-ROW |87673 |39692 |1 |20 |1d |0 | |
-ROW |87674 |39693 |1 |20 |1d |0 | |
-ROW |87675 |39694 |1 |20 |1h |0 | |
-ROW |87676 |39695 |1 |20 |1h |0 | |
-ROW |87677 |39696 |1 |20 |1h |0 | |
+ROW |87673 |39692 |1 |20 |12h |0 | |
+ROW |87674 |39693 |1 |20 |12h |0 | |
+ROW |87675 |39694 |1 |20 |12h |0 | |
+ROW |87676 |39695 |1 |20 |12h |0 | |
+ROW |87677 |39696 |1 |20 |12h |0 | |
ROW |87678 |39697 |1 |1 |0.01 |0 | |
ROW |87679 |39700 |1 |10 | |0 | |
ROW |87680 |39701 |1 |10 | |0 | |
@@ -59793,6 +59846,26 @@ ROW |87787 |39797 |1 |20 |1d
ROW |87788 |39799 |1 |20 |1d |0 | |
ROW |87789 |39800 |1 |20 |1d |0 | |
ROW |87790 |39802 |1 |20 |1d |0 | |
+ROW |87791 |39803 |1 |12 |$.cpu_stats.cpu_usage.percent_usage |0 | |
+ROW |87792 |39808 |1 |12 |$.[?(@.id=="{#NODE.ID}")].address.first() |0 | |
+ROW |87793 |39808 |2 |20 |12h |0 | |
+ROW |87794 |39809 |1 |12 |$.[?(@.id=="{#NODE.ID}")].lastaccess_age.first() |0 | |
+ROW |87795 |39810 |1 |12 |$.[?(@.id=="{#NODE.ID}")].lastaccess.first() |0 | |
+ROW |87796 |39811 |1 |12 |$.[?(@.id=="{#NODE.ID}")].status.first() |0 | |
+ROW |87797 |39811 |2 |20 |12h |0 | |
+ROW |87798 |39812 |1 |12 |$.[?(@.id=="{#NODE.ID}")].address.first() |0 | |
+ROW |87799 |39812 |2 |20 |12h |0 | |
+ROW |87800 |39813 |1 |12 |$.[?(@.id=="{#NODE.ID}")].lastaccess_age.first() |0 | |
+ROW |87801 |39814 |1 |12 |$.[?(@.id=="{#NODE.ID}")].lastaccess.first() |0 | |
+ROW |87802 |39815 |1 |12 |$.[?(@.id=="{#NODE.ID}")].status.first() |0 | |
+ROW |87803 |39815 |2 |20 |12h |0 | |
+ROW |87804 |39816 |1 |12 |$.data.ha |0 | |
+ROW |87805 |39817 |1 |12 |$.data.ha[?(@.id=="{#NODE.ID}")].address.first() |0 | |
+ROW |87806 |39817 |2 |20 |12h |0 | |
+ROW |87807 |39818 |1 |12 |$.data.ha[?(@.id=="{#NODE.ID}")].lastaccess_age.first() |0 | |
+ROW |87808 |39819 |1 |12 |$.data.ha[?(@.id=="{#NODE.ID}")].lastaccess.first() |0 | |
+ROW |87809 |39820 |1 |12 |$.data.ha[?(@.id=="{#NODE.ID}")].status.first() |0 | |
+ROW |87810 |39820 |2 |20 |12h |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|
@@ -59912,441 +59985,447 @@ ROW |154 |39753 |{#EDGE} |$.edgeName
ROW |155 |39753 |{#ID} |$.deviceLogicalId |
ROW |156 |39753 |{#NAME} |$.peerName |
ROW |157 |39753 |{#TYPE} |$.peerType |
+ROW |158 |39806 |{#NODE.ID} |$.id |
+ROW |159 |39806 |{#NODE.NAME} |$.name |
+ROW |160 |39807 |{#NODE.ID} |$.id |
+ROW |161 |39807 |{#NODE.NAME} |$.name |
+ROW |162 |39816 |{#NODE.ID} |$.id |
+ROW |163 |39816 |{#NODE.NAME} |$.name |
TABLE |lld_override
FIELDS|lld_overrideid|itemid|name |step|evaltype|formula|stop|
ROW |195 |34718 |Temp |1 |0 | |0 |
ROW |196 |34719 |Temp |1 |0 | |0 |
-ROW |646 |30961 |trigger |1 |0 | |0 |
-ROW |647 |30193 |Discard HTTP status codes |1 |0 | |0 |
-ROW |648 |30194 |Discard HTTP status codes |1 |0 | |0 |
-ROW |649 |30195 |Discard HTTP status codes |1 |0 | |0 |
-ROW |650 |30236 |Discard HTTP status codes |1 |0 | |0 |
-ROW |651 |30237 |Discard HTTP status codes |1 |0 | |0 |
-ROW |652 |30238 |Discard HTTP status codes |1 |0 | |0 |
-ROW |653 |33521 |trigger disabled non main channels |1 |0 | |0 |
-ROW |654 |33810 |Primary metrics |1 |0 | |0 |
-ROW |655 |33810 |Arbiter metrics |2 |0 | |0 |
-ROW |656 |34346 |Too many missed regions trigger |1 |0 | |0 |
-ROW |657 |34346 |Unresponsive peers trigger |2 |0 | |0 |
-ROW |658 |34403 |Failed GC-related operations trigger |1 |0 | |0 |
-ROW |659 |34443 |Too many unreachable messages trigger |1 |0 | |0 |
-ROW |660 |33657 |ID filter |1 |0 | |0 |
-ROW |661 |33658 |Not NVMe |2 |0 | |0 |
-ROW |662 |33658 |Self-test |1 |0 | |0 |
-ROW |663 |33669 |ID filter |1 |0 | |0 |
-ROW |664 |33670 |Not NVMe |2 |0 | |0 |
-ROW |665 |33670 |Self-test |1 |0 | |0 |
-ROW |666 |28306 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
-ROW |667 |28306 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
-ROW |668 |28306 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
-ROW |669 |28306 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
-ROW |670 |28307 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
-ROW |671 |28307 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
-ROW |672 |28307 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
-ROW |673 |28307 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
-ROW |674 |33182 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
-ROW |675 |33182 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
-ROW |676 |33182 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
-ROW |677 |33182 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
-ROW |678 |35366 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |679 |35542 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |680 |35543 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |681 |35575 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |682 |35619 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |683 |35653 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |684 |35654 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |685 |35720 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |686 |35721 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |687 |35787 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |688 |35788 |Trigger disabled |1 |0 | |0 |
-ROW |689 |35788 |Trigger enabled |2 |0 | |0 |
-ROW |690 |35820 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |691 |35859 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |692 |35903 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |693 |35947 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |694 |35991 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |695 |36036 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |696 |36081 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |697 |36126 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |698 |34478 |Temp |1 |0 | |0 |
-ROW |699 |34479 |Temp |1 |0 | |0 |
-ROW |700 |34526 |Temp |1 |0 | |0 |
-ROW |701 |34527 |Temp |1 |0 | |0 |
-ROW |702 |34574 |Temp |1 |0 | |0 |
-ROW |703 |34575 |Temp |1 |0 | |0 |
-ROW |704 |34622 |Temp |1 |0 | |0 |
-ROW |705 |34623 |Temp |1 |0 | |0 |
-ROW |706 |34670 |Temp |1 |0 | |0 |
-ROW |707 |34671 |Temp |1 |0 | |0 |
-ROW |708 |35043 |Temp |1 |0 | |0 |
-ROW |709 |35044 |Temp |1 |0 | |0 |
-ROW |710 |34766 |Temp |1 |0 | |0 |
-ROW |711 |34767 |Temp |1 |0 | |0 |
-ROW |712 |34209 |Temp |1 |0 | |0 |
-ROW |713 |34210 |Temp |1 |0 | |0 |
-ROW |714 |34820 |Temp |1 |0 | |0 |
-ROW |715 |34821 |Temp |1 |0 | |0 |
-ROW |716 |34868 |Temp |1 |0 | |0 |
-ROW |717 |34869 |Temp |1 |0 | |0 |
-ROW |718 |34916 |Temp |1 |0 | |0 |
-ROW |719 |34917 |Temp |1 |0 | |0 |
-ROW |720 |33354 |Do not discover aggregate metrics |1 |0 | |0 |
-ROW |721 |30687 |trigger SENSOR_HI_CRIT |5 |0 | |0 |
-ROW |722 |30687 |trigger SENSOR_HI_DISAST |6 |0 | |0 |
-ROW |723 |30687 |trigger SENSOR_HI_WARN |4 |0 | |0 |
-ROW |724 |30687 |trigger SENSOR_LO_CRIT |2 |0 | |0 |
-ROW |725 |30687 |trigger SENSOR_LO_DISAST |3 |0 | |0 |
-ROW |726 |30687 |trigger SENSOR_LO_WARN |1 |0 | |0 |
+ROW |727 |30961 |trigger |1 |0 | |0 |
+ROW |728 |30193 |Discard HTTP status codes |1 |0 | |0 |
+ROW |729 |30194 |Discard HTTP status codes |1 |0 | |0 |
+ROW |730 |30195 |Discard HTTP status codes |1 |0 | |0 |
+ROW |731 |30236 |Discard HTTP status codes |1 |0 | |0 |
+ROW |732 |30237 |Discard HTTP status codes |1 |0 | |0 |
+ROW |733 |30238 |Discard HTTP status codes |1 |0 | |0 |
+ROW |734 |33521 |trigger disabled non main channels |1 |0 | |0 |
+ROW |735 |33810 |Primary metrics |1 |0 | |0 |
+ROW |736 |33810 |Arbiter metrics |2 |0 | |0 |
+ROW |737 |34346 |Too many missed regions trigger |1 |0 | |0 |
+ROW |738 |34346 |Unresponsive peers trigger |2 |0 | |0 |
+ROW |739 |34403 |Failed GC-related operations trigger |1 |0 | |0 |
+ROW |740 |34443 |Too many unreachable messages trigger |1 |0 | |0 |
+ROW |741 |33657 |ID filter |1 |0 | |0 |
+ROW |742 |33658 |Not NVMe |2 |0 | |0 |
+ROW |743 |33658 |Self-test |1 |0 | |0 |
+ROW |744 |33669 |ID filter |1 |0 | |0 |
+ROW |745 |33670 |Not NVMe |2 |0 | |0 |
+ROW |746 |33670 |Self-test |1 |0 | |0 |
+ROW |747 |28306 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
+ROW |748 |28306 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
+ROW |749 |28306 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
+ROW |750 |28306 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
+ROW |751 |28307 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
+ROW |752 |28307 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
+ROW |753 |28307 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
+ROW |754 |28307 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
+ROW |755 |33182 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
+ROW |756 |33182 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
+ROW |757 |33182 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
+ROW |758 |33182 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
+ROW |759 |35366 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |760 |35542 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |761 |35543 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |762 |35575 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |763 |35619 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |764 |35653 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |765 |35654 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |766 |35720 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |767 |35721 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |768 |35787 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |769 |35788 |Trigger disabled |1 |0 | |0 |
+ROW |770 |35788 |Trigger enabled |2 |0 | |0 |
+ROW |771 |35820 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |772 |35859 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |773 |35903 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |774 |35947 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |775 |35991 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |776 |36036 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |777 |36081 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |778 |36126 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |779 |34478 |Temp |1 |0 | |0 |
+ROW |780 |34479 |Temp |1 |0 | |0 |
+ROW |781 |34526 |Temp |1 |0 | |0 |
+ROW |782 |34527 |Temp |1 |0 | |0 |
+ROW |783 |34574 |Temp |1 |0 | |0 |
+ROW |784 |34575 |Temp |1 |0 | |0 |
+ROW |785 |34622 |Temp |1 |0 | |0 |
+ROW |786 |34623 |Temp |1 |0 | |0 |
+ROW |787 |34670 |Temp |1 |0 | |0 |
+ROW |788 |34671 |Temp |1 |0 | |0 |
+ROW |789 |35043 |Temp |1 |0 | |0 |
+ROW |790 |35044 |Temp |1 |0 | |0 |
+ROW |791 |34766 |Temp |1 |0 | |0 |
+ROW |792 |34767 |Temp |1 |0 | |0 |
+ROW |793 |34209 |Temp |1 |0 | |0 |
+ROW |794 |34210 |Temp |1 |0 | |0 |
+ROW |795 |34820 |Temp |1 |0 | |0 |
+ROW |796 |34821 |Temp |1 |0 | |0 |
+ROW |797 |34868 |Temp |1 |0 | |0 |
+ROW |798 |34869 |Temp |1 |0 | |0 |
+ROW |799 |34916 |Temp |1 |0 | |0 |
+ROW |800 |34917 |Temp |1 |0 | |0 |
+ROW |801 |33354 |Do not discover aggregate metrics |1 |0 | |0 |
+ROW |802 |30687 |trigger SENSOR_HI_CRIT |5 |0 | |0 |
+ROW |803 |30687 |trigger SENSOR_HI_DISAST |6 |0 | |0 |
+ROW |804 |30687 |trigger SENSOR_HI_WARN |4 |0 | |0 |
+ROW |805 |30687 |trigger SENSOR_LO_CRIT |2 |0 | |0 |
+ROW |806 |30687 |trigger SENSOR_LO_DISAST |3 |0 | |0 |
+ROW |807 |30687 |trigger SENSOR_LO_WARN |1 |0 | |0 |
TABLE |lld_override_condition
FIELDS|lld_override_conditionid|lld_overrideid|operator|macro |value |
ROW |116 |195 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
ROW |117 |196 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |537 |646 |8 |{#GRPC.CODE} |{$ETCD.GRPC_CODE.TRIGGER.MATCHES} |
-ROW |538 |647 |8 |{#MODE} |tcp |
-ROW |539 |648 |8 |{#MODE} |tcp |
-ROW |540 |649 |8 |{#MODE} |tcp |
-ROW |541 |650 |8 |{#MODE} |tcp |
-ROW |542 |651 |8 |{#MODE} |tcp |
-ROW |543 |652 |8 |{#MODE} |tcp |
-ROW |544 |653 |9 |{#CHANNEL_ID} |{$HIKVISION_MAIN_CHANNEL_ID} |
-ROW |545 |654 |8 |{#NODE_STATE} |1 |
-ROW |546 |655 |8 |{#NODE_STATE} |7 |
-ROW |547 |656 |8 |{#TYPE} |miss_peer_region_count |
-ROW |548 |657 |8 |{#TYPE} |down_peer_region_count |
-ROW |549 |658 |8 |{#TYPE} |failed |
-ROW |550 |659 |8 |{#TYPE} |unreachable |
-ROW |551 |660 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
-ROW |552 |660 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
-ROW |553 |661 |9 |{#DISKTYPE} |nvme |
-ROW |554 |662 |8 |{#DISKTYPE} |nvme |
-ROW |555 |663 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
-ROW |556 |663 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
-ROW |557 |664 |9 |{#DISKTYPE} |nvme |
-ROW |558 |665 |8 |{#DISKTYPE} |nvme |
-ROW |559 |666 |8 |{#THRESHOLD_HI_CRIT} |^$ |
-ROW |560 |667 |8 |{#THRESHOLD_HI_WARN} |^$ |
-ROW |561 |668 |8 |{#THRESHOLD_LO_CRIT} |^$ |
-ROW |562 |669 |8 |{#THRESHOLD_LO_WARN} |^$ |
-ROW |563 |670 |8 |{#THRESHOLD_HI_CRIT} |^$ |
-ROW |564 |671 |8 |{#THRESHOLD_HI_WARN} |^$ |
-ROW |565 |672 |8 |{#THRESHOLD_LO_CRIT} |^$ |
-ROW |566 |673 |8 |{#THRESHOLD_LO_WARN} |^$ |
-ROW |567 |674 |8 |{#THRESHOLD_HI_CRIT} |^$ |
-ROW |568 |675 |8 |{#THRESHOLD_HI_WARN} |^$ |
-ROW |569 |676 |8 |{#THRESHOLD_LO_CRIT} |^$ |
-ROW |570 |677 |8 |{#THRESHOLD_LO_WARN} |^$ |
-ROW |571 |678 |9 |{#CISCO.IF.NAME} |{$CISCO.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |572 |679 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |573 |680 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |574 |681 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |575 |682 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |576 |683 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |577 |684 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |578 |685 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |579 |686 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |580 |687 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |581 |688 |8 |{#ZYXEL.IF.NAME} |.* |
-ROW |582 |689 |8 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |583 |690 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |584 |691 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |585 |692 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |586 |693 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |587 |694 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |588 |695 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |589 |696 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |590 |697 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |591 |698 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |592 |699 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |593 |700 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |594 |701 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |595 |702 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |596 |703 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |597 |704 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |598 |705 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |599 |706 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |600 |707 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |601 |708 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |602 |709 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |603 |710 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |604 |711 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |605 |712 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |606 |713 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |607 |714 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |608 |715 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |609 |716 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |610 |717 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |611 |718 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |612 |719 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |613 |720 |8 |{#FSTYPE} |3&pipe;4 |
+ROW |614 |727 |8 |{#GRPC.CODE} |{$ETCD.GRPC_CODE.TRIGGER.MATCHES} |
+ROW |615 |728 |8 |{#MODE} |tcp |
+ROW |616 |729 |8 |{#MODE} |tcp |
+ROW |617 |730 |8 |{#MODE} |tcp |
+ROW |618 |731 |8 |{#MODE} |tcp |
+ROW |619 |732 |8 |{#MODE} |tcp |
+ROW |620 |733 |8 |{#MODE} |tcp |
+ROW |621 |734 |9 |{#CHANNEL_ID} |{$HIKVISION_MAIN_CHANNEL_ID} |
+ROW |622 |735 |8 |{#NODE_STATE} |1 |
+ROW |623 |736 |8 |{#NODE_STATE} |7 |
+ROW |624 |737 |8 |{#TYPE} |miss_peer_region_count |
+ROW |625 |738 |8 |{#TYPE} |down_peer_region_count |
+ROW |626 |739 |8 |{#TYPE} |failed |
+ROW |627 |740 |8 |{#TYPE} |unreachable |
+ROW |628 |741 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
+ROW |629 |741 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
+ROW |630 |742 |9 |{#DISKTYPE} |nvme |
+ROW |631 |743 |8 |{#DISKTYPE} |nvme |
+ROW |632 |744 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
+ROW |633 |744 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
+ROW |634 |745 |9 |{#DISKTYPE} |nvme |
+ROW |635 |746 |8 |{#DISKTYPE} |nvme |
+ROW |636 |747 |8 |{#THRESHOLD_HI_CRIT} |^$ |
+ROW |637 |748 |8 |{#THRESHOLD_HI_WARN} |^$ |
+ROW |638 |749 |8 |{#THRESHOLD_LO_CRIT} |^$ |
+ROW |639 |750 |8 |{#THRESHOLD_LO_WARN} |^$ |
+ROW |640 |751 |8 |{#THRESHOLD_HI_CRIT} |^$ |
+ROW |641 |752 |8 |{#THRESHOLD_HI_WARN} |^$ |
+ROW |642 |753 |8 |{#THRESHOLD_LO_CRIT} |^$ |
+ROW |643 |754 |8 |{#THRESHOLD_LO_WARN} |^$ |
+ROW |644 |755 |8 |{#THRESHOLD_HI_CRIT} |^$ |
+ROW |645 |756 |8 |{#THRESHOLD_HI_WARN} |^$ |
+ROW |646 |757 |8 |{#THRESHOLD_LO_CRIT} |^$ |
+ROW |647 |758 |8 |{#THRESHOLD_LO_WARN} |^$ |
+ROW |648 |759 |9 |{#CISCO.IF.NAME} |{$CISCO.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |649 |760 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |650 |761 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |651 |762 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |652 |763 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |653 |764 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |654 |765 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |655 |766 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |656 |767 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |657 |768 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |658 |769 |8 |{#ZYXEL.IF.NAME} |.* |
+ROW |659 |770 |8 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |660 |771 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |661 |772 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |662 |773 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |663 |774 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |664 |775 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |665 |776 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |666 |777 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |667 |778 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |668 |779 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |669 |780 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |670 |781 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |671 |782 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |672 |783 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |673 |784 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |674 |785 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |675 |786 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |676 |787 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |677 |788 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |678 |789 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |679 |790 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |680 |791 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |681 |792 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |682 |793 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |683 |794 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |684 |795 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |685 |796 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |686 |797 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |687 |798 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |688 |799 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |689 |800 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |690 |801 |8 |{#FSTYPE} |3&pipe;4 |
TABLE |lld_override_operation
FIELDS|lld_override_operationid|lld_overrideid|operationobject|operator|value |
ROW |201 |195 |0 |2 |Humidity |
ROW |202 |196 |0 |2 |Humidity |
-ROW |670 |646 |1 |2 |Too many failed gRPC requests |
-ROW |671 |647 |0 |2 |Number of responses with codes |
-ROW |672 |648 |0 |2 |Number of responses with codes |
-ROW |673 |649 |0 |2 |Number of responses with codes |
-ROW |674 |650 |0 |2 |Number of responses with codes |
-ROW |675 |651 |0 |2 |Number of responses with codes |
-ROW |676 |652 |0 |2 |Number of responses with codes |
-ROW |677 |653 |1 |2 |Invalid video stream resolution parameters |
-ROW |678 |654 |0 |2 |Number of replicas |
-ROW |679 |654 |0 |2 |Unhealthy replicas |
-ROW |680 |654 |0 |2 |Number of unhealthy replicas |
-ROW |681 |654 |0 |2 |Replication lag |
-ROW |682 |655 |0 |2 |Replication lag |
-ROW |683 |656 |1 |2 |Too many missed regions |
-ROW |684 |657 |1 |2 |There are unresponsive peers |
-ROW |685 |658 |1 |2 |Too many failed GC-related operations |
-ROW |686 |659 |1 |2 |Too many failure messages |
-ROW |687 |660 |0 |8 | |
-ROW |688 |661 |0 |8 |Media&pipe;Percentage&pipe;Critical |
-ROW |689 |662 |0 |2 |Self-test |
-ROW |690 |663 |0 |8 | |
-ROW |691 |664 |0 |8 |Media&pipe;Percentage&pipe;Critical |
-ROW |692 |665 |0 |2 |Self-test |
-ROW |693 |666 |1 |8 |Temperature is above the critical threshold|
-ROW |694 |667 |1 |8 |Temperature is above the warning threshold |
-ROW |695 |668 |1 |8 |Temperature is below the critical threshold|
-ROW |696 |669 |1 |8 |Temperature is below the warning threshold |
-ROW |697 |670 |1 |8 |Fan speed is above the critical threshold |
-ROW |698 |671 |1 |8 |Fan speed is above the warning threshold |
-ROW |699 |672 |1 |8 |Fan speed is below the critical threshold |
-ROW |700 |673 |1 |8 |Fan speed is below the warning threshold |
-ROW |701 |674 |1 |8 |Voltage is above the critical threshold |
-ROW |702 |675 |1 |8 |Voltage is above the warning threshold |
-ROW |703 |676 |1 |8 |Voltage is below the critical threshold |
-ROW |704 |677 |1 |8 |Voltage is below the warning threshold |
-ROW |705 |678 |1 |8 |.* |
-ROW |706 |679 |1 |8 |.* |
-ROW |707 |680 |1 |8 |.* |
-ROW |708 |681 |1 |8 |.* |
-ROW |709 |682 |1 |8 |.* |
-ROW |710 |683 |1 |8 |.* |
-ROW |711 |684 |1 |8 |.* |
-ROW |712 |685 |1 |8 |.* |
-ROW |713 |686 |1 |8 |.* |
-ROW |714 |687 |1 |8 |.* |
-ROW |715 |688 |1 |8 |.* |
-ROW |716 |689 |1 |8 |.* |
-ROW |717 |690 |1 |8 |.* |
-ROW |718 |691 |1 |8 |.* |
-ROW |719 |692 |1 |8 |.* |
-ROW |720 |693 |1 |8 |.* |
-ROW |721 |694 |1 |8 |.* |
-ROW |722 |695 |1 |8 |.* |
-ROW |723 |696 |1 |8 |.* |
-ROW |724 |697 |1 |8 |.* |
-ROW |725 |698 |0 |2 |Humidity |
-ROW |726 |699 |0 |2 |Humidity |
-ROW |727 |700 |0 |2 |Humidity |
-ROW |728 |701 |0 |2 |Humidity |
-ROW |729 |702 |0 |2 |Humidity |
-ROW |730 |703 |0 |2 |Humidity |
-ROW |731 |704 |0 |2 |Humidity |
-ROW |732 |705 |0 |2 |Humidity |
-ROW |733 |706 |0 |2 |Humidity |
-ROW |734 |707 |0 |2 |Humidity |
-ROW |735 |708 |0 |2 |Humidity |
-ROW |736 |709 |0 |2 |Humidity |
-ROW |737 |710 |0 |2 |Humidity |
-ROW |738 |711 |0 |2 |Humidity |
-ROW |739 |712 |0 |2 |Humidity |
-ROW |740 |713 |0 |2 |Humidity |
-ROW |741 |714 |0 |2 |Humidity |
-ROW |742 |715 |0 |2 |Humidity |
-ROW |743 |716 |0 |2 |Humidity |
-ROW |744 |717 |0 |2 |Humidity |
-ROW |745 |718 |0 |2 |Humidity |
-ROW |746 |719 |0 |2 |Humidity |
-ROW |747 |720 |0 |2 |Saved |
-ROW |748 |721 |1 |2 |{#SENSOR_HI_CRIT} |
-ROW |749 |722 |1 |2 |{#SENSOR_HI_DISAST} |
-ROW |750 |723 |1 |2 |{#SENSOR_HI_WARN} |
-ROW |751 |724 |1 |2 |{#SENSOR_LO_CRIT} |
-ROW |752 |725 |1 |2 |{#SENSOR_LO_DISAST} |
-ROW |753 |726 |1 |2 |{#SENSOR_LO_WARN} |
+ROW |754 |727 |1 |2 |Too many failed gRPC requests |
+ROW |755 |728 |0 |2 |Number of responses with codes |
+ROW |756 |729 |0 |2 |Number of responses with codes |
+ROW |757 |730 |0 |2 |Number of responses with codes |
+ROW |758 |731 |0 |2 |Number of responses with codes |
+ROW |759 |732 |0 |2 |Number of responses with codes |
+ROW |760 |733 |0 |2 |Number of responses with codes |
+ROW |761 |734 |1 |2 |Invalid video stream resolution parameters |
+ROW |762 |735 |0 |2 |Number of replicas |
+ROW |763 |735 |0 |2 |Unhealthy replicas |
+ROW |764 |735 |0 |2 |Number of unhealthy replicas |
+ROW |765 |735 |0 |2 |Replication lag |
+ROW |766 |736 |0 |2 |Replication lag |
+ROW |767 |737 |1 |2 |Too many missed regions |
+ROW |768 |738 |1 |2 |There are unresponsive peers |
+ROW |769 |739 |1 |2 |Too many failed GC-related operations |
+ROW |770 |740 |1 |2 |Too many failure messages |
+ROW |771 |741 |0 |8 | |
+ROW |772 |742 |0 |8 |Media&pipe;Percentage&pipe;Critical |
+ROW |773 |743 |0 |2 |Self-test |
+ROW |774 |744 |0 |8 | |
+ROW |775 |745 |0 |8 |Media&pipe;Percentage&pipe;Critical |
+ROW |776 |746 |0 |2 |Self-test |
+ROW |777 |747 |1 |8 |Temperature is above the critical threshold|
+ROW |778 |748 |1 |8 |Temperature is above the warning threshold |
+ROW |779 |749 |1 |8 |Temperature is below the critical threshold|
+ROW |780 |750 |1 |8 |Temperature is below the warning threshold |
+ROW |781 |751 |1 |8 |Fan speed is above the critical threshold |
+ROW |782 |752 |1 |8 |Fan speed is above the warning threshold |
+ROW |783 |753 |1 |8 |Fan speed is below the critical threshold |
+ROW |784 |754 |1 |8 |Fan speed is below the warning threshold |
+ROW |785 |755 |1 |8 |Voltage is above the critical threshold |
+ROW |786 |756 |1 |8 |Voltage is above the warning threshold |
+ROW |787 |757 |1 |8 |Voltage is below the critical threshold |
+ROW |788 |758 |1 |8 |Voltage is below the warning threshold |
+ROW |789 |759 |1 |8 |.* |
+ROW |790 |760 |1 |8 |.* |
+ROW |791 |761 |1 |8 |.* |
+ROW |792 |762 |1 |8 |.* |
+ROW |793 |763 |1 |8 |.* |
+ROW |794 |764 |1 |8 |.* |
+ROW |795 |765 |1 |8 |.* |
+ROW |796 |766 |1 |8 |.* |
+ROW |797 |767 |1 |8 |.* |
+ROW |798 |768 |1 |8 |.* |
+ROW |799 |769 |1 |8 |.* |
+ROW |800 |770 |1 |8 |.* |
+ROW |801 |771 |1 |8 |.* |
+ROW |802 |772 |1 |8 |.* |
+ROW |803 |773 |1 |8 |.* |
+ROW |804 |774 |1 |8 |.* |
+ROW |805 |775 |1 |8 |.* |
+ROW |806 |776 |1 |8 |.* |
+ROW |807 |777 |1 |8 |.* |
+ROW |808 |778 |1 |8 |.* |
+ROW |809 |779 |0 |2 |Humidity |
+ROW |810 |780 |0 |2 |Humidity |
+ROW |811 |781 |0 |2 |Humidity |
+ROW |812 |782 |0 |2 |Humidity |
+ROW |813 |783 |0 |2 |Humidity |
+ROW |814 |784 |0 |2 |Humidity |
+ROW |815 |785 |0 |2 |Humidity |
+ROW |816 |786 |0 |2 |Humidity |
+ROW |817 |787 |0 |2 |Humidity |
+ROW |818 |788 |0 |2 |Humidity |
+ROW |819 |789 |0 |2 |Humidity |
+ROW |820 |790 |0 |2 |Humidity |
+ROW |821 |791 |0 |2 |Humidity |
+ROW |822 |792 |0 |2 |Humidity |
+ROW |823 |793 |0 |2 |Humidity |
+ROW |824 |794 |0 |2 |Humidity |
+ROW |825 |795 |0 |2 |Humidity |
+ROW |826 |796 |0 |2 |Humidity |
+ROW |827 |797 |0 |2 |Humidity |
+ROW |828 |798 |0 |2 |Humidity |
+ROW |829 |799 |0 |2 |Humidity |
+ROW |830 |800 |0 |2 |Humidity |
+ROW |831 |801 |0 |2 |Saved |
+ROW |832 |802 |1 |2 |{#SENSOR_HI_CRIT} |
+ROW |833 |803 |1 |2 |{#SENSOR_HI_DISAST} |
+ROW |834 |804 |1 |2 |{#SENSOR_HI_WARN} |
+ROW |835 |805 |1 |2 |{#SENSOR_LO_CRIT} |
+ROW |836 |806 |1 |2 |{#SENSOR_LO_DISAST} |
+ROW |837 |807 |1 |2 |{#SENSOR_LO_WARN} |
TABLE |lld_override_opstatus
FIELDS|lld_override_operationid|status|
ROW |201 |0 |
ROW |202 |0 |
-ROW |670 |0 |
-ROW |671 |0 |
-ROW |672 |0 |
-ROW |673 |0 |
-ROW |674 |0 |
-ROW |675 |0 |
-ROW |676 |0 |
-ROW |677 |0 |
-ROW |678 |0 |
-ROW |679 |0 |
-ROW |680 |0 |
-ROW |681 |0 |
-ROW |682 |0 |
-ROW |683 |0 |
-ROW |684 |0 |
-ROW |685 |0 |
-ROW |686 |0 |
-ROW |687 |0 |
-ROW |688 |0 |
-ROW |689 |0 |
-ROW |690 |0 |
-ROW |691 |0 |
-ROW |692 |0 |
-ROW |693 |0 |
-ROW |694 |0 |
-ROW |695 |0 |
-ROW |696 |0 |
-ROW |697 |0 |
-ROW |698 |0 |
-ROW |699 |0 |
-ROW |700 |0 |
-ROW |701 |0 |
-ROW |702 |0 |
-ROW |703 |0 |
-ROW |704 |0 |
-ROW |705 |0 |
-ROW |706 |0 |
-ROW |707 |0 |
-ROW |708 |0 |
-ROW |709 |0 |
-ROW |710 |0 |
-ROW |711 |0 |
-ROW |712 |0 |
-ROW |713 |0 |
-ROW |714 |0 |
-ROW |715 |0 |
-ROW |716 |0 |
-ROW |717 |0 |
-ROW |718 |0 |
-ROW |719 |0 |
-ROW |720 |0 |
-ROW |721 |0 |
-ROW |722 |0 |
-ROW |723 |0 |
-ROW |724 |0 |
-ROW |725 |0 |
-ROW |726 |0 |
-ROW |727 |0 |
-ROW |728 |0 |
-ROW |729 |0 |
-ROW |730 |0 |
-ROW |731 |0 |
-ROW |732 |0 |
-ROW |733 |0 |
-ROW |734 |0 |
-ROW |735 |0 |
-ROW |736 |0 |
-ROW |737 |0 |
-ROW |738 |0 |
-ROW |739 |0 |
-ROW |740 |0 |
-ROW |741 |0 |
-ROW |742 |0 |
-ROW |743 |0 |
-ROW |744 |0 |
-ROW |745 |0 |
-ROW |746 |0 |
-ROW |747 |0 |
-ROW |748 |0 |
-ROW |749 |0 |
-ROW |750 |0 |
-ROW |751 |0 |
-ROW |752 |0 |
-ROW |753 |0 |
+ROW |754 |0 |
+ROW |755 |0 |
+ROW |756 |0 |
+ROW |757 |0 |
+ROW |758 |0 |
+ROW |759 |0 |
+ROW |760 |0 |
+ROW |761 |0 |
+ROW |762 |0 |
+ROW |763 |0 |
+ROW |764 |0 |
+ROW |765 |0 |
+ROW |766 |0 |
+ROW |767 |0 |
+ROW |768 |0 |
+ROW |769 |0 |
+ROW |770 |0 |
+ROW |771 |0 |
+ROW |772 |0 |
+ROW |773 |0 |
+ROW |774 |0 |
+ROW |775 |0 |
+ROW |776 |0 |
+ROW |777 |0 |
+ROW |778 |0 |
+ROW |779 |0 |
+ROW |780 |0 |
+ROW |781 |0 |
+ROW |782 |0 |
+ROW |783 |0 |
+ROW |784 |0 |
+ROW |785 |0 |
+ROW |786 |0 |
+ROW |787 |0 |
+ROW |788 |0 |
+ROW |789 |0 |
+ROW |790 |0 |
+ROW |791 |0 |
+ROW |792 |0 |
+ROW |793 |0 |
+ROW |794 |0 |
+ROW |795 |0 |
+ROW |796 |0 |
+ROW |797 |0 |
+ROW |798 |0 |
+ROW |799 |0 |
+ROW |800 |0 |
+ROW |801 |0 |
+ROW |802 |0 |
+ROW |803 |0 |
+ROW |804 |0 |
+ROW |805 |0 |
+ROW |806 |0 |
+ROW |807 |0 |
+ROW |808 |0 |
+ROW |809 |0 |
+ROW |810 |0 |
+ROW |811 |0 |
+ROW |812 |0 |
+ROW |813 |0 |
+ROW |814 |0 |
+ROW |815 |0 |
+ROW |816 |0 |
+ROW |817 |0 |
+ROW |818 |0 |
+ROW |819 |0 |
+ROW |820 |0 |
+ROW |821 |0 |
+ROW |822 |0 |
+ROW |823 |0 |
+ROW |824 |0 |
+ROW |825 |0 |
+ROW |826 |0 |
+ROW |827 |0 |
+ROW |828 |0 |
+ROW |829 |0 |
+ROW |830 |0 |
+ROW |831 |0 |
+ROW |832 |0 |
+ROW |833 |0 |
+ROW |834 |0 |
+ROW |835 |0 |
+ROW |836 |0 |
+ROW |837 |0 |
TABLE |lld_override_opdiscover
FIELDS|lld_override_operationid|discover|
ROW |201 |1 |
ROW |202 |1 |
-ROW |670 |0 |
-ROW |671 |1 |
-ROW |672 |1 |
-ROW |673 |1 |
-ROW |674 |1 |
-ROW |675 |1 |
-ROW |676 |1 |
-ROW |677 |1 |
-ROW |678 |0 |
-ROW |679 |0 |
-ROW |680 |0 |
-ROW |681 |1 |
-ROW |682 |1 |
-ROW |683 |0 |
-ROW |684 |0 |
-ROW |685 |0 |
-ROW |686 |0 |
-ROW |687 |1 |
-ROW |688 |1 |
-ROW |689 |1 |
-ROW |690 |1 |
-ROW |691 |1 |
-ROW |692 |1 |
-ROW |693 |1 |
-ROW |694 |1 |
-ROW |695 |1 |
-ROW |696 |1 |
-ROW |697 |1 |
-ROW |698 |1 |
-ROW |699 |1 |
-ROW |700 |1 |
-ROW |701 |1 |
-ROW |702 |1 |
-ROW |703 |1 |
-ROW |704 |1 |
-ROW |705 |1 |
-ROW |706 |1 |
-ROW |707 |1 |
-ROW |708 |1 |
-ROW |709 |1 |
-ROW |710 |1 |
-ROW |711 |1 |
-ROW |712 |1 |
-ROW |713 |1 |
-ROW |714 |1 |
-ROW |715 |1 |
-ROW |716 |0 |
-ROW |717 |1 |
-ROW |718 |1 |
-ROW |719 |1 |
-ROW |720 |1 |
-ROW |721 |1 |
-ROW |722 |1 |
-ROW |723 |1 |
-ROW |724 |1 |
-ROW |725 |1 |
-ROW |726 |1 |
-ROW |727 |1 |
-ROW |728 |1 |
-ROW |729 |1 |
-ROW |730 |1 |
-ROW |731 |1 |
-ROW |732 |1 |
-ROW |733 |1 |
-ROW |734 |1 |
-ROW |735 |1 |
-ROW |736 |1 |
-ROW |737 |1 |
-ROW |738 |1 |
-ROW |739 |1 |
-ROW |740 |1 |
-ROW |741 |1 |
-ROW |742 |1 |
-ROW |743 |1 |
-ROW |744 |1 |
-ROW |745 |1 |
-ROW |746 |1 |
-ROW |747 |1 |
-ROW |748 |1 |
-ROW |749 |1 |
-ROW |750 |1 |
-ROW |751 |1 |
-ROW |752 |1 |
-ROW |753 |1 |
+ROW |754 |0 |
+ROW |755 |1 |
+ROW |756 |1 |
+ROW |757 |1 |
+ROW |758 |1 |
+ROW |759 |1 |
+ROW |760 |1 |
+ROW |761 |1 |
+ROW |762 |0 |
+ROW |763 |0 |
+ROW |764 |0 |
+ROW |765 |1 |
+ROW |766 |1 |
+ROW |767 |0 |
+ROW |768 |0 |
+ROW |769 |0 |
+ROW |770 |0 |
+ROW |771 |1 |
+ROW |772 |1 |
+ROW |773 |1 |
+ROW |774 |1 |
+ROW |775 |1 |
+ROW |776 |1 |
+ROW |777 |1 |
+ROW |778 |1 |
+ROW |779 |1 |
+ROW |780 |1 |
+ROW |781 |1 |
+ROW |782 |1 |
+ROW |783 |1 |
+ROW |784 |1 |
+ROW |785 |1 |
+ROW |786 |1 |
+ROW |787 |1 |
+ROW |788 |1 |
+ROW |789 |1 |
+ROW |790 |1 |
+ROW |791 |1 |
+ROW |792 |1 |
+ROW |793 |1 |
+ROW |794 |1 |
+ROW |795 |1 |
+ROW |796 |1 |
+ROW |797 |1 |
+ROW |798 |1 |
+ROW |799 |1 |
+ROW |800 |0 |
+ROW |801 |1 |
+ROW |802 |1 |
+ROW |803 |1 |
+ROW |804 |1 |
+ROW |805 |1 |
+ROW |806 |1 |
+ROW |807 |1 |
+ROW |808 |1 |
+ROW |809 |1 |
+ROW |810 |1 |
+ROW |811 |1 |
+ROW |812 |1 |
+ROW |813 |1 |
+ROW |814 |1 |
+ROW |815 |1 |
+ROW |816 |1 |
+ROW |817 |1 |
+ROW |818 |1 |
+ROW |819 |1 |
+ROW |820 |1 |
+ROW |821 |1 |
+ROW |822 |1 |
+ROW |823 |1 |
+ROW |824 |1 |
+ROW |825 |1 |
+ROW |826 |1 |
+ROW |827 |1 |
+ROW |828 |1 |
+ROW |829 |1 |
+ROW |830 |1 |
+ROW |831 |1 |
+ROW |832 |1 |
+ROW |833 |1 |
+ROW |834 |1 |
+ROW |835 |1 |
+ROW |836 |1 |
+ROW |837 |1 |
TABLE |item_parameter
FIELDS|item_parameterid|itemid|name |value |
@@ -65860,216 +65939,6 @@ 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 | |
@@ -66112,216 +65981,6 @@ 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 | |
ROW |6170 |34937 |Application |WildFly |
ROW |6171 |34938 |Application |WildFly |
ROW |6172 |34939 |Application |WildFly |
@@ -71490,4 +71149,439 @@ ROW |11334 |39799 |Application |Monitoring agent
ROW |11335 |39800 |Application |Monitoring agent |
ROW |11336 |39801 |Application |Status |
ROW |11337 |39802 |Application |Monitoring agent |
+ROW |11338 |39803 |Application |Docker: Container {#NAME} |
+ROW |11339 |39804 |Application |Zabbix raw items |
+ROW |11340 |39805 |Application |Zabbix raw items |
+ROW |11341 |39808 |Application |Cluster node [{#NODE.NAME}] |
+ROW |11342 |39809 |Application |Cluster node [{#NODE.NAME}] |
+ROW |11343 |39810 |Application |Cluster node [{#NODE.NAME}] |
+ROW |11344 |39811 |Application |Cluster node [{#NODE.NAME}] |
+ROW |11345 |39812 |Application |Cluster node [{#NODE.NAME}] |
+ROW |11346 |39813 |Application |Cluster node [{#NODE.NAME}] |
+ROW |11347 |39814 |Application |Cluster node [{#NODE.NAME}] |
+ROW |11348 |39815 |Application |Cluster node [{#NODE.NAME}] |
+ROW |11349 |39817 |Application |Cluster node [{#NODE.NAME}] |
+ROW |11350 |39818 |Application |Cluster node [{#NODE.NAME}] |
+ROW |11351 |39819 |Application |Cluster node [{#NODE.NAME}] |
+ROW |11352 |39820 |Application |Cluster node [{#NODE.NAME}] |
+ROW |11353 |34451 |Application |Status |
+ROW |11354 |34452 |Application |Status |
+ROW |11355 |34453 |Application |Status |
+ROW |11356 |34454 |Application |General |
+ROW |11357 |34455 |Application |General |
+ROW |11358 |34456 |Application |General |
+ROW |11359 |34457 |Application |General |
+ROW |11360 |34458 |Application |General |
+ROW |11361 |34459 |Application |General |
+ROW |11362 |34460 |Application |General |
+ROW |11363 |34461 |Application |General |
+ROW |11364 |34462 |Application |Status |
+ROW |11365 |34463 |Application |Status |
+ROW |11366 |34464 |Application |Status |
+ROW |11367 |34465 |Application |Status |
+ROW |11368 |34466 |Application |Status |
+ROW |11369 |34467 |Application |Status |
+ROW |11370 |34468 |Application |Status |
+ROW |11371 |34469 |Application |Status |
+ROW |11372 |34470 |Application |Status |
+ROW |11373 |34471 |Application |Status |
+ROW |11374 |34472 |Application |Status |
+ROW |11375 |34473 |Application |Status |
+ROW |11376 |34474 |Application |Status |
+ROW |11377 |34475 |Application |Status |
+ROW |11378 |34482 |Application |Status |
+ROW |11379 |34483 |Application |Status |
+ROW |11380 |34484 |Application |Status |
+ROW |11381 |34485 |Application |Status |
+ROW |11382 |34486 |Application |Status |
+ROW |11383 |34487 |Application |General |
+ROW |11384 |34488 |Application |Status |
+ROW |11385 |34489 |Application |Status |
+ROW |11386 |34490 |Application |Status |
+ROW |11387 |34491 |Application |Status |
+ROW |11388 |34492 |Application |Status |
+ROW |11389 |34493 |Application |Status |
+ROW |11390 |34494 |Application |Status |
+ROW |11391 |34495 |Application |Status |
+ROW |11392 |34496 |Application |Status |
+ROW |11393 |34497 |Application |Status |
+ROW |11394 |34498 |Application |Status |
+ROW |11395 |34499 |Application |Status |
+ROW |11396 |34500 |Application |Status |
+ROW |11397 |34501 |Application |Status |
+ROW |11398 |34502 |Application |General |
+ROW |11399 |34503 |Application |General |
+ROW |11400 |34504 |Application |General |
+ROW |11401 |34505 |Application |General |
+ROW |11402 |34506 |Application |General |
+ROW |11403 |34507 |Application |General |
+ROW |11404 |34508 |Application |General |
+ROW |11405 |34509 |Application |General |
+ROW |11406 |34510 |Application |Status |
+ROW |11407 |34511 |Application |Status |
+ROW |11408 |34512 |Application |Status |
+ROW |11409 |34513 |Application |Status |
+ROW |11410 |34514 |Application |Status |
+ROW |11411 |34515 |Application |Status |
+ROW |11412 |34516 |Application |Status |
+ROW |11413 |34517 |Application |Status |
+ROW |11414 |34518 |Application |Status |
+ROW |11415 |34519 |Application |Status |
+ROW |11416 |34520 |Application |Status |
+ROW |11417 |34521 |Application |Status |
+ROW |11418 |34522 |Application |Status |
+ROW |11419 |34523 |Application |Status |
+ROW |11420 |34530 |Application |Status |
+ROW |11421 |34531 |Application |Status |
+ROW |11422 |34532 |Application |Status |
+ROW |11423 |34533 |Application |Status |
+ROW |11424 |34534 |Application |Status |
+ROW |11425 |34535 |Application |General |
+ROW |11426 |34536 |Application |Status |
+ROW |11427 |34537 |Application |Status |
+ROW |11428 |34538 |Application |Status |
+ROW |11429 |34539 |Application |Status |
+ROW |11430 |34540 |Application |Status |
+ROW |11431 |34541 |Application |Status |
+ROW |11432 |34542 |Application |Status |
+ROW |11433 |34543 |Application |Status |
+ROW |11434 |34544 |Application |Status |
+ROW |11435 |34545 |Application |Status |
+ROW |11436 |34546 |Application |Status |
+ROW |11437 |34547 |Application |Status |
+ROW |11438 |34548 |Application |Status |
+ROW |11439 |34549 |Application |Status |
+ROW |11440 |34550 |Application |General |
+ROW |11441 |34551 |Application |General |
+ROW |11442 |34552 |Application |General |
+ROW |11443 |34553 |Application |General |
+ROW |11444 |34554 |Application |General |
+ROW |11445 |34555 |Application |General |
+ROW |11446 |34556 |Application |General |
+ROW |11447 |34557 |Application |General |
+ROW |11448 |34558 |Application |Status |
+ROW |11449 |34559 |Application |Status |
+ROW |11450 |34560 |Application |Status |
+ROW |11451 |34561 |Application |Status |
+ROW |11452 |34562 |Application |Status |
+ROW |11453 |34563 |Application |Status |
+ROW |11454 |34564 |Application |Status |
+ROW |11455 |34565 |Application |Status |
+ROW |11456 |34566 |Application |Status |
+ROW |11457 |34567 |Application |Status |
+ROW |11458 |34568 |Application |Status |
+ROW |11459 |34569 |Application |Status |
+ROW |11460 |34570 |Application |Status |
+ROW |11461 |34571 |Application |Status |
+ROW |11462 |34578 |Application |Status |
+ROW |11463 |34579 |Application |Status |
+ROW |11464 |34580 |Application |Status |
+ROW |11465 |34581 |Application |Status |
+ROW |11466 |34582 |Application |Status |
+ROW |11467 |34583 |Application |General |
+ROW |11468 |34584 |Application |Status |
+ROW |11469 |34585 |Application |Status |
+ROW |11470 |34586 |Application |Status |
+ROW |11471 |34587 |Application |Status |
+ROW |11472 |34588 |Application |Status |
+ROW |11473 |34589 |Application |Status |
+ROW |11474 |34590 |Application |Status |
+ROW |11475 |34591 |Application |Status |
+ROW |11476 |34592 |Application |Status |
+ROW |11477 |34593 |Application |Status |
+ROW |11478 |34594 |Application |Status |
+ROW |11479 |34595 |Application |Status |
+ROW |11480 |34596 |Application |Status |
+ROW |11481 |34597 |Application |Status |
+ROW |11482 |34598 |Application |General |
+ROW |11483 |34599 |Application |General |
+ROW |11484 |34600 |Application |General |
+ROW |11485 |34601 |Application |General |
+ROW |11486 |34602 |Application |General |
+ROW |11487 |34603 |Application |General |
+ROW |11488 |34604 |Application |General |
+ROW |11489 |34605 |Application |General |
+ROW |11490 |34606 |Application |Status |
+ROW |11491 |34607 |Application |Status |
+ROW |11492 |34608 |Application |Status |
+ROW |11493 |34609 |Application |Status |
+ROW |11494 |34610 |Application |Status |
+ROW |11495 |34611 |Application |Status |
+ROW |11496 |34612 |Application |Status |
+ROW |11497 |34613 |Application |Status |
+ROW |11498 |34614 |Application |Status |
+ROW |11499 |34615 |Application |Status |
+ROW |11500 |34616 |Application |Status |
+ROW |11501 |34617 |Application |Status |
+ROW |11502 |34618 |Application |Status |
+ROW |11503 |34619 |Application |Status |
+ROW |11504 |34626 |Application |Status |
+ROW |11505 |34627 |Application |Status |
+ROW |11506 |34628 |Application |Status |
+ROW |11507 |34629 |Application |Status |
+ROW |11508 |34630 |Application |Status |
+ROW |11509 |34631 |Application |General |
+ROW |11510 |34632 |Application |Status |
+ROW |11511 |34633 |Application |Status |
+ROW |11512 |34634 |Application |Status |
+ROW |11513 |34635 |Application |Status |
+ROW |11514 |34636 |Application |Status |
+ROW |11515 |34637 |Application |Status |
+ROW |11516 |34638 |Application |Status |
+ROW |11517 |34639 |Application |Status |
+ROW |11518 |34640 |Application |Status |
+ROW |11519 |34641 |Application |Status |
+ROW |11520 |34642 |Application |Status |
+ROW |11521 |34643 |Application |Status |
+ROW |11522 |34644 |Application |Status |
+ROW |11523 |34645 |Application |Status |
+ROW |11524 |34646 |Application |General |
+ROW |11525 |34647 |Application |General |
+ROW |11526 |34648 |Application |General |
+ROW |11527 |34649 |Application |General |
+ROW |11528 |34650 |Application |General |
+ROW |11529 |34651 |Application |General |
+ROW |11530 |34652 |Application |General |
+ROW |11531 |34653 |Application |General |
+ROW |11532 |34654 |Application |Status |
+ROW |11533 |34655 |Application |Status |
+ROW |11534 |34656 |Application |Status |
+ROW |11535 |34657 |Application |Status |
+ROW |11536 |34658 |Application |Status |
+ROW |11537 |34659 |Application |Status |
+ROW |11538 |34660 |Application |Status |
+ROW |11539 |34661 |Application |Status |
+ROW |11540 |34662 |Application |Status |
+ROW |11541 |34663 |Application |Status |
+ROW |11542 |34664 |Application |Status |
+ROW |11543 |34665 |Application |Status |
+ROW |11544 |34666 |Application |Status |
+ROW |11545 |34667 |Application |Status |
+ROW |11546 |34674 |Application |Status |
+ROW |11547 |34675 |Application |Status |
+ROW |11548 |34676 |Application |Status |
+ROW |11549 |34677 |Application |Status |
+ROW |11550 |34678 |Application |Status |
+ROW |11551 |34679 |Application |General |
+ROW |11552 |34680 |Application |Status |
+ROW |11553 |34681 |Application |Status |
+ROW |11554 |34682 |Application |Status |
+ROW |11555 |34683 |Application |Status |
+ROW |11556 |34684 |Application |Status |
+ROW |11557 |34685 |Application |Status |
+ROW |11558 |34686 |Application |Status |
+ROW |11559 |34687 |Application |Status |
+ROW |11560 |34688 |Application |Status |
+ROW |11561 |34689 |Application |Status |
+ROW |11562 |34690 |Application |Status |
+ROW |11563 |34739 |Application |Status |
+ROW |11564 |34740 |Application |Status |
+ROW |11565 |34741 |Application |Status |
+ROW |11566 |34742 |Application |General |
+ROW |11567 |34743 |Application |General |
+ROW |11568 |34744 |Application |General |
+ROW |11569 |34745 |Application |General |
+ROW |11570 |34746 |Application |General |
+ROW |11571 |34747 |Application |General |
+ROW |11572 |34748 |Application |General |
+ROW |11573 |34749 |Application |General |
+ROW |11574 |34750 |Application |Status |
+ROW |11575 |34751 |Application |Status |
+ROW |11576 |34752 |Application |Status |
+ROW |11577 |34753 |Application |Status |
+ROW |11578 |34754 |Application |Status |
+ROW |11579 |34755 |Application |Status |
+ROW |11580 |34756 |Application |Status |
+ROW |11581 |34757 |Application |Status |
+ROW |11582 |34758 |Application |Status |
+ROW |11583 |34759 |Application |Status |
+ROW |11584 |34760 |Application |Status |
+ROW |11585 |34761 |Application |Status |
+ROW |11586 |34762 |Application |Status |
+ROW |11587 |34763 |Application |Status |
+ROW |11588 |34770 |Application |Status |
+ROW |11589 |34771 |Application |Status |
+ROW |11590 |34772 |Application |Status |
+ROW |11591 |34773 |Application |Status |
+ROW |11592 |34774 |Application |Status |
+ROW |11593 |34775 |Application |General |
+ROW |11594 |34776 |Application |Status |
+ROW |11595 |34777 |Application |Status |
+ROW |11596 |34778 |Application |Status |
+ROW |11597 |34779 |Application |Status |
+ROW |11598 |34780 |Application |Status |
+ROW |11599 |34781 |Application |Status |
+ROW |11600 |34782 |Application |Status |
+ROW |11601 |34783 |Application |Status |
+ROW |11602 |34784 |Application |Status |
+ROW |11603 |34785 |Application |Status |
+ROW |11604 |34786 |Application |Status |
+ROW |11605 |34180 |Application |Status |
+ROW |11606 |34181 |Application |Status |
+ROW |11607 |34182 |Application |General |
+ROW |11608 |34183 |Application |General |
+ROW |11609 |34185 |Application |General |
+ROW |11610 |34186 |Application |General |
+ROW |11611 |34187 |Application |General |
+ROW |11612 |34188 |Application |General |
+ROW |11613 |34189 |Application |General |
+ROW |11614 |34190 |Application |Status |
+ROW |11615 |34191 |Application |Status |
+ROW |11616 |34192 |Application |Status |
+ROW |11617 |34193 |Application |Status |
+ROW |11618 |34194 |Application |Status |
+ROW |11619 |34195 |Application |Status |
+ROW |11620 |34196 |Application |Status |
+ROW |11621 |34200 |Application |Status |
+ROW |11622 |34201 |Application |Status |
+ROW |11623 |34202 |Application |Status |
+ROW |11624 |34203 |Application |Status |
+ROW |11625 |34204 |Application |Status |
+ROW |11626 |34205 |Application |Status |
+ROW |11627 |34206 |Application |Status |
+ROW |11628 |34787 |Application |Status |
+ROW |11629 |34788 |Application |General |
+ROW |11630 |34212 |Application |Status |
+ROW |11631 |34213 |Application |Status |
+ROW |11632 |34214 |Application |Status |
+ROW |11633 |34215 |Application |Status |
+ROW |11634 |34216 |Application |Status |
+ROW |11635 |34217 |Application |General |
+ROW |11636 |34218 |Application |Status |
+ROW |11637 |34219 |Application |Status |
+ROW |11638 |34220 |Application |Status |
+ROW |11639 |34221 |Application |Status |
+ROW |11640 |34222 |Application |Status |
+ROW |11641 |34223 |Application |Status |
+ROW |11642 |34224 |Application |Status |
+ROW |11643 |34225 |Application |Status |
+ROW |11644 |34790 |Application |Status |
+ROW |11645 |34791 |Application |Status |
+ROW |11646 |34792 |Application |Status |
+ROW |11647 |34793 |Application |Status |
+ROW |11648 |34794 |Application |Status |
+ROW |11649 |34795 |Application |Status |
+ROW |11650 |34796 |Application |General |
+ROW |11651 |34797 |Application |General |
+ROW |11652 |34798 |Application |General |
+ROW |11653 |34799 |Application |General |
+ROW |11654 |34800 |Application |General |
+ROW |11655 |34801 |Application |General |
+ROW |11656 |34802 |Application |General |
+ROW |11657 |34803 |Application |General |
+ROW |11658 |34804 |Application |Status |
+ROW |11659 |34805 |Application |Status |
+ROW |11660 |34806 |Application |Status |
+ROW |11661 |34807 |Application |Status |
+ROW |11662 |34808 |Application |Status |
+ROW |11663 |34809 |Application |Status |
+ROW |11664 |34810 |Application |Status |
+ROW |11665 |34811 |Application |Status |
+ROW |11666 |34812 |Application |Status |
+ROW |11667 |34813 |Application |Status |
+ROW |11668 |34814 |Application |Status |
+ROW |11669 |34815 |Application |Status |
+ROW |11670 |34816 |Application |Status |
+ROW |11671 |34817 |Application |Status |
+ROW |11672 |34824 |Application |Status |
+ROW |11673 |34825 |Application |Status |
+ROW |11674 |34826 |Application |Status |
+ROW |11675 |34827 |Application |Status |
+ROW |11676 |34828 |Application |Status |
+ROW |11677 |34829 |Application |General |
+ROW |11678 |34830 |Application |Status |
+ROW |11679 |34831 |Application |Status |
+ROW |11680 |34832 |Application |Status |
+ROW |11681 |34833 |Application |Status |
+ROW |11682 |34834 |Application |Status |
+ROW |11683 |34835 |Application |Status |
+ROW |11684 |34836 |Application |Status |
+ROW |11685 |34837 |Application |Status |
+ROW |11686 |34838 |Application |Status |
+ROW |11687 |34839 |Application |Status |
+ROW |11688 |34840 |Application |Status |
+ROW |11689 |34841 |Application |Status |
+ROW |11690 |34842 |Application |Status |
+ROW |11691 |34843 |Application |Status |
+ROW |11692 |34844 |Application |General |
+ROW |11693 |34845 |Application |General |
+ROW |11694 |34846 |Application |General |
+ROW |11695 |34847 |Application |General |
+ROW |11696 |34848 |Application |General |
+ROW |11697 |34849 |Application |General |
+ROW |11698 |34850 |Application |General |
+ROW |11699 |34851 |Application |General |
+ROW |11700 |34852 |Application |Status |
+ROW |11701 |34853 |Application |Status |
+ROW |11702 |34854 |Application |Status |
+ROW |11703 |34855 |Application |Status |
+ROW |11704 |34856 |Application |Status |
+ROW |11705 |34857 |Application |Status |
+ROW |11706 |34858 |Application |Status |
+ROW |11707 |34859 |Application |Status |
+ROW |11708 |34860 |Application |Status |
+ROW |11709 |34861 |Application |Status |
+ROW |11710 |34862 |Application |Status |
+ROW |11711 |34863 |Application |Status |
+ROW |11712 |34864 |Application |Status |
+ROW |11713 |34865 |Application |Status |
+ROW |11714 |34872 |Application |Status |
+ROW |11715 |34873 |Application |Status |
+ROW |11716 |34874 |Application |Status |
+ROW |11717 |34875 |Application |Status |
+ROW |11718 |34876 |Application |Status |
+ROW |11719 |34877 |Application |General |
+ROW |11720 |34878 |Application |Status |
+ROW |11721 |34879 |Application |Status |
+ROW |11722 |34880 |Application |Status |
+ROW |11723 |34881 |Application |Status |
+ROW |11724 |34882 |Application |Status |
+ROW |11725 |34883 |Application |Status |
+ROW |11726 |34884 |Application |Status |
+ROW |11727 |34885 |Application |Status |
+ROW |11728 |34886 |Application |Status |
+ROW |11729 |34887 |Application |Status |
+ROW |11730 |34888 |Application |Status |
+ROW |11731 |34889 |Application |Status |
+ROW |11732 |34890 |Application |Status |
+ROW |11733 |34891 |Application |Status |
+ROW |11734 |34892 |Application |General |
+ROW |11735 |34893 |Application |General |
+ROW |11736 |34894 |Application |General |
+ROW |11737 |34895 |Application |General |
+ROW |11738 |34896 |Application |General |
+ROW |11739 |34897 |Application |General |
+ROW |11740 |34898 |Application |General |
+ROW |11741 |34899 |Application |General |
+ROW |11742 |34900 |Application |Status |
+ROW |11743 |34901 |Application |Status |
+ROW |11744 |34902 |Application |Status |
+ROW |11745 |34903 |Application |Status |
+ROW |11746 |34904 |Application |Status |
+ROW |11747 |34905 |Application |Status |
+ROW |11748 |34906 |Application |Status |
+ROW |11749 |34907 |Application |Status |
+ROW |11750 |34908 |Application |Status |
+ROW |11751 |34909 |Application |Status |
+ROW |11752 |34910 |Application |Status |
+ROW |11753 |34911 |Application |Status |
+ROW |11754 |34912 |Application |Status |
+ROW |11755 |34913 |Application |Status |
+ROW |11756 |34920 |Application |Status |
+ROW |11757 |34921 |Application |Status |
+ROW |11758 |34922 |Application |Status |
+ROW |11759 |34923 |Application |Status |
+ROW |11760 |34924 |Application |Status |
+ROW |11761 |34925 |Application |General |
+ROW |11762 |34926 |Application |Status |
+ROW |11763 |34927 |Application |Status |
+ROW |11764 |34928 |Application |Status |
+ROW |11765 |34929 |Application |Status |
+ROW |11766 |34930 |Application |Status |
+ROW |11767 |34931 |Application |Status |
+ROW |11768 |34932 |Application |Status |
+ROW |11769 |34933 |Application |Status |
+ROW |11770 |34934 |Application |Status |
+ROW |11771 |34935 |Application |Status |
+ROW |11772 |34936 |Application |Status |