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

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorContinuous Integration <ci@zabbix.com>2021-05-17 14:21:17 +0300
committerContinuous Integration <ci@zabbix.com>2021-05-17 14:21:17 +0300
commitd8e1147c7d8950ceb1eb7fcdb15cb3f5bdc9d313 (patch)
tree34ae9e77e695c8737dff4c9bea35aab44bdcd9b3
parentb4b15d59a329e9e1c9c5f10c6949933839919ecc (diff)
.......... [ZBXNEXT-826] automatic deployment of official Zabbix templates and media types5.0.12rc1
-rw-r--r--create/src/data.tmpl102
-rw-r--r--create/src/templates.tmpl22175
2 files changed, 11399 insertions, 10878 deletions
diff --git a/create/src/data.tmpl b/create/src/data.tmpl
index a533ac1077c..ac8db7186d5 100644
--- a/create/src/data.tmpl
+++ b/create/src/data.tmpl
@@ -50,35 +50,37 @@ FIELDS|dcheckid|druleid|type|key_ |snmp_community|ports|snmpv3_securityna
ROW |2 |2 |9 |system.uname| |10050| |0 | | |0 |0 |0 | |1 |0 |
TABLE |media_type
-FIELDS|mediatypeid|type|name |smtp_server |smtp_helo |smtp_email |exec_path|gsm_modem |username|passwd|status|smtp_port|smtp_security|smtp_verify_peer|smtp_verify_host|smtp_authentication|exec_params|maxsessions|maxattempts|attempt_interval|content_type|script |timeout|process_tags|show_event_menu|event_menu_url |event_menu_name |description |
-ROW |1 |0 |Email |mail.example.com|example.com|zabbix@example.com| | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |0 | |30s |0 |0 | | | |
-ROW |3 |2 |SMS | | | | |/dev/ttyS0| | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 | |30s |0 |0 | | | |
-ROW |4 |0 |Email (HTML) |mail.example.com|example.com|zabbix@example.com| | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 | |30s |0 |0 | | | |
-ROW |5 |4 |Mattermost | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |1 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', '#7499FF', '#FFC859',&eol; '#FFA059', '#E97659', '#E45959'&eol;];&eol;&eol;var RESOLVE_COLOR = '#009900';&eol;&eol;var SEND_MODE_HANDLERS = {&eol; alarm: handlerAlarm,&eol; event: handlerEvent&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(mattermost_url, team_name, postid) {&eol; return '{0}/{1}/pl/{2}'.format(&eol; mattermost_url.replace(/\/+$/, ''),&eol; team_name,&eol; postid&eol; );&eol;}&eol;&eol;function getChannel(send_to) {&eol; switch (true) {&eol; case /.+\/#.+/.test(send_to):&eol; return getChannelByName(send_to);&eol;&eol; case /@.+/.test(send_to):&eol; return getDirectChannel(send_to);&eol;&eol; default:&eol; return getChannelByID(send_to);&eol; }&eol;}&eol;&eol;function getChannelByName(send_to) {&eol; var team_chan = send_to&eol; .trim()&eol; .split('/#');&eol;&eol; var resp = JSON.parse(req.Get(&eol; Mattermost.channel_byname.format(team_chan[0], team_chan[1]),&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; if (req.Status() != 200) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; return resp;&eol;}&eol;&eol;function getDirectChannel(send_to) {&eol; Zabbix.Log(5, '[ Mattermost Webhook ] Call {0}({1})'.format(&eol; arguments.callee.name,&eol; JSON.stringify(arguments)&eol; ));&eol;&eol; var teamUser = send_to&eol; .trim()&eol; .split('/@'),&eol; bot = getBotUser(),&eol; user = getUserByName(teamUser[1]);&eol;&eol; var resp = JSON.parse(req.Post(&eol; Mattermost.direct_channel,&eol; JSON.stringify([bot.id, user.id])&eol; )&eol; );&eol;&eol; Zabbix.Log(5, '[ Mattermost Webhook ] Result {0}: {1}'.format(&eol; arguments.callee.name,&eol; JSON.stringify(resp)&eol; ));&eol;&eol; if (req.Status() != 201) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; resp.team_name = teamUser[0];&eol;&eol; return resp;&eol;}&eol;&eol;function getChannelByID(channelID) {&eol; Zabbix.Log(5, '[ Mattermost Webhook ] Call {0}({1})'.format(&eol; arguments.callee.name,&eol; JSON.stringify(arguments)&eol; ));&eol;&eol; var resp = JSON.parse(req.Get(&eol; Mattermost.get_channel.format(channelID),&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; Zabbix.Log(5, '[ Mattermost Webhook ] Result {0}: {1}'.format(&eol; arguments.callee.name,&eol; JSON.stringify(resp)&eol; ));&eol;&eol; if (req.Status() != 200) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; return resp;&eol;}&eol;&eol;function getBotUser() {&eol; Zabbix.Log(5, '[ Mattermost Webhook ] Call {0}({1})'.format(&eol; arguments.callee.name,&eol; JSON.stringify(arguments)&eol; ));&eol;&eol; var resp = JSON.parse(req.Get(&eol; Mattermost.bot_user,&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; Zabbix.Log(5, '[ Mattermost Webhook ] Result {0}: {1}'.format(&eol; arguments.callee.name,&eol; JSON.stringify(resp)&eol; ));&eol;&eol; if (req.Status() != 200) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; return resp;&eol;}&eol;&eol;function getUserByName(userName) {&eol; Zabbix.Log(5, '[ Mattermost Webhook ] Call {0}({1})'.format(&eol; arguments.callee.name,&eol; JSON.stringify(arguments)&eol; ));&eol;&eol; var resp = JSON.parse(req.Get(&eol; Mattermost.user_byname.format(userName),&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; Zabbix.Log(5, '[ Mattermost Webhook ] Result {0}: {1}'.format(&eol; arguments.callee.name,&eol; JSON.stringify(resp)&eol; ));&eol;&eol; if (req.Status() != 200) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; return resp;&eol;}&eol;&eol;function getTeamByID(teamID) {&eol; Zabbix.Log(5, '[ Mattermost Webhook ] Call {0}({1})'.format(&eol; arguments.callee.name,&eol; JSON.stringify(arguments)&eol; ));&eol;&eol; var resp = JSON.parse(req.Get(&eol; Mattermost.get_team.format(teamID),&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; Zabbix.Log(5, '[ Mattermost Webhook ] Result {0}: {1}'.format(&eol; arguments.callee.name,&eol; JSON.stringify(resp)&eol; ));&eol;&eol; if (req.Status() != 200) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; return resp;&eol;}&eol;&eol;function createProblemURL(zabbix_url, triggerid, eventid, event_source) {&eol; var problem_url = '';&eol; if (event_source === '0') {&eol; problem_url = '{0}/tr_events.php?triggerid={1}&eventid={2}'&eol; .format(&eol; zabbix_url,&eol; triggerid,&eol; eventid&eol; );&eol; }&eol; else {&eol; problem_url = zabbix_url;&eol; }&eol;&eol; return problem_url;&eol;}&eol;&eol;function getTagValue(event_tags, key) {&eol; var pattern = new RegExp('(' + key + ':.+)');&eol; var tagValue = event_tags&eol; .split(',')&eol; .filter(function (v) {&eol; return v.match(pattern);&eol; })&eol; .map(function (v) {&eol; return v.split(':')[1];&eol; })[0]&eol; &pipe;&pipe; 0;&eol;&eol; return tagValue;&eol;}&eol;&eol;function handlerAlarm(req, params) {&eol; var channel = getChannel(params.send_to);&eol; var fields = {&eol; channel_id: channel.id,&eol; props: {}&eol; };&eol;&eol; if (isEventProblem(params)) {&eol; var team_name = channel.team_name&eol; ? channel.team_name&eol; : getTeamByID(channel.team_id).name;&eol;&eol; fields.props.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(&eol; Mattermost.post_message,&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; if (req.Status() != 201) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; result.tags.__mattermost_post_id = resp.id;&eol; result.tags.__mattermost_channel_id = channel.id;&eol; result.tags.__mattermost_channel_name = channel.name;&eol; result.tags.__mattermost_message_link = getPermalink(&eol; params.mattermost_url,&eol; team_name,&eol; resp.id&eol; );&eol;&eol; }&eol; else if (isEventUpdate(params)) {&eol; fields.root_id = getTagValue(params.event_tags, 'mattermost_post_id');&eol;&eol; if (params.event_source === '0') {}&eol; fields.props.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(&eol; Mattermost.post_message, JSON.stringify(fields)&eol; )&eol; );&eol;&eol; if (req.Status() != 201) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; }&eol; else if (isEventResolve(params)) {&eol; fields.channel_id = getTagValue(params.event_tags, 'mattermost_channel_id');&eol; fields.id = getTagValue(params.event_tags, 'mattermost_post_id');&eol; fields.props.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; var post_id = getTagValue(params.event_tags, 'mattermost_post_id');&eol;&eol; resp = JSON.parse(req.Put(&eol; Mattermost.chat_update.format(post_id),&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; if (req.Status() != 200) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol; }&eol;}&eol;&eol;function handlerEvent(req, params) {&eol; var channel = getChannel(params.send_to);&eol; var fields = {&eol; channel_id: channel.id,&eol; props: {}&eol; };&eol;&eol; if (isEventProblem(params)) {&eol; var team_name = channel.team_name&eol; ? channel.team_name&eol; : getTeamByID(channel.team_id).name;&eol;&eol; fields.props.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(Mattermost.post_message, JSON.stringify(fields)));&eol;&eol; if (req.Status() != 201) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; result.tags.__mattermost_channel_name = channel.name;&eol; result.tags.__mattermost_message_link = getPermalink(&eol; params.mattermost_url,&eol; team_name,&eol; resp.id&eol; );&eol;&eol; }&eol; else if (isEventUpdate(params)) {&eol; fields.props.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(Mattermost.post_message, JSON.stringify(fields)));&eol;&eol; if (req.Status() != 201) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; }&eol; else if (isEventResolve(params)) {&eol; fields.props.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(Mattermost.post_message, JSON.stringify(fields)));&eol;&eol; if (req.Status() != 201) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol; }&eol;}&eol;&eol;function createMessage(&eol; event_severity_color,&eol; event_date,&eol; event_time,&eol; problem_url,&eol; isShort&eol;) {&eol; var message = {&eol; fallbac: params.alert_subject,&eol; title: params.alert_subject,&eol; color: event_severity_color,&eol; title_link: problem_url,&eol; footer: problem_url,&eol;&eol; fields: [&eol; {&eol; title: 'Host',&eol; value: '{0} [{1}]'.format(params.host_name, params.host_ip),&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; &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.fields.push(&eol; {&eol; title: 'Event tags',&eol; value: '`{0}`'.format(params.event_tags.replace(/__.+?:(.+?,&pipe;.+)/g, '') &pipe;&pipe; 'None'),&eol; short: true&eol; },&eol; {&eol; title: 'Trigger description',&eol; value: params.trigger_description,&eol; short: true&eol; }&eol; );&eol; }&eol;&eol; if (params.event_source !== '0' &pipe;&pipe; params.event_update_status === '1') {&eol; message.fields.push(&eol; {&eol; title: 'Details',&eol; value: params.alert_message,&eol; short: false&eol; }&eol; );&eol; }&eol;&eol; return message;&eol;}&eol;&eol;function validateParams(params) {&eol; if (typeof params.bot_token !== 'string' &pipe;&pipe; params.bot_token.trim() === '') {&eol; throw 'Field "bot_token" cannot be empty';&eol; }&eol;&eol; if (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.send_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)) === -1) {&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_ip !== 'string' &pipe;&pipe; params.host_ip.trim() === '') {&eol; throw 'Field "host_ip" 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 (typeof params.mattermost_url !== 'string' &pipe;&pipe; params.mattermost_url.trim() === '') {&eol; throw 'Field "mattermost_url" cannot be empty';&eol; }&eol;&eol; if (!/^(http&pipe;https):\/\/.+/.test(params.mattermost_url)) {&eol; throw 'Field "mattermost_url" must contain a schema';&eol; }&eol;&eol; if (['alarm', 'event'].indexOf(params.send_mode) === -1) {&eol; throw 'Incorrect "send_mode" parameter given: ' + params.send_mode + '\nMust be "alarm" or "event".';&eol; }&eol;&eol; if (typeof params.send_to !== 'string' &pipe;&pipe; params.send_to.trim() === '') {&eol; throw 'Field "send_to" cannot be empty';&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;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; validateParams(params);&eol;&eol; var req = new CurlHttpRequest(),&eol; fields = {},&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; params.mattermost_url = params.mattermost_url.replace(/\/+$/, '');&eol; params.zabbix_url = params.zabbix_url.replace(/\/+$/, '');&eol;&eol; var APIEndpoint = params.mattermost_url + '/api/v4/';&eol;&eol; var Mattermost = {&eol; post_message: APIEndpoint + 'posts',&eol; get_channel: APIEndpoint + 'channels/{0}',&eol; get_team: APIEndpoint + 'teams/{0}',&eol; chat_update: APIEndpoint + 'posts/{0}',&eol; direct_channel: APIEndpoint + 'channels/direct',&eol; channel_byname: APIEndpoint + 'teams/name/{0}/channels/name/{1}',&eol; user_byname: APIEndpoint + 'users/username/{0}',&eol; bot_user: APIEndpoint + 'users/me'&eol;&eol; };&eol;&eol; params.send_mode = params.send_mode.toLowerCase();&eol; params.send_mode = params.send_mode in SEND_MODE_HANDLERS&eol; ? params.send_mode&eol; : 'alarm';&eol;&eol; SEND_MODE_HANDLERS[params.send_mode](req, 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, '[ Mattermost Webhook ] Mattermost notification failed: ' + error);&eol; throw 'Mattermost notification failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__mattermost_message_link}|Open in Mattermost: {EVENT.TAGS.__mattermost_channel_name} | |
-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 CurlHttpRequest();&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.Status() + '\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.Status() < 200 &pipe;&pipe; request.Status() >= 300)&eol; && (!allow_404 &pipe;&pipe; request.Status() !== 404)) {&eol; var message = 'Request failed with status code ' + request.Status();&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.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getAlertId: function (requestId) {&eol; do {&eol; resp = Media.request('get', 'requests/' + requestId, undefined, true);&eol; }&eol; while (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.data === 'undefined'&eol; &pipe;&pipe; resp.response.data.success === false);&eol;&eol; if (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.data === 'undefined') {&eol; throw 'Cannot get ' + Media.name + ' issue ID. Check debug log for more information.';&eol; }&eol;&eol; return resp;&eol; }&eol;};&eol;&eol;try {&eol; var result = {tags: {}},&eol; params = JSON.parse(value),&eol; media = {},&eol; fields = {},&eol; resp = {},&eol; responders = [],&eol; tags = [],&eol; required_params = [&eol; 'alert_subject',&eol; 'alert_message',&eol; 'event_id',&eol; 'event_source',&eol; 'event_value',&eol; 'event_update_status',&eol; 'opsgenie_api',&eol; 'opsgenie_web',&eol; 'opsgenie_token'&eol; ],&eol; severities = [&eol; 'not_classified',&eol; 'information',&eol; 'warning',&eol; 'average',&eol; 'high',&eol; 'disaster',&eol; 'resolved',&eol; 'default'&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter "' + key + '" cannot be empty.';&eol; }&eol; if (key.startsWith('opsgenie_')) {&eol; media[key.substring(9)] = params[key];&eol; }&eol; });&eol;&eol; // Possible values of event_source:&eol; // 0 - Trigger, 1 - Discovery, 2 - Autoregistration, 3 - Internal.&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; // Check event_value for trigger-based and internal events.&eol; // Possible values: 1 for problem, 0 for recovering&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check event_update_status only for trigger-based events.&eol; // Possible values: 0 - Webhook was called because of problem/recovery event, 1 - Update operation.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check event_id for a numeric value.&eol; if (isNaN(parseInt(params.event_id)) &pipe;&pipe; params.event_id < 1) {&eol; throw 'Incorrect "event_id" parameter given: ' + params.event_id + '\nMust be a positive number.';&eol; }&eol;&eol; if ((params.event_source === '1' &pipe;&pipe; params.event_source === '2') && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for Trigger and Internal actions.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['severity_' + severities[params.event_nseverity]];&eol; params.zbxurl = params.zbxurl + (params.zbxurl.endsWith('/') ? '' : '/');&eol;&eol; Media.name = 'Opsgenie';&eol; Media.setParams(media);&eol; Media.params.token = 'GenieKey ' + Media.params.token;&eol; Media.setProxy(params.HTTPProxy);&eol; Media.setTags(params.event_tags_json); // Set Media.labels&eol;&eol; // Create an issue.&eol; // Numeric value of the event that triggered an action (1 for problem, 0 for recovering).&eol; // Numeric value of of the problem update status. Possible values:&eol; // 0 - Webhook was called because of problem/recovery event, 1 - Update operation.&eol; if ((params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0)&eol; &pipe;&pipe; (params.event_source == 3 && params.event_value == 1)&eol; &pipe;&pipe; params.event_source == 1 &pipe;&pipe; params.event_source == 2) {&eol; fields.message = params.alert_subject;&eol; fields.alias = params.event_id;&eol; fields.description = params.alert_message;&eol; fields.priority = priority;&eol; fields.source = 'Zabbix';&eol;&eol; if (params.event_source === '0') {&eol; fields.details = {&eol; 'Zabbix server': params.zbxurl,&eol; Problem: params.zbxurl + 'tr_events.php?triggerid=' + params.trigger_id + '&eventid=' + params.event_id&eol; };&eol; }&eol; else {&eol; fields.details = {'Zabbix server': params.zbxurl};&eol; }&eol;&eol; if (typeof params.opsgenie_teams === 'string') {&eol; responders = params.opsgenie_teams.split(',');&eol; fields.responders = responders.map(function(team) {&eol; return {type: 'team', name: team.trim()};&eol; });&eol; }&eol;&eol; fields.tags = Media.labels;&eol; if (typeof params.opsgenie_tags === 'string') {&eol; tags = params.opsgenie_tags.split(',');&eol; tags.forEach(function(item) {&eol; fields.tags.push(item.trim());&eol; });&eol; }&eol;&eol; resp = Media.request('post', '', fields);&eol; if (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.result === 'undefined') {&eol; throw 'Cannot create ' + Media.name + ' issue. Check debug log for more information.';&eol; }&eol;&eol; if (resp.status === 202) {&eol; resp = Media.getAlertId(resp.response.requestId);&eol; if (params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0) {&eol; result.tags.__zbx_ops_issuekey = resp.response.data.alertId;&eol; result.tags.__zbx_ops_issuelink = Media.params.web + 'alert/detail/' + resp.response.data.alertId;&eol; }&eol; }&eol; else {&eol; throw Media.name + ' response code is unexpected. Check debug log for more information.';&eol; }&eol; }&eol; // Update a created issue.&eol; else {&eol; fields.user = (params.event_value != 0) ? params.zbxuser : '';&eol; fields.note = params.alert_message;&eol;&eol; resp = Media.request('post', params.event_id + '/notes?identifierType=alias', fields);&eol; if (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.result === 'undefined') {&eol; throw 'Cannot update ' + Media.name + ' issue. Check debug log for more information.';&eol; }&eol;&eol; if (resp.status === 202) {&eol; resp = Media.getAlertId(resp.response.requestId);&eol; }&eol; else {&eol; throw Media.name + ' response code is unexpected. Check debug log for more information.';&eol; }&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ ' + Media.name + ' Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_ops_issuelink} |Opsgenie: {EVENT.TAGS.__zbx_ops_issuekey} |Please refer to https://docs.opsgenie.com/docs/alert-api and https://www.zabbix.com/documentation/5.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 CurlHttpRequest(),&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.Status() != 202) {&eol; if (typeof resp === 'object' && typeof resp.errors === 'object' && typeof resp.errors[0] === 'string') {&eol; throw resp.errors[0];&eol; }&eol; else {&eol; throw 'Unknown error.';&eol; }&eol; }&eol;&eol; if (resp.status != 'success') {&eol; throw 'Unknown error.';&eol; }&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[PagerDuty Webhook] Notification failed : ' + error);&eol; throw 'PagerDuty notification failed : ' + error;&eol;}|30s |0 |0 | | |Please refer to https://v2.developer.pagerduty.com/docs/send-an-event-events-api-v2 and https://www.zabbix.com/documentation/5.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 CurlHttpRequest(),&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.Status() + '\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.Status() != 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 CurlHttpRequest();&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.Status() != 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.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; result.tags.__message_ts = resp.ts;&eol; result.tags.__channel_id = resp.channel;&eol; result.tags.__channel_name = params.channel;&eol; result.tags.__message_link = getPermalink(resp.channel, resp.ts);&eol; }&eol; else if (isEventUpdate(params)) {&eol; fields.thread_ts = params.message_ts;&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),&eol; true&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol; if (req.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; }&eol; else if (isEventResolve(params)) {&eol; fields.channel = params.channel_id;&eol; fields.text = '';&eol; fields.ts = params.message_ts;&eol; fields.attachments = [&eol; createMessage(&eol; RESOLVE_COLOR,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.chatUpdate, JSON.stringify(fields)));&eol; if (req.Status() != 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.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; result.tags.__channel_name = params.channel;&eol; result.tags.__message_link = getPermalink(resp.channel, resp.ts);&eol;&eol; }&eol; else if (isEventUpdate(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),&eol; false&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.Status() != 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.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol; }&eol;}&eol;&eol;function createMessage(&eol; event_severity_color,&eol; event_date,&eol; event_time,&eol; problem_url,&eol; isShort,&eol; messageText&eol;) {&eol; var message = {&eol; fallback: params.alert_subject,&eol; title: params.alert_subject,&eol; color: event_severity_color,&eol; title_link: problem_url,&eol; pretext: messageText &pipe;&pipe; '',&eol;&eol; fields: [&eol; {&eol; title: 'Host',&eol; value: '{0} [{1}]'.format(params.host_name, params.host_conn),&eol; short: true&eol; },&eol; {&eol; title: 'Event time',&eol; value: '{0} {1}'.format(event_date, event_time),&eol; short: true&eol; }&eol; ],&eol; };&eol;&eol; if (params.event_source === '0') {&eol; message.fields.push(&eol; {&eol; title: 'Severity',&eol; value: params.event_severity,&eol; short: true&eol; },&eol; {&eol; title: 'Opdata',&eol; value: params.event_opdata,&eol; short: true&eol; }&eol; );&eol; }&eol;&eol; if (!isShort && params.event_source === '0') {&eol; message['actions'] = [&eol; {&eol; type: 'button',&eol; text: 'Open in Zabbix',&eol; url: problem_url&eol; }&eol; ];&eol;&eol; message.fields.push(&eol; {&eol; title: 'Event tags',&eol; value: params.event_tags.replace(/__.+?:(.+?,&pipe;.+)/g, '') &pipe;&pipe; 'None',&eol; short: true&eol; },&eol; {&eol; title: 'Trigger description',&eol; value: params.trigger_description,&eol; short: true&eol; }&eol; );&eol; }&eol;&eol; if (params.event_source !== '0' &pipe;&pipe; params.event_update_status === '1') {&eol; message.fields.push(&eol; {&eol; title: 'Details',&eol; value: params.alert_message,&eol; short: false&eol; }&eol; );&eol; }&eol;&eol; return message;&eol;}&eol;&eol;function validateParams(params) {&eol; if (typeof params.bot_token !== 'string' &pipe;&pipe; params.bot_token.trim() === '') {&eol; throw 'Field "bot_token" cannot be empty';&eol; }&eol;&eol; if (typeof params.channel !== 'string' &pipe;&pipe; params.channel.trim() === '') {&eol; throw 'Field "channel" cannot be empty';&eol; }&eol;&eol; if (isNaN(params.event_id)) {&eol; throw 'Field "event_id" is not a number';&eol; }&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; if (params.event_source !== '0') {&eol; params.event_nseverity = '0';&eol; params.event_severity = 'Not classified';&eol; params.event_update_status = '0';&eol; params.slack_mode = 'event';&eol; }&eol;&eol; if (params.event_source === '1' &pipe;&pipe; params.event_source === '2') {&eol; params.event_value = '1';&eol; }&eol;&eol; if (params.event_source === '1') {&eol; params.host_name = params.discovery_host_dns;&eol; params.host_ip = params.discovery_host_ip;&eol; }&eol;&eol; if (!~[0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity))) {&eol; throw 'Incorrect "event_nseverity" parameter given: ' + params.event_nseverity + '\nMust be 0-5.';&eol; }&eol;&eol; if (typeof params.event_severity !== 'string' &pipe;&pipe; params.event_severity.trim() === '') {&eol; throw 'Field "event_severity" cannot be empty';&eol; }&eol;&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value !== '0' && params.event_value !== '1') {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (typeof params.host_conn !== 'string' &pipe;&pipe; params.host_conn.trim() === '') {&eol; throw 'Field "host_conn" cannot be empty';&eol; }&eol;&eol; if (typeof params.host_name !== 'string' &pipe;&pipe; params.host_name.trim() === '') {&eol; throw 'Field "host_name" cannot be empty';&eol; }&eol;&eol; if (!~['true', 'false'].indexOf(params.slack_as_user.toLowerCase())) {&eol; throw 'Incorrect "slack_as_user" parameter given: ' + params.slack_as_user + '\nMust be "true" or "false".';&eol; }&eol;&eol; if (!~['alarm', 'event'].indexOf(params.slack_mode)) {&eol; throw 'Incorrect "slack_mode" parameter given: ' + params.slack_mode + '\nMust be "alarm" or "event".';&eol; }&eol;&eol; if (isNaN(params.trigger_id) && params.event_source === '0') {&eol; throw 'field "trigger_id" is not a number';&eol; }&eol;&eol; if (typeof params.zabbix_url !== 'string' &pipe;&pipe; params.zabbix_url.trim() === '') {&eol; throw 'Field "zabbix_url" cannot be empty';&eol; }&eol;&eol; if (!/^(http&pipe;https):\/\/.+/.test(params.zabbix_url)) {&eol; throw 'Field "zabbix_url" must contain a schema';&eol; }&eol;}&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; validateParams(params);&eol;&eol; var req = new CurlHttpRequest(),&eol; result = {tags: {}};&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.SetProxy(params.HTTPProxy);&eol; }&eol;&eol; req.AddHeader('Content-Type: application/json; charset=utf-8');&eol; req.AddHeader('Authorization: Bearer ' + params.bot_token);&eol;&eol; var slack_endpoint = 'https://slack.com/api/';&eol;&eol; var Slack = {&eol; postMessage: slack_endpoint + 'chat.postMessage',&eol; getPermalink: slack_endpoint + 'chat.getPermalink',&eol; chatUpdate: slack_endpoint + 'chat.update'&eol; };&eol;&eol; params.slack_mode = params.slack_mode.toLowerCase();&eol; params.slack_mode = params.slack_mode in SLACK_MODE_HANDLERS&eol; ? params.slack_mode&eol; : 'alarm';&eol;&eol; SLACK_MODE_HANDLERS[params.slack_mode](params);&eol;&eol; if (params.event_source === '0') {&eol; return JSON.stringify(result);&eol; }&eol; else {&eol; return 'OK';&eol; }&eol;}&eol;catch (error) {&eol; Zabbix.Log(4, '[ Slack Webhook ] Slack notification failed : ' + error);&eol; throw 'Slack notification failed : ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__message_link} |Open in Slack: {EVENT.TAGS.__channel_name} | |
-ROW |10 |4 |Discord | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', // Not classified.&eol; '#7499FF', // Information.&eol; '#FFC859', // Warning.&eol; '#FFA059', // Average.&eol; '#E97659', // High.&eol; '#E45959', // Disaster.&eol; '#009900' // Resolved.&eol;];&eol;&eol;function stringTruncate(str, len) {&eol; return str.length > len ? str.substring(0, len - 3) + '...' : str;&eol;}&eol;&eol;try {&eol; Zabbix.Log(4, '[ Discord Webhook ] Executed with params: ' + value);&eol;&eol; var params = JSON.parse(value);&eol;&eol; if (!params.discord_endpoint) {&eol; throw 'Cannot get discord_endpoint';&eol; }&eol; else {&eol; params.discord_endpoint = params.discord_endpoint.replace('/api/', '/api/v7/') + '?wait=True';&eol; }&eol;&eol; params.zabbix_url = (params.zabbix_url.endsWith('/'))&eol; ? params.zabbix_url.slice(0, -1) : params.zabbix_url;&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; // Set params to true for non trigger-based events.&eol; if (params.event_source !== '0') {&eol; params.use_default_message = 'true';&eol; params.event_nseverity = '0';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: "' + params.event_value + '".\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: "' + params.event_update_status + '".\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value == 0) {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; if (!SEVERITY_COLORS[params.event_nseverity]) {&eol; throw 'Incorrect "event_nseverity" parameter given: ' + params.event_nseverity + '\nMust be 0-5.';&eol; }&eol;&eol; var color = parseInt(SEVERITY_COLORS[params.event_nseverity].replace('#', ''), 16),&eol; fields = [],&eol; body = {&eol; embeds: [&eol; {&eol; color: color &pipe;&pipe; 0,&eol; url: (params.event_source === '0')&eol; ? params.zabbix_url + '/tr_events.php?triggerid=' + params.trigger_id +&eol; '&eventid=' + params.event_id&eol; : params.zabbix_url&eol; }&eol; ]&eol; };&eol;&eol; // Default message from {ALERT.MESSAGE}.&eol; if (params.use_default_message.toLowerCase() == 'true') {&eol; body.embeds[0].title = stringTruncate(params.alert_subject, 256);&eol; body.embeds[0].description = stringTruncate(params.alert_message, 2048);&eol; }&eol; else {&eol; fields.push(&eol; {&eol; name: 'Host',&eol; value: params.host_name + ' [' + params.host_ip + ']'&eol; }&eol; );&eol;&eol; // Resolved message.&eol; if (params.event_value == 0 && params.event_update_status == 0) {&eol; body.embeds[0].title = stringTruncate('OK: ' + params.event_name, 256);&eol; fields.push(&eol; {&eol; name: 'Recovery time',&eol; value: params.event_recovery_time + ' ' + params.event_recovery_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; // Problem message.&eol; else if (params.event_value == 1 && params.event_update_status == 0) {&eol; body.embeds[0].title = stringTruncate('PROBLEM: ' + params.event_name, 256);&eol; fields.push(&eol; {&eol; name: 'Event time',&eol; value: params.event_time + ' ' + params.event_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; // Update message.&eol; else if (params.event_update_status == 1) {&eol; body.embeds[0].title = stringTruncate('UPDATE: ' + params.event_name, 256);&eol; body.embeds[0].description = params.event_update_user + ' ' + params.event_update_action + '.';&eol;&eol; if (params.event_update_message) {&eol; body.embeds[0].description += ' Comment:\n>>> ' + params.event_update_message;&eol; }&eol;&eol; body.embeds[0].description = stringTruncate(body.embeds[0].description, 2048);&eol;&eol; fields.push(&eol; {&eol; name: 'Event update time',&eol; value: params.event_update_time + ' ' + params.event_update_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; fields.push(&eol; {&eol; name: 'Severity',&eol; value: params.event_severity,&eol; inline: 'True'&eol; }&eol; );&eol;&eol; if (params.event_opdata) {&eol; fields.push(&eol; {&eol; name: 'Operational data',&eol; value: stringTruncate(params.event_opdata, 1024),&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; if (params.event_value == 1 && params.event_update_status == 0 && params.trigger_description) {&eol; fields.push(&eol; {&eol; name: 'Trigger description',&eol; value: stringTruncate(params.trigger_description, 1024)&eol; }&eol; );&eol; }&eol;&eol; body.embeds[0].footer = {&eol; text: 'Event ID: ' + params.event_id&eol; };&eol;&eol; if (params.event_tags) {&eol; body.embeds[0].footer.text += '\nEvent tags: ' + params.event_tags;&eol; }&eol; body.embeds[0].footer.text = stringTruncate(body.embeds[0].footer.text, 2048);&eol; }&eol;&eol; if (fields.length > 0) {&eol; body.embeds[0].fields = fields;&eol; }&eol;&eol; var req = new CurlHttpRequest();&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 CurlHttpRequest();&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.Status() + '\n' + response&eol; );&eol;&eol; if (request.Status() !== 201) {&eol; throw 'Request failed with status code ' + request.Status() +&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/&eol; |
-ROW |12 |4 |Jira | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Jira = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Jira.params = params;&eol; if (typeof Jira.params.url === 'string') {&eol; if (!Jira.params.url.endsWith('/')) {&eol; Jira.params.url += '/';&eol; }&eol;&eol; Jira.params.url += 'rest/api/latest/';&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; Jira.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setTags: function(event_tags_json) {&eol; if (typeof event_tags_json !== 'undefined' && event_tags_json !== ''&eol; && event_tags_json !== '{EVENT.TAGSJSON}') {&eol; try {&eol; var tags = JSON.parse(event_tags_json),&eol; label;&eol;&eol; Jira.labels = [];&eol;&eol; tags.forEach(function (tag) {&eol; if (typeof tag.tag !== 'undefined' && typeof tag.value !== 'undefined'&eol; && !tag.tag.startsWith('__zbx')) {&eol; label = (tag.tag + (tag.value ? (':' + tag.value) : '')).replace(/\s/g, '_');&eol; if (label.length < 256) {&eol; Jira.labels.push(label);&eol; }&eol; }&eol; });&eol; }&eol; catch (error) {&eol; // Code is not missing here.&eol; }&eol; }&eol; },&eol;&eol; escapeMarkup: function (str) {&eol; var length = str.length,&eol; result = '',&eol; markup = ['{', '&pipe;', '}', '~', '_', '\\', '[', ']', '^', '<', '>', '?', '!', '#', '+', '*', '&'];&eol;&eol; for (var i = 0; i < length; i++) {&eol; var char = str[i];&eol;&eol; result += (markup.indexOf(char) !== -1) ? ('&#' + str[i].charCodeAt() + ';') : char;&eol; }&eol;&eol; return result;&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Jira.getSchema(),&eol; path = ['projects', 0, 'issuetypes', 0, 'fields'],&eol; field;&eol;&eol; while ((field = path.shift()) !== undefined) {&eol; schema = schema[field];&eol; if (typeof schema === 'undefined') {&eol; schema = null;&eol; break;&eol; }&eol; }&eol;&eol; if (schema) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; if (typeof schema[field] === 'object' && typeof schema[field].schema === 'object') {&eol; switch (schema[field].schema.type) {&eol; case 'number':&eol; data.fields[field] = parseInt(fields[field]);&eol; break;&eol;&eol; case 'datetime':&eol; if (fields[field].match(/\d+[.-]\d+[.-]\d+T\d+:\d+:\d+/) !== null) {&eol; data.fields[field] = fields[field].replace(/\./g, '-');&eol; }&eol; break;&eol;&eol; case 'option':&eol; data.fields[field] = {value: fields[field]};&eol; break;&eol;&eol; case 'array':&eol; if (schema[field].schema.items === 'option') {&eol; data.fields[field] = [{value: fields[field]}];&eol; }&eol; else {&eol; data.fields[field] = [fields[field]];&eol; }&eol; break;&eol;&eol; default:&eol; data.fields[field] = fields[field];&eol; }&eol; }&eol; });&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Jira Webhook ] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'user', 'password', 'project_key', 'issue_type'].forEach(function (field) {&eol; if (typeof Jira.params !== 'object' &pipe;&pipe; typeof Jira.params[field] === 'undefined'&eol; &pipe;&pipe; Jira.params[field] === '' ) {&eol; throw 'Required Jira param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Jira.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Basic ' + btoa(Jira.params.user + ':' + Jira.params.password));&eol;&eol; if (typeof Jira.HTTPProxy !== 'undefined' && Jira.HTTPProxy !== '') {&eol; request.SetProxy(Jira.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ Jira Webhook ] Sending request: ' + url + ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ Jira Webhook ] Received response with status code ' + request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Jira Webhook ] Failed to parse response received from Jira');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getSchema: function() {&eol; var result = Jira.request('get', 'issue/createmeta?expand=projects.issuetypes.fields&projectKeys=' +&eol; encodeURIComponent(Jira.params.project_key) + '&issuetypeNames=' +&eol; encodeURIComponent(Jira.params.issue_type));&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(summary, description, fields) {&eol; var data = {&eol; fields: {&eol; project: {&eol; key: Jira.params.project_key&eol; },&eol; issuetype: {&eol; name: Jira.params.issue_type&eol; },&eol; summary: summary,&eol; description: description&eol; }&eol; };&eol;&eol; if (Jira.labels && Jira.labels.length > 0) {&eol; data.fields.labels = Jira.labels;&eol; }&eol; var result = Jira.request('post', 'issue', Jira.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.key === 'undefined') {&eol; throw 'Cannot create Jira issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.key;&eol; },&eol;&eol; updateIssue: function(summary, fields, update) {&eol; var data = {fields: {}};&eol;&eol; if (summary) {&eol; data.fields.summary = summary;&eol; }&eol;&eol; Jira.request('put', 'issue/' + encodeURIComponent(Jira.params.issue_key), Jira.addCustomFields(data, fields));&eol; Jira.commentIssue(update);&eol; },&eol;&eol; commentIssue: function(update) {&eol; var data = {};&eol;&eol; if (typeof update === 'string') {&eol; data.body = update;&eol; Jira.request('post', 'issue/' + encodeURIComponent(Jira.params.issue_key) + '/comment', data);&eol; }&eol; else if (update.status === '1') {&eol; data.body = update.user + ' ' + update.action + '.';&eol;&eol; if (update.message) {&eol; data.body += '\nMessage: {quote}' + Jira.escapeMarkup(update.message) + '{quote}';&eol; }&eol;&eol; Jira.request('post', 'issue/' + encodeURIComponent(Jira.params.issue_key) + '/comment', data);&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; jira = {},&eol; update = {},&eol; result = {tags: {}},&eol; required_params = ['alert_subject', 'summary', 'event_recovery_value', 'event_source', 'event_value'];&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('jira_')) {&eol; jira[key.substring(5)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; fields[key] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_recovery_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; Jira.setParams(jira);&eol; Jira.setProxy(params.HTTPProxy);&eol; Jira.setTags(params.event_tags_json);&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_recovery_value !== '0') {&eol; Jira.createIssue(params.alert_subject, params.alert_message);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && update.status === '0' && !jira.issue_key.startsWith(jira.project_key)) {&eol; var key = Jira.createIssue(params.alert_subject,&eol; (Object.keys(fields).length ? params.trigger_description : params.alert_message), fields);&eol;&eol;&eol; result.tags.__zbx_jira_issuekey = key;&eol; result.tags.__zbx_jira_issuelink = params.jira_url +&eol; (params.jira_url.endsWith('/') ? '' : '/') + 'browse/' + key;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; if (!jira.issue_key.startsWith(jira.project_key)) {&eol; throw 'Incorrect Issue key given: ' + jira.issue_key;&eol; }&eol; Jira.updateIssue(params.alert_subject, fields,&eol; ((params.event_value === '0' && !Object.keys(fields).length)&eol; ? params.alert_message : update));&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Jira Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_jira_issuelink} |Jira: {EVENT.TAGS.__zbx_jira_issuekey} | |
-ROW |13 |4 |Jira with CustomFields | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Jira = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Jira.params = params;&eol; if (typeof Jira.params.url === 'string') {&eol; if (!Jira.params.url.endsWith('/')) {&eol; Jira.params.url += '/';&eol; }&eol;&eol; Jira.params.url += 'rest/api/latest/';&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; Jira.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setTags: function(event_tags_json) {&eol; if (typeof event_tags_json !== 'undefined' && event_tags_json !== ''&eol; && event_tags_json !== '{EVENT.TAGSJSON}') {&eol; try {&eol; var tags = JSON.parse(event_tags_json),&eol; label;&eol;&eol; Jira.labels = [];&eol;&eol; tags.forEach(function (tag) {&eol; if (typeof tag.tag !== 'undefined' && typeof tag.value !== 'undefined' ) {&eol; label = (tag.tag + (tag.value ? (':' + tag.value) : '')).replace(/\s/g, '_');&eol; if (label.length < 256) {&eol; Jira.labels.push(label);&eol; }&eol; }&eol; });&eol; }&eol; catch (error) {&eol; // Code is not missing here.&eol; }&eol; }&eol; },&eol;&eol; escapeMarkup: function (str) {&eol; var length = str.length,&eol; result = '',&eol; markup = ['{', '&pipe;', '}', '~', '_', '\\', '[', ']', '^', '<', '>', '?', '!', '#', '+', '*', '&'];&eol;&eol; for (var i = 0; i < length; i++) {&eol; var char = str[i];&eol;&eol; result += (markup.indexOf(char) !== -1) ? ('&#' + str[i].charCodeAt() + ';') : char;&eol; }&eol;&eol; return result;&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Jira.getSchema(),&eol; path = ['projects', 0, 'issuetypes', 0, 'fields'],&eol; field;&eol;&eol; while ((field = path.shift()) !== undefined) {&eol; schema = schema[field];&eol; if (typeof schema === 'undefined') {&eol; schema = null;&eol; break;&eol; }&eol; }&eol;&eol; if (schema) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; data.fields[field] = fields[field];&eol;&eol; if (typeof schema[field] === 'object' && typeof schema[field].schema === 'object'&eol; && (schema[field].schema.type === 'number' &pipe;&pipe; schema[field].schema.type === 'datetime')) {&eol; switch (schema[field].schema.type) {&eol; case 'number':&eol; data.fields[field] = parseInt(fields[field]);&eol; break;&eol;&eol; case 'datetime':&eol; if (fields[field].match(/\d+[.-]\d+[.-]\d+T\d+:\d+:\d+/) !== null) {&eol; data.fields[field] = fields[field].replace(/\./g, '-');&eol; }&eol; else {&eol; delete data.fields[field];&eol; }&eol; break;&eol; }&eol; }&eol; });&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Jira Webhook ] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'user', 'password', 'project_key', 'issue_type'].forEach(function (field) {&eol; if (typeof Jira.params !== 'object' &pipe;&pipe; typeof Jira.params[field] === 'undefined'&eol; &pipe;&pipe; Jira.params[field] === '' ) {&eol; throw 'Required Jira param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Jira.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Basic ' + btoa(Jira.params.user + ':' + Jira.params.password));&eol;&eol; if (typeof Jira.HTTPProxy !== 'undefined' && Jira.HTTPProxy !== '') {&eol; request.SetProxy(Jira.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ Jira Webhook ] Sending request: ' + url + ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ Jira Webhook ] Received response with status code ' + request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Jira Webhook ] Failed to parse response received from Jira');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getSchema: function() {&eol; var result = Jira.request('get', 'issue/createmeta?expand=projects.issuetypes.fields&projectKeys=' +&eol; Jira.params.project_key + '&issuetypeNames=' + Jira.params.issue_type);&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(summary, description, fields) {&eol; var data = {&eol; fields: {&eol; project: {&eol; key: Jira.params.project_key&eol; },&eol; issuetype: {&eol; name: Jira.params.issue_type&eol; },&eol; summary: summary,&eol; description: description&eol; }&eol; };&eol;&eol; if (Jira.labels && Jira.labels.length > 0) {&eol; data.fields.labels = Jira.labels;&eol; }&eol; var result = Jira.request('post', 'issue', Jira.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.key === 'undefined') {&eol; throw 'Cannot create Jira issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.key;&eol; },&eol;&eol; updateIssue: function(summary, fields, update) {&eol; var data = {fields: {}};&eol;&eol; if (summary) {&eol; data.fields.summary = summary;&eol; }&eol;&eol; Jira.request('put', 'issue/' + Jira.params.issue_key, Jira.addCustomFields(data, fields));&eol; Jira.commentIssue(update);&eol; },&eol;&eol; commentIssue: function(update) {&eol; var data = {};&eol;&eol; if (typeof update === 'string') {&eol; data.body = update;&eol; Jira.request('post', 'issue/' + Jira.params.issue_key + '/comment', data);&eol; }&eol; else if (update.status === '1') {&eol; data.body = update.user + ' ' + update.action + '.';&eol;&eol; if (update.message) {&eol; data.body += '\nMessage: {quote}' + Jira.escapeMarkup(update.message) + '{quote}';&eol; }&eol;&eol; Jira.request('post', 'issue/' + Jira.params.issue_key + '/comment', data);&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; jira = {},&eol; update = {},&eol; result = {tags: {}},&eol; required_params = ['alert_subject', 'summary', 'event_recovery_value', 'event_source', 'event_value'];&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('jira_')) {&eol; jira[key.substring(5)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; fields[key] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_recovery_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; Jira.setParams(jira);&eol; Jira.setProxy(params.HTTPProxy);&eol; Jira.setTags(params.event_tags_json);&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_recovery_value !== '0') {&eol; Jira.createIssue(params.alert_subject, params.alert_message);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && update.status === '0' && !jira.issue_key.startsWith(jira.project_key)) {&eol; var key = Jira.createIssue(params.alert_subject,&eol; (Object.keys(fields).length ? params.trigger_description : params.alert_message), fields);&eol;&eol;&eol; result.tags.__zbx_jira_issuekey = key;&eol; result.tags.__zbx_jira_issuelink = params.jira_url +&eol; (params.jira_url.endsWith('/') ? '' : '/') + 'browse/' + key;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; if (!jira.issue_key.startsWith(jira.project_key)) {&eol; throw 'Incorrect Issue key given: ' + jira.issue_key;&eol; }&eol; Jira.updateIssue(params.alert_subject, fields,&eol; ((params.event_value === '0' && !Object.keys(fields).length)&eol; ? params.alert_message : update));&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Jira Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_jira_issuelink} |Jira: {EVENT.TAGS.__zbx_jira_issuekey} | |
-ROW |14 |4 |MS Teams | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', // Not classified.&eol; '#7499FF', // Information.&eol; '#FFC859', // Warning.&eol; '#FFA059', // Average.&eol; '#E97659', // High.&eol; '#E45959', // Disaster.&eol; '#009900', // Resolved.&eol; '#000000' // Default.&eol;];&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; if (typeof params.teams_endpoint !== 'string' &pipe;&pipe; params.teams_endpoint.trim() === '') {&eol; throw 'Cannot get teams_endpoint';&eol; }&eol; else if (!params.teams_endpoint.startsWith('http')) {&eol; throw 'Invalid MS Teams webhook URL: ' + params.teams_endpoint;&eol; }&eol;&eol; params.zabbix_url = (params.zabbix_url.endsWith('/'))&eol; ? params.zabbix_url.slice(0, -1) : params.zabbix_url;&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; // Set "use_default_message" to true for non trigger-based events.&eol; if (params.event_source !== '0') {&eol; params.use_default_message = 'true';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: "' + params.event_value + '".\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: "' + params.event_update_status + '".\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value == 0) {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; if (!SEVERITY_COLORS[params.event_nseverity]) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; var request = new CurlHttpRequest(),&eol; facts = [],&eol; body = {&eol; themeColor: SEVERITY_COLORS[params.event_nseverity].replace('#', ''),&eol; summary: 'Zabbix',&eol; sections: [&eol; {&eol; markdown: 'false',&eol; activityTitle: params.alert_subject,&eol; activitySubtitle: 'On ' + params.host_name + ' [' + params.host_ip + ']',&eol; text: (params.use_default_message.toLowerCase() == 'true')&eol; ? params.alert_message&eol; : params.trigger_description&eol; }&eol; ],&eol; potentialAction: [&eol; {&eol; '@type': 'OpenUri',&eol; name: (params.event_source === '0')&eol; ? 'Event Info'&eol; : 'Zabbix Home',&eol; targets: [&eol; {&eol; os: 'default',&eol; uri: (params.event_source === '0')&eol; ? params.zabbix_url + '/tr_events.php?triggerid=' +&eol; params.trigger_id + '&eventid=' + params.event_id&eol; : params.zabbix_url&eol; }&eol; ]&eol; }&eol; ]&eol; };&eol;&eol; if (params.use_default_message.toLowerCase() !== 'true') {&eol; // Problem message.&eol; if (params.event_value === '1' && params.event_update_status === '0') {&eol; facts.push({&eol; name: 'Event time',&eol; value: params.event_time + ' ' + params.event_date&eol; });&eol; }&eol; // Update message.&eol; else if (params.event_update_status === '1') {&eol; body.sections[0].text = params.event_update_user + ' ' + params.event_update_action + '.';&eol;&eol; if (params.event_update_message) {&eol; body.sections[0].text += '<br>Message:<br>' + params.event_update_message;&eol; }&eol;&eol; facts.push({&eol; name: 'Event update time',&eol; value: params.event_update_time + ' ' + params.event_update_date&eol; });&eol; }&eol; // Resolved message.&eol; else {&eol; facts.push({&eol; name: 'Recovery time',&eol; value: params.event_recovery_time + ' ' + params.event_recovery_date&eol; });&eol; }&eol;&eol; if (params.event_severity && params.event_severity !== '{EVENT.SEVERITY}') {&eol; facts.push({&eol; name: 'Severity',&eol; value: params.event_severity&eol; });&eol; }&eol;&eol;&eol; if (params.event_opdata && params.event_opdata !== '{EVENT.OPDATA}') {&eol; facts.push({&eol; name: 'Operational data',&eol; value: params.event_opdata&eol; });&eol; }&eol;&eol; if (params.event_tags && params.event_tags !== '{EVENT.TAGS}') {&eol; facts.push({&eol; name: 'Event tags',&eol; value: params.event_tags&eol; });&eol; }&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('fact_') && params[key] !== '') {&eol; facts.push({&eol; name: key.substring(5),&eol; value: params[key]&eol; });&eol; }&eol; else if (key.startsWith('openUri_') && params[key] !== '' && !params[key].startsWith('{')) {&eol; body.potentialAction.push({&eol; '@type': 'OpenUri',&eol; name: key.substring(8),&eol; targets: [&eol; {&eol; os: 'default',&eol; uri: params[key]&eol; }&eol; ]&eol; });&eol; }&eol; });&eol; body.sections[0].facts = facts;&eol; }&eol;&eol; body.sections[0].text = body.sections[0].text.replace(/(?:\r\n&pipe;\r&pipe;\n)/g, '<br>');&eol;&eol; request.AddHeader('Content-Type: application/json');&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy !== '') {&eol; request.SetProxy(params.HTTPProxy);&eol; }&eol;&eol; Zabbix.Log(4, '[ MS Teams Webhook ] JSON: ' + JSON.stringify(body));&eol;&eol; var response = request.Post(params.teams_endpoint, JSON.stringify(body));&eol;&eol; Zabbix.Log(4, '[ MS Teams Webhook ] Response: ' + response);&eol;&eol; if (response === '1') {&eol; return 'OK';&eol; }&eol; else {&eol; Zabbix.Log(4, '[ MS Teams Webhook ] FAILED with response: ' + response);&eol; throw response;&eol; }&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ MS Teams Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |0 |0 | | | |
-ROW |15 |4 |Redmine | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Redmine = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Redmine.params = params;&eol; if (typeof Redmine.params.url === 'string') {&eol; if (!Redmine.params.url.endsWith('/')) {&eol; Redmine.params.url += '/';&eol; }&eol; }&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Redmine.getSchema();&eol;&eol; if (schema) {&eol; data.issue.custom_fields = [];&eol;&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; for (var idx in schema.custom_fields) {&eol; if (schema.custom_fields[idx].id != field) {&eol; continue;&eol; }&eol;&eol; var field_value;&eol;&eol; switch (schema.custom_fields[idx].field_format) {&eol; case 'string':&eol; field_value = fields[field];&eol; break;&eol;&eol; case 'int':&eol; field_value = parseInt(fields[field]);&eol; break;&eol;&eol; case 'float':&eol; field_value = parseFloat(fields[field]);&eol; break;&eol;&eol; case 'date':&eol; if (fields[field].match(/^\d{4}[.-]\d{2}[.-]\d{2}$/)) {&eol; field_value = fields[field].replace(/\./g, '-');&eol; }&eol; break;&eol; }&eol;&eol; if (field_value !== undefined) {&eol; data.issue.custom_fields.push({id: field, value: field_value});&eol; }&eol; }&eol; });&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Redmine Webhook ] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'access_key'].forEach(function (field) {&eol; if (typeof Redmine.params !== 'object' &pipe;&pipe; typeof Redmine.params[field] === 'undefined'&eol; &pipe;&pipe; Redmine.params[field] === '' ) {&eol; throw 'Required param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Redmine.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; if (typeof Redmine.HTTPProxy === 'string' && Redmine.HTTPProxy.trim() !== '') {&eol; request.SetProxy(Redmine.HTTPProxy);&eol; }&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('X-Redmine-API-Key: ' + Redmine.params.access_key);&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ Redmine Webhook ] Sending request: ' +&eol; url + ((typeof data === 'string') ? (' ' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ Redmine Webhook ] Received response with status code ' + request.Status() + ': ' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Redmine Webhook ] Failed to parse response received from Redmine');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getProjectID: function(name) {&eol; var result = Redmine.request('get', 'projects.json'),&eol; project_id;&eol;&eol; if (result.response) {&eol; var projects = result.response.projects &pipe;&pipe; [];&eol;&eol; for (var i in projects) {&eol; if (projects[i].name === name) {&eol; project_id = projects[i].id;&eol; break;&eol; }&eol; }&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Redmine Webhook ] Failed to retrieve project data.');&eol; }&eol;&eol; if (typeof project_id === 'undefined') {&eol; throw 'Cannot find project with name: ' + name;&eol; }&eol;&eol; return project_id;&eol; },&eol;&eol; getSchema: function() {&eol; var result = Redmine.request('get', 'custom_fields.json');&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(subject, description, priority, fields) {&eol; var project_id = /^\d+$/.test(Redmine.params.project)&eol; ? Redmine.params.project&eol; : Redmine.getProjectID(Redmine.params.project),&eol; data = {&eol; issue: {&eol; project_id: project_id,&eol; tracker_id: Redmine.params.tracker_id,&eol; subject: subject,&eol; description: description&eol; }&eol; },&eol; result;&eol;&eol; if (priority) {&eol; data.issue.priority_id = priority;&eol; }&eol;&eol; result = Redmine.request('post', 'issues.json', Redmine.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object'&eol; &pipe;&pipe; typeof result.response.issue.id === 'undefined'&eol; &pipe;&pipe; result.status != 201) {&eol; throw 'Cannot create Redmine issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.issue.id;&eol; },&eol;&eol; updateIssue: function(note, fields) {&eol; var data = {&eol; issue: {&eol; notes: note &pipe;&pipe; ''&eol; }&eol; };&eol;&eol; Redmine.request('put', 'issues/' + Redmine.params.issue_key + '.json', Redmine.addCustomFields(data, fields));&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; params_redmine = {},&eol; params_fields = {},&eol; params_update = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject', 'tracker_id', 'project',&eol; 'event_source', 'event_value', 'event_update_status'&eol; ],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: null, color: '#000000'}&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('redmine_')) {&eol; params_redmine[key.substring(8)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; params_fields[key.substring(12)] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; params_update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter "' + key + '" cannot be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; if (params.event_source === '0'&eol; && ((params.event_value === '1' && params.event_update_status === '1')&eol; &pipe;&pipe; (params.event_value === '0'&eol; && (params.event_update_status === '0' &pipe;&pipe; params.event_update_status === '1')))&eol; && (isNaN(parseInt(params.redmine_issue_key)) &pipe;&pipe; parseInt(params.redmine_issue_key) < 1 )) {&eol; throw 'Incorrect "redmine_issue_key" parameter given: ' + params.redmine_issue_key +&eol; '\nMust be positive integer.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['severity_' + severities[params.event_nseverity].name];&eol; priority = priority && priority.trim() &pipe;&pipe; severities[7].name;&eol;&eol; Redmine.setParams(params_redmine);&eol; Redmine.HTTPProxy = params.HTTPProxy;&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0'&eol; && params.event_value !== '0') {&eol; Redmine.createIssue(params.alert_subject, params.alert_message, priority);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && params_update.status === '0') {&eol; var issue_id = Redmine.createIssue(params.alert_subject,&eol; params.alert_subject + '\n' + params.alert_message + '\n' +&eol; params.zabbix_url + (params.zabbix_url.endsWith('/') ? '' : '/') +&eol; 'tr_events.php?triggerid=' + params.trigger_id + '&eventid=' + params.event_id + '\n',&eol; priority,&eol; params_fields);&eol;&eol; result.tags.__zbx_redmine_issue_id = issue_id;&eol; result.tags.__zbx_redmine_issuelink = params.redmine_url +&eol; (params.redmine_url.endsWith('/') ? '' : '/') + 'issues/' + issue_id;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; Redmine.updateIssue(params.alert_subject + '\n' + params.alert_message, params_fields);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Redmine Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_redmine_issuelink} |Redmine: issue #{EVENT.TAGS.__zbx_redmine_issue_id} | |
-ROW |16 |4 |Telegram | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Telegram = {&eol; token: null,&eol; to: null,&eol; message: null,&eol; proxy: null,&eol; parse_mode: null,&eol;&eol; sendMessage: function() {&eol; var params = {&eol; chat_id: Telegram.to,&eol; text: Telegram.message,&eol; disable_web_page_preview: true,&eol; disable_notification: false&eol; },&eol; data,&eol; response,&eol; request = new CurlHttpRequest(),&eol; url = 'https://api.telegram.org/bot' + Telegram.token + '/sendMessage';&eol;&eol; if (Telegram.parse_mode !== null) {&eol; params['parse_mode'] = Telegram.parse_mode;&eol; }&eol;&eol; if (Telegram.proxy) {&eol; request.SetProxy(Telegram.proxy);&eol; }&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; data = JSON.stringify(params);&eol;&eol; // Remove replace() function if you want to see the exposed token in the log file.&eol; Zabbix.Log(4, '[Telegram Webhook] URL: ' + url.replace(Telegram.token, '<TOKEN>'));&eol; Zabbix.Log(4, '[Telegram Webhook] params: ' + data);&eol; response = request.Post(url, data);&eol; Zabbix.Log(4, '[Telegram Webhook] HTTP code: ' + request.Status());&eol;&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; response = null;&eol; }&eol;&eol; if (request.Status() !== 200 &pipe;&pipe; typeof response.ok !== 'boolean' &pipe;&pipe; response.ok !== true) {&eol; if (typeof response.description === 'string') {&eol; throw response.description;&eol; }&eol; else {&eol; throw 'Unknown error. Check debug log for more information.'&eol; }&eol; }&eol; }&eol;}&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; if (typeof params.Token === 'undefined') {&eol; throw 'Incorrect value is given for parameter "Token": parameter is missing';&eol; }&eol;&eol; Telegram.token = params.Token;&eol;&eol; if (params.HTTPProxy) {&eol; Telegram.proxy = params.HTTPProxy;&eol; } &eol;&eol; if (['Markdown', 'HTML', 'MarkdownV2'].indexOf(params.ParseMode) !== -1) {&eol; Telegram.parse_mode = params.ParseMode;&eol; }&eol;&eol; Telegram.to = params.To;&eol; Telegram.message = params.Subject + '\n' + params.Message;&eol; Telegram.sendMessage();&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.Log(4, '[Telegram Webhook] notification failed: ' + error);&eol; throw 'Sending failed: ' + error + '.';&eol;}|10s |0 |0 | | |https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/telegram&eol;&eol;1. Register bot: send "/newbot" to @BotFather and follow instructions&eol;2. Copy and paste the obtained token into the "Token" field above&eol;3. If you want to send personal notifications, you need to get chat id of the user you want to send messages to:&eol; 3.1. Send "/getid" to "@myidbot" in Telegram messenger&eol; 3.2. Copy returned chat id and save it in the "Telegram Webhook" media for the user&eol; 3.3. Ask the user to send "/start" to your bot (Telegram bot won't send anything to the user without it)&eol;4. If you want to send group notifications, you need to get group id of the group you want to send messages to:&eol; 4.1. Add "@myidbot" to your group&eol; 4.2. Send "/getgroupid@myidbot" in your group&eol; 4.3. Copy returned group id save it in the "Telegram Webhook" media for the user you created for group notifications&eol; 4.4. Send "/start@your_bot_name_here" in your group (Telegram bot won't send anything to the group without it)|
-ROW |17 |4 |Zendesk | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Zendesk = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Zendesk.params = params;&eol; if (typeof Zendesk.params.url === 'string') {&eol; if (!Zendesk.params.url.endsWith('/')) {&eol; Zendesk.params.url += '/';&eol; }&eol; Zendesk.params.url += 'api/v2/';&eol; }&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Zendesk.getSchema(),&eol; arr = [],&eol; i,&eol; n;&eol;&eol; if (schema) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; for (i = 0, n = schema.ticket_fields.length; i < n; i++) {&eol; if (schema.ticket_fields[i].id == field&eol; && ['text', 'integer', 'date'].indexOf(schema.ticket_fields[i].type) !== -1){&eol;&eol; switch (schema.ticket_fields[i].type) {&eol; case 'integer':&eol; fields[field] = parseInt(fields[field]);&eol; break;&eol; case 'date':&eol; if (fields[field].match(/^\d{4}[.-]\d{2}[.-]\d{2}$/) !== null) {&eol; fields[field] = fields[field].replace(/\./g, '-');&eol; }&eol; else {&eol; fields[field] = '';&eol; }&eol; break;&eol; }&eol;&eol; arr.push({id: field, value: fields[field]});&eol; break;&eol; }&eol; }&eol; });&eol;&eol; if (arr.length) {&eol; data.ticket['custom_fields'] = arr;&eol; }&eol; }&eol; else {&eol; Zabbix.Log(4, '[Zendesk Webhook] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'token', 'type'].forEach(function (field) {&eol; if (typeof Zendesk.params !== 'object' &pipe;&pipe; typeof Zendesk.params[field] === 'undefined') {&eol; throw 'Required Zendesk param is not set: ' + field + '\n' + Zendesk.params[field];&eol; }&eol; });&eol;&eol; var response,&eol; url = Zendesk.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; if (typeof Zendesk.HTTPProxy === 'string' && Zendesk.HTTPProxy.trim() !== '') {&eol; request.SetProxy(Zendesk.HTTPProxy);&eol; }&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Basic ' + btoa(Zendesk.params.token));&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[Zendesk Webhook] Sending request: ' + url + ((typeof data === 'string') ? (' ' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[Zendesk Webhook] Received response with status code ' + request.Status() + '. ' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[Zendesk Webhook] Failed to parse response received from Zendesk.');&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.error !== 'undefined'&eol; && Object.keys(response.error).length > 0) {&eol; message += ': ' + JSON.stringify(response.error);&eol; }&eol; else if (response !== null && typeof response.description !== 'undefined'&eol; && Object.keys(response.description).length > 0) {&eol; message += ': ' + JSON.stringify(response.description);&eol; }&eol; else {&eol; message += '. ' + response;&eol; }&eol; throw message + '. Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getSchema: function() {&eol; var result = Zendesk.request('get', 'ticket_fields.json');&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(data, fields) {&eol; var result = Zendesk.request('post', 'tickets.json', Zendesk.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.ticket.id === 'undefined'&eol; &pipe;&pipe; result.status != 201) {&eol; throw 'Cannot create Zendesk issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.ticket.id;&eol; },&eol;&eol; updateIssue: function(data, fields) {&eol; Zendesk.request('put', 'tickets/' + Zendesk.params.issue_key + '.json', Zendesk.addCustomFields(data, fields));&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; zendesk = {},&eol; update = {},&eol; data = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject',&eol; 'alert_message',&eol; 'event_id',&eol; 'event_source',&eol; 'event_value',&eol; 'event_update_status'&eol; ],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: 'default', color: '#000000'}&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('zendesk_')) {&eol; zendesk[key.substring(8)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; fields[key.substring(12)] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter ' + key + ' cannot be empty.';&eol; }&eol; });&eol;&eol; // Possible values: question, incident, problems, task&eol; if (['question', 'incident', 'problem', 'task'].indexOf(params.zendesk_type) === -1) {&eol; throw 'Incorrect "zendesk_type" parameter given: ' + params.zendesk_type +&eol; '\nMust be one of question, incident, problem, task.';&eol; }&eol;&eol; // Possible values: 0 - Trigger, 1 - Discovery, 2 - Autoregistration, 3 - Internal.&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; // Possible values: 1 for problem, 0 for recovering&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; // Possible values: 0 - Webhook was called because of problem/recovery event, 1 - Update operation.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; // Zendesk_issue_key must be a positive integer if an update action is being performed.&eol; if (params.event_source === '0' && ((params.event_value === '1' && params.event_update_status === '1')&eol; &pipe;&pipe; (params.event_value === '0' && (params.event_update_status === '0' &pipe;&pipe; params.event_update_status === '1')))&eol; && (isNaN(parseInt(params.zendesk_issue_key)) &pipe;&pipe; parseInt(params.zendesk_issue_key) < 1 )) {&eol; throw 'Incorrect "zendesk_issue_key" parameter given: ' + params.zendesk_issue_key +&eol; '\nMust be positive integer.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['severity_' + severities[params.event_nseverity].name] &pipe;&pipe; severities[7].name;&eol;&eol; Zendesk.setParams(zendesk);&eol; Zendesk.HTTPProxy = params.HTTPProxy;&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_value !== '0') {&eol; data = {&eol; ticket: {&eol; external_id: params.event_id,&eol; type: Zendesk.params.type,&eol; status: 'new',&eol; subject: params.alert_subject,&eol; comment: {&eol; body: params.alert_message,&eol; public: 'false'&eol; },&eol; priority: priority,&eol; tags: params.event_tags&eol; }&eol; };&eol;&eol; Zendesk.createIssue(data, fields);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && update.status === '0') {&eol; data = {&eol; ticket: {&eol; external_id: params.event_id,&eol; type: Zendesk.params.type,&eol; status: 'new',&eol; subject: params.alert_subject,&eol; comment: {&eol; body: params.zbxurl + (params.zbxurl.endsWith('/') ? '' : '/') + 'tr_events.php?triggerid=' +&eol; params.trigger_id + '&eventid=' + params.event_id + '\n' + params.alert_message,&eol; public: 'false'&eol; },&eol; priority: priority,&eol; tags: params.event_tags&eol; }&eol; };&eol; var key = Zendesk.createIssue(data, fields);&eol;&eol; result.tags.__zbx_zdk_issuekey = key;&eol; result.tags.__zbx_zdk_issuelink = params.zendesk_url +&eol; (params.zendesk_url.endsWith('/') ? '' : '/') + 'agent/tickets/' + key;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; data = {&eol; ticket: {&eol; type: Zendesk.params.type,&eol; subject: params.alert_subject,&eol; comment: {&eol; body: params.alert_message,&eol; public: 'false'&eol; }&eol; }&eol; };&eol;&eol; Zendesk.updateIssue(data, fields);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[Zendesk Webhook] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_zdk_issuelink} |Zendesk: {EVENT.TAGS.__zbx_zdk_issuekey} | |
-ROW |18 |4 |ServiceNow | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var ServiceNow = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; ServiceNow.params = params;&eol; if (typeof ServiceNow.params.url === 'string') {&eol; if (!ServiceNow.params.url.endsWith('/')) {&eol; ServiceNow.params.url += '/';&eol; }&eol;&eol; ServiceNow.params.url += 'api/now/table/incident';&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; ServiceNow.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; data[field] = (fields[field].match(/^\d{4}\.\d{2}\.\d{2}$/) !== null)&eol; ? fields[field].replace(/\./g, '-')&eol; : fields[field];&eol; });&eol; }&eol; },&eol;&eol; request: function (method, data) {&eol; ['url', 'user', 'password'].forEach(function (field) {&eol; if (typeof ServiceNow.params !== 'object' &pipe;&pipe; typeof ServiceNow.params[field] === 'undefined'&eol; &pipe;&pipe; ServiceNow.params[field] === '' ) {&eol; throw 'Required ServiceNow param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = ServiceNow.params.url,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Basic ' + btoa(ServiceNow.params.user + ':' + ServiceNow.params.password));&eol;&eol; if (typeof ServiceNow.HTTPProxy !== 'undefined' && ServiceNow.HTTPProxy !== '') {&eol; request.SetProxy(ServiceNow.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ ServiceNow Webhook ] Sending request: ' + url + ((typeof data === 'string')&eol; ? ('\n' + data)&eol; : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ ServiceNow Webhook ] Received response with status code ' +&eol; request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ ServiceNow Webhook ] Failed to parse response received from ServiceNow');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.error.message !== 'undefined'&eol; && Object.keys(response.error).length > 0) {&eol; message += ': ' + JSON.stringify(response.error.message);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol; else if (typeof response.result !== 'object' &pipe;&pipe; typeof response.result.sys_id === 'undefined') {&eol; throw 'Cannot create ServiceNow incident. Check debug log for more information.';&eol; }&eol;&eol; return response.result;&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; servicenow = {},&eol; data = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject', 'alert_message', 'event_source', 'event_value',&eol; 'event_update_status', 'event_recovery_value', 'event_nseverity'&eol; ],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: 'default', color: '#000000'}&eol; ],&eol; method = 'post',&eol; process_tags = true;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('servicenow_')) {&eol; servicenow[key.substring(11)] = params[key];&eol; }&eol; else if (key.startsWith('u_')) {&eol; fields[key] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_recovery_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; data.short_description = params.alert_subject;&eol; data.description = params.alert_message;&eol;&eol; if (typeof params['urgency_for_' + severities[params.event_nseverity].name] !== 'undefined') {&eol; data.urgency = params['urgency_for_' + severities[params.event_nseverity].name];&eol; }&eol;&eol; ServiceNow.setParams(servicenow);&eol; ServiceNow.setProxy(params.HTTPProxy);&eol; ServiceNow.setFields(data, fields);&eol;&eol; if (params.event_source === '0' && (params.event_value === '0' &pipe;&pipe; params.event_update_status === '1')) {&eol; process_tags = false;&eol; method = 'put';&eol; delete data.description;&eol; delete data.urgency;&eol; ServiceNow.params.url += '/' + params.servicenow_sys_id;&eol; data.comments = params.alert_message;&eol; }&eol;&eol; var response = ServiceNow.request(method, data);&eol;&eol; if (process_tags) {&eol; result.tags.__zbx_servicenow_sys_id = response.sys_id;&eol; result.tags.__zbx_servicenow_link = params.servicenow_url +&eol; (params.servicenow_url.endsWith('/') ? '' : '/') + 'incident.do?sys_id=' + response.sys_id;&eol; result.tags.__zbx_servicenow_number = response.number;&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ ServiceNow Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_servicenow_link} |ServiceNow: {EVENT.TAGS.__zbx_servicenow_number} | |
-ROW |19 |4 |Zammad | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Zammad = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Zammad.params = params;&eol; if (typeof Zammad.params.url === 'string') {&eol; if (!Zammad.params.url.endsWith('/')) {&eol; Zammad.params.url += '/';&eol; }&eol; }&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'access_token'].forEach(function (field) {&eol; if (typeof Zammad.params !== 'object' &pipe;&pipe; typeof Zammad.params[field] === 'undefined'&eol; &pipe;&pipe; Zammad.params[field] === '' ) {&eol; throw 'Required param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Zammad.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; if (typeof Zammad.HTTPProxy === 'string' && Zammad.HTTPProxy.trim() !== '') {&eol; request.SetProxy(Zammad.HTTPProxy);&eol; }&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Token token=' + Zammad.params.access_token);&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ Zammad Webhook ] Sending request: ' +&eol; url + ((typeof data === 'string') ? (' ' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ Zammad Webhook ] Received response with status code ' + request.Status() + ': ' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Zammad Webhook ] Failed to parse response received from Zammad');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; setTicketTags: function(tags, ticket_id) {&eol; try {&eol; var tags_json = JSON.parse(tags),&eol; result;&eol;&eol; for (var i in tags_json) {&eol; result = Zammad.request('get',&eol; '/api/v1/tags/add?object=Ticket&o_id=' + ticket_id +&eol; '&item=' + tags_json[i].tag);&eol;&eol; if (typeof result.response !== 'object'&eol; &pipe;&pipe; result.status != 200) {&eol; Zabbix.Log(4, '[ Zammad Webhook ] Cannot add ticket tag:' + tags_json[i].tag);&eol; }&eol; }&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Zammad Webhook ] Failed to add ticket tags:' + error);&eol; }&eol;&eol; return;&eol; },&eol;&eol; createTicket: function(subject, message, priority) {&eol; var data = {&eol; title: subject,&eol; group: 'Users',&eol; article: {&eol; subject: subject,&eol; body: message,&eol; type: 'note',&eol; internal: false&eol; },&eol; customer: Zammad.params.customer&eol; },&eol; result;&eol;&eol; if (priority) {&eol; data.priority_id = priority;&eol; }&eol;&eol; result = Zammad.request('post', 'api/v1/tickets', data);&eol;&eol; if (typeof result.response !== 'object'&eol; &pipe;&pipe; typeof result.response.id === 'undefined'&eol; &pipe;&pipe; result.status != 201) {&eol; throw 'Cannot create Zammad ticket. Check debug log for more information.';&eol; }&eol;&eol; return result.response.id;&eol; },&eol;&eol; updateTicket: function(subject, message) {&eol; var data = {&eol; ticket_id: Zammad.params.ticket_id,&eol; subject: subject,&eol; body: message &pipe;&pipe; '',&eol; type: 'note',&eol; internal: false&eol; };&eol;&eol; result = Zammad.request('post', 'api/v1/ticket_articles', data);&eol;&eol; if (typeof result.response !== 'object'&eol; &pipe;&pipe; typeof result.response.id === 'undefined'&eol; &pipe;&pipe; result.status != 201) {&eol; throw 'Cannot update Zammad ticket. Check debug log for more information.';&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; params_zammad = {},&eol; params_update = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject', 'customer',&eol; 'event_source', 'event_value',&eol; 'event_update_status'&eol; ],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: null, color: '#000000'}&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('zammad_')) {&eol; params_zammad[key.substring(7)] = params[key].trim();&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; params_update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter "' + key + '" cannot be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; if (params.event_source === '0'&eol; && ((params.event_value === '1' && params.event_update_status === '1')&eol; &pipe;&pipe; (params.event_value === '0'&eol; && (params.event_update_status === '0' &pipe;&pipe; params.event_update_status === '1')))&eol; && (isNaN(parseInt(params.zammad_ticket_id)) &pipe;&pipe; parseInt(params.zammad_ticket_id) < 1 )) {&eol; throw 'Incorrect "zammad_ticket_id" parameter given: ' + params.zammad_ticket_id +&eol; '\nMust be positive integer.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['severity_' + severities[params.event_nseverity].name];&eol; priority = priority && priority.trim() &pipe;&pipe; severities[7].name;&eol;&eol; Zammad.setParams(params_zammad);&eol; Zammad.HTTPProxy = params.HTTPProxy;&eol;&eol; // Create ticket for non trigger-based events.&eol; if (params.event_source !== '0'&eol; && params.event_value !== '0') {&eol; Zammad.createTicket(params.alert_subject, params.alert_message, priority, params.event_tags);&eol; }&eol; // Create ticket for trigger-based events.&eol; else if (params.event_value === '1' && params_update.status === '0') {&eol; var ticket_id = Zammad.createTicket(params.alert_subject,&eol; params.alert_subject + '\n' + params.alert_message + '\n' +&eol; params.zabbix_url + (params.zabbix_url.endsWith('/') ? '' : '/') +&eol; 'tr_events.php?triggerid=' + params.trigger_id + '&eventid=' + params.event_id + '\n',&eol; priority);&eol;&eol; result.tags.__zbx_zammad_ticket_id = ticket_id;&eol; result.tags.__zbx_zammad_ticketlink = params.zammad_url +&eol; (params.zammad_url.endsWith('/') ? '' : '/') + '#ticket/zoom/' + ticket_id;&eol;&eol; if (Zammad.params.enable_tags.toLowerCase() === 'true') {&eol; Zammad.setTicketTags(params.event_tags, ticket_id);&eol; }&eol; }&eol; // Update created ticket for trigger-based event.&eol; else {&eol; Zammad.updateTicket(params.alert_subject, params.alert_message);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Zammad Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_zammad_ticketlink} |Zammad: ticket #{EVENT.TAGS.__zbx_zammad_ticket_id} | |
-ROW |20 |4 |Jira ServiceDesk | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Jira = {&eol; params: {},&eol; schema: {},&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/servicedeskapi/latest/';&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; Jira.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setTags: function(event_tags_json) {&eol; if (!Jira.schema) {&eol; Zabbix.Log(4, '[ Jira Service Desk Webhook ] Cannot add labels because failed to retrieve field schema.');&eol;&eol; return;&eol; }&eol;&eol; var block = Jira.schema.requestTypeFields.filter(function(object) {&eol; return object.fieldId == 'labels';&eol; });&eol;&eol; if (block[0] && typeof event_tags_json !== 'undefined' && event_tags_json !== ''&eol; && event_tags_json !== '{EVENT.TAGSJSON}') {&eol; try {&eol; var tags = JSON.parse(event_tags_json),&eol; label;&eol;&eol; Jira.labels = [];&eol;&eol; tags.forEach(function (tag) {&eol; if (typeof tag.tag !== 'undefined' && typeof tag.value !== 'undefined' ) {&eol; label = (tag.tag + (tag.value ? (':' + tag.value) : '')).replace(/\s/g, '_');&eol; if (label.length < 255) {&eol; Jira.labels.push(label);&eol; }&eol; }&eol; });&eol; }&eol; catch (error) {&eol; // Code is not missing here.&eol; }&eol; }&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; if (Jira.schema) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; data.requestFieldValues[field] = fields[field];&eol;&eol; var block = Jira.schema.requestTypeFields.filter(function(object) {&eol; return object.fieldId == field;&eol; });&eol;&eol; if (typeof block[0] === 'object' && typeof block[0].jiraSchema === 'object'&eol; && (block[0].jiraSchema.type === 'number' &pipe;&pipe; block[0].jiraSchema.type === 'datetime')) {&eol; switch (block[0].jiraSchema.type) {&eol; case 'number':&eol; data.requestFieldValues[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.requestFieldValues[field] = fields[field].replace(/\./g, '-');&eol; }&eol; else {&eol; delete data.requestFieldValues[field];&eol; }&eol; break;&eol; }&eol; }&eol; });&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Jira Service Desk Webhook ] Cannot add custom fields' +&eol; 'because failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'user', 'password', 'servicedesk_id', 'request_type_id'].forEach(function (field) {&eol; if (typeof Jira.params !== 'object' &pipe;&pipe; typeof Jira.params[field] === 'undefined'&eol; &pipe;&pipe; Jira.params[field] === '' ) {&eol; throw 'Required Jira param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Jira.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Basic ' + btoa(Jira.params.user + ':' + Jira.params.password));&eol; request.AddHeader('X-ExperimentalApi: opt-in');&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 Service Desk Webhook ] Sending request: ' + url +&eol; ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; 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 Service Desk Webhook ] Received response with status code ' +&eol; request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Jira Service Desk Webhook ] Failed to parse response received from Jira');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessage !== 'undefined'&eol; && Object.keys(response.errorMessage).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessage);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getSchema: function() {&eol; var result = Jira.request('get', 'servicedesk/' + Jira.params.servicedesk_id + '/requesttype/' +&eol; Jira.params.request_type_id + '/field');&eol;&eol; if (typeof Jira.schema !== 'object' && typeof Jira.schema.requestTypeFields !== 'object') {&eol; Jira.schema = null;&eol; }&eol; else {&eol; Jira.schema = result.response;&eol; }&eol; },&eol;&eol; createRequest: function(summary, description, fields) {&eol; var data = {&eol; serviceDeskId: Jira.params.servicedesk_id,&eol; requestTypeId: Jira.params.request_type_id,&eol; requestFieldValues: {&eol; summary: summary,&eol; description: description&eol; }&eol; };&eol;&eol; if (Jira.labels && Jira.labels.length > 0) {&eol; data.requestFieldValues.labels = Jira.labels;&eol; }&eol; var result = Jira.request('post', 'request', Jira.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.issueKey === 'undefined') {&eol; throw 'Cannot create Jira request. Check debug log for more information.';&eol; }&eol;&eol; return result.response.issueKey;&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; jira = {},&eol; comment = {public: true},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject', 'alert_message', 'event_source', 'event_value',&eol; 'event_update_status', 'event_recovery_value'&eol; ];&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 (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" cannot be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_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.getSchema();&eol; Jira.setTags(params.event_tags_json);&eol;&eol; // Create request for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_recovery_value !== '0') {&eol; Jira.createRequest(params.alert_subject, params.alert_message);&eol; }&eol; // Create request for trigger-based events.&eol; else if (params.event_value === '1' && params.event_update_status === '0'&eol; && jira.request_key === '{EVENT.TAGS.__zbx_jira_requestkey}') {&eol; var key = Jira.createRequest(params.alert_subject, params.alert_message, fields);&eol;&eol; result.tags.__zbx_jira_requestkey = key;&eol; result.tags.__zbx_jira_requestlink = params.jira_url +&eol; (params.jira_url.endsWith('/') ? '' : '/') + 'browse/' + key;&eol; }&eol; // Comment created request for trigger-based event.&eol; else {&eol; if (jira.request_key === '{EVENT.TAGS.__zbx_jira_requestkey}' &pipe;&pipe; jira.request_key.trim() === '') {&eol; throw 'Incorrect Request key given: ' + jira.request_key;&eol; }&eol; comment.body = params.alert_message;&eol; Jira.request('post', 'request/' + Jira.params.request_key + '/comment', comment);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Jira Service Desk Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_jira_requestlink} |Jira ServiceDesk: {EVENT.TAGS.__zbx_jira_requestkey} | |
-ROW |21 |4 |OTRS | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var OTRS = {&eol; params: {},&eol; entrypoint: 'nph-genericinterface.pl/Webservice/ZabbixTicketConnector/Ticket',&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; OTRS.params = params;&eol; if (typeof OTRS.params.url === 'string') {&eol; if (!OTRS.params.url.endsWith('/')) {&eol; OTRS.params.url += '/';&eol; }&eol; }&eol; },&eol;&eol; addDynamicFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; data.DynamicField = [];&eol;&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; if (field !== undefined) {&eol; if (fields[field].match(/^\d{4}[.-]\d{2}[.-]\d{2}$/)) {&eol; fields[field] = fields[field].replace(/\./g, '-');&eol; }&eol;&eol; data.DynamicField.push({Name: field, Value: fields[field]});&eol; }&eol; });&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'auth_user', 'auth_password', 'queue',&eol; 'customer', 'ticket_state', 'default_priority_id', 'time_unit'].forEach(function (field) {&eol; if (typeof OTRS.params !== 'object' &pipe;&pipe; typeof OTRS.params[field] === 'undefined'&eol; &pipe;&pipe; OTRS.params[field] === '' ) {&eol; throw 'Required param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; request = new CurlHttpRequest(),&eol; url = OTRS.params.url + query +&eol; '?UserLogin=' + encodeURIComponent(OTRS.params.auth_user) +&eol; '&Password=' + encodeURIComponent(OTRS.params.auth_password);&eol;&eol; if (typeof OTRS.HTTPProxy !== 'undefined' && OTRS.HTTPProxy.trim() !== '') {&eol; request.SetProxy(OTRS.HTTPProxy);&eol; }&eol;&eol; request.AddHeader('Content-Type: application/json');&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ OTRS Webhook ] Sending request: ' +&eol; url + ((typeof data === 'string') ? (' ' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ OTRS Webhook ] Received response with status code ' + request.Status() + ': ' + response);&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; message += ': ' + response;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ OTRS Webhook ] Failed to parse response received from OTRS');&eol; response = null;&eol; }&eol; }&eol;&eol; if (typeof response.Error !== 'undefined'&eol; && Object.keys(response.Error).length > 0) {&eol; message = 'Request failed: ' + JSON.stringify(response.Error);&eol; }&eol;&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; createTicket: function(subject, message, priority, fields) {&eol; var result,&eol; data = {&eol; Ticket: {&eol; Title: subject,&eol; Queue: OTRS.params.queue,&eol; State: OTRS.params.ticket_state,&eol; PriorityID: priority &pipe;&pipe; OTRS.params.default_priority_id,&eol; CustomerUser: OTRS.params.customer&eol; },&eol; Article: {&eol; Subject: subject,&eol; Body: message,&eol; TimeUnit: OTRS.params.time_unit,&eol; ContentType: 'text/plain; charset=utf8'&eol; }&eol; };&eol;&eol; result = OTRS.request('post', OTRS.entrypoint, OTRS.addDynamicFields(data, fields));&eol;&eol; if (typeof result.response !== 'object'&eol; &pipe;&pipe; typeof result.response.TicketID === 'undefined'&eol; &pipe;&pipe; result.status != 200) {&eol; throw 'Cannot create OTRS ticket. Check debug log for more information.';&eol; }&eol;&eol; return result.response.TicketID;&eol; },&eol;&eol; updateTicket: function(subject, message) {&eol; var result,&eol; data = {&eol; Article: {&eol; Subject: subject,&eol; Body: message &pipe;&pipe; '',&eol; TimeUnit: OTRS.params.time_unit,&eol; ContentType: 'text/plain; charset=utf8'&eol; }&eol; };&eol;&eol; result = OTRS.request('put', OTRS.entrypoint + '/' + encodeURIComponent(OTRS.params.ticket_id), data);&eol;&eol; if (typeof result.response !== 'object'&eol; &pipe;&pipe; typeof result.response.TicketID === 'undefined'&eol; &pipe;&pipe; result.status != 200) {&eol; throw 'Cannot update OTRS ticket. Check debug log for more information.';&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; params_otrs = {},&eol; params_fields = {},&eol; params_update = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject', 'event_source',&eol; 'event_value', 'event_update_status'&eol; ],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: null, color: '#000000'}&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('otrs_')) {&eol; params_otrs[key.substring(5)] = params[key];&eol; }&eol; else if (key.startsWith('dynamicfield_')) {&eol; params_fields[key.substring(13)] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; params_update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter "' + key + '" cannot be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; if (params.event_source === '0'&eol; && ((params.event_value === '1' && params.event_update_status === '1')&eol; &pipe;&pipe; (params.event_value === '0'&eol; && (params.event_update_status === '0' &pipe;&pipe; params.event_update_status === '1')))&eol; && (isNaN(parseInt(params.otrs_ticket_id)) &pipe;&pipe; parseInt(params.otrs_ticket_id) < 1 )) {&eol; throw 'Incorrect "otrs_ticket_id" parameter given: ' + params.otrs_ticket_id +&eol; '\nMust be positive integer.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['severity_' + severities[params.event_nseverity].name];&eol; priority = priority && priority.trim() &pipe;&pipe; severities[7].name;&eol;&eol; OTRS.setParams(params_otrs);&eol; OTRS.HTTPProxy = params.HTTPProxy;&eol;&eol; // Create ticket for non trigger-based events.&eol; if (params.event_source !== '0'&eol; && params.event_value !== '0') {&eol; OTRS.createTicket(params.alert_subject, params.alert_message, priority);&eol; }&eol; // Create ticket for trigger-based events.&eol; else if (params.event_value === '1' && params_update.status === '0') {&eol; var ticket_id = OTRS.createTicket(params.alert_subject,&eol; params.alert_subject + '\n' + params.alert_message + '\n' +&eol; params.zabbix_url + (params.zabbix_url.endsWith('/') ? '' : '/') +&eol; 'tr_events.php?triggerid=' + params.trigger_id + '&eventid=' + params.event_id + '\n',&eol; priority,&eol; params_fields);&eol;&eol; result.tags.__zbx_otrs_ticket_id = ticket_id;&eol; result.tags.__zbx_otrs_ticketlink = params.otrs_url +&eol; (params.otrs_url.endsWith('/') ? '' : '/') + 'index.pl?Action=AgentTicketZoom;TicketID=' + ticket_id;&eol; }&eol; // Update created ticket for trigger-based event.&eol; else {&eol; OTRS.updateTicket(params.alert_subject, params.alert_message);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ OTRS Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_otrs_ticketlink} |OTRS: ticket #{EVENT.TAGS.__zbx_otrs_ticket_id} | |
-ROW |22 |4 |iLert | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |try {&eol; var result = { tags: {} },&eol; params = JSON.parse(value),&eol; req = new CurlHttpRequest(),&eol; resp = '';&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.SetProxy(params.HTTPProxy);&eol; }&eol; var alertSourceKey = params['.ILERT.ALERT.SOURCE.KEY'];&eol; if (!alertSourceKey &pipe;&pipe; (typeof alertSourceKey === 'string' && alertSourceKey.trim() === '')) {&eol; throw 'incorrect value for variable "ILERT.ALERT.SOURCE.KEY". The value must be a non-empty string.';&eol; }&eol; delete params['.ILERT.ALERT.SOURCE.KEY'];&eol; &eol; var ilertApiBaseURL = "https://api.ilert.com";&eol; var reqURL = encodeURI(ilertApiBaseURL + "/api/v1/events/zabbix-mt/" + alertSourceKey)&eol;&eol; var incidentKey = "zabbix-" + params['EVENT.ID'];&eol; var incidentViewURL = ilertApiBaseURL + "/api/v1/incidents/resolve-ik/" + alertSourceKey + "/" + incidentKey;&eol;&eol; req.AddHeader('Accept: application/json');&eol; req.AddHeader('Content-Type: application/json');&eol;&eol; Zabbix.Log(4, '[iLert Webhook] Sending request:' + JSON.stringify(params));&eol; resp = req.Post(reqURL, JSON.stringify(params));&eol; Zabbix.Log(4, '[iLert Webhook] Receiving response:' + resp);&eol;&eol; try {&eol; resp = JSON.parse(resp);&eol; }&eol; catch (error) {&eol; throw 'incorrect response. iLert returned a non-JSON object.';&eol; }&eol;&eol; if (req.Status() == 200) {&eol; result.tags.__ilert_incident_url = incidentViewURL;&eol; return JSON.stringify(result);&eol; }&eol;&eol; if (req.Status() == 400 && typeof resp === 'object' && typeof resp.code === 'string') {&eol; if (resp.code === 'NO_OPEN_INCIDENT_WITH_KEY') {&eol; return JSON.stringify(result);&eol; }&eol; if (resp.code === 'INCIDENT_ALREADY_ACCEPTED') {&eol; result.tags.__ilert_incident_url = incidentViewURL;&eol; return JSON.stringify(result);&eol; }&eol; }&eol;&eol; if (typeof resp === 'object' && typeof resp.message === 'string') {&eol; throw resp.message;&eol; }&eol; else {&eol; throw 'Unknown error.';&eol; }&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[iLert Webhook] Notification failed : ' + error);&eol; throw 'iLert notification failed : ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__ilert_incident_url} |iLert incident |Please refer to https://docs.ilert.com/integrations/zabbix/native &eol; &eol;Set global macro {$ZABBIX.URL} with your Zabbix server URL.&eol;Add a dedicated user with the media type "iLert". You can also rewrite the incident summary via ".ILERT.INCIDENT.SUMMARY" parameter or leave it empty to use the standard pattern. |
-ROW |23 |4 |SolarWinds Service Desk| | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SolarWinds = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; SolarWinds.params = params;&eol; SolarWinds.params.endpoint = 'https://api.samanage.com/';&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; SolarWinds.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof data.incident === 'object' && typeof fields === 'object' && Object.keys(fields).length) {&eol; if (typeof fields.sw_fields === 'object' && Object.keys(fields.sw_fields).length) {&eol; Object.keys(fields.sw_fields)&eol; .forEach(function(field) {&eol; try {&eol; data.incident[field] = JSON.parse(fields.sw_fields[field]);&eol; }&eol; catch (error) {&eol; data.incident[field] = fields.sw_fields[field];&eol; }&eol; });&eol; }&eol;&eol; if (typeof fields.sw_customfields === 'object' && Object.keys(fields.sw_customfields).length) {&eol; data.incident.custom_fields_values = {custom_fields_value: []};&eol; Object.keys(fields.sw_customfields)&eol; .forEach(function(field) {&eol; data.incident.custom_fields_values.custom_fields_value.push({&eol; name: field,&eol; value: fields.sw_customfields[field]&eol; });&eol; });&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['token'].forEach(function (field) {&eol; if (typeof SolarWinds.params !== 'object' &pipe;&pipe; typeof SolarWinds.params[field] === 'undefined'&eol; &pipe;&pipe; SolarWinds.params[field] === '' ) {&eol; throw 'Required SolarWinds param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = SolarWinds.params.endpoint + query,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('X-Samanage-Authorization: Bearer ' + SolarWinds.params.token);&eol; request.AddHeader('Accept: application/vnd.samanage.v2.1+json');&eol;&eol; if (typeof SolarWinds.HTTPProxy !== 'undefined' && SolarWinds.HTTPProxy !== '') {&eol; request.SetProxy(SolarWinds.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ SolarWinds SD Webhook ] Sending request: ' + url + ((typeof data === 'string')&eol; ? ('\n' + data)&eol; : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ SolarWinds SD Webhook ] Received response with status code ' + request.Status() +&eol; '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ SolarWinds SD Webhook ] Failed to parse response received from SolarWinds');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.error !== 'undefined'&eol; && Object.keys(response.error).length > 0) {&eol; message += ': ' + JSON.stringify(response.error);&eol; }&eol; else if (response !== null && typeof response === 'object'&eol; && Object.keys(response).length > 0) {&eol; Object.keys(response)&eol; .forEach(function(field) {&eol; message += '\n' + field + ': ' + response[field][0];&eol; });&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; createIncident: function(name, description, fields) {&eol; var data = {&eol; incident: {&eol; name: name,&eol; description: description,&eol; priority: SolarWinds.params.priority&eol; }&eol; };&eol;&eol; var result = SolarWinds.request('post', 'incidents.json', SolarWinds.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.id === 'undefined') {&eol; throw 'Cannot create SolarWinds incident. Check debug log for more information.';&eol; }&eol;&eol; return result.response.id;&eol; },&eol;&eol; updateIncident: function(name, fields, message) {&eol; var data = {&eol; incident: {&eol; name: name,&eol; priority: SolarWinds.params.priority&eol; }&eol; };&eol;&eol; SolarWinds.request(&eol; 'put',&eol; 'incidents/' + SolarWinds.params.incident_id + '.json',&eol; SolarWinds.addCustomFields(data, fields));&eol;&eol; SolarWinds.commenIncident(message);&eol; },&eol;&eol; commenIncident: function(message) {&eol; var data = {&eol; comment: {&eol; body: message&eol; }&eol; };&eol;&eol; SolarWinds.request('post', 'incidents/' + SolarWinds.params.incident_id + '/comments.json', data);&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; samanage = {},&eol; result = {tags: {}},&eol; required_params = ['alert_subject', 'event_recovery_value', 'event_source', 'event_value', 'priority_default'],&eol; severities = [&eol; {name: 'not_classified'},&eol; {name: 'information'},&eol; {name: 'warning'},&eol; {name: 'average'},&eol; {name: 'high'},&eol; {name: 'disaster'},&eol; {name: 'resolved'},&eol; {name: 'default'}&eol; ];&eol;&eol; fields.sw_fields = {};&eol; fields.sw_customfields = {};&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('samanage_')) {&eol; samanage[key.substring(9)] = params[key];&eol; }&eol; else if (key.startsWith('sw_field_')) {&eol; fields.sw_fields[key.substring(9)] = params[key];&eol; }&eol; else if (key.startsWith('sw_customfield_')) {&eol; fields.sw_customfields[key.substring(15)] = 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; 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; samanage.priority = params['priority_' + severities[params.event_nseverity].name] &pipe;&pipe; params.priority_default;&eol;&eol; SolarWinds.setParams(samanage);&eol; SolarWinds.setProxy(params.HTTPProxy);&eol;&eol; // Create incident for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_recovery_value !== '0') {&eol; SolarWinds.createIncident(params.alert_subject, params.alert_message);&eol; }&eol; // Create incident for trigger-based events.&eol; else if (params.event_value === '1' && params.event_update_status === '0'&eol; && samanage.incident_id === '{EVENT.TAGS.__zbx_solarwinds_inc_id}') {&eol; var key = SolarWinds.createIncident(params.alert_subject, params.alert_message, fields);&eol;&eol;&eol; result.tags.__zbx_solarwinds_inc_id = key;&eol; result.tags.__zbx_solarwinds_inc_link = params.samanage_url +&eol; (params.samanage_url.endsWith('/') ? '' : '/') + 'incidents/' + key;&eol; }&eol; // Update created incident for trigger-based event.&eol; else {&eol; if (samanage.incident_id === '{EVENT.TAGS.__zbx_solarwinds_inc_id}' &pipe;&pipe; samanage.incident_id === '') {&eol; throw 'Incorrect incident key given: ' + samanage.incident_id;&eol; }&eol; if (!params.alert_message) {&eol; throw 'Parameter "alert_message" can\'t be empty.';&eol; }&eol; SolarWinds.updateIncident(params.alert_subject, fields, params.alert_message);&eol; }&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(3, '[ SolarWinds SD Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_solarwinds_inc_link}|SolarWinds incident ID: {EVENT.TAGS.__zbx_solarwinds_inc_id}| |
-ROW |24 |4 |SysAid | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SysAid = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; var required = ['url', 'auth_user', 'auth_password', 'category_level_1', 'category_level_2',&eol; 'category_level_3', 'incident_id', 'template_id', 'urgency_id', 'incident_state',&eol; 'default_priority_id'&eol; ];&eol;&eol; required.forEach(function (field) {&eol; if (typeof params !== 'object' &pipe;&pipe; typeof params[field] === 'undefined' &pipe;&pipe; params[field] === '') {&eol; throw 'Required param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; SysAid.params = params;&eol; if (typeof SysAid.params.url === 'string' && !SysAid.params.url.endsWith('/')) {&eol; SysAid.params.url += '/';&eol; }&eol; },&eol;&eol; login: function () {&eol; var result = SysAid.request('post', 'api/v1/login', {&eol; user_name: SysAid.params.auth_user,&eol; password: SysAid.params.auth_password&eol; });&eol;&eol; return result.response.user.id;&eol; },&eol;&eol; request: function (method, query, data) {&eol; var response,&eol; request = SysAid.req &pipe;&pipe; (SysAid.req = new CurlHttpRequest()),&eol; url = SysAid.params.url + query;&eol;&eol; if (typeof SysAid.HTTPProxy !== 'undefined' && SysAid.HTTPProxy.trim() !== '') {&eol; request.SetProxy(SysAid.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ SysAid Webhook ] Sending request: ' +&eol; url + ((typeof data === 'string') ? (' ' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ SysAid Webhook ] Received response with status code ' + request.Status() + ': ' + response);&eol;&eol; if (request.Status() !== 200) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; message += ': ' + response;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ SysAid Webhook ] Failed to parse response received from SysAid');&eol; response = null;&eol; }&eol; }&eol;&eol; if (response === null &pipe;&pipe; (typeof response.Error !== 'undefined' && Object.keys(response.Error).length > 0)) {&eol; throw 'Request failed: ' + JSON.stringify(response.Error);&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; createIncident: function(subject, message, priority) {&eol; var result = SysAid.request('post', 'api/v1/sr/?template=' + encodeURIComponent(SysAid.params.template_id), {&eol; info: [&eol; {&eol; key: 'problem_type',&eol; value: [&eol; SysAid.params.category_level_1,&eol; SysAid.params.category_level_2,&eol; SysAid.params.category_level_3&eol; ].join('_')&eol; },&eol; {&eol; key: 'title',&eol; value: subject&eol; },&eol; {&eol; key: 'description',&eol; value: message&eol; },&eol; {&eol; key: 'status',&eol; value: '1'&eol; },&eol; {&eol; key: 'urgency',&eol; value: SysAid.params.urgency_id&eol; },&eol; {&eol; key: 'priority',&eol; value: priority &pipe;&pipe; SysAid.params.default_priority_id,&eol; }&eol; ]&eol; });&eol;&eol; if (result.response.id === 'undefined') {&eol; throw 'Cannot create SysAid incident. Check debug log for more information.';&eol; }&eol;&eol; return result.response.id;&eol; },&eol;&eol; updateTicket: function(note) {&eol; var date = new Date().getTime();&eol;&eol; SysAid.request('put', 'api/v1/sr/' + encodeURIComponent(SysAid.params.incident_id), {&eol; id: SysAid.params.incident_id,&eol; info: [&eol; {&eol; key: 'update_time',&eol; value: date&eol; },&eol; {&eol; key: 'notes',&eol; value: [&eol; {&eol; userName: 'Zabbix',&eol; createDate: date,&eol; text: note&eol; }&eol; ]&eol; }&eol; ]&eol; });&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; params_sysaid = {},&eol; params_update = {},&eol; result = {tags: {}},&eol; required_params = ['alert_subject', 'event_source', 'event_value', 'event_update_status'],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: null, color: '#000000'}&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('sysaid_')) {&eol; params_sysaid[key.substring(7)] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; params_update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter "' + key + '" cannot be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; if (params.event_source === '0' && ((params.event_value === '1' && params.event_update_status === '1')&eol; &pipe;&pipe; (params.event_value === '0' && (params.event_update_status === '0' &pipe;&pipe; params.event_update_status === '1')))&eol; && (isNaN(parseInt(params.sysaid_incident_id)) &pipe;&pipe; parseInt(params.sysaid_incident_id) < 1 )) {&eol; throw 'Incorrect "sysaid_incident_id" parameter given: ' + params.sysaid_incident_id + '\nMust be positive integer.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['severity_' + severities[params.event_nseverity].name];&eol; priority = priority && priority.trim() &pipe;&pipe; severities[7].name;&eol;&eol; SysAid.setParams(params_sysaid);&eol; SysAid.HTTPProxy = params.HTTPProxy;&eol; SysAid.login();&eol;&eol; if (params.event_source !== '0' && params.event_value !== '0') {&eol; // Create ticket for non trigger-based events.&eol; SysAid.createIncident(params.alert_subject, params.alert_message, priority);&eol; }&eol; else if (params.event_value === '1' && params_update.status === '0') {&eol; // Create ticket for trigger-based events.&eol; var incident_id = SysAid.createIncident(params.alert_subject, params.alert_subject + '\n' + params.alert_message +&eol; '\n' + params.zabbix_url + (params.zabbix_url.endsWith('/') ? '' : '/') + 'tr_events.php?triggerid=' +&eol; params.trigger_id + '&eventid=' + params.event_id + '\n', priority&eol; );&eol;&eol; result.tags.__zbx_sysaid_incident_id = incident_id;&eol; result.tags.__zbx_sysaid_incidentlink = params.sysaid_url +&eol; (params.sysaid_url.endsWith('/') ? '' : '/') + 'SREdit.jsp?id=' + incident_id + '&fromId=IncidentsList';&eol; }&eol; else {&eol; // Update created ticket for trigger-based event.&eol; SysAid.updateTicket(params.alert_subject + '\n' + params.alert_message);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ SysAid Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_sysaid_incidentlink}|SysAid: incident #{EVENT.TAGS.__zbx_sysaid_incident_id} | |
-ROW |25 |4 |TOPdesk | | | | | | | |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; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; if (typeof HTTPProxy !== 'undefined' && HTTPProxy.trim() !== '') {&eol; Media.HTTPProxy = HTTPProxy;&eol; }&eol; },&eol;&eol; request: function (method, query, data) {&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 CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Accept: 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.Status() + '\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.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&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.Status(),&eol; response: response&eol; };&eol; }&eol;};&eol;&eol;try {&eol; var result = {tags: {}},&eol; params = JSON.parse(value),&eol; media = {},&eol; fields = {},&eol; resp = {},&eol; required_params = [&eol; 'alert_subject',&eol; 'alert_message',&eol; 'event_id',&eol; 'event_source',&eol; 'event_value',&eol; 'event_update_status',&eol; 'topdesk_api',&eol; 'topdesk_user',&eol; 'topdesk_password'&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('topdesk_')) {&eol; media[key.substring(8)] = 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 = 'TOPdesk';&eol; Media.setParams(media);&eol; Media.params.token = 'Basic ' + btoa(Media.params.user + ':' + Media.params.password);&eol; Media.setProxy(params.HTTPProxy);&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; Zabbix.Log(4, '[ ' + Media.name + ' Webhook ] Request of the ticket creating.');&eol; fields.caller = {dynamicName: 'Zabbix'};&eol; fields.briefDescription = params.alert_subject;&eol; fields.request = params.alert_message.replace(/\n/g, '<br>');&eol; fields.priority = {name: priority};&eol; fields.processingStatus = {name: Media.params.status};&eol; fields.externalNumber = params.event_id;&eol; fields.request += '<br>' + params.zbxurl;&eol;&eol; if (params.event_source === '0') {&eol; fields.request += 'tr_events.php?triggerid=' + params.trigger_id + '&eventid=' + params.event_id;&eol; }&eol;&eol; resp = Media.request('post', 'tas/api/incidents', fields);&eol; if (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.id === 'undefined') {&eol; throw 'Cannot create ' + Media.name + ' issue. Check debug log for more information.';&eol; }&eol;&eol; if (params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0) {&eol; result.tags.__zbx_tpd_issuekey = resp.response.number;&eol; result.tags.__zbx_tpd_issuelink = Media.params.api +&eol; 'tas/secure/incident?action=show&unid=' + resp.response.id;&eol; }&eol; }&eol; // Update a created issue.&eol; else {&eol; if (params.event_source == 3 && params.event_value == 0) {&eol; throw 'Internal event recovery actions are not supported.';&eol; }&eol;&eol; Zabbix.Log(4, '[ ' + Media.name + ' Webhook ] Request of the ticket updating.');&eol; fields.action = params.alert_message.replace(/\n/g, '<br>');&eol;&eol; resp = Media.request('put', 'tas/api/incidents/number/' + Media.params.issue_key, fields);&eol; if (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.id === 'undefined'&eol; &pipe;&pipe; resp.response.number !== Media.params.issue_key) {&eol; throw 'Cannot update ' + Media.name + ' issue. 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_tpd_issuelink} |TOPdesk: {EVENT.TAGS.__zbx_tpd_issuekey} |Please refer to https://developers.topdesk.com/documentation/index.html and https://www.zabbix.com/documentation/5.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 "TOPdesk".&eol;Change the values of the variables topdesk_api (URL), topdesk_password, topdesk_user. The topdesk_status is the default status for creating a new TOPdesk ticket. |
-ROW |26 |4 |iTop | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Itop = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; if (params.log !== 'private_log' && params.log !== 'public_log') {&eol; throw 'Incorrect "itop_log" parameter given: ' + params.log + '\nMust be "private_log" or "public_log".';&eol; }&eol;&eol; Itop.params = params;&eol; if (typeof Itop.params.url === 'string') {&eol; if (!Itop.params.url.endsWith('/')) {&eol; Itop.params.url += '/';&eol; }&eol;&eol; Itop.params.url += 'webservices/rest.php?version=' + encodeURIComponent(Itop.params.api_version);&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; Itop.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setCreatePayload: function () {&eol; json_data.operation = 'core/create';&eol; json_data.fields.org_id = Itop.params.organization_id;&eol; json_data.fields.title = params.alert_subject;&eol; json_data.fields.description = params.alert_message.replace('<', '&lt;')&eol; .replace('>', '&gt;')&eol; .replace(/(?:\r\n&pipe;\r&pipe;\n)/g, '<br>');&eol; },&eol;&eol; setUpdatePayload: function () {&eol; json_data.operation = 'core/update';&eol; json_data.key = Itop.params.id;&eol; json_data.fields.title = params.alert_subject;&eol; json_data.fields[Itop.params.log] = {&eol; add_item: {&eol; message: params.alert_subject + '\n' + params.alert_message,&eol; format: 'text'&eol; }&eol; };&eol; },&eol;&eol; request: function (data) {&eol; ['url', 'user', 'password', 'organization_id', 'class', 'api_version', 'id'].forEach(function (field) {&eol; if (typeof Itop.params !== 'object' &pipe;&pipe; typeof Itop.params[field] === 'undefined'&eol; &pipe;&pipe; Itop.params[field] === '' ) {&eol; throw 'Required Itop param is not set: "itop_' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Itop.params.url,&eol; request = new CurlHttpRequest(),&eol; object;&eol;&eol; request.AddHeader('Content-Type: multipart/form-data');&eol; request.AddHeader('Authorization: Basic ' + btoa(Itop.params.user + ':' + Itop.params.password));&eol;&eol; if (Itop.HTTPProxy) {&eol; request.SetProxy(Itop.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ iTop Webhook ] Sending request: ' + url + '&json_data=' + data);&eol;&eol; response = request.Post(url + '&json_data=' + encodeURIComponent(data));&eol;&eol; Zabbix.Log(4, '[ iTop Webhook ] Received response with status code ' + request.Status() + '\n' + response);&eol;&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ iTop Webhook ] Failed to parse response received from iTop');&eol; throw 'Failed to parse response received from iTop.\nRequest status code ' +&eol; request.Status() + '. Check debug log for more information.';&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; throw 'Request failed with status code ' + request.Status() + '. Check debug log for more information.';&eol; }&eol; else if (typeof response.code !== 'undefined' && response.code !== 0) {&eol; throw 'Request failed with iTop code ' + response.code + ': ' +&eol; JSON.stringify(response.message) + '. Check debug log for more information.';&eol; }&eol; else {&eol; Object.keys(response.objects)&eol; .forEach(function (key) {&eol; object = response.objects[key];&eol; });&eol;&eol; return {&eol; status: request.Status(),&eol; response: object.fields&eol; };&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; json_data = {},&eol; itop_params = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject', 'summary', 'event_recovery_value',&eol; 'event_source', 'event_value', 'action_name'&eol; ];&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('itop_')) {&eol; itop_params[key.substring(5)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_recovery_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; Itop.setParams(itop_params);&eol; Itop.setProxy(params.HTTPProxy);&eol;&eol; json_data.operation = '';&eol; json_data.class = Itop.params.class;&eol; json_data.comment = Itop.params.comment;&eol; json_data.output_fields = 'id, friendlyname';&eol; json_data.fields = {};&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_recovery_value !== '0') {&eol; Itop.setCreatePayload();&eol; Itop.request(json_data);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && params.event_update_status === '0'&eol; && Itop.params.id === '{EVENT.TAGS.__zbx_itop_id}') {&eol; Itop.setCreatePayload();&eol;&eol; var response = Itop.request(json_data);&eol;&eol; result.tags.__zbx_itop_id = response.response.id;&eol; result.tags.__zbx_itop_key = response.response.friendlyname;&eol; result.tags.__zbx_itop_link = params.itop_url + (params.itop_url.endsWith('/') ? '' : '/') +&eol; 'pages/UI.php?operation=details&class=' + encodeURIComponent(Itop.params.class) + '&id=' +&eol; encodeURIComponent(response.response.id);&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; if (Itop.params.id === '{EVENT.TAGS.__zbx_itop_id}') {&eol; throw 'Incorrect iTop ticket ID given: ' + Itop.params.id;&eol; }&eol; Itop.setUpdatePayload();&eol; Itop.request(json_data);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ iTop Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_itop_link} |iTop: {EVENT.TAGS.__zbx_itop_key} | |
-ROW |27 |4 |Rocket.Chat | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var RocketChat = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; RocketChat.params = params;&eol; if (RocketChat.params.url && RocketChat.params.api_url) {&eol; if (!RocketChat.params.url.endsWith('/')) {&eol; RocketChat.params.url += '/';&eol; }&eol; if (!RocketChat.params.api_url.endsWith('/')) {&eol; RocketChat.params.api_url += '/';&eol; }&eol; if (RocketChat.params.api_url.startsWith('/')) {&eol; RocketChat.params.api_url = RocketChat.params.api_url.substring(1);&eol; }&eol;&eol; RocketChat.params.url += RocketChat.params.api_url;&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; RocketChat.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; addFields: function (fields) {&eol; var data = [];&eol;&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; if (fields[field] === '') {&eol; Zabbix.Log(4, '[ RocketChat Webhook ] Field "' + field +&eol; '" can\'t be empty. The field ignored.');&eol; }&eol; else {&eol; try {&eol; var parts = field.split(':'),&eol; prefix = parts[0].split('_');&eol;&eol; if (typeof prefix[2] === 'undefined'&eol; &pipe;&pipe; (prefix[2] === 'p' && params.event_value === '1')&eol; &pipe;&pipe; (prefix[2] === 'r' && params.event_value === '0')) {&eol; data.push({&eol; title: field.substring(field.indexOf(':') + 1),&eol; value: fields[field],&eol; short: prefix[1] === 'short'&eol; });&eol; }&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ RocketChat Webhook ] Can\'t parse field "' + field +&eol; '". The field ignored.');&eol; }&eol; }&eol; });&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'api_url', 'user_id', 'user_token', 'send_to'].forEach(function (field) {&eol; if (typeof RocketChat.params !== 'object' &pipe;&pipe; typeof RocketChat.params[field] === 'undefined'&eol; &pipe;&pipe; RocketChat.params[field] === '' ) {&eol; throw 'Required parameter is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = RocketChat.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('X-Auth-Token:' + RocketChat.params.user_token);&eol; request.AddHeader('X-User-Id:' + RocketChat.params.user_id);&eol;&eol; if (typeof RocketChat.HTTPProxy !== 'undefined' && RocketChat.HTTPProxy !== '') {&eol; request.SetProxy(RocketChat.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ RocketChat Webhook ] Sending request: ' + url +&eol; ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ RocketChat Webhook ] Received response with status code ' +&eol; request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ RocketChat Webhook ] Failed to parse response received from RocketChat');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.message !== 'undefined') {&eol; message += ': ' + JSON.stringify(response.message);&eol; }&eol; else if (response !== null && typeof response.error !== 'undefined') {&eol; message += ': ' + JSON.stringify(response.error);&eol; }&eol;&eol; throw message + '. Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; postMessage: function(use_default_message, message, fields) {&eol; var data = {&eol; channel: RocketChat.params.send_to,&eol; attachments: [{&eol; collapsed: false,&eol; color: RocketChat.params.color,&eol; title: params.alert_subject&eol; }]&eol; };&eol;&eol; if (RocketChat.params.title_link) {&eol; data.attachments[0].title_link = RocketChat.params.title_link;&eol; }&eol;&eol; if (use_default_message) {&eol; data.attachments[0].text = message;&eol; }&eol; else {&eol; data.attachments[0].fields = RocketChat.addFields(fields);&eol; }&eol;&eol; var result = RocketChat.request('post', 'chat.postMessage', data);&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.message._id === 'undefined') {&eol; throw 'Cannot send RocketChat message. Check debug log for more information.';&eol; }&eol;&eol; return {&eol; id: result.response.message._id,&eol; rid: result.response.message.rid,&eol; channel: result.response.channel&eol; };&eol; },&eol;&eol; sendMessage: function(update, fields) {&eol;&eol; var data = {&eol; message: {&eol; rid: RocketChat.params.room_id,&eol; tmid: RocketChat.params.msg_id,&eol; tshow: true&eol; }&eol; };&eol;&eol; if (update.status === '0') {&eol; data.message.attachments = [{&eol; collapsed: false,&eol; color: RocketChat.params.color,&eol; title: params.alert_subject,&eol; title_link: RocketChat.params.title_link,&eol; fields: RocketChat.addFields(fields)&eol; }];&eol; }&eol; else {&eol; data.message.alias = update.user;&eol; data.message.msg = update.action;&eol; if (update.message) {&eol; data.message.attachments = [{&eol; color: RocketChat.params.color,&eol; text: update.message&eol; }];&eol; }&eol; }&eol;&eol; RocketChat.request('post', 'chat.sendMessage', data);&eol; },&eol;&eol; getMessageLink: function(rid, id) {&eol; var room = RocketChat.request('get', 'rooms.info?roomId=' + encodeURIComponent(rid)),&eol; link = params.rc_url +&eol; (params.rc_url.endsWith('/') ? '' : '/');&eol;&eol; switch (room.response.room.t) {&eol; case 'c':&eol; link += 'channel/' + room.response.room.name + '?msg=' + id;&eol; break;&eol;&eol; case 'p':&eol; link += 'group/' + room.response.room.name + '?msg=' + id;&eol; break;&eol;&eol; case 'd':&eol; link += 'direct/' + rid + '?msg=' + id;&eol; break;&eol;&eol; default:&eol; Zabbix.Log(4, '[ RocketChat Webhook ] Can\'t get room type. Link to message will not be added.');&eol; }&eol;&eol; return link;&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; response,&eol; fields = {},&eol; rc = {},&eol; update = {},&eol; result = {tags: {}},&eol; required_params = ['alert_subject', 'alert_message', 'event_source', 'event_value'],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: 'default', color: '#000000'}&eol; ];&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('rc_')) {&eol; rc[key.substring(3)] = params[key];&eol; }&eol; else if (key.startsWith('field_')) {&eol; fields[key.substring(6)] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Forcing parameters for non trigger-based events.&eol; if (params.event_source !== '0') {&eol; params.use_default_message = 'true';&eol; params.event_nseverity = '0';&eol; params.rc_title_link = false;&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; RocketChat.setParams(rc);&eol; RocketChat.setProxy(params.HTTPProxy);&eol; RocketChat.params.color = severities[params.event_nseverity].color;&eol;&eol; // Send default message if use_default_message === true.&eol; if (params.use_default_message.toLowerCase() === 'true') {&eol; response = RocketChat.postMessage(true, params.alert_message);&eol; result.tags.__zbx_rc_id = response.id;&eol; result.tags.__zbx_rc_rid = response.rid;&eol; result.tags.__zbx_rc_msg_url = RocketChat.getMessageLink(response.rid, response.id);&eol; }&eol; // Send message for trigger-based events.&eol; else if (params.event_value === '1' && update.status === '0') {&eol; response = RocketChat.postMessage(false, params.alert_message, fields);&eol; result.tags.__zbx_rc_id = response.id;&eol; result.tags.__zbx_rc_rid = response.rid;&eol; result.tags.__zbx_rc_msg_url = RocketChat.getMessageLink(response.rid, response.id);&eol; }&eol; // Send thread message for trigger-based event.&eol; else {&eol; RocketChat.sendMessage(update, fields);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ RocketChat Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_rc_msg_url} |Rocket.Chat | |
-ROW |28 |4 |VictorOps | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var VictorOps = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; VictorOps.params = params;&eol; if (VictorOps.params.endpoint) {&eol; if (!VictorOps.params.endpoint.endsWith('/')) {&eol; VictorOps.params.endpoint += '/';&eol; }&eol;&eol; if (typeof VictorOps.params.routing_key !== 'undefined'&eol; && VictorOps.params.routing_key !== '{ALERT.SENDTO}'&eol; && VictorOps.params.routing_key !== 'Default') {&eol; VictorOps.params.endpoint += VictorOps.params.routing_key;&eol; }&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; VictorOps.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; addFields: function (fields) {&eol; var data = {};&eol;&eol; if (typeof fields === 'object') {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; if (fields[field] === '') {&eol; Zabbix.Log(4, '[ VictorOps Webhook ] Field "' + field +&eol; '" can\'t be empty. The field ignored.');&eol; }&eol; else {&eol; try {&eol; var parts = field.split(':'),&eol; prefix = parts[0].split('_');&eol;&eol; if (typeof prefix[1] === 'undefined'&eol; &pipe;&pipe; (prefix[1] === 'p' && params.event_value === '1'&eol; && (params.event_update_status === '0'&eol; &pipe;&pipe; params.event_update_status === '{EVENT.UPDATE.STATUS}'))&eol; &pipe;&pipe; (prefix[1] === 'r' && params.event_value === '0'&eol; && (params.event_update_status === '0'&eol; &pipe;&pipe; params.event_update_status === '{EVENT.UPDATE.STATUS}'))&eol; &pipe;&pipe; (prefix[1] === 'u' && params.event_update_status === '1')) {&eol; data[field.substring(field.indexOf(':') + 1)] = fields[field];&eol; }&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ VictorOps Webhook ] Can\'t parse field "' + field +&eol; '". The field ignored.');&eol; }&eol; }&eol; });&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (data) {&eol; if (typeof VictorOps.params !== 'object' &pipe;&pipe; typeof VictorOps.params.endpoint === 'undefined'&eol; &pipe;&pipe; VictorOps.params.endpoint === '' ) {&eol; throw 'Required parameter is not set: "vops_endpoint".';&eol; }&eol;&eol; var response,&eol; url = VictorOps.params.endpoint,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol;&eol; if (typeof VictorOps.HTTPProxy !== 'undefined' && VictorOps.HTTPProxy !== '') {&eol; request.SetProxy(VictorOps.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ VictorOps Webhook ] Sending request: ' + url +&eol; ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; response = request.Post(url, data);&eol;&eol; Zabbix.Log(4, '[ VictorOps Webhook ] Received response with status code ' +&eol; request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ VictorOps Webhook ] Failed to parse response received from VictorOps');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.messages !== 'undefined') {&eol; message += ': ' + JSON.stringify(response.messages);&eol; }&eol;&eol; throw message + '. Check debug log for more information.';&eol; }&eol;&eol; return response;&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; vops = {},&eol; required_params = ['event_source', 'event_value', 'priority_update'],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: 'default', color: '#000000'}&eol; ];&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('vops_')) {&eol; vops[key.substring(5)] = params[key];&eol; }&eol; else if (key.startsWith('field')) {&eol; fields[key.substring(5)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; if (params.event_update_status === '1') {&eol; fields[':message_type'] = params.priority_update;&eol; }&eol; else {&eol; fields[':message_type'] = params['priority_' + severities[params.event_nseverity].name]&eol; &pipe;&pipe; 'INFO';&eol; }&eol;&eol; if (params.event_info && params.event_source === '0') {&eol; fields[':event_info'] = params.event_info;&eol; }&eol;&eol; VictorOps.setParams(vops);&eol; VictorOps.setProxy(params.HTTPProxy);&eol; VictorOps.request(VictorOps.addFields(fields));&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ VictorOps Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |0 |0 | | | |
-ROW |29 |4 |Brevis.one | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var BrevisOne = {&eol; params: [],&eol;&eol; addParam: function (name, value) {&eol; BrevisOne.params.push(name + '=' + encodeURIComponent(value));&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; BrevisOne.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setPayload: function (params) {&eol; var parts = params.send_to.split(':'),&eol; defaultValues = {&eol; ring: 'true',&eol; flash: 'true',&eol; telauto: 'false'&eol; };&eol;&eol; BrevisOne.addParam('username', params.username);&eol; BrevisOne.addParam('password', params.password);&eol; BrevisOne.addParam('text', params.text);&eol;&eol; if (parts.length > 1) {&eol; BrevisOne.addParam('mode', parts[0]);&eol; BrevisOne.addParam('to', parts[1]);&eol; }&eol; else {&eol; BrevisOne.addParam('to', parts[0]);&eol; }&eol;&eol; Object.keys(defaultValues)&eol; .forEach(function (key) {&eol; if (params[key] && params[key].trim() && params[key].toLowerCase() === defaultValues[key]) {&eol; BrevisOne.addParam(key, defaultValues[key]);&eol; }&eol; });&eol; },&eol;&eol; request: function () {&eol; var response,&eol; request = new CurlHttpRequest(),&eol; data = '?' + BrevisOne.params.join('&');&eol;&eol; request.AddHeader('Content-Type: multipart/form-data');&eol;&eol; if (typeof BrevisOne.HTTPProxy !== 'undefined' && BrevisOne.HTTPProxy !== '') {&eol; request.SetProxy(BrevisOne.HTTPProxy);&eol; }&eol;&eol; Zabbix.Log(4, '[ BrevisOne Webhook ] Sending request.');&eol;&eol; response = request.Post(params.endpoint + data);&eol;&eol; Zabbix.Log(4, '[ BrevisOne Webhook ] Received response with status code ' +&eol; request.Status() + '\n' + response);&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response) {&eol; message += ': ' + response;&eol; }&eol;&eol; throw message + '. Check debug log for more information.';&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; ['endpoint', 'password', 'username', 'text', 'send_to'].forEach(function (field) {&eol; if (typeof params !== 'object' &pipe;&pipe; typeof params[field] === 'undefined'&eol; &pipe;&pipe; !params[field].trim()) {&eol; throw 'Required parameter is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; if (params.send_to === '{ALERT.SENDTO}') {&eol; throw 'Required parameter is not set: "send_to".';&eol; }&eol;&eol; BrevisOne.setProxy(params.HTTPProxy);&eol; BrevisOne.setPayload(params);&eol; BrevisOne.request();&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ BrevisOne Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |0 |0 | | | |
+FIELDS|mediatypeid|type|name |smtp_server |smtp_helo |smtp_email |exec_path|gsm_modem |username|passwd|status|smtp_port|smtp_security|smtp_verify_peer|smtp_verify_host|smtp_authentication|exec_params|maxsessions|maxattempts|attempt_interval|content_type|script |timeout|process_tags|show_event_menu|event_menu_url |event_menu_name |description |
+ROW |1 |0 |Email |mail.example.com|example.com|zabbix@example.com| | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |0 | |30s |0 |0 | | | |
+ROW |3 |2 |SMS | | | | |/dev/ttyS0| | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 | |30s |0 |0 | | | |
+ROW |4 |0 |Email (HTML) |mail.example.com|example.com|zabbix@example.com| | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 | |30s |0 |0 | | | |
+ROW |5 |4 |Mattermost | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |1 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', '#7499FF', '#FFC859',&eol; '#FFA059', '#E97659', '#E45959'&eol;];&eol;&eol;var RESOLVE_COLOR = '#009900';&eol;&eol;var SEND_MODE_HANDLERS = {&eol; alarm: handlerAlarm,&eol; event: handlerEvent&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(mattermost_url, team_name, postid) {&eol; return '{0}/{1}/pl/{2}'.format(&eol; mattermost_url.replace(/\/+$/, ''),&eol; team_name,&eol; postid&eol; );&eol;}&eol;&eol;function getChannel(send_to) {&eol; switch (true) {&eol; case /.+\/#.+/.test(send_to):&eol; return getChannelByName(send_to);&eol;&eol; case /@.+/.test(send_to):&eol; return getDirectChannel(send_to);&eol;&eol; default:&eol; return getChannelByID(send_to);&eol; }&eol;}&eol;&eol;function getChannelByName(send_to) {&eol; var team_chan = send_to&eol; .trim()&eol; .split('/#');&eol;&eol; var resp = JSON.parse(req.Get(&eol; Mattermost.channel_byname.format(team_chan[0], team_chan[1]),&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; if (req.Status() != 200) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; return resp;&eol;}&eol;&eol;function getDirectChannel(send_to) {&eol; Zabbix.Log(5, '[ Mattermost Webhook ] Call {0}({1})'.format(&eol; arguments.callee.name,&eol; JSON.stringify(arguments)&eol; ));&eol;&eol; var teamUser = send_to&eol; .trim()&eol; .split('/@'),&eol; bot = getBotUser(),&eol; user = getUserByName(teamUser[1]);&eol;&eol; var resp = JSON.parse(req.Post(&eol; Mattermost.direct_channel,&eol; JSON.stringify([bot.id, user.id])&eol; )&eol; );&eol;&eol; Zabbix.Log(5, '[ Mattermost Webhook ] Result {0}: {1}'.format(&eol; arguments.callee.name,&eol; JSON.stringify(resp)&eol; ));&eol;&eol; if (req.Status() != 201) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; resp.team_name = teamUser[0];&eol;&eol; return resp;&eol;}&eol;&eol;function getChannelByID(channelID) {&eol; Zabbix.Log(5, '[ Mattermost Webhook ] Call {0}({1})'.format(&eol; arguments.callee.name,&eol; JSON.stringify(arguments)&eol; ));&eol;&eol; var resp = JSON.parse(req.Get(&eol; Mattermost.get_channel.format(channelID),&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; Zabbix.Log(5, '[ Mattermost Webhook ] Result {0}: {1}'.format(&eol; arguments.callee.name,&eol; JSON.stringify(resp)&eol; ));&eol;&eol; if (req.Status() != 200) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; return resp;&eol;}&eol;&eol;function getBotUser() {&eol; Zabbix.Log(5, '[ Mattermost Webhook ] Call {0}({1})'.format(&eol; arguments.callee.name,&eol; JSON.stringify(arguments)&eol; ));&eol;&eol; var resp = JSON.parse(req.Get(&eol; Mattermost.bot_user,&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; Zabbix.Log(5, '[ Mattermost Webhook ] Result {0}: {1}'.format(&eol; arguments.callee.name,&eol; JSON.stringify(resp)&eol; ));&eol;&eol; if (req.Status() != 200) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; return resp;&eol;}&eol;&eol;function getUserByName(userName) {&eol; Zabbix.Log(5, '[ Mattermost Webhook ] Call {0}({1})'.format(&eol; arguments.callee.name,&eol; JSON.stringify(arguments)&eol; ));&eol;&eol; var resp = JSON.parse(req.Get(&eol; Mattermost.user_byname.format(userName),&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; Zabbix.Log(5, '[ Mattermost Webhook ] Result {0}: {1}'.format(&eol; arguments.callee.name,&eol; JSON.stringify(resp)&eol; ));&eol;&eol; if (req.Status() != 200) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; return resp;&eol;}&eol;&eol;function getTeamByID(teamID) {&eol; Zabbix.Log(5, '[ Mattermost Webhook ] Call {0}({1})'.format(&eol; arguments.callee.name,&eol; JSON.stringify(arguments)&eol; ));&eol;&eol; var resp = JSON.parse(req.Get(&eol; Mattermost.get_team.format(teamID),&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; Zabbix.Log(5, '[ Mattermost Webhook ] Result {0}: {1}'.format(&eol; arguments.callee.name,&eol; JSON.stringify(resp)&eol; ));&eol;&eol; if (req.Status() != 200) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; return resp;&eol;}&eol;&eol;function createProblemURL(zabbix_url, triggerid, eventid, event_source) {&eol; var problem_url = '';&eol; if (event_source === '0') {&eol; problem_url = '{0}/tr_events.php?triggerid={1}&eventid={2}'&eol; .format(&eol; zabbix_url,&eol; triggerid,&eol; eventid&eol; );&eol; }&eol; else {&eol; problem_url = zabbix_url;&eol; }&eol;&eol; return problem_url;&eol;}&eol;&eol;function getTagValue(event_tags, key) {&eol; var pattern = new RegExp('(' + key + ':.+)');&eol; var tagValue = event_tags&eol; .split(',')&eol; .filter(function (v) {&eol; return v.match(pattern);&eol; })&eol; .map(function (v) {&eol; return v.split(':')[1];&eol; })[0]&eol; &pipe;&pipe; 0;&eol;&eol; return tagValue;&eol;}&eol;&eol;function handlerAlarm(req, params) {&eol; var channel = getChannel(params.send_to);&eol; var fields = {&eol; channel_id: channel.id,&eol; props: {}&eol; };&eol;&eol; if (isEventProblem(params)) {&eol; var team_name = channel.team_name&eol; ? channel.team_name&eol; : getTeamByID(channel.team_id).name;&eol;&eol; fields.props.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(&eol; Mattermost.post_message,&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; if (req.Status() != 201) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; result.tags.__mattermost_post_id = resp.id;&eol; result.tags.__mattermost_channel_id = channel.id;&eol; result.tags.__mattermost_channel_name = channel.name;&eol; result.tags.__mattermost_message_link = getPermalink(&eol; params.mattermost_url,&eol; team_name,&eol; resp.id&eol; );&eol;&eol; }&eol; else if (isEventUpdate(params)) {&eol; fields.root_id = getTagValue(params.event_tags, 'mattermost_post_id');&eol;&eol; if (params.event_source === '0') {}&eol; fields.props.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(&eol; Mattermost.post_message, JSON.stringify(fields)&eol; )&eol; );&eol;&eol; if (req.Status() != 201) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; }&eol; else if (isEventResolve(params)) {&eol; fields.channel_id = getTagValue(params.event_tags, 'mattermost_channel_id');&eol; fields.id = getTagValue(params.event_tags, 'mattermost_post_id');&eol; fields.props.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; var post_id = getTagValue(params.event_tags, 'mattermost_post_id');&eol;&eol; resp = JSON.parse(req.Put(&eol; Mattermost.chat_update.format(post_id),&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; if (req.Status() != 200) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol; }&eol;}&eol;&eol;function handlerEvent(req, params) {&eol; var channel = getChannel(params.send_to);&eol; var fields = {&eol; channel_id: channel.id,&eol; props: {}&eol; };&eol;&eol; if (isEventProblem(params)) {&eol; var team_name = channel.team_name&eol; ? channel.team_name&eol; : getTeamByID(channel.team_id).name;&eol;&eol; fields.props.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(Mattermost.post_message, JSON.stringify(fields)));&eol;&eol; if (req.Status() != 201) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; result.tags.__mattermost_channel_name = channel.name;&eol; result.tags.__mattermost_message_link = getPermalink(&eol; params.mattermost_url,&eol; team_name,&eol; resp.id&eol; );&eol;&eol; }&eol; else if (isEventUpdate(params)) {&eol; fields.props.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(Mattermost.post_message, JSON.stringify(fields)));&eol;&eol; if (req.Status() != 201) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; }&eol; else if (isEventResolve(params)) {&eol; fields.props.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(Mattermost.post_message, JSON.stringify(fields)));&eol;&eol; if (req.Status() != 201) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol; }&eol;}&eol;&eol;function createMessage(&eol; event_severity_color,&eol; event_date,&eol; event_time,&eol; problem_url,&eol; isShort&eol;) {&eol; var message = {&eol; fallbac: params.alert_subject,&eol; title: params.alert_subject,&eol; color: event_severity_color,&eol; title_link: problem_url,&eol; footer: problem_url,&eol;&eol; fields: [&eol; {&eol; title: 'Host',&eol; value: '{0} [{1}]'.format(params.host_name, params.host_ip),&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; &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.fields.push(&eol; {&eol; title: 'Event tags',&eol; value: '`{0}`'.format(params.event_tags.replace(/__.+?:(.+?,&pipe;.+)/g, '') &pipe;&pipe; 'None'),&eol; short: true&eol; },&eol; {&eol; title: 'Trigger description',&eol; value: params.trigger_description,&eol; short: true&eol; }&eol; );&eol; }&eol;&eol; if (params.event_source !== '0' &pipe;&pipe; params.event_update_status === '1') {&eol; message.fields.push(&eol; {&eol; title: 'Details',&eol; value: params.alert_message,&eol; short: false&eol; }&eol; );&eol; }&eol;&eol; return message;&eol;}&eol;&eol;function validateParams(params) {&eol; if (typeof params.bot_token !== 'string' &pipe;&pipe; params.bot_token.trim() === '') {&eol; throw 'Field "bot_token" cannot be empty';&eol; }&eol;&eol; if (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.send_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)) === -1) {&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_ip !== 'string' &pipe;&pipe; params.host_ip.trim() === '') {&eol; throw 'Field "host_ip" 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 (typeof params.mattermost_url !== 'string' &pipe;&pipe; params.mattermost_url.trim() === '') {&eol; throw 'Field "mattermost_url" cannot be empty';&eol; }&eol;&eol; if (!/^(http&pipe;https):\/\/.+/.test(params.mattermost_url)) {&eol; throw 'Field "mattermost_url" must contain a schema';&eol; }&eol;&eol; if (['alarm', 'event'].indexOf(params.send_mode) === -1) {&eol; throw 'Incorrect "send_mode" parameter given: ' + params.send_mode + '\nMust be "alarm" or "event".';&eol; }&eol;&eol; if (typeof params.send_to !== 'string' &pipe;&pipe; params.send_to.trim() === '') {&eol; throw 'Field "send_to" cannot be empty';&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;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; validateParams(params);&eol;&eol; var req = new CurlHttpRequest(),&eol; fields = {},&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; params.mattermost_url = params.mattermost_url.replace(/\/+$/, '');&eol; params.zabbix_url = params.zabbix_url.replace(/\/+$/, '');&eol;&eol; var APIEndpoint = params.mattermost_url + '/api/v4/';&eol;&eol; var Mattermost = {&eol; post_message: APIEndpoint + 'posts',&eol; get_channel: APIEndpoint + 'channels/{0}',&eol; get_team: APIEndpoint + 'teams/{0}',&eol; chat_update: APIEndpoint + 'posts/{0}',&eol; direct_channel: APIEndpoint + 'channels/direct',&eol; channel_byname: APIEndpoint + 'teams/name/{0}/channels/name/{1}',&eol; user_byname: APIEndpoint + 'users/username/{0}',&eol; bot_user: APIEndpoint + 'users/me'&eol;&eol; };&eol;&eol; params.send_mode = params.send_mode.toLowerCase();&eol; params.send_mode = params.send_mode in SEND_MODE_HANDLERS&eol; ? params.send_mode&eol; : 'alarm';&eol;&eol; SEND_MODE_HANDLERS[params.send_mode](req, 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, '[ Mattermost Webhook ] Mattermost notification failed: ' + error);&eol; throw 'Mattermost notification failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__mattermost_message_link}|Open in Mattermost: {EVENT.TAGS.__mattermost_channel_name} | |
+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 CurlHttpRequest();&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.Status() + '\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.Status() < 200 &pipe;&pipe; request.Status() >= 300)&eol; && (!allow_404 &pipe;&pipe; request.Status() !== 404)) {&eol; var message = 'Request failed with status code ' + request.Status();&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.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getAlertId: function (requestId) {&eol; do {&eol; resp = Media.request('get', 'requests/' + requestId, undefined, true);&eol; }&eol; while (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.data === 'undefined'&eol; &pipe;&pipe; resp.response.data.success === false);&eol;&eol; if (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.data === 'undefined') {&eol; throw 'Cannot get ' + Media.name + ' issue ID. Check debug log for more information.';&eol; }&eol;&eol; return resp;&eol; }&eol;};&eol;&eol;try {&eol; var result = {tags: {}},&eol; params = JSON.parse(value),&eol; media = {},&eol; fields = {},&eol; resp = {},&eol; responders = [],&eol; tags = [],&eol; required_params = [&eol; 'alert_subject',&eol; 'alert_message',&eol; 'event_id',&eol; 'event_source',&eol; 'event_value',&eol; 'event_update_status',&eol; 'opsgenie_api',&eol; 'opsgenie_web',&eol; 'opsgenie_token'&eol; ],&eol; severities = [&eol; 'not_classified',&eol; 'information',&eol; 'warning',&eol; 'average',&eol; 'high',&eol; 'disaster',&eol; 'resolved',&eol; 'default'&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter "' + key + '" cannot be empty.';&eol; }&eol; if (key.startsWith('opsgenie_')) {&eol; media[key.substring(9)] = params[key];&eol; }&eol; });&eol;&eol; // Possible values of event_source:&eol; // 0 - Trigger, 1 - Discovery, 2 - Autoregistration, 3 - Internal.&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; // Check event_value for trigger-based and internal events.&eol; // Possible values: 1 for problem, 0 for recovering&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check event_update_status only for trigger-based events.&eol; // Possible values: 0 - Webhook was called because of problem/recovery event, 1 - Update operation.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check event_id for a numeric value.&eol; if (isNaN(parseInt(params.event_id)) &pipe;&pipe; params.event_id < 1) {&eol; throw 'Incorrect "event_id" parameter given: ' + params.event_id + '\nMust be a positive number.';&eol; }&eol;&eol; if ((params.event_source === '1' &pipe;&pipe; params.event_source === '2') && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for Trigger and Internal actions.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['severity_' + severities[params.event_nseverity]];&eol; params.zbxurl = params.zbxurl + (params.zbxurl.endsWith('/') ? '' : '/');&eol;&eol; Media.name = 'Opsgenie';&eol; Media.setParams(media);&eol; Media.params.token = 'GenieKey ' + Media.params.token;&eol; Media.setProxy(params.HTTPProxy);&eol; Media.setTags(params.event_tags_json); // Set Media.labels&eol;&eol; // Create an issue.&eol; // Numeric value of the event that triggered an action (1 for problem, 0 for recovering).&eol; // Numeric value of of the problem update status. Possible values:&eol; // 0 - Webhook was called because of problem/recovery event, 1 - Update operation.&eol; if ((params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0)&eol; &pipe;&pipe; (params.event_source == 3 && params.event_value == 1)&eol; &pipe;&pipe; params.event_source == 1 &pipe;&pipe; params.event_source == 2) {&eol; fields.message = params.alert_subject;&eol; fields.alias = params.event_id;&eol; fields.description = params.alert_message;&eol; fields.priority = priority;&eol; fields.source = 'Zabbix';&eol;&eol; if (params.event_source === '0') {&eol; fields.details = {&eol; 'Zabbix server': params.zbxurl,&eol; Problem: params.zbxurl + 'tr_events.php?triggerid=' + params.trigger_id + '&eventid=' + params.event_id&eol; };&eol; }&eol; else {&eol; fields.details = {'Zabbix server': params.zbxurl};&eol; }&eol;&eol; if (typeof params.opsgenie_teams === 'string') {&eol; responders = params.opsgenie_teams.split(',');&eol; fields.responders = responders.map(function(team) {&eol; return {type: 'team', name: team.trim()};&eol; });&eol; }&eol;&eol; fields.tags = Media.labels;&eol; if (typeof params.opsgenie_tags === 'string') {&eol; tags = params.opsgenie_tags.split(',');&eol; tags.forEach(function(item) {&eol; fields.tags.push(item.trim());&eol; });&eol; }&eol;&eol; resp = Media.request('post', '', fields);&eol; if (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.result === 'undefined') {&eol; throw 'Cannot create ' + Media.name + ' issue. Check debug log for more information.';&eol; }&eol;&eol; if (resp.status === 202) {&eol; resp = Media.getAlertId(resp.response.requestId);&eol; if (params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0) {&eol; result.tags.__zbx_ops_issuekey = resp.response.data.alertId;&eol; result.tags.__zbx_ops_issuelink = Media.params.web + 'alert/detail/' + resp.response.data.alertId;&eol; }&eol; }&eol; else {&eol; throw Media.name + ' response code is unexpected. Check debug log for more information.';&eol; }&eol; }&eol; // Update a created issue.&eol; else {&eol; fields.user = (params.event_value != 0) ? params.zbxuser : '';&eol; fields.note = params.alert_message;&eol;&eol; resp = Media.request('post', params.event_id + '/notes?identifierType=alias', fields);&eol; if (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.result === 'undefined') {&eol; throw 'Cannot update ' + Media.name + ' issue. Check debug log for more information.';&eol; }&eol;&eol; if (resp.status === 202) {&eol; resp = Media.getAlertId(resp.response.requestId);&eol; }&eol; else {&eol; throw Media.name + ' response code is unexpected. Check debug log for more information.';&eol; }&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ ' + Media.name + ' Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_ops_issuelink} |Opsgenie: {EVENT.TAGS.__zbx_ops_issuekey} |Please refer to https://docs.opsgenie.com/docs/alert-api and https://www.zabbix.com/documentation/5.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 CurlHttpRequest(),&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.Status() != 202) {&eol; if (typeof resp === 'object' && typeof resp.errors === 'object' && typeof resp.errors[0] === 'string') {&eol; throw resp.errors[0];&eol; }&eol; else {&eol; throw 'Unknown error.';&eol; }&eol; }&eol;&eol; if (resp.status != 'success') {&eol; throw 'Unknown error.';&eol; }&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[PagerDuty Webhook] Notification failed : ' + error);&eol; throw 'PagerDuty notification failed : ' + error;&eol;}|30s |0 |0 | | |Please refer to https://v2.developer.pagerduty.com/docs/send-an-event-events-api-v2 and https://www.zabbix.com/documentation/5.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 CurlHttpRequest(),&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.Status() + '\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.Status() != 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 CurlHttpRequest();&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.Status() != 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.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; result.tags.__message_ts = resp.ts;&eol; result.tags.__channel_id = resp.channel;&eol; result.tags.__channel_name = params.channel;&eol; result.tags.__message_link = getPermalink(resp.channel, resp.ts);&eol; }&eol; else if (isEventUpdate(params)) {&eol; fields.thread_ts = params.message_ts;&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),&eol; true&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol; if (req.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; }&eol; else if (isEventResolve(params)) {&eol; fields.channel = params.channel_id;&eol; fields.text = '';&eol; fields.ts = params.message_ts;&eol; fields.attachments = [&eol; createMessage(&eol; RESOLVE_COLOR,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.chatUpdate, JSON.stringify(fields)));&eol; if (req.Status() != 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.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; result.tags.__channel_name = params.channel;&eol; result.tags.__message_link = getPermalink(resp.channel, resp.ts);&eol;&eol; }&eol; else if (isEventUpdate(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),&eol; false&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.Status() != 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.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol; }&eol;}&eol;&eol;function createMessage(&eol; event_severity_color,&eol; event_date,&eol; event_time,&eol; problem_url,&eol; isShort,&eol; messageText&eol;) {&eol; var message = {&eol; fallback: params.alert_subject,&eol; title: params.alert_subject,&eol; color: event_severity_color,&eol; title_link: problem_url,&eol; pretext: messageText &pipe;&pipe; '',&eol;&eol; fields: [&eol; {&eol; title: 'Host',&eol; value: '{0} [{1}]'.format(params.host_name, params.host_conn),&eol; short: true&eol; },&eol; {&eol; title: 'Event time',&eol; value: '{0} {1}'.format(event_date, event_time),&eol; short: true&eol; }&eol; ],&eol; };&eol;&eol; if (params.event_source === '0') {&eol; message.fields.push(&eol; {&eol; title: 'Severity',&eol; value: params.event_severity,&eol; short: true&eol; },&eol; {&eol; title: 'Opdata',&eol; value: params.event_opdata,&eol; short: true&eol; }&eol; );&eol; }&eol;&eol; if (!isShort && params.event_source === '0') {&eol; message['actions'] = [&eol; {&eol; type: 'button',&eol; text: 'Open in Zabbix',&eol; url: problem_url&eol; }&eol; ];&eol;&eol; message.fields.push(&eol; {&eol; title: 'Event tags',&eol; value: params.event_tags.replace(/__.+?:(.+?,&pipe;.+)/g, '') &pipe;&pipe; 'None',&eol; short: true&eol; },&eol; {&eol; title: 'Trigger description',&eol; value: params.trigger_description,&eol; short: true&eol; }&eol; );&eol; }&eol;&eol; if (params.event_source !== '0' &pipe;&pipe; params.event_update_status === '1') {&eol; message.fields.push(&eol; {&eol; title: 'Details',&eol; value: params.alert_message,&eol; short: false&eol; }&eol; );&eol; }&eol;&eol; return message;&eol;}&eol;&eol;function validateParams(params) {&eol; if (typeof params.bot_token !== 'string' &pipe;&pipe; params.bot_token.trim() === '') {&eol; throw 'Field "bot_token" cannot be empty';&eol; }&eol;&eol; if (typeof params.channel !== 'string' &pipe;&pipe; params.channel.trim() === '') {&eol; throw 'Field "channel" cannot be empty';&eol; }&eol;&eol; if (isNaN(params.event_id)) {&eol; throw 'Field "event_id" is not a number';&eol; }&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; if (params.event_source !== '0') {&eol; params.event_nseverity = '0';&eol; params.event_severity = 'Not classified';&eol; params.event_update_status = '0';&eol; params.slack_mode = 'event';&eol; }&eol;&eol; if (params.event_source === '1' &pipe;&pipe; params.event_source === '2') {&eol; params.event_value = '1';&eol; }&eol;&eol; if (params.event_source === '1') {&eol; params.host_name = params.discovery_host_dns;&eol; params.host_ip = params.discovery_host_ip;&eol; }&eol;&eol; if (!~[0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity))) {&eol; throw 'Incorrect "event_nseverity" parameter given: ' + params.event_nseverity + '\nMust be 0-5.';&eol; }&eol;&eol; if (typeof params.event_severity !== 'string' &pipe;&pipe; params.event_severity.trim() === '') {&eol; throw 'Field "event_severity" cannot be empty';&eol; }&eol;&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value !== '0' && params.event_value !== '1') {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (typeof params.host_conn !== 'string' &pipe;&pipe; params.host_conn.trim() === '') {&eol; throw 'Field "host_conn" cannot be empty';&eol; }&eol;&eol; if (typeof params.host_name !== 'string' &pipe;&pipe; params.host_name.trim() === '') {&eol; throw 'Field "host_name" cannot be empty';&eol; }&eol;&eol; if (!~['true', 'false'].indexOf(params.slack_as_user.toLowerCase())) {&eol; throw 'Incorrect "slack_as_user" parameter given: ' + params.slack_as_user + '\nMust be "true" or "false".';&eol; }&eol;&eol; if (!~['alarm', 'event'].indexOf(params.slack_mode)) {&eol; throw 'Incorrect "slack_mode" parameter given: ' + params.slack_mode + '\nMust be "alarm" or "event".';&eol; }&eol;&eol; if (isNaN(params.trigger_id) && params.event_source === '0') {&eol; throw 'field "trigger_id" is not a number';&eol; }&eol;&eol; if (typeof params.zabbix_url !== 'string' &pipe;&pipe; params.zabbix_url.trim() === '') {&eol; throw 'Field "zabbix_url" cannot be empty';&eol; }&eol;&eol; if (!/^(http&pipe;https):\/\/.+/.test(params.zabbix_url)) {&eol; throw 'Field "zabbix_url" must contain a schema';&eol; }&eol;}&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; validateParams(params);&eol;&eol; var req = new CurlHttpRequest(),&eol; result = {tags: {}};&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.SetProxy(params.HTTPProxy);&eol; }&eol;&eol; req.AddHeader('Content-Type: application/json; charset=utf-8');&eol; req.AddHeader('Authorization: Bearer ' + params.bot_token);&eol;&eol; var slack_endpoint = 'https://slack.com/api/';&eol;&eol; var Slack = {&eol; postMessage: slack_endpoint + 'chat.postMessage',&eol; getPermalink: slack_endpoint + 'chat.getPermalink',&eol; chatUpdate: slack_endpoint + 'chat.update'&eol; };&eol;&eol; params.slack_mode = params.slack_mode.toLowerCase();&eol; params.slack_mode = params.slack_mode in SLACK_MODE_HANDLERS&eol; ? params.slack_mode&eol; : 'alarm';&eol;&eol; SLACK_MODE_HANDLERS[params.slack_mode](params);&eol;&eol; if (params.event_source === '0') {&eol; return JSON.stringify(result);&eol; }&eol; else {&eol; return 'OK';&eol; }&eol;}&eol;catch (error) {&eol; Zabbix.Log(4, '[ Slack Webhook ] Slack notification failed : ' + error);&eol; throw 'Slack notification failed : ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__message_link} |Open in Slack: {EVENT.TAGS.__channel_name} | |
+ROW |10 |4 |Discord | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', // Not classified.&eol; '#7499FF', // Information.&eol; '#FFC859', // Warning.&eol; '#FFA059', // Average.&eol; '#E97659', // High.&eol; '#E45959', // Disaster.&eol; '#009900' // Resolved.&eol;];&eol;&eol;function stringTruncate(str, len) {&eol; return str.length > len ? str.substring(0, len - 3) + '...' : str;&eol;}&eol;&eol;try {&eol; Zabbix.Log(4, '[ Discord Webhook ] Executed with params: ' + value);&eol;&eol; var params = JSON.parse(value);&eol;&eol; if (!params.discord_endpoint) {&eol; throw 'Cannot get discord_endpoint';&eol; }&eol; else {&eol; params.discord_endpoint = params.discord_endpoint.replace('/api/', '/api/v7/') + '?wait=True';&eol; }&eol;&eol; params.zabbix_url = (params.zabbix_url.endsWith('/'))&eol; ? params.zabbix_url.slice(0, -1) : params.zabbix_url;&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; // Set params to true for non trigger-based events.&eol; if (params.event_source !== '0') {&eol; params.use_default_message = 'true';&eol; params.event_nseverity = '0';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: "' + params.event_value + '".\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: "' + params.event_update_status + '".\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value == 0) {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; if (!SEVERITY_COLORS[params.event_nseverity]) {&eol; throw 'Incorrect "event_nseverity" parameter given: ' + params.event_nseverity + '\nMust be 0-5.';&eol; }&eol;&eol; var color = parseInt(SEVERITY_COLORS[params.event_nseverity].replace('#', ''), 16),&eol; fields = [],&eol; body = {&eol; embeds: [&eol; {&eol; color: color &pipe;&pipe; 0,&eol; url: (params.event_source === '0')&eol; ? params.zabbix_url + '/tr_events.php?triggerid=' + params.trigger_id +&eol; '&eventid=' + params.event_id&eol; : params.zabbix_url&eol; }&eol; ]&eol; };&eol;&eol; // Default message from {ALERT.MESSAGE}.&eol; if (params.use_default_message.toLowerCase() == 'true') {&eol; body.embeds[0].title = stringTruncate(params.alert_subject, 256);&eol; body.embeds[0].description = stringTruncate(params.alert_message, 2048);&eol; }&eol; else {&eol; fields.push(&eol; {&eol; name: 'Host',&eol; value: params.host_name + ' [' + params.host_ip + ']'&eol; }&eol; );&eol;&eol; // Resolved message.&eol; if (params.event_value == 0 && params.event_update_status == 0) {&eol; body.embeds[0].title = stringTruncate('OK: ' + params.event_name, 256);&eol; fields.push(&eol; {&eol; name: 'Recovery time',&eol; value: params.event_recovery_time + ' ' + params.event_recovery_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; // Problem message.&eol; else if (params.event_value == 1 && params.event_update_status == 0) {&eol; body.embeds[0].title = stringTruncate('PROBLEM: ' + params.event_name, 256);&eol; fields.push(&eol; {&eol; name: 'Event time',&eol; value: params.event_time + ' ' + params.event_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; // Update message.&eol; else if (params.event_update_status == 1) {&eol; body.embeds[0].title = stringTruncate('UPDATE: ' + params.event_name, 256);&eol; body.embeds[0].description = params.event_update_user + ' ' + params.event_update_action + '.';&eol;&eol; if (params.event_update_message) {&eol; body.embeds[0].description += ' Comment:\n>>> ' + params.event_update_message;&eol; }&eol;&eol; body.embeds[0].description = stringTruncate(body.embeds[0].description, 2048);&eol;&eol; fields.push(&eol; {&eol; name: 'Event update time',&eol; value: params.event_update_time + ' ' + params.event_update_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; fields.push(&eol; {&eol; name: 'Severity',&eol; value: params.event_severity,&eol; inline: 'True'&eol; }&eol; );&eol;&eol; if (params.event_opdata) {&eol; fields.push(&eol; {&eol; name: 'Operational data',&eol; value: stringTruncate(params.event_opdata, 1024),&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; if (params.event_value == 1 && params.event_update_status == 0 && params.trigger_description) {&eol; fields.push(&eol; {&eol; name: 'Trigger description',&eol; value: stringTruncate(params.trigger_description, 1024)&eol; }&eol; );&eol; }&eol;&eol; body.embeds[0].footer = {&eol; text: 'Event ID: ' + params.event_id&eol; };&eol;&eol; if (params.event_tags) {&eol; body.embeds[0].footer.text += '\nEvent tags: ' + params.event_tags;&eol; }&eol; body.embeds[0].footer.text = stringTruncate(body.embeds[0].footer.text, 2048);&eol; }&eol;&eol; if (fields.length > 0) {&eol; body.embeds[0].fields = fields;&eol; }&eol;&eol; var req = new CurlHttpRequest();&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 CurlHttpRequest();&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.Status() + '\n' + response&eol; );&eol;&eol; if (request.Status() !== 201) {&eol; throw 'Request failed with status code ' + request.Status() +&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/&eol; |
+ROW |12 |4 |Jira | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Jira = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Jira.params = params;&eol; if (typeof Jira.params.url === 'string') {&eol; if (!Jira.params.url.endsWith('/')) {&eol; Jira.params.url += '/';&eol; }&eol;&eol; Jira.params.url += 'rest/api/latest/';&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; Jira.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setTags: function(event_tags_json) {&eol; if (typeof event_tags_json !== 'undefined' && event_tags_json !== ''&eol; && event_tags_json !== '{EVENT.TAGSJSON}') {&eol; try {&eol; var tags = JSON.parse(event_tags_json),&eol; label;&eol;&eol; Jira.labels = [];&eol;&eol; tags.forEach(function (tag) {&eol; if (typeof tag.tag !== 'undefined' && typeof tag.value !== 'undefined'&eol; && !tag.tag.startsWith('__zbx')) {&eol; label = (tag.tag + (tag.value ? (':' + tag.value) : '')).replace(/\s/g, '_');&eol; if (label.length < 256) {&eol; Jira.labels.push(label);&eol; }&eol; }&eol; });&eol; }&eol; catch (error) {&eol; // Code is not missing here.&eol; }&eol; }&eol; },&eol;&eol; escapeMarkup: function (str) {&eol; var length = str.length,&eol; result = '',&eol; markup = ['{', '&pipe;', '}', '~', '_', '\\', '[', ']', '^', '<', '>', '?', '!', '#', '+', '*', '&'];&eol;&eol; for (var i = 0; i < length; i++) {&eol; var char = str[i];&eol;&eol; result += (markup.indexOf(char) !== -1) ? ('&#' + str[i].charCodeAt() + ';') : char;&eol; }&eol;&eol; return result;&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Jira.getSchema(),&eol; path = ['projects', 0, 'issuetypes', 0, 'fields'],&eol; field;&eol;&eol; while ((field = path.shift()) !== undefined) {&eol; schema = schema[field];&eol; if (typeof schema === 'undefined') {&eol; schema = null;&eol; break;&eol; }&eol; }&eol;&eol; if (schema) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; if (typeof schema[field] === 'object' && typeof schema[field].schema === 'object') {&eol; switch (schema[field].schema.type) {&eol; case 'number':&eol; data.fields[field] = parseInt(fields[field]);&eol; break;&eol;&eol; case 'datetime':&eol; if (fields[field].match(/\d+[.-]\d+[.-]\d+T\d+:\d+:\d+/) !== null) {&eol; data.fields[field] = fields[field].replace(/\./g, '-');&eol; }&eol; break;&eol;&eol; case 'option':&eol; data.fields[field] = {value: fields[field]};&eol; break;&eol;&eol; case 'array':&eol; if (schema[field].schema.items === 'option') {&eol; data.fields[field] = [{value: fields[field]}];&eol; }&eol; else {&eol; data.fields[field] = [fields[field]];&eol; }&eol; break;&eol;&eol; default:&eol; data.fields[field] = fields[field];&eol; }&eol; }&eol; });&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Jira Webhook ] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'user', 'password', 'project_key', 'issue_type'].forEach(function (field) {&eol; if (typeof Jira.params !== 'object' &pipe;&pipe; typeof Jira.params[field] === 'undefined'&eol; &pipe;&pipe; Jira.params[field] === '' ) {&eol; throw 'Required Jira param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Jira.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Basic ' + btoa(Jira.params.user + ':' + Jira.params.password));&eol;&eol; if (typeof Jira.HTTPProxy !== 'undefined' && Jira.HTTPProxy !== '') {&eol; request.SetProxy(Jira.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ Jira Webhook ] Sending request: ' + url + ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ Jira Webhook ] Received response with status code ' + request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Jira Webhook ] Failed to parse response received from Jira');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getSchema: function() {&eol; var result = Jira.request('get', 'issue/createmeta?expand=projects.issuetypes.fields&projectKeys=' +&eol; encodeURIComponent(Jira.params.project_key) + '&issuetypeNames=' +&eol; encodeURIComponent(Jira.params.issue_type));&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(summary, description, fields) {&eol; var data = {&eol; fields: {&eol; project: {&eol; key: Jira.params.project_key&eol; },&eol; issuetype: {&eol; name: Jira.params.issue_type&eol; },&eol; summary: summary,&eol; description: description&eol; }&eol; };&eol;&eol; if (Jira.labels && Jira.labels.length > 0) {&eol; data.fields.labels = Jira.labels;&eol; }&eol; var result = Jira.request('post', 'issue', Jira.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.key === 'undefined') {&eol; throw 'Cannot create Jira issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.key;&eol; },&eol;&eol; updateIssue: function(summary, fields, update) {&eol; var data = {fields: {}};&eol;&eol; if (summary) {&eol; data.fields.summary = summary;&eol; }&eol;&eol; Jira.request('put', 'issue/' + encodeURIComponent(Jira.params.issue_key), Jira.addCustomFields(data, fields));&eol; Jira.commentIssue(update);&eol; },&eol;&eol; commentIssue: function(update) {&eol; var data = {};&eol;&eol; if (typeof update === 'string') {&eol; data.body = update;&eol; Jira.request('post', 'issue/' + encodeURIComponent(Jira.params.issue_key) + '/comment', data);&eol; }&eol; else if (update.status === '1') {&eol; data.body = update.user + ' ' + update.action + '.';&eol;&eol; if (update.message) {&eol; data.body += '\nMessage: {quote}' + Jira.escapeMarkup(update.message) + '{quote}';&eol; }&eol;&eol; Jira.request('post', 'issue/' + encodeURIComponent(Jira.params.issue_key) + '/comment', data);&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; jira = {},&eol; update = {},&eol; result = {tags: {}},&eol; required_params = ['alert_subject', 'summary', 'event_recovery_value', 'event_source', 'event_value'];&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('jira_')) {&eol; jira[key.substring(5)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; fields[key] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_recovery_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; Jira.setParams(jira);&eol; Jira.setProxy(params.HTTPProxy);&eol; Jira.setTags(params.event_tags_json);&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_recovery_value !== '0') {&eol; Jira.createIssue(params.alert_subject, params.alert_message);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && update.status === '0' && !jira.issue_key.startsWith(jira.project_key)) {&eol; var key = Jira.createIssue(params.alert_subject,&eol; (Object.keys(fields).length ? params.trigger_description : params.alert_message), fields);&eol;&eol;&eol; result.tags.__zbx_jira_issuekey = key;&eol; result.tags.__zbx_jira_issuelink = params.jira_url +&eol; (params.jira_url.endsWith('/') ? '' : '/') + 'browse/' + key;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; if (!jira.issue_key.startsWith(jira.project_key)) {&eol; throw 'Incorrect Issue key given: ' + jira.issue_key;&eol; }&eol; Jira.updateIssue(params.alert_subject, fields,&eol; ((params.event_value === '0' && !Object.keys(fields).length)&eol; ? params.alert_message : update));&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Jira Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_jira_issuelink} |Jira: {EVENT.TAGS.__zbx_jira_issuekey} | |
+ROW |13 |4 |Jira with CustomFields | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Jira = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Jira.params = params;&eol; if (typeof Jira.params.url === 'string') {&eol; if (!Jira.params.url.endsWith('/')) {&eol; Jira.params.url += '/';&eol; }&eol;&eol; Jira.params.url += 'rest/api/latest/';&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; Jira.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setTags: function(event_tags_json) {&eol; if (typeof event_tags_json !== 'undefined' && event_tags_json !== ''&eol; && event_tags_json !== '{EVENT.TAGSJSON}') {&eol; try {&eol; var tags = JSON.parse(event_tags_json),&eol; label;&eol;&eol; Jira.labels = [];&eol;&eol; tags.forEach(function (tag) {&eol; if (typeof tag.tag !== 'undefined' && typeof tag.value !== 'undefined' ) {&eol; label = (tag.tag + (tag.value ? (':' + tag.value) : '')).replace(/\s/g, '_');&eol; if (label.length < 256) {&eol; Jira.labels.push(label);&eol; }&eol; }&eol; });&eol; }&eol; catch (error) {&eol; // Code is not missing here.&eol; }&eol; }&eol; },&eol;&eol; escapeMarkup: function (str) {&eol; var length = str.length,&eol; result = '',&eol; markup = ['{', '&pipe;', '}', '~', '_', '\\', '[', ']', '^', '<', '>', '?', '!', '#', '+', '*', '&'];&eol;&eol; for (var i = 0; i < length; i++) {&eol; var char = str[i];&eol;&eol; result += (markup.indexOf(char) !== -1) ? ('&#' + str[i].charCodeAt() + ';') : char;&eol; }&eol;&eol; return result;&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Jira.getSchema(),&eol; path = ['projects', 0, 'issuetypes', 0, 'fields'],&eol; field;&eol;&eol; while ((field = path.shift()) !== undefined) {&eol; schema = schema[field];&eol; if (typeof schema === 'undefined') {&eol; schema = null;&eol; break;&eol; }&eol; }&eol;&eol; if (schema) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; data.fields[field] = fields[field];&eol;&eol; if (typeof schema[field] === 'object' && typeof schema[field].schema === 'object'&eol; && (schema[field].schema.type === 'number' &pipe;&pipe; schema[field].schema.type === 'datetime')) {&eol; switch (schema[field].schema.type) {&eol; case 'number':&eol; data.fields[field] = parseInt(fields[field]);&eol; break;&eol;&eol; case 'datetime':&eol; if (fields[field].match(/\d+[.-]\d+[.-]\d+T\d+:\d+:\d+/) !== null) {&eol; data.fields[field] = fields[field].replace(/\./g, '-');&eol; }&eol; else {&eol; delete data.fields[field];&eol; }&eol; break;&eol; }&eol; }&eol; });&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Jira Webhook ] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'user', 'password', 'project_key', 'issue_type'].forEach(function (field) {&eol; if (typeof Jira.params !== 'object' &pipe;&pipe; typeof Jira.params[field] === 'undefined'&eol; &pipe;&pipe; Jira.params[field] === '' ) {&eol; throw 'Required Jira param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Jira.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Basic ' + btoa(Jira.params.user + ':' + Jira.params.password));&eol;&eol; if (typeof Jira.HTTPProxy !== 'undefined' && Jira.HTTPProxy !== '') {&eol; request.SetProxy(Jira.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ Jira Webhook ] Sending request: ' + url + ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ Jira Webhook ] Received response with status code ' + request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Jira Webhook ] Failed to parse response received from Jira');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getSchema: function() {&eol; var result = Jira.request('get', 'issue/createmeta?expand=projects.issuetypes.fields&projectKeys=' +&eol; Jira.params.project_key + '&issuetypeNames=' + Jira.params.issue_type);&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(summary, description, fields) {&eol; var data = {&eol; fields: {&eol; project: {&eol; key: Jira.params.project_key&eol; },&eol; issuetype: {&eol; name: Jira.params.issue_type&eol; },&eol; summary: summary,&eol; description: description&eol; }&eol; };&eol;&eol; if (Jira.labels && Jira.labels.length > 0) {&eol; data.fields.labels = Jira.labels;&eol; }&eol; var result = Jira.request('post', 'issue', Jira.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.key === 'undefined') {&eol; throw 'Cannot create Jira issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.key;&eol; },&eol;&eol; updateIssue: function(summary, fields, update) {&eol; var data = {fields: {}};&eol;&eol; if (summary) {&eol; data.fields.summary = summary;&eol; }&eol;&eol; Jira.request('put', 'issue/' + Jira.params.issue_key, Jira.addCustomFields(data, fields));&eol; Jira.commentIssue(update);&eol; },&eol;&eol; commentIssue: function(update) {&eol; var data = {};&eol;&eol; if (typeof update === 'string') {&eol; data.body = update;&eol; Jira.request('post', 'issue/' + Jira.params.issue_key + '/comment', data);&eol; }&eol; else if (update.status === '1') {&eol; data.body = update.user + ' ' + update.action + '.';&eol;&eol; if (update.message) {&eol; data.body += '\nMessage: {quote}' + Jira.escapeMarkup(update.message) + '{quote}';&eol; }&eol;&eol; Jira.request('post', 'issue/' + Jira.params.issue_key + '/comment', data);&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; jira = {},&eol; update = {},&eol; result = {tags: {}},&eol; required_params = ['alert_subject', 'summary', 'event_recovery_value', 'event_source', 'event_value'];&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('jira_')) {&eol; jira[key.substring(5)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; fields[key] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_recovery_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; Jira.setParams(jira);&eol; Jira.setProxy(params.HTTPProxy);&eol; Jira.setTags(params.event_tags_json);&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_recovery_value !== '0') {&eol; Jira.createIssue(params.alert_subject, params.alert_message);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && update.status === '0' && !jira.issue_key.startsWith(jira.project_key)) {&eol; var key = Jira.createIssue(params.alert_subject,&eol; (Object.keys(fields).length ? params.trigger_description : params.alert_message), fields);&eol;&eol;&eol; result.tags.__zbx_jira_issuekey = key;&eol; result.tags.__zbx_jira_issuelink = params.jira_url +&eol; (params.jira_url.endsWith('/') ? '' : '/') + 'browse/' + key;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; if (!jira.issue_key.startsWith(jira.project_key)) {&eol; throw 'Incorrect Issue key given: ' + jira.issue_key;&eol; }&eol; Jira.updateIssue(params.alert_subject, fields,&eol; ((params.event_value === '0' && !Object.keys(fields).length)&eol; ? params.alert_message : update));&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Jira Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_jira_issuelink} |Jira: {EVENT.TAGS.__zbx_jira_issuekey} | |
+ROW |14 |4 |MS Teams | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', // Not classified.&eol; '#7499FF', // Information.&eol; '#FFC859', // Warning.&eol; '#FFA059', // Average.&eol; '#E97659', // High.&eol; '#E45959', // Disaster.&eol; '#009900', // Resolved.&eol; '#000000' // Default.&eol;];&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; if (typeof params.teams_endpoint !== 'string' &pipe;&pipe; params.teams_endpoint.trim() === '') {&eol; throw 'Cannot get teams_endpoint';&eol; }&eol; else if (!params.teams_endpoint.startsWith('http')) {&eol; throw 'Invalid MS Teams webhook URL: ' + params.teams_endpoint;&eol; }&eol;&eol; params.zabbix_url = (params.zabbix_url.endsWith('/'))&eol; ? params.zabbix_url.slice(0, -1) : params.zabbix_url;&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; // Set "use_default_message" to true for non trigger-based events.&eol; if (params.event_source !== '0') {&eol; params.use_default_message = 'true';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: "' + params.event_value + '".\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: "' + params.event_update_status + '".\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value == 0) {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; if (!SEVERITY_COLORS[params.event_nseverity]) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; var request = new CurlHttpRequest(),&eol; facts = [],&eol; body = {&eol; themeColor: SEVERITY_COLORS[params.event_nseverity].replace('#', ''),&eol; summary: 'Zabbix',&eol; sections: [&eol; {&eol; markdown: 'false',&eol; activityTitle: params.alert_subject,&eol; activitySubtitle: 'On ' + params.host_name + ' [' + params.host_ip + ']',&eol; text: (params.use_default_message.toLowerCase() == 'true')&eol; ? params.alert_message&eol; : params.trigger_description&eol; }&eol; ],&eol; potentialAction: [&eol; {&eol; '@type': 'OpenUri',&eol; name: (params.event_source === '0')&eol; ? 'Event Info'&eol; : 'Zabbix Home',&eol; targets: [&eol; {&eol; os: 'default',&eol; uri: (params.event_source === '0')&eol; ? params.zabbix_url + '/tr_events.php?triggerid=' +&eol; params.trigger_id + '&eventid=' + params.event_id&eol; : params.zabbix_url&eol; }&eol; ]&eol; }&eol; ]&eol; };&eol;&eol; if (params.use_default_message.toLowerCase() !== 'true') {&eol; // Problem message.&eol; if (params.event_value === '1' && params.event_update_status === '0') {&eol; facts.push({&eol; name: 'Event time',&eol; value: params.event_time + ' ' + params.event_date&eol; });&eol; }&eol; // Update message.&eol; else if (params.event_update_status === '1') {&eol; body.sections[0].text = params.event_update_user + ' ' + params.event_update_action + '.';&eol;&eol; if (params.event_update_message) {&eol; body.sections[0].text += '<br>Message:<br>' + params.event_update_message;&eol; }&eol;&eol; facts.push({&eol; name: 'Event update time',&eol; value: params.event_update_time + ' ' + params.event_update_date&eol; });&eol; }&eol; // Resolved message.&eol; else {&eol; facts.push({&eol; name: 'Recovery time',&eol; value: params.event_recovery_time + ' ' + params.event_recovery_date&eol; });&eol; }&eol;&eol; if (params.event_severity && params.event_severity !== '{EVENT.SEVERITY}') {&eol; facts.push({&eol; name: 'Severity',&eol; value: params.event_severity&eol; });&eol; }&eol;&eol;&eol; if (params.event_opdata && params.event_opdata !== '{EVENT.OPDATA}') {&eol; facts.push({&eol; name: 'Operational data',&eol; value: params.event_opdata&eol; });&eol; }&eol;&eol; if (params.event_tags && params.event_tags !== '{EVENT.TAGS}') {&eol; facts.push({&eol; name: 'Event tags',&eol; value: params.event_tags&eol; });&eol; }&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('fact_') && params[key] !== '') {&eol; facts.push({&eol; name: key.substring(5),&eol; value: params[key]&eol; });&eol; }&eol; else if (key.startsWith('openUri_') && params[key] !== '' && !params[key].startsWith('{')) {&eol; body.potentialAction.push({&eol; '@type': 'OpenUri',&eol; name: key.substring(8),&eol; targets: [&eol; {&eol; os: 'default',&eol; uri: params[key]&eol; }&eol; ]&eol; });&eol; }&eol; });&eol; body.sections[0].facts = facts;&eol; }&eol;&eol; body.sections[0].text = body.sections[0].text.replace(/(?:\r\n&pipe;\r&pipe;\n)/g, '<br>');&eol;&eol; request.AddHeader('Content-Type: application/json');&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy !== '') {&eol; request.SetProxy(params.HTTPProxy);&eol; }&eol;&eol; Zabbix.Log(4, '[ MS Teams Webhook ] JSON: ' + JSON.stringify(body));&eol;&eol; var response = request.Post(params.teams_endpoint, JSON.stringify(body));&eol;&eol; Zabbix.Log(4, '[ MS Teams Webhook ] Response: ' + response);&eol;&eol; if (response === '1') {&eol; return 'OK';&eol; }&eol; else {&eol; Zabbix.Log(4, '[ MS Teams Webhook ] FAILED with response: ' + response);&eol; throw response;&eol; }&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ MS Teams Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |0 |0 | | | |
+ROW |15 |4 |Redmine | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Redmine = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Redmine.params = params;&eol; if (typeof Redmine.params.url === 'string') {&eol; if (!Redmine.params.url.endsWith('/')) {&eol; Redmine.params.url += '/';&eol; }&eol; }&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Redmine.getSchema();&eol;&eol; if (schema) {&eol; data.issue.custom_fields = [];&eol;&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; for (var idx in schema.custom_fields) {&eol; if (schema.custom_fields[idx].id != field) {&eol; continue;&eol; }&eol;&eol; var field_value;&eol;&eol; switch (schema.custom_fields[idx].field_format) {&eol; case 'string':&eol; field_value = fields[field];&eol; break;&eol;&eol; case 'int':&eol; field_value = parseInt(fields[field]);&eol; break;&eol;&eol; case 'float':&eol; field_value = parseFloat(fields[field]);&eol; break;&eol;&eol; case 'date':&eol; if (fields[field].match(/^\d{4}[.-]\d{2}[.-]\d{2}$/)) {&eol; field_value = fields[field].replace(/\./g, '-');&eol; }&eol; break;&eol; }&eol;&eol; if (field_value !== undefined) {&eol; data.issue.custom_fields.push({id: field, value: field_value});&eol; }&eol; }&eol; });&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Redmine Webhook ] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'access_key'].forEach(function (field) {&eol; if (typeof Redmine.params !== 'object' &pipe;&pipe; typeof Redmine.params[field] === 'undefined'&eol; &pipe;&pipe; Redmine.params[field] === '' ) {&eol; throw 'Required param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Redmine.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; if (typeof Redmine.HTTPProxy === 'string' && Redmine.HTTPProxy.trim() !== '') {&eol; request.SetProxy(Redmine.HTTPProxy);&eol; }&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('X-Redmine-API-Key: ' + Redmine.params.access_key);&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ Redmine Webhook ] Sending request: ' +&eol; url + ((typeof data === 'string') ? (' ' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ Redmine Webhook ] Received response with status code ' + request.Status() + ': ' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Redmine Webhook ] Failed to parse response received from Redmine');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getProjectID: function(name) {&eol; var result = Redmine.request('get', 'projects.json'),&eol; project_id;&eol;&eol; if (result.response) {&eol; var projects = result.response.projects &pipe;&pipe; [];&eol;&eol; for (var i in projects) {&eol; if (projects[i].name === name) {&eol; project_id = projects[i].id;&eol; break;&eol; }&eol; }&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Redmine Webhook ] Failed to retrieve project data.');&eol; }&eol;&eol; if (typeof project_id === 'undefined') {&eol; throw 'Cannot find project with name: ' + name;&eol; }&eol;&eol; return project_id;&eol; },&eol;&eol; getSchema: function() {&eol; var result = Redmine.request('get', 'custom_fields.json');&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(subject, description, priority, fields) {&eol; var project_id = /^\d+$/.test(Redmine.params.project)&eol; ? Redmine.params.project&eol; : Redmine.getProjectID(Redmine.params.project),&eol; data = {&eol; issue: {&eol; project_id: project_id,&eol; tracker_id: Redmine.params.tracker_id,&eol; subject: subject,&eol; description: description&eol; }&eol; },&eol; result;&eol;&eol; if (priority) {&eol; data.issue.priority_id = priority;&eol; }&eol;&eol; result = Redmine.request('post', 'issues.json', Redmine.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object'&eol; &pipe;&pipe; typeof result.response.issue.id === 'undefined'&eol; &pipe;&pipe; result.status != 201) {&eol; throw 'Cannot create Redmine issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.issue.id;&eol; },&eol;&eol; updateIssue: function(note, fields) {&eol; var data = {&eol; issue: {&eol; notes: note &pipe;&pipe; ''&eol; }&eol; };&eol;&eol; Redmine.request('put', 'issues/' + Redmine.params.issue_key + '.json', Redmine.addCustomFields(data, fields));&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; params_redmine = {},&eol; params_fields = {},&eol; params_update = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject', 'tracker_id', 'project',&eol; 'event_source', 'event_value', 'event_update_status'&eol; ],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: null, color: '#000000'}&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('redmine_')) {&eol; params_redmine[key.substring(8)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; params_fields[key.substring(12)] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; params_update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter "' + key + '" cannot be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; if (params.event_source === '0'&eol; && ((params.event_value === '1' && params.event_update_status === '1')&eol; &pipe;&pipe; (params.event_value === '0'&eol; && (params.event_update_status === '0' &pipe;&pipe; params.event_update_status === '1')))&eol; && (isNaN(parseInt(params.redmine_issue_key)) &pipe;&pipe; parseInt(params.redmine_issue_key) < 1 )) {&eol; throw 'Incorrect "redmine_issue_key" parameter given: ' + params.redmine_issue_key +&eol; '\nMust be positive integer.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['severity_' + severities[params.event_nseverity].name];&eol; priority = priority && priority.trim() &pipe;&pipe; severities[7].name;&eol;&eol; Redmine.setParams(params_redmine);&eol; Redmine.HTTPProxy = params.HTTPProxy;&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0'&eol; && params.event_value !== '0') {&eol; Redmine.createIssue(params.alert_subject, params.alert_message, priority);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && params_update.status === '0') {&eol; var issue_id = Redmine.createIssue(params.alert_subject,&eol; params.alert_subject + '\n' + params.alert_message + '\n' +&eol; params.zabbix_url + (params.zabbix_url.endsWith('/') ? '' : '/') +&eol; 'tr_events.php?triggerid=' + params.trigger_id + '&eventid=' + params.event_id + '\n',&eol; priority,&eol; params_fields);&eol;&eol; result.tags.__zbx_redmine_issue_id = issue_id;&eol; result.tags.__zbx_redmine_issuelink = params.redmine_url +&eol; (params.redmine_url.endsWith('/') ? '' : '/') + 'issues/' + issue_id;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; Redmine.updateIssue(params.alert_subject + '\n' + params.alert_message, params_fields);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Redmine Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_redmine_issuelink} |Redmine: issue #{EVENT.TAGS.__zbx_redmine_issue_id} | |
+ROW |16 |4 |Telegram | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Telegram = {&eol; token: null,&eol; to: null,&eol; message: null,&eol; proxy: null,&eol; parse_mode: null,&eol;&eol; sendMessage: function() {&eol; var params = {&eol; chat_id: Telegram.to,&eol; text: Telegram.message,&eol; disable_web_page_preview: true,&eol; disable_notification: false&eol; },&eol; data,&eol; response,&eol; request = new CurlHttpRequest(),&eol; url = 'https://api.telegram.org/bot' + Telegram.token + '/sendMessage';&eol;&eol; if (Telegram.parse_mode !== null) {&eol; params['parse_mode'] = Telegram.parse_mode;&eol; }&eol;&eol; if (Telegram.proxy) {&eol; request.SetProxy(Telegram.proxy);&eol; }&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; data = JSON.stringify(params);&eol;&eol; // Remove replace() function if you want to see the exposed token in the log file.&eol; Zabbix.Log(4, '[Telegram Webhook] URL: ' + url.replace(Telegram.token, '<TOKEN>'));&eol; Zabbix.Log(4, '[Telegram Webhook] params: ' + data);&eol; response = request.Post(url, data);&eol; Zabbix.Log(4, '[Telegram Webhook] HTTP code: ' + request.Status());&eol;&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; response = null;&eol; }&eol;&eol; if (request.Status() !== 200 &pipe;&pipe; typeof response.ok !== 'boolean' &pipe;&pipe; response.ok !== true) {&eol; if (typeof response.description === 'string') {&eol; throw response.description;&eol; }&eol; else {&eol; throw 'Unknown error. Check debug log for more information.'&eol; }&eol; }&eol; }&eol;}&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; if (typeof params.Token === 'undefined') {&eol; throw 'Incorrect value is given for parameter "Token": parameter is missing';&eol; }&eol;&eol; Telegram.token = params.Token;&eol;&eol; if (params.HTTPProxy) {&eol; Telegram.proxy = params.HTTPProxy;&eol; } &eol;&eol; if (['Markdown', 'HTML', 'MarkdownV2'].indexOf(params.ParseMode) !== -1) {&eol; Telegram.parse_mode = params.ParseMode;&eol; }&eol;&eol; Telegram.to = params.To;&eol; Telegram.message = params.Subject + '\n' + params.Message;&eol; Telegram.sendMessage();&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.Log(4, '[Telegram Webhook] notification failed: ' + error);&eol; throw 'Sending failed: ' + error + '.';&eol;}|10s |0 |0 | | |https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/telegram&eol;&eol;1. Register bot: send "/newbot" to @BotFather and follow instructions&eol;2. Copy and paste the obtained token into the "Token" field above&eol;3. If you want to send personal notifications, you need to get chat id of the user you want to send messages to:&eol; 3.1. Send "/getid" to "@myidbot" in Telegram messenger&eol; 3.2. Copy returned chat id and save it in the "Telegram Webhook" media for the user&eol; 3.3. Ask the user to send "/start" to your bot (Telegram bot won't send anything to the user without it)&eol;4. If you want to send group notifications, you need to get group id of the group you want to send messages to:&eol; 4.1. Add "@myidbot" to your group&eol; 4.2. Send "/getgroupid@myidbot" in your group&eol; 4.3. Copy returned group id save it in the "Telegram Webhook" media for the user you created for group notifications&eol; 4.4. Send "/start@your_bot_name_here" in your group (Telegram bot won't send anything to the group without it)|
+ROW |17 |4 |Zendesk | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Zendesk = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Zendesk.params = params;&eol; if (typeof Zendesk.params.url === 'string') {&eol; if (!Zendesk.params.url.endsWith('/')) {&eol; Zendesk.params.url += '/';&eol; }&eol; Zendesk.params.url += 'api/v2/';&eol; }&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Zendesk.getSchema(),&eol; arr = [],&eol; i,&eol; n;&eol;&eol; if (schema) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; for (i = 0, n = schema.ticket_fields.length; i < n; i++) {&eol; if (schema.ticket_fields[i].id == field&eol; && ['text', 'integer', 'date'].indexOf(schema.ticket_fields[i].type) !== -1){&eol;&eol; switch (schema.ticket_fields[i].type) {&eol; case 'integer':&eol; fields[field] = parseInt(fields[field]);&eol; break;&eol; case 'date':&eol; if (fields[field].match(/^\d{4}[.-]\d{2}[.-]\d{2}$/) !== null) {&eol; fields[field] = fields[field].replace(/\./g, '-');&eol; }&eol; else {&eol; fields[field] = '';&eol; }&eol; break;&eol; }&eol;&eol; arr.push({id: field, value: fields[field]});&eol; break;&eol; }&eol; }&eol; });&eol;&eol; if (arr.length) {&eol; data.ticket['custom_fields'] = arr;&eol; }&eol; }&eol; else {&eol; Zabbix.Log(4, '[Zendesk Webhook] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'token', 'type'].forEach(function (field) {&eol; if (typeof Zendesk.params !== 'object' &pipe;&pipe; typeof Zendesk.params[field] === 'undefined') {&eol; throw 'Required Zendesk param is not set: ' + field + '\n' + Zendesk.params[field];&eol; }&eol; });&eol;&eol; var response,&eol; url = Zendesk.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; if (typeof Zendesk.HTTPProxy === 'string' && Zendesk.HTTPProxy.trim() !== '') {&eol; request.SetProxy(Zendesk.HTTPProxy);&eol; }&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Basic ' + btoa(Zendesk.params.token));&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[Zendesk Webhook] Sending request: ' + url + ((typeof data === 'string') ? (' ' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[Zendesk Webhook] Received response with status code ' + request.Status() + '. ' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[Zendesk Webhook] Failed to parse response received from Zendesk.');&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.error !== 'undefined'&eol; && Object.keys(response.error).length > 0) {&eol; message += ': ' + JSON.stringify(response.error);&eol; }&eol; else if (response !== null && typeof response.description !== 'undefined'&eol; && Object.keys(response.description).length > 0) {&eol; message += ': ' + JSON.stringify(response.description);&eol; }&eol; else {&eol; message += '. ' + response;&eol; }&eol; throw message + '. Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getSchema: function() {&eol; var result = Zendesk.request('get', 'ticket_fields.json');&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(data, fields) {&eol; var result = Zendesk.request('post', 'tickets.json', Zendesk.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.ticket.id === 'undefined'&eol; &pipe;&pipe; result.status != 201) {&eol; throw 'Cannot create Zendesk issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.ticket.id;&eol; },&eol;&eol; updateIssue: function(data, fields) {&eol; Zendesk.request('put', 'tickets/' + Zendesk.params.issue_key + '.json', Zendesk.addCustomFields(data, fields));&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; zendesk = {},&eol; update = {},&eol; data = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject',&eol; 'alert_message',&eol; 'event_id',&eol; 'event_source',&eol; 'event_value',&eol; 'event_update_status'&eol; ],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: 'default', color: '#000000'}&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('zendesk_')) {&eol; zendesk[key.substring(8)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; fields[key.substring(12)] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter ' + key + ' cannot be empty.';&eol; }&eol; });&eol;&eol; // Possible values: question, incident, problems, task&eol; if (['question', 'incident', 'problem', 'task'].indexOf(params.zendesk_type) === -1) {&eol; throw 'Incorrect "zendesk_type" parameter given: ' + params.zendesk_type +&eol; '\nMust be one of question, incident, problem, task.';&eol; }&eol;&eol; // Possible values: 0 - Trigger, 1 - Discovery, 2 - Autoregistration, 3 - Internal.&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; // Possible values: 1 for problem, 0 for recovering&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; // Possible values: 0 - Webhook was called because of problem/recovery event, 1 - Update operation.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; // Zendesk_issue_key must be a positive integer if an update action is being performed.&eol; if (params.event_source === '0' && ((params.event_value === '1' && params.event_update_status === '1')&eol; &pipe;&pipe; (params.event_value === '0' && (params.event_update_status === '0' &pipe;&pipe; params.event_update_status === '1')))&eol; && (isNaN(parseInt(params.zendesk_issue_key)) &pipe;&pipe; parseInt(params.zendesk_issue_key) < 1 )) {&eol; throw 'Incorrect "zendesk_issue_key" parameter given: ' + params.zendesk_issue_key +&eol; '\nMust be positive integer.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['severity_' + severities[params.event_nseverity].name] &pipe;&pipe; severities[7].name;&eol;&eol; Zendesk.setParams(zendesk);&eol; Zendesk.HTTPProxy = params.HTTPProxy;&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_value !== '0') {&eol; data = {&eol; ticket: {&eol; external_id: params.event_id,&eol; type: Zendesk.params.type,&eol; status: 'new',&eol; subject: params.alert_subject,&eol; comment: {&eol; body: params.alert_message,&eol; public: 'false'&eol; },&eol; priority: priority,&eol; tags: params.event_tags&eol; }&eol; };&eol;&eol; Zendesk.createIssue(data, fields);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && update.status === '0') {&eol; data = {&eol; ticket: {&eol; external_id: params.event_id,&eol; type: Zendesk.params.type,&eol; status: 'new',&eol; subject: params.alert_subject,&eol; comment: {&eol; body: params.zbxurl + (params.zbxurl.endsWith('/') ? '' : '/') + 'tr_events.php?triggerid=' +&eol; params.trigger_id + '&eventid=' + params.event_id + '\n' + params.alert_message,&eol; public: 'false'&eol; },&eol; priority: priority,&eol; tags: params.event_tags&eol; }&eol; };&eol; var key = Zendesk.createIssue(data, fields);&eol;&eol; result.tags.__zbx_zdk_issuekey = key;&eol; result.tags.__zbx_zdk_issuelink = params.zendesk_url +&eol; (params.zendesk_url.endsWith('/') ? '' : '/') + 'agent/tickets/' + key;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; data = {&eol; ticket: {&eol; type: Zendesk.params.type,&eol; subject: params.alert_subject,&eol; comment: {&eol; body: params.alert_message,&eol; public: 'false'&eol; }&eol; }&eol; };&eol;&eol; Zendesk.updateIssue(data, fields);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[Zendesk Webhook] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_zdk_issuelink} |Zendesk: {EVENT.TAGS.__zbx_zdk_issuekey} | |
+ROW |18 |4 |ServiceNow | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var ServiceNow = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; ServiceNow.params = params;&eol; if (typeof ServiceNow.params.url === 'string') {&eol; if (!ServiceNow.params.url.endsWith('/')) {&eol; ServiceNow.params.url += '/';&eol; }&eol;&eol; ServiceNow.params.url += 'api/now/table/incident';&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; ServiceNow.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; data[field] = (fields[field].match(/^\d{4}\.\d{2}\.\d{2}$/) !== null)&eol; ? fields[field].replace(/\./g, '-')&eol; : fields[field];&eol; });&eol; }&eol; },&eol;&eol; request: function (method, data) {&eol; ['url', 'user', 'password'].forEach(function (field) {&eol; if (typeof ServiceNow.params !== 'object' &pipe;&pipe; typeof ServiceNow.params[field] === 'undefined'&eol; &pipe;&pipe; ServiceNow.params[field] === '' ) {&eol; throw 'Required ServiceNow param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = ServiceNow.params.url,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Basic ' + btoa(ServiceNow.params.user + ':' + ServiceNow.params.password));&eol;&eol; if (typeof ServiceNow.HTTPProxy !== 'undefined' && ServiceNow.HTTPProxy !== '') {&eol; request.SetProxy(ServiceNow.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ ServiceNow Webhook ] Sending request: ' + url + ((typeof data === 'string')&eol; ? ('\n' + data)&eol; : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ ServiceNow Webhook ] Received response with status code ' +&eol; request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ ServiceNow Webhook ] Failed to parse response received from ServiceNow');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.error.message !== 'undefined'&eol; && Object.keys(response.error).length > 0) {&eol; message += ': ' + JSON.stringify(response.error.message);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol; else if (typeof response.result !== 'object' &pipe;&pipe; typeof response.result.sys_id === 'undefined') {&eol; throw 'Cannot create ServiceNow incident. Check debug log for more information.';&eol; }&eol;&eol; return response.result;&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; servicenow = {},&eol; data = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject', 'alert_message', 'event_source', 'event_value',&eol; 'event_update_status', 'event_recovery_value', 'event_nseverity'&eol; ],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: 'default', color: '#000000'}&eol; ],&eol; method = 'post',&eol; process_tags = true;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('servicenow_')) {&eol; servicenow[key.substring(11)] = params[key];&eol; }&eol; else if (key.startsWith('u_')) {&eol; fields[key] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_recovery_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; data.short_description = params.alert_subject;&eol; data.description = params.alert_message;&eol;&eol; if (typeof params['urgency_for_' + severities[params.event_nseverity].name] !== 'undefined') {&eol; data.urgency = params['urgency_for_' + severities[params.event_nseverity].name];&eol; }&eol;&eol; ServiceNow.setParams(servicenow);&eol; ServiceNow.setProxy(params.HTTPProxy);&eol; ServiceNow.setFields(data, fields);&eol;&eol; if (params.event_source === '0' && (params.event_value === '0' &pipe;&pipe; params.event_update_status === '1')) {&eol; process_tags = false;&eol; method = 'put';&eol; delete data.description;&eol; delete data.urgency;&eol; ServiceNow.params.url += '/' + params.servicenow_sys_id;&eol; data.comments = params.alert_message;&eol; }&eol;&eol; var response = ServiceNow.request(method, data);&eol;&eol; if (process_tags) {&eol; result.tags.__zbx_servicenow_sys_id = response.sys_id;&eol; result.tags.__zbx_servicenow_link = params.servicenow_url +&eol; (params.servicenow_url.endsWith('/') ? '' : '/') + 'incident.do?sys_id=' + response.sys_id;&eol; result.tags.__zbx_servicenow_number = response.number;&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ ServiceNow Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_servicenow_link} |ServiceNow: {EVENT.TAGS.__zbx_servicenow_number} | |
+ROW |19 |4 |Zammad | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Zammad = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Zammad.params = params;&eol; if (typeof Zammad.params.url === 'string') {&eol; if (!Zammad.params.url.endsWith('/')) {&eol; Zammad.params.url += '/';&eol; }&eol; }&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'access_token'].forEach(function (field) {&eol; if (typeof Zammad.params !== 'object' &pipe;&pipe; typeof Zammad.params[field] === 'undefined'&eol; &pipe;&pipe; Zammad.params[field] === '' ) {&eol; throw 'Required param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Zammad.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; if (typeof Zammad.HTTPProxy === 'string' && Zammad.HTTPProxy.trim() !== '') {&eol; request.SetProxy(Zammad.HTTPProxy);&eol; }&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Token token=' + Zammad.params.access_token);&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ Zammad Webhook ] Sending request: ' +&eol; url + ((typeof data === 'string') ? (' ' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ Zammad Webhook ] Received response with status code ' + request.Status() + ': ' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Zammad Webhook ] Failed to parse response received from Zammad');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; setTicketTags: function(tags, ticket_id) {&eol; try {&eol; var tags_json = JSON.parse(tags),&eol; result;&eol;&eol; for (var i in tags_json) {&eol; result = Zammad.request('get',&eol; '/api/v1/tags/add?object=Ticket&o_id=' + ticket_id +&eol; '&item=' + tags_json[i].tag);&eol;&eol; if (typeof result.response !== 'object'&eol; &pipe;&pipe; result.status != 200) {&eol; Zabbix.Log(4, '[ Zammad Webhook ] Cannot add ticket tag:' + tags_json[i].tag);&eol; }&eol; }&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Zammad Webhook ] Failed to add ticket tags:' + error);&eol; }&eol;&eol; return;&eol; },&eol;&eol; createTicket: function(subject, message, priority) {&eol; var data = {&eol; title: subject,&eol; group: 'Users',&eol; article: {&eol; subject: subject,&eol; body: message,&eol; type: 'note',&eol; internal: false&eol; },&eol; customer: Zammad.params.customer&eol; },&eol; result;&eol;&eol; if (priority) {&eol; data.priority_id = priority;&eol; }&eol;&eol; result = Zammad.request('post', 'api/v1/tickets', data);&eol;&eol; if (typeof result.response !== 'object'&eol; &pipe;&pipe; typeof result.response.id === 'undefined'&eol; &pipe;&pipe; result.status != 201) {&eol; throw 'Cannot create Zammad ticket. Check debug log for more information.';&eol; }&eol;&eol; return result.response.id;&eol; },&eol;&eol; updateTicket: function(subject, message) {&eol; var data = {&eol; ticket_id: Zammad.params.ticket_id,&eol; subject: subject,&eol; body: message &pipe;&pipe; '',&eol; type: 'note',&eol; internal: false&eol; };&eol;&eol; result = Zammad.request('post', 'api/v1/ticket_articles', data);&eol;&eol; if (typeof result.response !== 'object'&eol; &pipe;&pipe; typeof result.response.id === 'undefined'&eol; &pipe;&pipe; result.status != 201) {&eol; throw 'Cannot update Zammad ticket. Check debug log for more information.';&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; params_zammad = {},&eol; params_update = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject', 'customer',&eol; 'event_source', 'event_value',&eol; 'event_update_status'&eol; ],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: null, color: '#000000'}&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('zammad_')) {&eol; params_zammad[key.substring(7)] = params[key].trim();&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; params_update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter "' + key + '" cannot be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; if (params.event_source === '0'&eol; && ((params.event_value === '1' && params.event_update_status === '1')&eol; &pipe;&pipe; (params.event_value === '0'&eol; && (params.event_update_status === '0' &pipe;&pipe; params.event_update_status === '1')))&eol; && (isNaN(parseInt(params.zammad_ticket_id)) &pipe;&pipe; parseInt(params.zammad_ticket_id) < 1 )) {&eol; throw 'Incorrect "zammad_ticket_id" parameter given: ' + params.zammad_ticket_id +&eol; '\nMust be positive integer.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['severity_' + severities[params.event_nseverity].name];&eol; priority = priority && priority.trim() &pipe;&pipe; severities[7].name;&eol;&eol; Zammad.setParams(params_zammad);&eol; Zammad.HTTPProxy = params.HTTPProxy;&eol;&eol; // Create ticket for non trigger-based events.&eol; if (params.event_source !== '0'&eol; && params.event_value !== '0') {&eol; Zammad.createTicket(params.alert_subject, params.alert_message, priority, params.event_tags);&eol; }&eol; // Create ticket for trigger-based events.&eol; else if (params.event_value === '1' && params_update.status === '0') {&eol; var ticket_id = Zammad.createTicket(params.alert_subject,&eol; params.alert_subject + '\n' + params.alert_message + '\n' +&eol; params.zabbix_url + (params.zabbix_url.endsWith('/') ? '' : '/') +&eol; 'tr_events.php?triggerid=' + params.trigger_id + '&eventid=' + params.event_id + '\n',&eol; priority);&eol;&eol; result.tags.__zbx_zammad_ticket_id = ticket_id;&eol; result.tags.__zbx_zammad_ticketlink = params.zammad_url +&eol; (params.zammad_url.endsWith('/') ? '' : '/') + '#ticket/zoom/' + ticket_id;&eol;&eol; if (Zammad.params.enable_tags.toLowerCase() === 'true') {&eol; Zammad.setTicketTags(params.event_tags, ticket_id);&eol; }&eol; }&eol; // Update created ticket for trigger-based event.&eol; else {&eol; Zammad.updateTicket(params.alert_subject, params.alert_message);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Zammad Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_zammad_ticketlink} |Zammad: ticket #{EVENT.TAGS.__zbx_zammad_ticket_id} | |
+ROW |20 |4 |Jira ServiceDesk | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Jira = {&eol; params: {},&eol; schema: {},&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/servicedeskapi/latest/';&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; Jira.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setTags: function(event_tags_json) {&eol; if (!Jira.schema) {&eol; Zabbix.Log(4, '[ Jira Service Desk Webhook ] Cannot add labels because failed to retrieve field schema.');&eol;&eol; return;&eol; }&eol;&eol; var block = Jira.schema.requestTypeFields.filter(function(object) {&eol; return object.fieldId == 'labels';&eol; });&eol;&eol; if (block[0] && typeof event_tags_json !== 'undefined' && event_tags_json !== ''&eol; && event_tags_json !== '{EVENT.TAGSJSON}') {&eol; try {&eol; var tags = JSON.parse(event_tags_json),&eol; label;&eol;&eol; Jira.labels = [];&eol;&eol; tags.forEach(function (tag) {&eol; if (typeof tag.tag !== 'undefined' && typeof tag.value !== 'undefined' ) {&eol; label = (tag.tag + (tag.value ? (':' + tag.value) : '')).replace(/\s/g, '_');&eol; if (label.length < 255) {&eol; Jira.labels.push(label);&eol; }&eol; }&eol; });&eol; }&eol; catch (error) {&eol; // Code is not missing here.&eol; }&eol; }&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; if (Jira.schema) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; data.requestFieldValues[field] = fields[field];&eol;&eol; var block = Jira.schema.requestTypeFields.filter(function(object) {&eol; return object.fieldId == field;&eol; });&eol;&eol; if (typeof block[0] === 'object' && typeof block[0].jiraSchema === 'object'&eol; && (block[0].jiraSchema.type === 'number' &pipe;&pipe; block[0].jiraSchema.type === 'datetime')) {&eol; switch (block[0].jiraSchema.type) {&eol; case 'number':&eol; data.requestFieldValues[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.requestFieldValues[field] = fields[field].replace(/\./g, '-');&eol; }&eol; else {&eol; delete data.requestFieldValues[field];&eol; }&eol; break;&eol; }&eol; }&eol; });&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Jira Service Desk Webhook ] Cannot add custom fields' +&eol; 'because failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'user', 'password', 'servicedesk_id', 'request_type_id'].forEach(function (field) {&eol; if (typeof Jira.params !== 'object' &pipe;&pipe; typeof Jira.params[field] === 'undefined'&eol; &pipe;&pipe; Jira.params[field] === '' ) {&eol; throw 'Required Jira param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Jira.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Basic ' + btoa(Jira.params.user + ':' + Jira.params.password));&eol; request.AddHeader('X-ExperimentalApi: opt-in');&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 Service Desk Webhook ] Sending request: ' + url +&eol; ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; 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 Service Desk Webhook ] Received response with status code ' +&eol; request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Jira Service Desk Webhook ] Failed to parse response received from Jira');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessage !== 'undefined'&eol; && Object.keys(response.errorMessage).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessage);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getSchema: function() {&eol; var result = Jira.request('get', 'servicedesk/' + Jira.params.servicedesk_id + '/requesttype/' +&eol; Jira.params.request_type_id + '/field');&eol;&eol; if (typeof Jira.schema !== 'object' && typeof Jira.schema.requestTypeFields !== 'object') {&eol; Jira.schema = null;&eol; }&eol; else {&eol; Jira.schema = result.response;&eol; }&eol; },&eol;&eol; createRequest: function(summary, description, fields) {&eol; var data = {&eol; serviceDeskId: Jira.params.servicedesk_id,&eol; requestTypeId: Jira.params.request_type_id,&eol; requestFieldValues: {&eol; summary: summary,&eol; description: description&eol; }&eol; };&eol;&eol; if (Jira.labels && Jira.labels.length > 0) {&eol; data.requestFieldValues.labels = Jira.labels;&eol; }&eol; var result = Jira.request('post', 'request', Jira.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.issueKey === 'undefined') {&eol; throw 'Cannot create Jira request. Check debug log for more information.';&eol; }&eol;&eol; return result.response.issueKey;&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; jira = {},&eol; comment = {public: true},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject', 'alert_message', 'event_source', 'event_value',&eol; 'event_update_status', 'event_recovery_value'&eol; ];&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 (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" cannot be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_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.getSchema();&eol; Jira.setTags(params.event_tags_json);&eol;&eol; // Create request for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_recovery_value !== '0') {&eol; Jira.createRequest(params.alert_subject, params.alert_message);&eol; }&eol; // Create request for trigger-based events.&eol; else if (params.event_value === '1' && params.event_update_status === '0'&eol; && jira.request_key === '{EVENT.TAGS.__zbx_jira_requestkey}') {&eol; var key = Jira.createRequest(params.alert_subject, params.alert_message, fields);&eol;&eol; result.tags.__zbx_jira_requestkey = key;&eol; result.tags.__zbx_jira_requestlink = params.jira_url +&eol; (params.jira_url.endsWith('/') ? '' : '/') + 'browse/' + key;&eol; }&eol; // Comment created request for trigger-based event.&eol; else {&eol; if (jira.request_key === '{EVENT.TAGS.__zbx_jira_requestkey}' &pipe;&pipe; jira.request_key.trim() === '') {&eol; throw 'Incorrect Request key given: ' + jira.request_key;&eol; }&eol; comment.body = params.alert_message;&eol; Jira.request('post', 'request/' + Jira.params.request_key + '/comment', comment);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Jira Service Desk Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_jira_requestlink} |Jira ServiceDesk: {EVENT.TAGS.__zbx_jira_requestkey} | |
+ROW |21 |4 |OTRS | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var OTRS = {&eol; params: {},&eol; entrypoint: 'nph-genericinterface.pl/Webservice/ZabbixTicketConnector/Ticket',&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; OTRS.params = params;&eol; if (typeof OTRS.params.url === 'string') {&eol; if (!OTRS.params.url.endsWith('/')) {&eol; OTRS.params.url += '/';&eol; }&eol; }&eol; },&eol;&eol; addDynamicFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; data.DynamicField = [];&eol;&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; if (field !== undefined) {&eol; if (fields[field].match(/^\d{4}[.-]\d{2}[.-]\d{2}$/)) {&eol; fields[field] = fields[field].replace(/\./g, '-');&eol; }&eol;&eol; data.DynamicField.push({Name: field, Value: fields[field]});&eol; }&eol; });&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'auth_user', 'auth_password', 'queue',&eol; 'customer', 'ticket_state', 'default_priority_id', 'time_unit'].forEach(function (field) {&eol; if (typeof OTRS.params !== 'object' &pipe;&pipe; typeof OTRS.params[field] === 'undefined'&eol; &pipe;&pipe; OTRS.params[field] === '' ) {&eol; throw 'Required param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; request = new CurlHttpRequest(),&eol; url = OTRS.params.url + query +&eol; '?UserLogin=' + encodeURIComponent(OTRS.params.auth_user) +&eol; '&Password=' + encodeURIComponent(OTRS.params.auth_password);&eol;&eol; if (typeof OTRS.HTTPProxy !== 'undefined' && OTRS.HTTPProxy.trim() !== '') {&eol; request.SetProxy(OTRS.HTTPProxy);&eol; }&eol;&eol; request.AddHeader('Content-Type: application/json');&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ OTRS Webhook ] Sending request: ' +&eol; url + ((typeof data === 'string') ? (' ' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ OTRS Webhook ] Received response with status code ' + request.Status() + ': ' + response);&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; message += ': ' + response;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ OTRS Webhook ] Failed to parse response received from OTRS');&eol; response = null;&eol; }&eol; }&eol;&eol; if (typeof response.Error !== 'undefined'&eol; && Object.keys(response.Error).length > 0) {&eol; message = 'Request failed: ' + JSON.stringify(response.Error);&eol; }&eol;&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; createTicket: function(subject, message, priority, fields) {&eol; var result,&eol; data = {&eol; Ticket: {&eol; Title: subject,&eol; Queue: OTRS.params.queue,&eol; State: OTRS.params.ticket_state,&eol; PriorityID: priority &pipe;&pipe; OTRS.params.default_priority_id,&eol; CustomerUser: OTRS.params.customer&eol; },&eol; Article: {&eol; Subject: subject,&eol; Body: message,&eol; TimeUnit: OTRS.params.time_unit,&eol; ContentType: 'text/plain; charset=utf8'&eol; }&eol; };&eol;&eol; result = OTRS.request('post', OTRS.entrypoint, OTRS.addDynamicFields(data, fields));&eol;&eol; if (typeof result.response !== 'object'&eol; &pipe;&pipe; typeof result.response.TicketID === 'undefined'&eol; &pipe;&pipe; result.status != 200) {&eol; throw 'Cannot create OTRS ticket. Check debug log for more information.';&eol; }&eol;&eol; return result.response.TicketID;&eol; },&eol;&eol; updateTicket: function(subject, message) {&eol; var result,&eol; data = {&eol; Article: {&eol; Subject: subject,&eol; Body: message &pipe;&pipe; '',&eol; TimeUnit: OTRS.params.time_unit,&eol; ContentType: 'text/plain; charset=utf8'&eol; }&eol; };&eol;&eol; result = OTRS.request('put', OTRS.entrypoint + '/' + encodeURIComponent(OTRS.params.ticket_id), data);&eol;&eol; if (typeof result.response !== 'object'&eol; &pipe;&pipe; typeof result.response.TicketID === 'undefined'&eol; &pipe;&pipe; result.status != 200) {&eol; throw 'Cannot update OTRS ticket. Check debug log for more information.';&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; params_otrs = {},&eol; params_fields = {},&eol; params_update = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject', 'event_source',&eol; 'event_value', 'event_update_status'&eol; ],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: null, color: '#000000'}&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('otrs_')) {&eol; params_otrs[key.substring(5)] = params[key];&eol; }&eol; else if (key.startsWith('dynamicfield_')) {&eol; params_fields[key.substring(13)] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; params_update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter "' + key + '" cannot be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; if (params.event_source === '0'&eol; && ((params.event_value === '1' && params.event_update_status === '1')&eol; &pipe;&pipe; (params.event_value === '0'&eol; && (params.event_update_status === '0' &pipe;&pipe; params.event_update_status === '1')))&eol; && (isNaN(parseInt(params.otrs_ticket_id)) &pipe;&pipe; parseInt(params.otrs_ticket_id) < 1 )) {&eol; throw 'Incorrect "otrs_ticket_id" parameter given: ' + params.otrs_ticket_id +&eol; '\nMust be positive integer.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['severity_' + severities[params.event_nseverity].name];&eol; priority = priority && priority.trim() &pipe;&pipe; severities[7].name;&eol;&eol; OTRS.setParams(params_otrs);&eol; OTRS.HTTPProxy = params.HTTPProxy;&eol;&eol; // Create ticket for non trigger-based events.&eol; if (params.event_source !== '0'&eol; && params.event_value !== '0') {&eol; OTRS.createTicket(params.alert_subject, params.alert_message, priority);&eol; }&eol; // Create ticket for trigger-based events.&eol; else if (params.event_value === '1' && params_update.status === '0') {&eol; var ticket_id = OTRS.createTicket(params.alert_subject,&eol; params.alert_subject + '\n' + params.alert_message + '\n' +&eol; params.zabbix_url + (params.zabbix_url.endsWith('/') ? '' : '/') +&eol; 'tr_events.php?triggerid=' + params.trigger_id + '&eventid=' + params.event_id + '\n',&eol; priority,&eol; params_fields);&eol;&eol; result.tags.__zbx_otrs_ticket_id = ticket_id;&eol; result.tags.__zbx_otrs_ticketlink = params.otrs_url +&eol; (params.otrs_url.endsWith('/') ? '' : '/') + 'index.pl?Action=AgentTicketZoom;TicketID=' + ticket_id;&eol; }&eol; // Update created ticket for trigger-based event.&eol; else {&eol; OTRS.updateTicket(params.alert_subject, params.alert_message);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ OTRS Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_otrs_ticketlink} |OTRS: ticket #{EVENT.TAGS.__zbx_otrs_ticket_id} | |
+ROW |22 |4 |iLert | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |try {&eol; var result = { tags: {} },&eol; params = JSON.parse(value),&eol; req = new CurlHttpRequest(),&eol; resp = '';&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.SetProxy(params.HTTPProxy);&eol; }&eol; var alertSourceKey = params['.ILERT.ALERT.SOURCE.KEY'];&eol; if (!alertSourceKey &pipe;&pipe; (typeof alertSourceKey === 'string' && alertSourceKey.trim() === '')) {&eol; throw 'incorrect value for variable "ILERT.ALERT.SOURCE.KEY". The value must be a non-empty string.';&eol; }&eol; delete params['.ILERT.ALERT.SOURCE.KEY'];&eol; &eol; var ilertApiBaseURL = "https://api.ilert.com";&eol; var reqURL = encodeURI(ilertApiBaseURL + "/api/v1/events/zabbix-mt/" + alertSourceKey)&eol;&eol; var incidentKey = "zabbix-" + params['EVENT.ID'];&eol; var incidentViewURL = ilertApiBaseURL + "/api/v1/incidents/resolve-ik/" + alertSourceKey + "/" + incidentKey;&eol;&eol; req.AddHeader('Accept: application/json');&eol; req.AddHeader('Content-Type: application/json');&eol;&eol; Zabbix.Log(4, '[iLert Webhook] Sending request:' + JSON.stringify(params));&eol; resp = req.Post(reqURL, JSON.stringify(params));&eol; Zabbix.Log(4, '[iLert Webhook] Receiving response:' + resp);&eol;&eol; try {&eol; resp = JSON.parse(resp);&eol; }&eol; catch (error) {&eol; throw 'incorrect response. iLert returned a non-JSON object.';&eol; }&eol;&eol; if (req.Status() == 200) {&eol; result.tags.__ilert_incident_url = incidentViewURL;&eol; return JSON.stringify(result);&eol; }&eol;&eol; if (req.Status() == 400 && typeof resp === 'object' && typeof resp.code === 'string') {&eol; if (resp.code === 'NO_OPEN_INCIDENT_WITH_KEY') {&eol; return JSON.stringify(result);&eol; }&eol; if (resp.code === 'INCIDENT_ALREADY_ACCEPTED') {&eol; result.tags.__ilert_incident_url = incidentViewURL;&eol; return JSON.stringify(result);&eol; }&eol; }&eol;&eol; if (typeof resp === 'object' && typeof resp.message === 'string') {&eol; throw resp.message;&eol; }&eol; else {&eol; throw 'Unknown error.';&eol; }&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[iLert Webhook] Notification failed : ' + error);&eol; throw 'iLert notification failed : ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__ilert_incident_url} |iLert incident |Please refer to https://docs.ilert.com/integrations/zabbix/native &eol; &eol;Set global macro {$ZABBIX.URL} with your Zabbix server URL.&eol;Add a dedicated user with the media type "iLert". You can also rewrite the incident summary via ".ILERT.INCIDENT.SUMMARY" parameter or leave it empty to use the standard pattern. |
+ROW |23 |4 |SolarWinds Service Desk | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SolarWinds = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; SolarWinds.params = params;&eol; SolarWinds.params.endpoint = 'https://api.samanage.com/';&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; SolarWinds.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof data.incident === 'object' && typeof fields === 'object' && Object.keys(fields).length) {&eol; if (typeof fields.sw_fields === 'object' && Object.keys(fields.sw_fields).length) {&eol; Object.keys(fields.sw_fields)&eol; .forEach(function(field) {&eol; try {&eol; data.incident[field] = JSON.parse(fields.sw_fields[field]);&eol; }&eol; catch (error) {&eol; data.incident[field] = fields.sw_fields[field];&eol; }&eol; });&eol; }&eol;&eol; if (typeof fields.sw_customfields === 'object' && Object.keys(fields.sw_customfields).length) {&eol; data.incident.custom_fields_values = {custom_fields_value: []};&eol; Object.keys(fields.sw_customfields)&eol; .forEach(function(field) {&eol; data.incident.custom_fields_values.custom_fields_value.push({&eol; name: field,&eol; value: fields.sw_customfields[field]&eol; });&eol; });&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['token'].forEach(function (field) {&eol; if (typeof SolarWinds.params !== 'object' &pipe;&pipe; typeof SolarWinds.params[field] === 'undefined'&eol; &pipe;&pipe; SolarWinds.params[field] === '' ) {&eol; throw 'Required SolarWinds param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = SolarWinds.params.endpoint + query,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('X-Samanage-Authorization: Bearer ' + SolarWinds.params.token);&eol; request.AddHeader('Accept: application/vnd.samanage.v2.1+json');&eol;&eol; if (typeof SolarWinds.HTTPProxy !== 'undefined' && SolarWinds.HTTPProxy !== '') {&eol; request.SetProxy(SolarWinds.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ SolarWinds SD Webhook ] Sending request: ' + url + ((typeof data === 'string')&eol; ? ('\n' + data)&eol; : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ SolarWinds SD Webhook ] Received response with status code ' + request.Status() +&eol; '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ SolarWinds SD Webhook ] Failed to parse response received from SolarWinds');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.error !== 'undefined'&eol; && Object.keys(response.error).length > 0) {&eol; message += ': ' + JSON.stringify(response.error);&eol; }&eol; else if (response !== null && typeof response === 'object'&eol; && Object.keys(response).length > 0) {&eol; Object.keys(response)&eol; .forEach(function(field) {&eol; message += '\n' + field + ': ' + response[field][0];&eol; });&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; createIncident: function(name, description, fields) {&eol; var data = {&eol; incident: {&eol; name: name,&eol; description: description,&eol; priority: SolarWinds.params.priority&eol; }&eol; };&eol;&eol; var result = SolarWinds.request('post', 'incidents.json', SolarWinds.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.id === 'undefined') {&eol; throw 'Cannot create SolarWinds incident. Check debug log for more information.';&eol; }&eol;&eol; return result.response.id;&eol; },&eol;&eol; updateIncident: function(name, fields, message) {&eol; var data = {&eol; incident: {&eol; name: name,&eol; priority: SolarWinds.params.priority&eol; }&eol; };&eol;&eol; SolarWinds.request(&eol; 'put',&eol; 'incidents/' + SolarWinds.params.incident_id + '.json',&eol; SolarWinds.addCustomFields(data, fields));&eol;&eol; SolarWinds.commenIncident(message);&eol; },&eol;&eol; commenIncident: function(message) {&eol; var data = {&eol; comment: {&eol; body: message&eol; }&eol; };&eol;&eol; SolarWinds.request('post', 'incidents/' + SolarWinds.params.incident_id + '/comments.json', data);&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; samanage = {},&eol; result = {tags: {}},&eol; required_params = ['alert_subject', 'event_recovery_value', 'event_source', 'event_value', 'priority_default'],&eol; severities = [&eol; {name: 'not_classified'},&eol; {name: 'information'},&eol; {name: 'warning'},&eol; {name: 'average'},&eol; {name: 'high'},&eol; {name: 'disaster'},&eol; {name: 'resolved'},&eol; {name: 'default'}&eol; ];&eol;&eol; fields.sw_fields = {};&eol; fields.sw_customfields = {};&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('samanage_')) {&eol; samanage[key.substring(9)] = params[key];&eol; }&eol; else if (key.startsWith('sw_field_')) {&eol; fields.sw_fields[key.substring(9)] = params[key];&eol; }&eol; else if (key.startsWith('sw_customfield_')) {&eol; fields.sw_customfields[key.substring(15)] = 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; 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; samanage.priority = params['priority_' + severities[params.event_nseverity].name] &pipe;&pipe; params.priority_default;&eol;&eol; SolarWinds.setParams(samanage);&eol; SolarWinds.setProxy(params.HTTPProxy);&eol;&eol; // Create incident for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_recovery_value !== '0') {&eol; SolarWinds.createIncident(params.alert_subject, params.alert_message);&eol; }&eol; // Create incident for trigger-based events.&eol; else if (params.event_value === '1' && params.event_update_status === '0'&eol; && samanage.incident_id === '{EVENT.TAGS.__zbx_solarwinds_inc_id}') {&eol; var key = SolarWinds.createIncident(params.alert_subject, params.alert_message, fields);&eol;&eol;&eol; result.tags.__zbx_solarwinds_inc_id = key;&eol; result.tags.__zbx_solarwinds_inc_link = params.samanage_url +&eol; (params.samanage_url.endsWith('/') ? '' : '/') + 'incidents/' + key;&eol; }&eol; // Update created incident for trigger-based event.&eol; else {&eol; if (samanage.incident_id === '{EVENT.TAGS.__zbx_solarwinds_inc_id}' &pipe;&pipe; samanage.incident_id === '') {&eol; throw 'Incorrect incident key given: ' + samanage.incident_id;&eol; }&eol; if (!params.alert_message) {&eol; throw 'Parameter "alert_message" can\'t be empty.';&eol; }&eol; SolarWinds.updateIncident(params.alert_subject, fields, params.alert_message);&eol; }&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(3, '[ SolarWinds SD Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_solarwinds_inc_link}|SolarWinds incident ID: {EVENT.TAGS.__zbx_solarwinds_inc_id}| |
+ROW |24 |4 |SysAid | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SysAid = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; var required = ['url', 'auth_user', 'auth_password', 'category_level_1', 'category_level_2',&eol; 'category_level_3', 'incident_id', 'template_id', 'urgency_id', 'incident_state',&eol; 'default_priority_id'&eol; ];&eol;&eol; required.forEach(function (field) {&eol; if (typeof params !== 'object' &pipe;&pipe; typeof params[field] === 'undefined' &pipe;&pipe; params[field] === '') {&eol; throw 'Required param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; SysAid.params = params;&eol; if (typeof SysAid.params.url === 'string' && !SysAid.params.url.endsWith('/')) {&eol; SysAid.params.url += '/';&eol; }&eol; },&eol;&eol; login: function () {&eol; var result = SysAid.request('post', 'api/v1/login', {&eol; user_name: SysAid.params.auth_user,&eol; password: SysAid.params.auth_password&eol; });&eol;&eol; return result.response.user.id;&eol; },&eol;&eol; request: function (method, query, data) {&eol; var response,&eol; request = SysAid.req &pipe;&pipe; (SysAid.req = new CurlHttpRequest()),&eol; url = SysAid.params.url + query;&eol;&eol; if (typeof SysAid.HTTPProxy !== 'undefined' && SysAid.HTTPProxy.trim() !== '') {&eol; request.SetProxy(SysAid.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ SysAid Webhook ] Sending request: ' +&eol; url + ((typeof data === 'string') ? (' ' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ SysAid Webhook ] Received response with status code ' + request.Status() + ': ' + response);&eol;&eol; if (request.Status() !== 200) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; message += ': ' + response;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ SysAid Webhook ] Failed to parse response received from SysAid');&eol; response = null;&eol; }&eol; }&eol;&eol; if (response === null &pipe;&pipe; (typeof response.Error !== 'undefined' && Object.keys(response.Error).length > 0)) {&eol; throw 'Request failed: ' + JSON.stringify(response.Error);&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; createIncident: function(subject, message, priority) {&eol; var result = SysAid.request('post', 'api/v1/sr/?template=' + encodeURIComponent(SysAid.params.template_id), {&eol; info: [&eol; {&eol; key: 'problem_type',&eol; value: [&eol; SysAid.params.category_level_1,&eol; SysAid.params.category_level_2,&eol; SysAid.params.category_level_3&eol; ].join('_')&eol; },&eol; {&eol; key: 'title',&eol; value: subject&eol; },&eol; {&eol; key: 'description',&eol; value: message&eol; },&eol; {&eol; key: 'status',&eol; value: '1'&eol; },&eol; {&eol; key: 'urgency',&eol; value: SysAid.params.urgency_id&eol; },&eol; {&eol; key: 'priority',&eol; value: priority &pipe;&pipe; SysAid.params.default_priority_id,&eol; }&eol; ]&eol; });&eol;&eol; if (result.response.id === 'undefined') {&eol; throw 'Cannot create SysAid incident. Check debug log for more information.';&eol; }&eol;&eol; return result.response.id;&eol; },&eol;&eol; updateTicket: function(note) {&eol; var date = new Date().getTime();&eol;&eol; SysAid.request('put', 'api/v1/sr/' + encodeURIComponent(SysAid.params.incident_id), {&eol; id: SysAid.params.incident_id,&eol; info: [&eol; {&eol; key: 'update_time',&eol; value: date&eol; },&eol; {&eol; key: 'notes',&eol; value: [&eol; {&eol; userName: 'Zabbix',&eol; createDate: date,&eol; text: note&eol; }&eol; ]&eol; }&eol; ]&eol; });&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; params_sysaid = {},&eol; params_update = {},&eol; result = {tags: {}},&eol; required_params = ['alert_subject', 'event_source', 'event_value', 'event_update_status'],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: null, color: '#000000'}&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('sysaid_')) {&eol; params_sysaid[key.substring(7)] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; params_update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter "' + key + '" cannot be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; if (params.event_source === '0' && ((params.event_value === '1' && params.event_update_status === '1')&eol; &pipe;&pipe; (params.event_value === '0' && (params.event_update_status === '0' &pipe;&pipe; params.event_update_status === '1')))&eol; && (isNaN(parseInt(params.sysaid_incident_id)) &pipe;&pipe; parseInt(params.sysaid_incident_id) < 1 )) {&eol; throw 'Incorrect "sysaid_incident_id" parameter given: ' + params.sysaid_incident_id + '\nMust be positive integer.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['severity_' + severities[params.event_nseverity].name];&eol; priority = priority && priority.trim() &pipe;&pipe; severities[7].name;&eol;&eol; SysAid.setParams(params_sysaid);&eol; SysAid.HTTPProxy = params.HTTPProxy;&eol; SysAid.login();&eol;&eol; if (params.event_source !== '0' && params.event_value !== '0') {&eol; // Create ticket for non trigger-based events.&eol; SysAid.createIncident(params.alert_subject, params.alert_message, priority);&eol; }&eol; else if (params.event_value === '1' && params_update.status === '0') {&eol; // Create ticket for trigger-based events.&eol; var incident_id = SysAid.createIncident(params.alert_subject, params.alert_subject + '\n' + params.alert_message +&eol; '\n' + params.zabbix_url + (params.zabbix_url.endsWith('/') ? '' : '/') + 'tr_events.php?triggerid=' +&eol; params.trigger_id + '&eventid=' + params.event_id + '\n', priority&eol; );&eol;&eol; result.tags.__zbx_sysaid_incident_id = incident_id;&eol; result.tags.__zbx_sysaid_incidentlink = params.sysaid_url +&eol; (params.sysaid_url.endsWith('/') ? '' : '/') + 'SREdit.jsp?id=' + incident_id + '&fromId=IncidentsList';&eol; }&eol; else {&eol; // Update created ticket for trigger-based event.&eol; SysAid.updateTicket(params.alert_subject + '\n' + params.alert_message);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ SysAid Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_sysaid_incidentlink}|SysAid: incident #{EVENT.TAGS.__zbx_sysaid_incident_id} | |
+ROW |25 |4 |TOPdesk | | | | | | | |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; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; if (typeof HTTPProxy !== 'undefined' && HTTPProxy.trim() !== '') {&eol; Media.HTTPProxy = HTTPProxy;&eol; }&eol; },&eol;&eol; request: function (method, query, data) {&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 CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Accept: 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.Status() + '\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.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&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.Status(),&eol; response: response&eol; };&eol; }&eol;};&eol;&eol;try {&eol; var result = {tags: {}},&eol; params = JSON.parse(value),&eol; media = {},&eol; fields = {},&eol; resp = {},&eol; required_params = [&eol; 'alert_subject',&eol; 'alert_message',&eol; 'event_id',&eol; 'event_source',&eol; 'event_value',&eol; 'event_update_status',&eol; 'topdesk_api',&eol; 'topdesk_user',&eol; 'topdesk_password'&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('topdesk_')) {&eol; media[key.substring(8)] = 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 = 'TOPdesk';&eol; Media.setParams(media);&eol; Media.params.token = 'Basic ' + btoa(Media.params.user + ':' + Media.params.password);&eol; Media.setProxy(params.HTTPProxy);&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; Zabbix.Log(4, '[ ' + Media.name + ' Webhook ] Request of the ticket creating.');&eol; fields.caller = {dynamicName: 'Zabbix'};&eol; fields.briefDescription = params.alert_subject;&eol; fields.request = params.alert_message.replace(/\n/g, '<br>');&eol; fields.priority = {name: priority};&eol; fields.processingStatus = {name: Media.params.status};&eol; fields.externalNumber = params.event_id;&eol; fields.request += '<br>' + params.zbxurl;&eol;&eol; if (params.event_source === '0') {&eol; fields.request += 'tr_events.php?triggerid=' + params.trigger_id + '&eventid=' + params.event_id;&eol; }&eol;&eol; resp = Media.request('post', 'tas/api/incidents', fields);&eol; if (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.id === 'undefined') {&eol; throw 'Cannot create ' + Media.name + ' issue. Check debug log for more information.';&eol; }&eol;&eol; if (params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0) {&eol; result.tags.__zbx_tpd_issuekey = resp.response.number;&eol; result.tags.__zbx_tpd_issuelink = Media.params.api +&eol; 'tas/secure/incident?action=show&unid=' + resp.response.id;&eol; }&eol; }&eol; // Update a created issue.&eol; else {&eol; if (params.event_source == 3 && params.event_value == 0) {&eol; throw 'Internal event recovery actions are not supported.';&eol; }&eol;&eol; Zabbix.Log(4, '[ ' + Media.name + ' Webhook ] Request of the ticket updating.');&eol; fields.action = params.alert_message.replace(/\n/g, '<br>');&eol;&eol; resp = Media.request('put', 'tas/api/incidents/number/' + Media.params.issue_key, fields);&eol; if (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.id === 'undefined'&eol; &pipe;&pipe; resp.response.number !== Media.params.issue_key) {&eol; throw 'Cannot update ' + Media.name + ' issue. 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_tpd_issuelink} |TOPdesk: {EVENT.TAGS.__zbx_tpd_issuekey} |Please refer to https://developers.topdesk.com/documentation/index.html and https://www.zabbix.com/documentation/5.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 "TOPdesk".&eol;Change the values of the variables topdesk_api (URL), topdesk_password, topdesk_user. The topdesk_status is the default status for creating a new TOPdesk ticket. |
+ROW |26 |4 |iTop | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Itop = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; if (params.log !== 'private_log' && params.log !== 'public_log') {&eol; throw 'Incorrect "itop_log" parameter given: ' + params.log + '\nMust be "private_log" or "public_log".';&eol; }&eol;&eol; Itop.params = params;&eol; if (typeof Itop.params.url === 'string') {&eol; if (!Itop.params.url.endsWith('/')) {&eol; Itop.params.url += '/';&eol; }&eol;&eol; Itop.params.url += 'webservices/rest.php?version=' + encodeURIComponent(Itop.params.api_version);&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; Itop.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setCreatePayload: function () {&eol; json_data.operation = 'core/create';&eol; json_data.fields.org_id = Itop.params.organization_id;&eol; json_data.fields.title = params.alert_subject;&eol; json_data.fields.description = params.alert_message.replace('<', '&lt;')&eol; .replace('>', '&gt;')&eol; .replace(/(?:\r\n&pipe;\r&pipe;\n)/g, '<br>');&eol; },&eol;&eol; setUpdatePayload: function () {&eol; json_data.operation = 'core/update';&eol; json_data.key = Itop.params.id;&eol; json_data.fields.title = params.alert_subject;&eol; json_data.fields[Itop.params.log] = {&eol; add_item: {&eol; message: params.alert_subject + '\n' + params.alert_message,&eol; format: 'text'&eol; }&eol; };&eol; },&eol;&eol; request: function (data) {&eol; ['url', 'user', 'password', 'organization_id', 'class', 'api_version', 'id'].forEach(function (field) {&eol; if (typeof Itop.params !== 'object' &pipe;&pipe; typeof Itop.params[field] === 'undefined'&eol; &pipe;&pipe; Itop.params[field] === '' ) {&eol; throw 'Required Itop param is not set: "itop_' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Itop.params.url,&eol; request = new CurlHttpRequest(),&eol; object;&eol;&eol; request.AddHeader('Content-Type: multipart/form-data');&eol; request.AddHeader('Authorization: Basic ' + btoa(Itop.params.user + ':' + Itop.params.password));&eol;&eol; if (Itop.HTTPProxy) {&eol; request.SetProxy(Itop.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ iTop Webhook ] Sending request: ' + url + '&json_data=' + data);&eol;&eol; response = request.Post(url + '&json_data=' + encodeURIComponent(data));&eol;&eol; Zabbix.Log(4, '[ iTop Webhook ] Received response with status code ' + request.Status() + '\n' + response);&eol;&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ iTop Webhook ] Failed to parse response received from iTop');&eol; throw 'Failed to parse response received from iTop.\nRequest status code ' +&eol; request.Status() + '. Check debug log for more information.';&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; throw 'Request failed with status code ' + request.Status() + '. Check debug log for more information.';&eol; }&eol; else if (typeof response.code !== 'undefined' && response.code !== 0) {&eol; throw 'Request failed with iTop code ' + response.code + ': ' +&eol; JSON.stringify(response.message) + '. Check debug log for more information.';&eol; }&eol; else {&eol; Object.keys(response.objects)&eol; .forEach(function (key) {&eol; object = response.objects[key];&eol; });&eol;&eol; return {&eol; status: request.Status(),&eol; response: object.fields&eol; };&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; json_data = {},&eol; itop_params = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject', 'summary', 'event_recovery_value',&eol; 'event_source', 'event_value', 'action_name'&eol; ];&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('itop_')) {&eol; itop_params[key.substring(5)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_recovery_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; Itop.setParams(itop_params);&eol; Itop.setProxy(params.HTTPProxy);&eol;&eol; json_data.operation = '';&eol; json_data.class = Itop.params.class;&eol; json_data.comment = Itop.params.comment;&eol; json_data.output_fields = 'id, friendlyname';&eol; json_data.fields = {};&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_recovery_value !== '0') {&eol; Itop.setCreatePayload();&eol; Itop.request(json_data);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && params.event_update_status === '0'&eol; && Itop.params.id === '{EVENT.TAGS.__zbx_itop_id}') {&eol; Itop.setCreatePayload();&eol;&eol; var response = Itop.request(json_data);&eol;&eol; result.tags.__zbx_itop_id = response.response.id;&eol; result.tags.__zbx_itop_key = response.response.friendlyname;&eol; result.tags.__zbx_itop_link = params.itop_url + (params.itop_url.endsWith('/') ? '' : '/') +&eol; 'pages/UI.php?operation=details&class=' + encodeURIComponent(Itop.params.class) + '&id=' +&eol; encodeURIComponent(response.response.id);&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; if (Itop.params.id === '{EVENT.TAGS.__zbx_itop_id}') {&eol; throw 'Incorrect iTop ticket ID given: ' + Itop.params.id;&eol; }&eol; Itop.setUpdatePayload();&eol; Itop.request(json_data);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ iTop Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_itop_link} |iTop: {EVENT.TAGS.__zbx_itop_key} | |
+ROW |27 |4 |Rocket.Chat | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var RocketChat = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; RocketChat.params = params;&eol; if (RocketChat.params.url && RocketChat.params.api_url) {&eol; if (!RocketChat.params.url.endsWith('/')) {&eol; RocketChat.params.url += '/';&eol; }&eol; if (!RocketChat.params.api_url.endsWith('/')) {&eol; RocketChat.params.api_url += '/';&eol; }&eol; if (RocketChat.params.api_url.startsWith('/')) {&eol; RocketChat.params.api_url = RocketChat.params.api_url.substring(1);&eol; }&eol;&eol; RocketChat.params.url += RocketChat.params.api_url;&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; RocketChat.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; addFields: function (fields) {&eol; var data = [];&eol;&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; if (fields[field] === '') {&eol; Zabbix.Log(4, '[ RocketChat Webhook ] Field "' + field +&eol; '" can\'t be empty. The field ignored.');&eol; }&eol; else {&eol; try {&eol; var parts = field.split(':'),&eol; prefix = parts[0].split('_');&eol;&eol; if (typeof prefix[2] === 'undefined'&eol; &pipe;&pipe; (prefix[2] === 'p' && params.event_value === '1')&eol; &pipe;&pipe; (prefix[2] === 'r' && params.event_value === '0')) {&eol; data.push({&eol; title: field.substring(field.indexOf(':') + 1),&eol; value: fields[field],&eol; short: prefix[1] === 'short'&eol; });&eol; }&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ RocketChat Webhook ] Can\'t parse field "' + field +&eol; '". The field ignored.');&eol; }&eol; }&eol; });&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'api_url', 'user_id', 'user_token', 'send_to'].forEach(function (field) {&eol; if (typeof RocketChat.params !== 'object' &pipe;&pipe; typeof RocketChat.params[field] === 'undefined'&eol; &pipe;&pipe; RocketChat.params[field] === '' ) {&eol; throw 'Required parameter is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = RocketChat.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('X-Auth-Token:' + RocketChat.params.user_token);&eol; request.AddHeader('X-User-Id:' + RocketChat.params.user_id);&eol;&eol; if (typeof RocketChat.HTTPProxy !== 'undefined' && RocketChat.HTTPProxy !== '') {&eol; request.SetProxy(RocketChat.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ RocketChat Webhook ] Sending request: ' + url +&eol; ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ RocketChat Webhook ] Received response with status code ' +&eol; request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ RocketChat Webhook ] Failed to parse response received from RocketChat');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.message !== 'undefined') {&eol; message += ': ' + JSON.stringify(response.message);&eol; }&eol; else if (response !== null && typeof response.error !== 'undefined') {&eol; message += ': ' + JSON.stringify(response.error);&eol; }&eol;&eol; throw message + '. Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; postMessage: function(use_default_message, message, fields) {&eol; var data = {&eol; channel: RocketChat.params.send_to,&eol; attachments: [{&eol; collapsed: false,&eol; color: RocketChat.params.color,&eol; title: params.alert_subject&eol; }]&eol; };&eol;&eol; if (RocketChat.params.title_link) {&eol; data.attachments[0].title_link = RocketChat.params.title_link;&eol; }&eol;&eol; if (use_default_message) {&eol; data.attachments[0].text = message;&eol; }&eol; else {&eol; data.attachments[0].fields = RocketChat.addFields(fields);&eol; }&eol;&eol; var result = RocketChat.request('post', 'chat.postMessage', data);&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.message._id === 'undefined') {&eol; throw 'Cannot send RocketChat message. Check debug log for more information.';&eol; }&eol;&eol; return {&eol; id: result.response.message._id,&eol; rid: result.response.message.rid,&eol; channel: result.response.channel&eol; };&eol; },&eol;&eol; sendMessage: function(update, fields) {&eol;&eol; var data = {&eol; message: {&eol; rid: RocketChat.params.room_id,&eol; tmid: RocketChat.params.msg_id,&eol; tshow: true&eol; }&eol; };&eol;&eol; if (update.status === '0') {&eol; data.message.attachments = [{&eol; collapsed: false,&eol; color: RocketChat.params.color,&eol; title: params.alert_subject,&eol; title_link: RocketChat.params.title_link,&eol; fields: RocketChat.addFields(fields)&eol; }];&eol; }&eol; else {&eol; data.message.alias = update.user;&eol; data.message.msg = update.action;&eol; if (update.message) {&eol; data.message.attachments = [{&eol; color: RocketChat.params.color,&eol; text: update.message&eol; }];&eol; }&eol; }&eol;&eol; RocketChat.request('post', 'chat.sendMessage', data);&eol; },&eol;&eol; getMessageLink: function(rid, id) {&eol; var room = RocketChat.request('get', 'rooms.info?roomId=' + encodeURIComponent(rid)),&eol; link = params.rc_url +&eol; (params.rc_url.endsWith('/') ? '' : '/');&eol;&eol; switch (room.response.room.t) {&eol; case 'c':&eol; link += 'channel/' + room.response.room.name + '?msg=' + id;&eol; break;&eol;&eol; case 'p':&eol; link += 'group/' + room.response.room.name + '?msg=' + id;&eol; break;&eol;&eol; case 'd':&eol; link += 'direct/' + rid + '?msg=' + id;&eol; break;&eol;&eol; default:&eol; Zabbix.Log(4, '[ RocketChat Webhook ] Can\'t get room type. Link to message will not be added.');&eol; }&eol;&eol; return link;&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; response,&eol; fields = {},&eol; rc = {},&eol; update = {},&eol; result = {tags: {}},&eol; required_params = ['alert_subject', 'alert_message', 'event_source', 'event_value'],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: 'default', color: '#000000'}&eol; ];&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('rc_')) {&eol; rc[key.substring(3)] = params[key];&eol; }&eol; else if (key.startsWith('field_')) {&eol; fields[key.substring(6)] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Forcing parameters for non trigger-based events.&eol; if (params.event_source !== '0') {&eol; params.use_default_message = 'true';&eol; params.event_nseverity = '0';&eol; params.rc_title_link = false;&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; RocketChat.setParams(rc);&eol; RocketChat.setProxy(params.HTTPProxy);&eol; RocketChat.params.color = severities[params.event_nseverity].color;&eol;&eol; // Send default message if use_default_message === true.&eol; if (params.use_default_message.toLowerCase() === 'true') {&eol; response = RocketChat.postMessage(true, params.alert_message);&eol; result.tags.__zbx_rc_id = response.id;&eol; result.tags.__zbx_rc_rid = response.rid;&eol; result.tags.__zbx_rc_msg_url = RocketChat.getMessageLink(response.rid, response.id);&eol; }&eol; // Send message for trigger-based events.&eol; else if (params.event_value === '1' && update.status === '0') {&eol; response = RocketChat.postMessage(false, params.alert_message, fields);&eol; result.tags.__zbx_rc_id = response.id;&eol; result.tags.__zbx_rc_rid = response.rid;&eol; result.tags.__zbx_rc_msg_url = RocketChat.getMessageLink(response.rid, response.id);&eol; }&eol; // Send thread message for trigger-based event.&eol; else {&eol; RocketChat.sendMessage(update, fields);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ RocketChat Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_rc_msg_url} |Rocket.Chat | |
+ROW |28 |4 |VictorOps | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var VictorOps = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; VictorOps.params = params;&eol; if (VictorOps.params.endpoint) {&eol; if (!VictorOps.params.endpoint.endsWith('/')) {&eol; VictorOps.params.endpoint += '/';&eol; }&eol;&eol; if (typeof VictorOps.params.routing_key !== 'undefined'&eol; && VictorOps.params.routing_key !== '{ALERT.SENDTO}'&eol; && VictorOps.params.routing_key !== 'Default') {&eol; VictorOps.params.endpoint += VictorOps.params.routing_key;&eol; }&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; VictorOps.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; addFields: function (fields) {&eol; var data = {};&eol;&eol; if (typeof fields === 'object') {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; if (fields[field] === '') {&eol; Zabbix.Log(4, '[ VictorOps Webhook ] Field "' + field +&eol; '" can\'t be empty. The field ignored.');&eol; }&eol; else {&eol; try {&eol; var parts = field.split(':'),&eol; prefix = parts[0].split('_');&eol;&eol; if (typeof prefix[1] === 'undefined'&eol; &pipe;&pipe; (prefix[1] === 'p' && params.event_value === '1'&eol; && (params.event_update_status === '0'&eol; &pipe;&pipe; params.event_update_status === '{EVENT.UPDATE.STATUS}'))&eol; &pipe;&pipe; (prefix[1] === 'r' && params.event_value === '0'&eol; && (params.event_update_status === '0'&eol; &pipe;&pipe; params.event_update_status === '{EVENT.UPDATE.STATUS}'))&eol; &pipe;&pipe; (prefix[1] === 'u' && params.event_update_status === '1')) {&eol; data[field.substring(field.indexOf(':') + 1)] = fields[field];&eol; }&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ VictorOps Webhook ] Can\'t parse field "' + field +&eol; '". The field ignored.');&eol; }&eol; }&eol; });&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (data) {&eol; if (typeof VictorOps.params !== 'object' &pipe;&pipe; typeof VictorOps.params.endpoint === 'undefined'&eol; &pipe;&pipe; VictorOps.params.endpoint === '' ) {&eol; throw 'Required parameter is not set: "vops_endpoint".';&eol; }&eol;&eol; var response,&eol; url = VictorOps.params.endpoint,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol;&eol; if (typeof VictorOps.HTTPProxy !== 'undefined' && VictorOps.HTTPProxy !== '') {&eol; request.SetProxy(VictorOps.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ VictorOps Webhook ] Sending request: ' + url +&eol; ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; response = request.Post(url, data);&eol;&eol; Zabbix.Log(4, '[ VictorOps Webhook ] Received response with status code ' +&eol; request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ VictorOps Webhook ] Failed to parse response received from VictorOps');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.messages !== 'undefined') {&eol; message += ': ' + JSON.stringify(response.messages);&eol; }&eol;&eol; throw message + '. Check debug log for more information.';&eol; }&eol;&eol; return response;&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; vops = {},&eol; required_params = ['event_source', 'event_value', 'priority_update'],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: 'default', color: '#000000'}&eol; ];&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('vops_')) {&eol; vops[key.substring(5)] = params[key];&eol; }&eol; else if (key.startsWith('field')) {&eol; fields[key.substring(5)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; if (params.event_update_status === '1') {&eol; fields[':message_type'] = params.priority_update;&eol; }&eol; else {&eol; fields[':message_type'] = params['priority_' + severities[params.event_nseverity].name]&eol; &pipe;&pipe; 'INFO';&eol; }&eol;&eol; if (params.event_info && params.event_source === '0') {&eol; fields[':event_info'] = params.event_info;&eol; }&eol;&eol; VictorOps.setParams(vops);&eol; VictorOps.setProxy(params.HTTPProxy);&eol; VictorOps.request(VictorOps.addFields(fields));&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ VictorOps Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |0 |0 | | | |
+ROW |29 |4 |Brevis.one | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var BrevisOne = {&eol; params: [],&eol;&eol; addParam: function (name, value) {&eol; BrevisOne.params.push(name + '=' + encodeURIComponent(value));&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; BrevisOne.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setPayload: function (params) {&eol; var parts = params.send_to.split(':'),&eol; defaultValues = {&eol; ring: 'true',&eol; flash: 'true',&eol; telauto: 'false'&eol; };&eol;&eol; BrevisOne.addParam('username', params.username);&eol; BrevisOne.addParam('password', params.password);&eol; BrevisOne.addParam('text', params.text);&eol;&eol; if (parts.length > 1) {&eol; BrevisOne.addParam('mode', parts[0]);&eol; BrevisOne.addParam('to', parts[1]);&eol; }&eol; else {&eol; BrevisOne.addParam('to', parts[0]);&eol; }&eol;&eol; Object.keys(defaultValues)&eol; .forEach(function (key) {&eol; if (params[key] && params[key].trim() && params[key].toLowerCase() === defaultValues[key]) {&eol; BrevisOne.addParam(key, defaultValues[key]);&eol; }&eol; });&eol; },&eol;&eol; request: function () {&eol; var response,&eol; request = new CurlHttpRequest(),&eol; data = '?' + BrevisOne.params.join('&');&eol;&eol; request.AddHeader('Content-Type: multipart/form-data');&eol;&eol; if (typeof BrevisOne.HTTPProxy !== 'undefined' && BrevisOne.HTTPProxy !== '') {&eol; request.SetProxy(BrevisOne.HTTPProxy);&eol; }&eol;&eol; Zabbix.Log(4, '[ BrevisOne Webhook ] Sending request.');&eol;&eol; response = request.Post(params.endpoint + data);&eol;&eol; Zabbix.Log(4, '[ BrevisOne Webhook ] Received response with status code ' +&eol; request.Status() + '\n' + response);&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response) {&eol; message += ': ' + response;&eol; }&eol;&eol; throw message + '. Check debug log for more information.';&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; ['endpoint', 'password', 'username', 'text', 'send_to'].forEach(function (field) {&eol; if (typeof params !== 'object' &pipe;&pipe; typeof params[field] === 'undefined'&eol; &pipe;&pipe; !params[field].trim()) {&eol; throw 'Required parameter is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; if (params.send_to === '{ALERT.SENDTO}') {&eol; throw 'Required parameter is not set: "send_to".';&eol; }&eol;&eol; BrevisOne.setProxy(params.HTTPProxy);&eol; BrevisOne.setPayload(params);&eol; BrevisOne.request();&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ BrevisOne Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |0 |0 | | | |
+ROW |30 |4 |Express.ms | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Express = {&eol; params: [],&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Express.params = params;&eol;&eol; if (typeof Express.params.url === 'string' && !Express.params.url.endsWith('/')) {&eol; Express.params.url += '/';&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; Express.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; request: function (query, data) {&eol; var response,&eol; url = Express.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Bearer ' + Express.params.token);&eol;&eol; if (typeof Express.HTTPProxy !== 'undefined' && Express.HTTPProxy !== '') {&eol; request.SetProxy(Express.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ Express Webhook ] Sending request: ' + url +&eol; ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; response = request.Post(url, data);&eol;&eol; Zabbix.Log(4, '[ Express Webhook ] Received response with status code ' +&eol; request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Express Webhook ] Failed to parse response received from Express');&eol; response = {};&eol; }&eol; }&eol;&eol; if (response.status !== 'ok') {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (typeof response.reason !== 'undefined') {&eol; message += ': ' + JSON.stringify(response.reason);&eol; }&eol;&eol; throw message + '. Check debug log for more information.';&eol; }&eol;&eol; return response.result;&eol; },&eol;&eol; postMessage: function (is_problem) {&eol; var data,&eol; url,&eol; result = {tags: {}},&eol; response;&eol;&eol; if (is_problem) {&eol; data = {&eol; group_chat_id: Express.params.send_to,&eol; notification: {&eol; status: 'ok',&eol; body: Express.params.message&eol; }&eol; };&eol; url = 'api/v3/botx/notification/callback/direct';&eol; }&eol; else {&eol; data = {&eol; reply: {&eol; status: 'ok',&eol; body: Express.params.message&eol; }&eol; };&eol; url = 'api/v3/botx/events/reply_event';&eol;&eol; try {&eol; var tags = JSON.parse(Express.params.tags);&eol; }&eol; catch (error) {&eol; throw 'Value of "express_tags" is not JSON. Value: ' + Express.params.tags + '.';&eol; }&eol;&eol; tags.forEach(function(tag) {&eol; if (tag.tag === '__zbx_ex_sync_id_' + Express.params.send_to) {&eol; data.source_sync_id = tag.value;&eol; }&eol; });&eol;&eol; if (!data.source_sync_id) {&eol; throw 'Cannot update data. sync_id for the provided sender is unknown.';&eol; }&eol; }&eol;&eol; response = Express.request(url, data);&eol;&eol; if (is_problem && response.sync_id) {&eol; result.tags['__zbx_ex_sync_id_' + Express.params.send_to] = response.sync_id;&eol;&eol; return JSON.stringify(result);&eol; }&eol; else {&eol; return 'OK';&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; express = {},&eol; required_params = [&eol; 'express_url', 'express_send_to', 'express_message', 'express_tags', 'express_token',&eol; 'event_source', 'event_value', 'event_update_status'&eol; ];&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('express_')) {&eol; express[key.substring(8)] = params[key];&eol; }&eol;&eol; if (required_params.indexOf(key) !== -1&eol; && (params[key].trim() === '' &pipe;&pipe; params[key] === '{ALERT.SENDTO}')) {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Forcing event_value and event_update_status for non trigger-based events.&eol; if (params.event_source !== '0' ) {&eol; params.event_value = '1';&eol; params.event_update_status = '0';&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; // 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; Express.setParams(express);&eol; Express.setProxy(params.HTTPProxy);&eol;&eol; return Express.postMessage(params.event_value === '1' && params.event_update_status === '0');&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Express Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |0 | | | |
+ROW |31 |4 |ManageEngine ServiceDesk| | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var MEngine = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; MEngine.params = params;&eol; if (typeof MEngine.params.url === 'string') {&eol; if (!MEngine.params.url.endsWith('/')) {&eol; MEngine.params.url += '/';&eol; }&eol;&eol; MEngine.params.url += 'api/v3/';&eol; }&eol;&eol; if (MEngine.params.on_premise.toLowerCase() !== 'true'&eol; && typeof MEngine.params.on_demand_url_auth === 'string') {&eol; if (!MEngine.params.on_demand_url_auth.endsWith('/')) {&eol; MEngine.params.on_demand_url_auth += '/';&eol; }&eol;&eol; MEngine.params.on_demand_url_auth += 'oauth/v2/token?';&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; MEngine.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; createLink: function (id, url) {&eol; return url + (url.endsWith('/') ? '' : '/') +&eol; ((MEngine.params.on_premise.toLowerCase() === 'true')&eol; ? ('WorkOrder.do?woMode=viewWO&woID=' + id)&eol; : ('app/itdesk/ui/requests/' + id + '/details')&eol; );&eol; },&eol;&eol; refreshAccessToken: function () {&eol; [&eol; 'on_demand_url_auth',&eol; 'on_demand_refresh_token',&eol; 'on_demand_client_id',&eol; 'on_demand_client_secret'&eol; ].forEach(function (field) {&eol; if (typeof MEngine.params !== 'object' &pipe;&pipe; typeof MEngine.params[field] === 'undefined'&eol; &pipe;&pipe; MEngine.params[field].trim() === '' ) {&eol; throw 'Required MEngine param is not set: "sd_' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; request = new CurlHttpRequest(),&eol; url = MEngine.params.on_demand_url_auth +&eol; 'refresh_token=' + encodeURIComponent(MEngine.params.on_demand_refresh_token) +&eol; '&grant_type=refresh_token&client_id=' + encodeURIComponent(MEngine.params.on_demand_client_id) +&eol; '&client_secret=' + encodeURIComponent(MEngine.params.on_demand_client_secret) +&eol; '&redirect_uri=https://www.zoho.com&scope=SDPOnDemand.requests.ALL';&eol;&eol; if (MEngine.HTTPProxy) {&eol; request.SetProxy(MEngine.HTTPProxy);&eol; }&eol;&eol; Zabbix.Log(4, '[ ManageEngine Webhook ] Refreshing access token. Request: ' + url);&eol;&eol; response = request.Post(url);&eol;&eol; Zabbix.Log(4, '[ ManageEngine Webhook ] Received response with status code ' +&eol; request.Status() + '\n' + response);&eol;&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ ManageEngine Webhook ] Failed to parse response received from Zoho Accounts');&eol; }&eol;&eol; if ((request.Status() < 200 &pipe;&pipe; request.Status() >= 300) && !response.access_token) {&eol; throw 'Access token refresh failed with HTTP status code ' + request.Status() +&eol; '. Check debug log for more information.';&eol; }&eol; else {&eol; MEngine.params.on_demand_auth_token = response.access_token;&eol; }&eol; },&eol;&eol; request: function (method, query, data) {&eol; var response,&eol; url = MEngine.params.url + query,&eol; input,&eol; request = new CurlHttpRequest(),&eol; message;&eol;&eol; if (MEngine.params.on_premise.toLowerCase() === 'true') {&eol; request.AddHeader('TECHNICIAN_KEY: ' + MEngine.params.on_premise_auth_token);&eol; }&eol; else {&eol; request.AddHeader('Authorization: Zoho-oauthtoken ' + MEngine.params.on_demand_auth_token);&eol; request.AddHeader('Accept: application/v3+json');&eol; }&eol;&eol; if (MEngine.HTTPProxy) {&eol; request.SetProxy(MEngine.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; input = 'input_data=' + encodeURIComponent(data);&eol; Zabbix.Log(4, '[ ManageEngine Webhook ] Sending request: ' + url + '?' + input);&eol;&eol; switch (method) {&eol; case 'post':&eol; response = request.Post(url, input);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, input);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ ManageEngine Webhook ] Received response with status code ' +&eol; request.Status() + '\n' + response);&eol;&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ ManageEngine Webhook ] Failed to parse response received from ManageEngine');&eol; }&eol;&eol; if ((request.Status() < 200 &pipe;&pipe; request.Status() >= 300)&eol; && typeof response.response_status !== 'object') {&eol; throw 'Request failed with HTTP status code ' + request.Status() +&eol; '. Check debug log for more information.';&eol; }&eol; else if (typeof response.response_status === 'object' && response.response_status.status === 'failed') {&eol; message = 'Request failed with status_code ';&eol;&eol; if (typeof response.response_status.messages === 'object'&eol; && response.response_status.messages[0]&eol; && response.response_status.messages[0].message) {&eol; message += response.response_status.messages[0].status_code +&eol; '. Message: ' + response.response_status.messages[0].message;&eol; }&eol; else {&eol; message += response.response_status.status_code;&eol; }&eol;&eol; message += '. Check debug log for more information.';&eol; throw message;&eol; }&eol; else if (response.request) {&eol; return response.request.id;&eol; }&eol; },&eol;&eol; createPaylaod: function (fields, isNote) {&eol; var data = {},&eol; result;&eol;&eol; if (isNote) {&eol; data.description = fields['field_string:description'].replace(/(?:\r\n&pipe;\r&pipe;\n)/g, '<br>');&eol; result = {request_note: data};&eol; }&eol; else {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; if (fields[field].trim() === '') {&eol; Zabbix.Log(4, '[ ManageEngine Webhook ] Field "' + field +&eol; '" can\'t be empty. The field ignored.');&eol; }&eol; else {&eol; try {&eol; var prefix = field.split(':')[0],&eol; root;&eol;&eol; if (prefix.startsWith('udf_') && !data.udf_fields) {&eol; data.udf_fields = {};&eol; root = data.udf_fields;&eol; }&eol; else if (prefix.startsWith('udf_')) {&eol; root = data.udf_fields;&eol; }&eol; else {&eol; root = data;&eol; }&eol;&eol; if (prefix.endsWith('string')) {&eol; root[field.substring(field.indexOf(':') + 1)&eol; .toLowerCase()] = fields[field];&eol; }&eol; else {&eol; root[field.substring(field.indexOf(':') + 1)&eol; .toLowerCase()] = {&eol; name: fields[field]&eol; };&eol; }&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ ManageEngine Webhook ] Can\'t parse field "' + field +&eol; '". The field ignored.');&eol; }&eol; }&eol; });&eol; if (data.description) {&eol; data.description = data.description.replace(/(?:\r\n&pipe;\r&pipe;\n)/g, '<br>');&eol; }&eol;&eol; result = {request: data};&eol; }&eol;&eol; return result;&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; sd = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'sd_on_premise', 'field_string:subject', 'field_string:description',&eol; 'event_recovery_value', 'event_source', 'event_value', 'event_update_status'&eol; ],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'default', color: '#000000'}&eol; ];&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('sd_')) {&eol; sd[key.substring(3)] = params[key];&eol; }&eol; else if (key.startsWith('field_') &pipe;&pipe; key.startsWith('udf_field_')) {&eol; fields[key] = params[key];&eol; }&eol;&eol; if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&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; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; if (params.event_update_status === '1' && (typeof params.sd_request_id === 'undefined'&eol; &pipe;&pipe; params.sd_request_id.trim() === ''&eol; &pipe;&pipe; params.sd_request_id === '{EVENT.TAGS.__zbx_sd_request_id}')) {&eol; throw 'Parameter "sd_request_id" can\'t be empty for update operation.';&eol; }&eol;&eol; MEngine.setParams(sd);&eol; MEngine.setProxy(params.HTTPProxy);&eol;&eol; if (MEngine.params.on_premise.toLowerCase() !== 'true') {&eol; MEngine.refreshAccessToken();&eol; }&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_recovery_value !== '0') {&eol; fields['field_object:priority'] = params['priority_' + severities[params.event_nseverity].name]&eol; &pipe;&pipe; 'Normal';&eol;&eol; MEngine.request('post', 'requests', MEngine.createPaylaod(fields));&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && params.event_update_status === '0') {&eol; fields['field_object:priority'] = params['priority_' + severities[params.event_nseverity].name]&eol; &pipe;&pipe; 'Normal';&eol;&eol; var id = MEngine.request('post', 'requests', MEngine.createPaylaod(fields));&eol;&eol; result.tags.__zbx_sd_request_id = id;&eol; result.tags.__zbx_sd_request_link = MEngine.createLink(id, params.sd_url);&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; if (params.event_update_status === '1') {&eol; MEngine.request('post', 'requests/' + params.sd_request_id + '/notes',&eol; MEngine.createPaylaod(fields, true)&eol; );&eol; }&eol; delete fields['field_string:description'];&eol; MEngine.request('put', 'requests/' + params.sd_request_id, MEngine.createPaylaod(fields));&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ ManageEngine Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_sd_request_link} |ManageEngine: {EVENT.TAGS.__zbx_sd_request_id} | |
TABLE |media_type_param
FIELDS|mediatype_paramid|mediatypeid|name |value |
@@ -592,6 +594,38 @@ ROW |531 |29 |text
ROW |532 |29 |username |<PLACE USERNAME> |
ROW |533 |9 |channel_id |{EVENT.TAGS.__channel_id} |
ROW |534 |9 |message_ts |{EVENT.TAGS.__message_ts} |
+ROW |535 |30 |event_source |{EVENT.SOURCE} |
+ROW |536 |30 |event_update_status |{EVENT.UPDATE.STATUS} |
+ROW |537 |30 |event_value |{EVENT.VALUE} |
+ROW |538 |30 |express_message |{ALERT.MESSAGE} |
+ROW |539 |30 |express_send_to |{ALERT.SENDTO} |
+ROW |540 |30 |express_tags |{EVENT.TAGSJSON} |
+ROW |541 |30 |express_token |<PLACE BOT TOKEN> |
+ROW |542 |30 |express_url |<PLACE INSTANCE URL> |
+ROW |543 |31 |event_nseverity |{EVENT.NSEVERITY} |
+ROW |544 |31 |event_recovery_value |{EVENT.RECOVERY.VALUE} |
+ROW |545 |31 |event_source |{EVENT.SOURCE} |
+ROW |546 |31 |event_update_status |{EVENT.UPDATE.STATUS} |
+ROW |547 |31 |event_value |{EVENT.VALUE} |
+ROW |548 |31 |field_ref:requester |<PLACE API USER NAME> |
+ROW |549 |31 |field_string:description |{ALERT.MESSAGE} |
+ROW |550 |31 |field_string:subject |{ALERT.SUBJECT} |
+ROW |551 |31 |priority_average |Normal |
+ROW |552 |31 |priority_default |Normal |
+ROW |553 |31 |priority_disaster |High |
+ROW |554 |31 |priority_high |High |
+ROW |555 |31 |priority_information |Low |
+ROW |556 |31 |priority_not_classified |Low |
+ROW |557 |31 |priority_warning |Medium |
+ROW |558 |31 |sd_on_demand_client_id |<PLACE ON DEMAND CLIENT ID> |
+ROW |559 |31 |sd_on_demand_client_secret |<PLACE ON DEMAND CLIENT SECRET> |
+ROW |560 |31 |sd_on_demand_refresh_token |<PLACE ON DEMAND REFRESH TOKEN> |
+ROW |561 |31 |sd_on_demand_url_auth |<PLACE AUTHENTICATION URL FOR ON DEMAND> |
+ROW |562 |31 |sd_on_premise |true |
+ROW |563 |31 |sd_on_premise_auth_token |<PLACE ON PREMISE TECHNICIAN_KEY> |
+ROW |564 |31 |sd_request_id |{EVENT.TAGS.__zbx_sd_request_id} |
+ROW |565 |31 |sd_url |<PLACE INSTANCE URL> |
+ROW |566 |31 |trigger_description |{TRIGGER.DESCRIPTION} |
TABLE |media_type_message
FIELDS|mediatype_messageid|mediatypeid|eventsource|recovery|subject |message |
@@ -734,6 +768,16 @@ ROW |136 |29 |0 |1 |Resolved in {EVENT.D
ROW |137 |29 |0 |2 |[{EVENT.STATUS}] {EVENT.NAME} |[{EVENT.STATUS}] {EVENT.NAME}&eol;&eol;{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE} |
ROW |138 |29 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}&eol;Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME}|
ROW |139 |29 |2 |0 |Autoregistration: {HOST.HOST} |Autoregistration: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |140 |30 |0 |0 |[{EVENT.STATUS}] {EVENT.NAME} |[{EVENT.STATUS}] {EVENT.NAME}&eol;Started at {EVENT.TIME} on {EVENT.DATE}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Event info: {$ZABBIX.URL}/tr_events.php?triggerid={TRIGGER.ID}&eventid={EVENT.ID} |
+ROW |141 |30 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |[{EVENT.STATUS}] {EVENT.NAME}&eol;Resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Event info: {$ZABBIX.URL}/tr_events.php?triggerid={TRIGGER.ID}&eventid={EVENT.ID} |
+ROW |142 |30 |0 |2 |[{EVENT.STATUS}] {EVENT.NAME} |[{EVENT.STATUS}] {EVENT.NAME}&eol;&eol;{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE} |
+ROW |143 |30 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}&eol;Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME}|
+ROW |144 |30 |2 |0 |Autoregistration: {HOST.HOST} |Autoregistration: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |145 |31 |0 |0 |[{EVENT.STATUS}] {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |146 |31 |0 |1 |[{EVENT.STATUS}] {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |147 |31 |0 |2 |[{EVENT.STATUS}] {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |148 |31 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |149 |31 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
TABLE |usrgrp
FIELDS|usrgrpid|name |gui_access|users_status|debug_mode|
diff --git a/create/src/templates.tmpl b/create/src/templates.tmpl
index 5ca27064666..8b1e07c3c85 100644
--- a/create/src/templates.tmpl
+++ b/create/src/templates.tmpl
@@ -146,18 +146,18 @@ ROW |10309 |NULL |Template App HAProxy by HTTP
ROW |10310 |NULL |Template DB Redis |3 |-1 |2 | | |Template DB Redis |0 |NULL |Get Redis metrics from plugin for the New Zabbix Agent (zabbix-agent2).&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/389050-discussion-thread-for-official-zabbix-template-redis&eol;&eol;Template tooling version used: 0.33 |1 |1 | | | | | |1 |0 |
ROW |10314 |NULL |Template Module Windows services by Zabbix agent |3 |-1 |2 | | |Template Module Windows services by Zabbix agent |0 |NULL |Template Services OS Windows&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10315 |NULL |Template Module Windows services by Zabbix agent active |3 |-1 |2 | | |Template Module Windows services by Zabbix agent active |0 |NULL |Template Services OS Windows&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10316 |NULL |Template DB MySQL by Zabbix agent |3 |-1 |2 | | |Template DB MySQL by Zabbix agent |0 |NULL |Requirements for template operation:&eol;1.Install Zabbix agent and MySQL client.&eol;2.Copy template_db_mysql.conf into folder with Zabbix agent configuration (/etc/zabbix/zabbix_agentd.d/ by default). Don't forget restart zabbix-agent. &eol;3.Create MySQL user for monitoring. For example:&eol;CREATE USER 'zbx_monitor'@'%' IDENTIFIED BY '<password>';&eol;GRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW ON *.* TO 'zbx_monitor'@'%';&eol;For more information read the MYSQL documentation https://dev.mysql.com/doc/refman/8.0/en/grant.html , please. &eol;4.Create .my.cnf in home directory of Zabbix agent for Linux (/var/lib/zabbix by default ) or my.cnf in c:\ for Windows. For example:&eol;[client]&eol;user='zbx_monitor'&eol;password='<password>'&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384189-discussion-thread-for-official-zabbix-template-db-mysql&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
+ROW |10316 |NULL |Template DB MySQL by Zabbix agent |3 |-1 |2 | | |Template DB MySQL by Zabbix agent |0 |NULL |Requirements for template operation:&eol;1.Install Zabbix agent and MySQL client.&eol;2.Copy template_db_mysql.conf into folder with Zabbix agent configuration (/etc/zabbix/zabbix_agentd.d/ by default). Don't forget to restart zabbix-agent. &eol;3.Create MySQL user for monitoring. For example:&eol;CREATE USER 'zbx_monitor'@'%' IDENTIFIED BY '<password>';&eol;GRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW ON *.* TO 'zbx_monitor'@'%';&eol;For more information read the MySQL documentation https://dev.mysql.com/doc/refman/8.0/en/grant.html , please. &eol;4.Create .my.cnf in home directory of Zabbix agent for Linux (/var/lib/zabbix by default ) or my.cnf in c:\ for Windows. For example:&eol;[client]&eol;user='zbx_monitor'&eol;password='<password>'&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384189-discussion-thread-for-official-zabbix-template-db-mysql&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10317 |NULL |Template DB MySQL by ODBC |3 |-1 |2 | | |Template DB MySQL by ODBC |0 |NULL |Requirements for template operation:&eol;1. Create MySQL user for monitoring. For example:&eol;CREATE USER 'zbx_monitor'@'%' IDENTIFIED BY '<password>';&eol;GRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW ON *.* TO 'zbx_monitor'@'%';&eol;For more information read the MYSQL documentation https://dev.mysql.com/doc/refman/8.0/en/grant.html , please. &eol;2. Set the user name and password in host macros ({$MYSQL.USER} and {$MYSQL.PASSWORD}).&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384189-discussion-thread-for-official-zabbix-template-db-mysql&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10318 |NULL |Template App Docker |3 |-1 |2 | | |Template App Docker |0 |NULL |Get Docker engine metrics from plugin for the New Zabbix Agent (zabbix-agent2).&eol;&eol;You can discuss this template or leave feedback on our forum &eol;&eol;Template tooling version used: 0.35 |1 |1 | | | | | |1 |0 |
ROW |10319 |NULL |Template App Memcached |3 |-1 |2 | | |Template App Memcached |0 |NULL |Get Memcached metrics from plugin for the New Zabbix Agent (zabbix-agent2).&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/398623-discussion-thread-for-official-zabbix-template-memcached&eol;&eol;Template tooling version used: 0.35 |1 |1 | | | | | |1 |0 |
-ROW |10320 |NULL |Template DB MySQL by Zabbix agent 2 |3 |-1 |2 | | |Template DB MySQL by Zabbix agent 2 |0 |NULL |Requirements for template operation:&eol;1. Create MySQL user for monitoring. For example:&eol;CREATE USER 'zbx_monitor'@'%' IDENTIFIED BY '<password>';&eol;GRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW ON *.* TO 'zbx_monitor'@'%';&eol;For more information please read the MYSQL documentation https://dev.mysql.com/doc/refman/8.0/en/grant.html.&eol;2. Set in the {$MYSQL.DSN} macro the data source name of the MySQL instance either session name from Zabbix agent 2 configuration file or URI.&eol;Examples: MySQL1, tcp://localhost:3306, tcp://172.16.0.10, unix:/var/run/mysql.sock&eol;For more information about MySQL Unix socket file please read the MySQL documentation https://dev.mysql.com/doc/refman/8.0/en/problems-with-mysql-sock.html.&eol;3. If you had set URI in the {$MYSQL.DSN}, please define the user name and password in host macros ({$MYSQL.USER} and {$MYSQL.PASSWORD}).&eol;Leave macros {$MYSQL.USER} and {$MYSQL.PASSWORD} empty if you use a session name. Set the user name and password in the Plugins.Mysql.<...> section of your Zabbix agent 2 configuration file.&eol;For more information about configuring the Zabbix MySQL plugin please read the documentation https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/src/go/plugins/mysql/README.md.&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384189-discussion-thread-for-official-zabbix-template-db-mysql&eol;&eol;Template tooling version used: 0.38|1 |1 | | | | | |1 |0 |
+ROW |10320 |NULL |Template DB MySQL by Zabbix agent 2 |3 |-1 |2 | | |Template DB MySQL by Zabbix agent 2 |0 |NULL |Requirements for template operation:&eol;1. Create MySQL user for monitoring. For example:&eol;CREATE USER 'zbx_monitor'@'%' IDENTIFIED BY '<password>';&eol;GRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW ON *.* TO 'zbx_monitor'@'%';&eol;For more information please read the MySQL documentation https://dev.mysql.com/doc/refman/8.0/en/grant.html.&eol;2. Set in the {$MYSQL.DSN} macro the data source name of the MySQL instance either session name from Zabbix agent 2 configuration file or URI.&eol;Examples: MySQL1, tcp://localhost:3306, tcp://172.16.0.10, unix:/var/run/mysql.sock&eol;For more information about MySQL Unix socket file please read the MySQL documentation https://dev.mysql.com/doc/refman/8.0/en/problems-with-mysql-sock.html.&eol;3. If you had set URI in the {$MYSQL.DSN}, please define the user name and password in host macros ({$MYSQL.USER} and {$MYSQL.PASSWORD}).&eol;Leave macros {$MYSQL.USER} and {$MYSQL.PASSWORD} empty if you use a session name. Set the user name and password in the Plugins.Mysql.<...> section of your Zabbix agent 2 configuration file.&eol;For more information about configuring the Zabbix MySQL plugin please read the documentation https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/src/go/plugins/mysql/README.md.&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384189-discussion-thread-for-official-zabbix-template-db-mysql&eol;&eol;Template tooling version used: 0.38|1 |1 | | | | | |1 |0 |
ROW |10321 |NULL |Template Server Chassis by IPMI |3 |-1 |2 | | |Template Server Chassis by IPMI |0 |NULL |Template for monitoring servers with BMC over IPMI that work without any external scripts. &eol;All metrics are collected at once, thanks to Zabbix's bulk data collection. The template is available starting from Zabbix version 5.0. &eol;It collects metrics by polling BMC remotely using an IPMI agent.&eol;&eol;&eol;Known Issues:&eol;&eol; Description: If the BMC has a sensor with an empty threshold value, we get the LLD error "Cannot create trigger...".&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/398023-discussion-thread-for-official-zabbix-template-ipmi&eol;&eol;Template tooling version used: 0.37 |1 |1 | | | | | |1 |0 |
ROW |10322 |NULL |Template App Elasticsearch Cluster by HTTP |3 |-1 |2 | | |Template App Elasticsearch Cluster by HTTP |0 |NULL |The template to monitor Elasticsearch by Zabbix that work without any external scripts.&eol;It works with both standalone and cluster instances.&eol;The metrics are collected in one pass remotely using an HTTP agent. &eol;They are getting values from REST API _cluster/health, _cluster/stats, _nodes/stats requests.&eol;You can set {$ELASTICSEARCH.USERNAME} and {$ELASTICSEARCH.PASSWORD} macros in the template for using on the host level.&eol;If you use an atypical location ES API, don't forget to change the macros {$ELASTICSEARCH.SCHEME},{$ELASTICSEARCH.PORT}.&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/399473-discussion-thread-for-official-zabbix-template-for-elasticsearch&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10323 |NULL |Template DB ClickHouse by HTTP |3 |-1 |2 | | |Template DB ClickHouse by HTTP |0 |NULL |Get node metrics from ClickHouse HTTP interface using HTTP agent.&eol;&eol;Template tooling version used: 0.35 |1 |1 | | | | | |1 |0 |
ROW |10324 |NULL |Template App Etcd by HTTP |3 |-1 |2 | | |Template App Etcd by HTTP |0 |NULL |Get Etcd metrics by HTTP agent.&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
ROW |10325 |NULL |Template App IIS by Zabbix agent |3 |-1 |2 | | |Template App IIS by Zabbix agent |0 |NULL |Get metrics from IIS using Zabbix agent running on Windows&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/401862-discussion-thread-for-official-zabbix-template-internet-information-services&eol;&eol;Template tooling version used: 0.35 |1 |1 | | | | | |1 |0 |
ROW |10326 |NULL |Template App IIS by Zabbix agent active |3 |-1 |2 | | |Template App IIS by Zabbix agent active |0 |NULL |Get metrics from IIS using Zabbix agent running on Windows&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/401862-discussion-thread-for-official-zabbix-template-internet-information-services&eol;&eol;Template tooling version used: 0.35 |1 |1 | | | | | |1 |0 |
-ROW |10327 |NULL |Template DB MSSQL by ODBC |3 |-1 |2 | | |Template DB MSSQL by ODBC |0 |NULL |1. Create an MSSQL user for monitoring.&eol; View Server State and View Any Definition permissions should be granted to the user.&eol; For more information please see the MSSQL documentation.&eol;2. Set the user name and password in host macros ({$MSSQL.USER} and {$MSSQL.PASSWORD}).&eol; Do not forget to install the Microsoft ODBC driver on the Zabbix server or the Zabbix proxy.&eol; See Microsoft documentation for instructions: https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server?view=sql-server-ver15.&eol; Note! Credentials in the odbc.ini do not work for MSSQL.&eol;3. For named instance set the value of {$MSSQL.INSTANCE} macro as MSSQL$instance name, please.&eol;The "Service's TCP port state" item uses {HOST.CONN} and {$MSSQL.PORT} macros to check the availability of the MSSQL instance.&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/&eol;&eol;Template tooling version used: 0.38|1 |1 | | | | | |1 |0 |
+ROW |10327 |NULL |Template DB MSSQL by ODBC |3 |-1 |2 | | |Template DB MSSQL by ODBC |0 |NULL |1. Create an MSSQL user for monitoring.&eol; View Server State and View Any Definition permissions should be granted to the user.&eol; Grant this user read permissions to the sysjobschedules, sysjobhistory, sysjobs tables. &eol; For more information, see MSSQL documentation.&eol;2. Set the user name and password in host macros ({$MSSQL.USER} and {$MSSQL.PASSWORD}).&eol; Do not forget to install Microsoft ODBC driver on Zabbix server or Zabbix proxy.&eol; See Microsoft documentation for instructions: https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server?view=sql-server-ver15.&eol; Note! Credentials in the odbc.ini do not work for MSSQL.&eol;3. For named instance set the value of {$MSSQL.INSTANCE} macro as MSSQL$instance name.&eol;The "Service's TCP port state" item uses {HOST.CONN} and {$MSSQL.PORT} macros to check the availability of the MSSQL instance.&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/&eol;&eol;Template tooling version used: 0.38|1 |1 | | | | | |1 |0 |
ROW |10328 |NULL |Template DB PostgreSQL Agent 2 |3 |-1 |2 | | |Template DB PostgreSQL Agent 2 |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10329 |NULL |Template DB Oracle by ODBC |3 |-1 |2 | | |Template DB Oracle by ODBC |0 |NULL |1. Create an Oracle user for monitoring.&eol;&eol;2. Set the user name and password in host macros ({$ORACLE.USER} and {$ORACLE.PASSWORD}).&eol; Do not forget to install the Microsoft ODBC driver on the Zabbix server or the Zabbix proxy.&eol; See Oracle documentation for instructions: https://www.oracle.com/database/technologies/releasenote-odbc-ic.html.&eol;&eol; Note! Credentials in the odbc.ini do not work for Oracle.&eol; Note! Be sure that ODBC connects to Oracle with session parameter NLS_NUMERIC_CHARACTERS= '.,' It is important for correct display float numbers in Zabbix.&eol;The "Service's TCP port state" item uses {HOST.CONN} and {$ORACLE.PORT} macros to check the availability of the listener.&eol;&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10330 |NULL |Template VM VMware macros |3 |-1 |2 | | |Template VM VMware macros |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
@@ -213,6 +213,8 @@ ROW |10379 |NULL |Template Power APC Smart-UPS SRT 8000 SNMP
ROW |10380 |NULL |Template Power APC UPS Symmetra LX SNMP |3 |-1 |2 | | |Template Power 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 |
ROW |10381 |NULL |Template Power APC UPS Symmetra RM SNMP |3 |-1 |2 | | |Template Power 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 |
ROW |10382 |NULL |Template Power APC UPS Symmetra RX SNMP |3 |-1 |2 | | |Template Power 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 |
+ROW |10383 |NULL |Template APP WildFly Domain by JMX |3 |-1 |2 | | |Template APP 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 |
+ROW |10384 |NULL |Template APP WildFly Server by JMX |3 |-1 |2 | | |Template APP 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 |
TABLE |group_prototype
FIELDS|group_prototypeid|hostid|name |groupid|templateid|
@@ -223,10 +225,10 @@ ROW |5 |10332 |{#DATACENTER.NAME} (vm) |NULL |NU
ROW |6 |10332 |{#HV.NAME} |NULL |NULL |
ROW |24 |10364 |MongoDB sharded cluster/{#REPLICASET}|NULL |NULL |
ROW |26 |10365 |MongoDB sharded cluster/{#ID} |NULL |NULL |
-ROW |32 |10331 | |12 |NULL |
-ROW |33 |10332 | |12 |NULL |
-ROW |34 |10364 | |13 |NULL |
-ROW |35 |10365 | |13 |NULL |
+ROW |36 |10331 | |12 |NULL |
+ROW |37 |10332 | |12 |NULL |
+ROW |38 |10364 | |13 |NULL |
+ROW |39 |10365 | |13 |NULL |
TABLE |screens
FIELDS|screenid|name |hsize|vsize|templateid|userid|private|
@@ -329,322 +331,322 @@ ROW |5544 |41 |0 |1022 |500 |100 |0 |1 |1
ROW |5545 |41 |0 |1023 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
ROW |5546 |41 |0 |1021 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
ROW |5547 |41 |0 |1024 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6248 |25 |0 |1174 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6249 |25 |0 |1176 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6250 |25 |20 |1172 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6251 |25 |20 |1173 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6252 |25 |0 |1175 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6253 |26 |0 |838 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6254 |26 |0 |839 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6255 |26 |20 |836 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6256 |26 |20 |837 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6257 |26 |0 |840 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6258 |59 |0 |1125 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6259 |59 |0 |1129 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6260 |59 |0 |1128 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6261 |59 |0 |1126 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6262 |59 |0 |1127 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6263 |48 |20 |1075 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6264 |49 |20 |1078 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6265 |49 |20 |1076 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6266 |49 |20 |1079 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6267 |49 |20 |1077 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6268 |50 |20 |1080 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6269 |51 |20 |1081 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6270 |52 |20 |1084 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6271 |52 |20 |1082 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6272 |52 |20 |1085 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6273 |52 |20 |1083 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6274 |53 |20 |1086 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6275 |27 |0 |841 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6276 |27 |0 |843 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6277 |27 |0 |842 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6278 |28 |0 |845 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6279 |28 |0 |847 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6280 |28 |0 |846 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6281 |62 |0 |1419 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6282 |62 |0 |1414 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6283 |62 |0 |1421 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6284 |62 |0 |1423 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6285 |62 |0 |1420 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6286 |63 |0 |1422 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6287 |63 |0 |1425 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6288 |63 |0 |1415 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6289 |63 |0 |1418 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6290 |63 |0 |1416 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6291 |63 |0 |1424 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6292 |64 |0 |1432 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6293 |64 |0 |1428 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6294 |64 |0 |1434 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6295 |64 |0 |1436 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6296 |64 |0 |1433 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6297 |65 |0 |1435 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6298 |65 |0 |1438 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6299 |65 |0 |1429 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6300 |65 |0 |1431 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6301 |65 |0 |1430 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6302 |65 |0 |1437 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6303 |22 |0 |806 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6304 |22 |0 |804 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6305 |22 |0 |805 |500 |100 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6306 |22 |0 |803 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6307 |21 |0 |802 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6308 |21 |0 |799 |500 |100 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6309 |21 |0 |800 |500 |114 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6310 |21 |0 |798 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6311 |21 |0 |797 |500 |160 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6312 |21 |0 |801 |500 |160 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6313 |17 |0 |532 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6314 |17 |0 |530 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6315 |17 |0 |531 |500 |100 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6316 |17 |0 |529 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6317 |4 |0 |392 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6318 |4 |0 |404 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6319 |4 |0 |406 |500 |114 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6320 |4 |0 |410 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6321 |4 |0 |527 |500 |160 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6322 |4 |0 |788 |500 |160 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6323 |5 |0 |469 |500 |148 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6324 |5 |0 |471 |500 |100 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6325 |5 |0 |498 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6326 |5 |0 |540 |500 |100 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6327 |7 |0 |463 |500 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6328 |7 |0 |462 |500 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6329 |7 |0 |541 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6330 |7 |0 |464 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6331 |6 |0 |475 |500 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6332 |6 |0 |474 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6333 |6 |0 |542 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6334 |18 |0 |487 |750 |100 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6335 |18 |0 |543 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6336 |9 |0 |457 |500 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6337 |9 |0 |456 |500 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6338 |9 |0 |544 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6339 |9 |0 |458 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6340 |9 |1 |22838 |500 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6341 |9 |1 |22837 |500 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6342 |10 |0 |481 |500 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6343 |10 |0 |480 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6344 |10 |0 |545 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6345 |10 |0 |482 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6346 |10 |1 |22998 |500 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6347 |10 |1 |22997 |500 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6348 |57 |0 |1112 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6349 |57 |0 |1113 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6350 |57 |0 |1110 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6351 |57 |0 |1109 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6352 |57 |0 |1111 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6353 |57 |0 |1114 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6354 |60 |0 |1139 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6355 |60 |0 |1140 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6356 |60 |0 |1137 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6357 |60 |0 |1136 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6358 |60 |0 |1138 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6359 |60 |0 |1141 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6360 |58 |0 |1118 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6361 |58 |0 |1119 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6362 |58 |0 |1116 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6363 |58 |0 |1115 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6364 |58 |0 |1117 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6365 |58 |0 |1120 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6366 |23 |20 |821 |500 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6367 |23 |20 |816 |500 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6368 |23 |20 |814 |500 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6369 |23 |20 |820 |500 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6370 |23 |20 |817 |500 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6371 |23 |20 |815 |500 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6372 |23 |20 |818 |500 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6373 |23 |20 |819 |500 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6374 |24 |0 |824 |500 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6375 |24 |0 |827 |500 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6376 |24 |0 |825 |500 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6377 |24 |0 |828 |500 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6378 |24 |0 |826 |500 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6379 |24 |0 |829 |500 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6380 |24 |0 |822 |500 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6381 |24 |0 |823 |500 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6382 |61 |20 |1212 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6383 |61 |20 |1210 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6384 |61 |20 |1213 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6385 |61 |20 |1211 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6386 |54 |0 |1091 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6387 |54 |0 |1095 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6388 |54 |0 |1092 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6389 |54 |0 |1094 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6390 |54 |0 |1099 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6391 |54 |0 |1100 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6392 |54 |0 |1101 |500 |100 |0 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6393 |54 |0 |1102 |500 |100 |1 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6394 |54 |20 |1090 |500 |100 |0 |4 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6395 |55 |0 |1093 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6396 |55 |0 |1098 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6397 |55 |0 |1096 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6398 |55 |0 |1097 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6399 |47 |0 |1071 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6400 |47 |20 |1061 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6401 |47 |20 |1066 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6402 |45 |20 |741 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6403 |43 |20 |745 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6404 |46 |20 |766 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6405 |66 |20 |1476 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6406 |67 |0 |1479 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6407 |67 |20 |1478 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6408 |67 |20 |1477 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6409 |3 |0 |903 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6410 |3 |0 |909 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6411 |3 |0 |918 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6412 |3 |0 |921 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6413 |3 |20 |888 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6414 |3 |20 |1218 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6415 |3 |20 |1215 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6416 |3 |20 |1221 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6417 |3 |20 |900 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6418 |30 |20 |899 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6419 |31 |20 |934 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6420 |32 |0 |937 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6421 |32 |0 |941 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6422 |32 |0 |947 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6423 |32 |0 |949 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6424 |32 |20 |927 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6425 |32 |20 |1226 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6426 |32 |20 |1224 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6427 |32 |20 |1228 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6428 |32 |20 |935 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6429 |33 |0 |957 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6430 |33 |0 |959 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6431 |33 |0 |962 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6432 |33 |0 |963 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6433 |33 |20 |953 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6434 |33 |20 |954 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6435 |33 |20 |955 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6436 |33 |20 |956 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6437 |33 |20 |952 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6438 |34 |20 |952 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6439 |29 |0 |881 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6440 |29 |20 |869 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6441 |29 |0 |877 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6442 |29 |0 |879 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6443 |29 |20 |873 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6444 |29 |20 |867 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6445 |29 |19 |29033 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6446 |29 |20 |865 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6447 |19 |0 |977 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6448 |19 |1 |29485 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6449 |19 |0 |979 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6450 |19 |0 |981 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6451 |19 |20 |965 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6452 |19 |20 |1230 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6453 |19 |20 |1232 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6454 |19 |20 |1247 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6455 |35 |20 |1246 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6456 |36 |20 |1248 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6457 |37 |0 |995 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6458 |37 |1 |29592 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6459 |37 |0 |997 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6460 |37 |0 |999 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6461 |37 |20 |983 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6462 |37 |20 |1234 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6463 |37 |20 |1236 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6464 |37 |20 |1249 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6465 |69 |3 |33570 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6466 |69 |3 |33585 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6467 |69 |3 |33580 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6468 |69 |3 |33591 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6469 |69 |3 |33592 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6470 |69 |3 |33594 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6471 |69 |0 |1489 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6472 |69 |0 |1491 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6473 |69 |0 |1490 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6474 |70 |3 |33621 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6475 |70 |3 |33636 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6476 |70 |3 |33631 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6477 |70 |3 |33642 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6478 |70 |3 |33643 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6479 |70 |3 |33645 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6480 |70 |0 |1492 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6481 |70 |0 |1494 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6482 |70 |0 |1493 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6483 |71 |3 |33672 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6484 |71 |3 |33687 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6485 |71 |3 |33682 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6486 |71 |3 |33693 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6487 |71 |3 |33694 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6488 |71 |3 |33696 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6489 |71 |0 |1495 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6490 |71 |0 |1497 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6491 |71 |0 |1496 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6492 |72 |3 |33723 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6493 |72 |3 |33738 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6494 |72 |3 |33733 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6495 |72 |3 |33744 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6496 |72 |3 |33745 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6497 |72 |3 |33747 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6498 |72 |0 |1498 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6499 |72 |0 |1500 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6500 |72 |0 |1499 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6501 |73 |3 |33774 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6502 |73 |3 |33789 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6503 |73 |3 |33784 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6504 |73 |3 |33795 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6505 |73 |3 |33796 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6506 |73 |3 |33798 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6507 |73 |0 |1501 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6508 |73 |0 |1503 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6509 |73 |0 |1502 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6510 |74 |3 |33825 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6511 |74 |3 |33840 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6512 |74 |3 |33835 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6513 |74 |3 |33846 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6514 |74 |3 |33847 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6515 |74 |3 |33849 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6516 |74 |0 |1504 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6517 |74 |0 |1506 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6518 |74 |0 |1505 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6519 |75 |3 |33876 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6520 |75 |3 |33891 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6521 |75 |3 |33886 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6522 |75 |3 |33897 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6523 |75 |3 |33898 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6524 |75 |3 |33900 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6525 |75 |0 |1507 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6526 |75 |0 |1509 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6527 |75 |0 |1508 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6528 |68 |3 |33434 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6529 |68 |3 |33449 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6530 |68 |3 |33444 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6531 |68 |3 |33455 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6532 |68 |3 |33456 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6533 |68 |3 |33458 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6534 |68 |0 |1510 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6535 |68 |0 |1482 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6536 |68 |0 |1481 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6537 |76 |3 |33932 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6538 |76 |3 |33947 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6539 |76 |3 |33942 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6540 |76 |3 |33953 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6541 |76 |3 |33954 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6542 |76 |3 |33956 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6543 |76 |0 |1511 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6544 |76 |0 |1513 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6545 |76 |0 |1512 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6546 |77 |3 |33983 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6547 |77 |3 |33998 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6548 |77 |3 |33993 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6549 |77 |3 |34004 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6550 |77 |3 |34005 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6551 |77 |3 |34007 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6552 |77 |0 |1514 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6553 |77 |0 |1516 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6554 |77 |0 |1515 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6555 |78 |3 |34034 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6556 |78 |3 |34049 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6557 |78 |3 |34044 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6558 |78 |3 |34055 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6559 |78 |3 |34056 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6560 |78 |3 |34058 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6561 |78 |0 |1517 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6562 |78 |0 |1519 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6563 |78 |0 |1518 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6564 |25 |0 |1174 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6565 |25 |0 |1176 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6566 |25 |20 |1172 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6567 |25 |20 |1173 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6568 |25 |0 |1175 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6569 |26 |0 |838 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6570 |26 |0 |839 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6571 |26 |20 |836 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6572 |26 |20 |837 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6573 |26 |0 |840 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6574 |59 |0 |1125 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6575 |59 |0 |1129 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6576 |59 |0 |1128 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6577 |59 |0 |1126 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6578 |59 |0 |1127 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6579 |48 |20 |1075 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6580 |49 |20 |1078 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6581 |49 |20 |1076 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6582 |49 |20 |1079 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6583 |49 |20 |1077 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6584 |50 |20 |1080 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6585 |51 |20 |1081 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6586 |52 |20 |1084 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6587 |52 |20 |1082 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6588 |52 |20 |1085 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6589 |52 |20 |1083 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6590 |53 |20 |1086 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6591 |27 |0 |841 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6592 |27 |0 |843 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6593 |27 |0 |842 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6594 |28 |0 |845 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6595 |28 |0 |847 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6596 |28 |0 |846 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6597 |62 |0 |1419 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6598 |62 |0 |1414 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6599 |62 |0 |1421 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6600 |62 |0 |1423 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6601 |62 |0 |1420 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6602 |63 |0 |1422 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6603 |63 |0 |1425 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6604 |63 |0 |1415 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6605 |63 |0 |1418 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6606 |63 |0 |1416 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6607 |63 |0 |1424 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6608 |64 |0 |1432 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6609 |64 |0 |1428 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6610 |64 |0 |1434 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6611 |64 |0 |1436 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6612 |64 |0 |1433 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6613 |65 |0 |1435 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6614 |65 |0 |1438 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6615 |65 |0 |1429 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6616 |65 |0 |1431 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6617 |65 |0 |1430 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6618 |65 |0 |1437 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6619 |22 |0 |806 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6620 |22 |0 |804 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6621 |22 |0 |805 |500 |100 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6622 |22 |0 |803 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6623 |21 |0 |802 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6624 |21 |0 |799 |500 |100 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6625 |21 |0 |800 |500 |114 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6626 |21 |0 |798 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6627 |21 |0 |797 |500 |160 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6628 |21 |0 |801 |500 |160 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6629 |17 |0 |532 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6630 |17 |0 |530 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6631 |17 |0 |531 |500 |100 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6632 |17 |0 |529 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6633 |4 |0 |392 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6634 |4 |0 |404 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6635 |4 |0 |406 |500 |114 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6636 |4 |0 |410 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6637 |4 |0 |527 |500 |160 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6638 |4 |0 |788 |500 |160 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6639 |5 |0 |469 |500 |148 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6640 |5 |0 |471 |500 |100 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6641 |5 |0 |498 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6642 |5 |0 |540 |500 |100 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6643 |7 |0 |463 |500 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6644 |7 |0 |462 |500 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6645 |7 |0 |541 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6646 |7 |0 |464 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6647 |6 |0 |475 |500 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6648 |6 |0 |474 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6649 |6 |0 |542 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6650 |18 |0 |487 |750 |100 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6651 |18 |0 |543 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6652 |9 |0 |457 |500 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6653 |9 |0 |456 |500 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6654 |9 |0 |544 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6655 |9 |0 |458 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6656 |9 |1 |22838 |500 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6657 |9 |1 |22837 |500 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6658 |10 |0 |481 |500 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6659 |10 |0 |480 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6660 |10 |0 |545 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6661 |10 |0 |482 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6662 |10 |1 |22998 |500 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6663 |10 |1 |22997 |500 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6664 |57 |0 |1112 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6665 |57 |0 |1113 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6666 |57 |0 |1110 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6667 |57 |0 |1109 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6668 |57 |0 |1111 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6669 |57 |0 |1114 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6670 |60 |0 |1139 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6671 |60 |0 |1140 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6672 |60 |0 |1137 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6673 |60 |0 |1136 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6674 |60 |0 |1138 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6675 |60 |0 |1141 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6676 |58 |0 |1118 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6677 |58 |0 |1119 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6678 |58 |0 |1116 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6679 |58 |0 |1115 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6680 |58 |0 |1117 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6681 |58 |0 |1120 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6682 |23 |20 |821 |500 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6683 |23 |20 |816 |500 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6684 |23 |20 |814 |500 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6685 |23 |20 |820 |500 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6686 |23 |20 |817 |500 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6687 |23 |20 |815 |500 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6688 |23 |20 |818 |500 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6689 |23 |20 |819 |500 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6690 |24 |0 |824 |500 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6691 |24 |0 |827 |500 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6692 |24 |0 |825 |500 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6693 |24 |0 |828 |500 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6694 |24 |0 |826 |500 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6695 |24 |0 |829 |500 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6696 |24 |0 |822 |500 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6697 |24 |0 |823 |500 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6698 |61 |20 |1212 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6699 |61 |20 |1210 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6700 |61 |20 |1213 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6701 |61 |20 |1211 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6702 |54 |0 |1091 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6703 |54 |0 |1095 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6704 |54 |0 |1092 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6705 |54 |0 |1094 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6706 |54 |0 |1099 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6707 |54 |0 |1100 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6708 |54 |0 |1101 |500 |100 |0 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6709 |54 |0 |1102 |500 |100 |1 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6710 |54 |20 |1090 |500 |100 |0 |4 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6711 |55 |0 |1093 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6712 |55 |0 |1098 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6713 |55 |0 |1096 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6714 |55 |0 |1097 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6715 |47 |0 |1071 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6716 |47 |20 |1061 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6717 |47 |20 |1066 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6718 |45 |20 |741 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6719 |43 |20 |745 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6720 |46 |20 |766 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6721 |66 |20 |1476 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6722 |67 |0 |1479 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6723 |67 |20 |1478 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6724 |67 |20 |1477 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6725 |3 |0 |903 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6726 |3 |0 |909 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6727 |3 |0 |918 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6728 |3 |0 |921 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6729 |3 |20 |888 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6730 |3 |20 |1218 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6731 |3 |20 |1215 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6732 |3 |20 |1221 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6733 |3 |20 |900 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6734 |30 |20 |899 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6735 |31 |20 |934 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6736 |32 |0 |937 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6737 |32 |0 |941 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6738 |32 |0 |947 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6739 |32 |0 |949 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6740 |32 |20 |927 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6741 |32 |20 |1226 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6742 |32 |20 |1224 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6743 |32 |20 |1228 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6744 |32 |20 |935 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6745 |33 |0 |957 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6746 |33 |0 |959 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6747 |33 |0 |962 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6748 |33 |0 |963 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6749 |33 |20 |953 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6750 |33 |20 |954 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6751 |33 |20 |955 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6752 |33 |20 |956 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6753 |33 |20 |952 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6754 |34 |20 |952 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6755 |29 |0 |881 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6756 |29 |20 |869 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6757 |29 |0 |877 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6758 |29 |0 |879 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6759 |29 |20 |873 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6760 |29 |20 |867 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6761 |29 |19 |29033 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6762 |29 |20 |865 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6763 |19 |0 |977 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6764 |19 |1 |29485 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6765 |19 |0 |979 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6766 |19 |0 |981 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6767 |19 |20 |965 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6768 |19 |20 |1230 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6769 |19 |20 |1232 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6770 |19 |20 |1247 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6771 |35 |20 |1246 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6772 |36 |20 |1248 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6773 |37 |0 |995 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6774 |37 |1 |29592 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6775 |37 |0 |997 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6776 |37 |0 |999 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6777 |37 |20 |983 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6778 |37 |20 |1234 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6779 |37 |20 |1236 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6780 |37 |20 |1249 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6781 |69 |3 |33570 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6782 |69 |3 |33585 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6783 |69 |3 |33580 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6784 |69 |3 |33591 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6785 |69 |3 |33592 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6786 |69 |3 |33594 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6787 |69 |0 |1489 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6788 |69 |0 |1491 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6789 |69 |0 |1490 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6790 |70 |3 |33621 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6791 |70 |3 |33636 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6792 |70 |3 |33631 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6793 |70 |3 |33642 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6794 |70 |3 |33643 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6795 |70 |3 |33645 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6796 |70 |0 |1492 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6797 |70 |0 |1494 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6798 |70 |0 |1493 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6799 |71 |3 |33672 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6800 |71 |3 |33687 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6801 |71 |3 |33682 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6802 |71 |3 |33693 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6803 |71 |3 |33694 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6804 |71 |3 |33696 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6805 |71 |0 |1495 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6806 |71 |0 |1497 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6807 |71 |0 |1496 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6808 |72 |3 |33723 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6809 |72 |3 |33738 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6810 |72 |3 |33733 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6811 |72 |3 |33744 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6812 |72 |3 |33745 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6813 |72 |3 |33747 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6814 |72 |0 |1498 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6815 |72 |0 |1500 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6816 |72 |0 |1499 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6817 |73 |3 |33774 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6818 |73 |3 |33789 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6819 |73 |3 |33784 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6820 |73 |3 |33795 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6821 |73 |3 |33796 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6822 |73 |3 |33798 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6823 |73 |0 |1501 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6824 |73 |0 |1503 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6825 |73 |0 |1502 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6826 |74 |3 |33825 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6827 |74 |3 |33840 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6828 |74 |3 |33835 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6829 |74 |3 |33846 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6830 |74 |3 |33847 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6831 |74 |3 |33849 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6832 |74 |0 |1504 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6833 |74 |0 |1506 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6834 |74 |0 |1505 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6835 |75 |3 |33876 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6836 |75 |3 |33891 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6837 |75 |3 |33886 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6838 |75 |3 |33897 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6839 |75 |3 |33898 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6840 |75 |3 |33900 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6841 |75 |0 |1507 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6842 |75 |0 |1509 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6843 |75 |0 |1508 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6844 |68 |3 |33434 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6845 |68 |3 |33449 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6846 |68 |3 |33444 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6847 |68 |3 |33455 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6848 |68 |3 |33456 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6849 |68 |3 |33458 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6850 |68 |0 |1510 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6851 |68 |0 |1482 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6852 |68 |0 |1481 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6853 |76 |3 |33932 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6854 |76 |3 |33947 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6855 |76 |3 |33942 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6856 |76 |3 |33953 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6857 |76 |3 |33954 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6858 |76 |3 |33956 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6859 |76 |0 |1511 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6860 |76 |0 |1513 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6861 |76 |0 |1512 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6862 |77 |3 |33983 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6863 |77 |3 |33998 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6864 |77 |3 |33993 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6865 |77 |3 |34004 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6866 |77 |3 |34005 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6867 |77 |3 |34007 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6868 |77 |0 |1514 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6869 |77 |0 |1516 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6870 |77 |0 |1515 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6871 |78 |3 |34034 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6872 |78 |3 |34049 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6873 |78 |3 |34044 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6874 |78 |3 |34055 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6875 |78 |3 |34056 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6876 |78 |3 |34058 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6877 |78 |0 |1517 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6878 |78 |0 |1519 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6879 |78 |0 |1518 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
TABLE |applications
FIELDS|applicationid|hostid|name |flags|
@@ -1342,6 +1344,8 @@ ROW |1508 |10381 |General |0 |
ROW |1509 |10381 |Status |0 |
ROW |1510 |10382 |General |0 |
ROW |1511 |10382 |Status |0 |
+ROW |1512 |10383 |WildFly |0 |
+ROW |1513 |10384 |WildFly |0 |
TABLE |interface
FIELDS|interfaceid|hostid|main|type|useip|ip |dns |port |
@@ -1508,3003 +1512,3087 @@ ROW |156 |PowerNet-MIB::upsAdvBatteryReplaceIndicator
ROW |157 |PowerNet-MIB::upsAdvInputLineFailCause |
ROW |158 |PowerNet-MIB::upsBasicBatteryStatus |
ROW |159 |PowerNet-MIB::upsBasicOutputStatus |
+ROW |160 |WildFly flag |
+ROW |161 |MSSQL Job Run Status |
TABLE |items
-FIELDS|itemid|type|snmp_oid |hostid|name |key_ |delay |history|trends|status|value_type|trapper_hosts|units |formula |logtimefmt |templateid|valuemapid|params |ipmi_sensor |authtype|username |password |publickey|privatekey|flags|interfaceid|description |inventory_link|lifetime|evaltype|jmx_endpoint |master_itemid|timeout |url |query_fields |posts|status_codes|follow_redirects|post_type|headers |retrieve_mode|request_method|output_format|verify_peer|verify_host|allow_traps|discover|
-ROW |10061 |5 | |10047 |Number of processed numeric (float) values per second |zabbix[wcache,values,float] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10062 |5 | |10047 |Number of processed character values per second |zabbix[wcache,values,str] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10063 |5 | |10047 |Number of processed log values per second |zabbix[wcache,values,log] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10064 |5 | |10047 |Number of processed numeric (unsigned) values per second |zabbix[wcache,values,uint] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10065 |5 | |10047 |Number of processed text values per second |zabbix[wcache,values,text] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10066 |5 | |10047 |Number of processed not supported values per second |zabbix[wcache,values,not supported] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10067 |5 | |10048 |Number of processed numeric (float) values per second |zabbix[wcache,values,float] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |10068 |5 | |10048 |Number of processed character values per second |zabbix[wcache,values,str] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |10069 |5 | |10048 |Number of processed log values per second |zabbix[wcache,values,log] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |10070 |5 | |10048 |Number of processed numeric (unsigned) values per second |zabbix[wcache,values,uint] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |10071 |5 | |10048 |Number of processed text values per second |zabbix[wcache,values,text] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |10072 |5 | |10048 |Number of processed not supported values per second |zabbix[wcache,values,not supported] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |22183 |5 | |10047 |Zabbix history write cache, % used |zabbix[wcache,history,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22185 |5 | |10047 |Zabbix trend write cache, % used |zabbix[wcache,trend,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22187 |5 | |10047 |Number of processed values per second |zabbix[wcache,values] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22189 |5 | |10047 |Zabbix configuration cache, % used |zabbix[rcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22191 |5 | |10047 |Zabbix value cache, % used |zabbix[vcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22196 |5 | |10047 |Zabbix value cache hits |zabbix[vcache,cache,hits] |1m |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22199 |5 | |10047 |Zabbix value cache misses |zabbix[vcache,cache,misses] |1m |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22219 |5 | |10047 |Zabbix queue over 10 minutes |zabbix[queue,10m] |10m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22231 |0 | |10050 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22232 |0 | |10050 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |NULL |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22396 |5 | |10047 |Zabbix history index cache, % used |zabbix[wcache,index,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22399 |5 | |10047 |Utilization of poller data collector processes, in % |zabbix[process,poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22400 |5 | |10047 |Utilization of unreachable poller data collector processes, in % |zabbix[process,unreachable poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22401 |5 | |10047 |Utilization of vmware data collector processes, in % |zabbix[process,vmware collector,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22402 |5 | |10047 |Utilization of http poller data collector processes, in % |zabbix[process,http poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22404 |5 | |10047 |Utilization of trapper data collector processes, in % |zabbix[process,trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22406 |5 | |10047 |Utilization of history syncer internal processes, in % |zabbix[process,history syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22408 |5 | |10047 |Utilization of housekeeper internal processes, in % |zabbix[process,housekeeper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22412 |5 | |10047 |Utilization of configuration syncer internal processes, in % |zabbix[process,configuration syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22414 |5 | |10047 |Utilization of self-monitoring internal processes, in % |zabbix[process,self-monitoring,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22416 |5 | |10047 |Utilization of ipmi poller data collector processes, in % |zabbix[process,ipmi poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22418 |5 | |10047 |Utilization of icmp pinger data collector processes, in % |zabbix[process,icmp pinger,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22420 |5 | |10047 |Utilization of proxy poller data collector processes, in % |zabbix[process,proxy poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22422 |5 | |10047 |Utilization of escalator internal processes, in % |zabbix[process,escalator,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22424 |5 | |10047 |Utilization of alerter internal processes, in % |zabbix[process,alerter,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22426 |5 | |10047 |Utilization of timer internal processes, in % |zabbix[process,timer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22430 |5 | |10047 |Utilization of discoverer data collector processes, in % |zabbix[process,discoverer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22689 |5 | |10047 |Utilization of java poller data collector processes, in % |zabbix[process,java poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22835 |0 | |10074 |Maximum number of opened files |kernel.maxfiles |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22836 |0 | |10074 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22837 |0 | |10074 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22838 |0 | |10074 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22839 |0 | |10074 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22840 |0 | |10074 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22841 |0 | |10074 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22842 |0 | |10074 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22843 |0 | |10074 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22844 |0 | |10074 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22845 |0 | |10074 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22846 |0 | |10074 |CPU interrupt time |system.cpu.util[,interrupt] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22848 |0 | |10074 |CPU nice time |system.cpu.util[,nice] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22851 |0 | |10074 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22852 |0 | |10074 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22853 |0 | |10074 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22854 |0 | |10074 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22855 |0 | |10074 |Free swap space |system.swap.size[,free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22856 |0 | |10074 |Free swap space in % |system.swap.size[,pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22857 |0 | |10074 |Total swap space |system.swap.size[,total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22858 |0 | |10074 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22859 |0 | |10074 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22860 |0 | |10074 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22861 |0 | |10074 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22862 |0 | |10074 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22863 |0 | |10074 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22867 |0 | |10074 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22868 |0 | |10074 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22869 |0 | |10074 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22870 |0 | |10074 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22871 |0 | |10074 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22872 |0 | |10074 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22875 |0 | |10075 |Maximum number of opened files |kernel.maxfiles |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22876 |0 | |10075 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22877 |0 | |10075 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22878 |0 | |10075 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22879 |0 | |10075 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22880 |0 | |10075 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22881 |0 | |10075 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22882 |0 | |10075 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22883 |0 | |10075 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22884 |0 | |10075 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22885 |0 | |10075 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22886 |0 | |10075 |CPU interrupt time |system.cpu.util[,interrupt] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22888 |0 | |10075 |CPU nice time |system.cpu.util[,nice] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22891 |0 | |10075 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22892 |0 | |10075 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22893 |0 | |10075 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22894 |0 | |10075 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22895 |0 | |10075 |Free swap space |system.swap.size[,free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22896 |0 | |10075 |Free swap space in % |system.swap.size[,pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22897 |0 | |10075 |Total swap space |system.swap.size[,total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22898 |0 | |10075 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22899 |0 | |10075 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22900 |0 | |10075 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22901 |0 | |10075 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22902 |0 | |10075 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22903 |0 | |10075 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22907 |0 | |10075 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22908 |0 | |10075 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22909 |0 | |10075 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22910 |0 | |10075 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22911 |0 | |10075 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22912 |0 | |10075 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22917 |0 | |10076 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22918 |0 | |10076 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22920 |0 | |10076 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22921 |0 | |10076 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22922 |0 | |10076 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22923 |0 | |10076 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22924 |0 | |10076 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22933 |0 | |10076 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22934 |0 | |10076 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22938 |0 | |10076 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22939 |0 | |10076 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22940 |0 | |10076 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22941 |0 | |10076 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22942 |0 | |10076 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22943 |0 | |10076 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22944 |0 | |10076 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22945 |0 | |10076 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22946 |0 | |10076 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22947 |0 | |10076 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22948 |0 | |10076 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22949 |0 | |10076 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22950 |0 | |10076 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22951 |0 | |10076 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22952 |0 | |10076 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22961 |0 | |10077 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22962 |0 | |10077 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22963 |0 | |10077 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22965 |0 | |10077 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22968 |0 | |10077 |CPU nice time |system.cpu.util[,nice] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22971 |0 | |10077 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22972 |0 | |10077 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22973 |0 | |10077 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22974 |0 | |10077 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22978 |0 | |10077 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22980 |0 | |10077 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22981 |0 | |10077 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22982 |0 | |10077 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22983 |0 | |10077 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22984 |0 | |10077 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22985 |0 | |10077 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22986 |0 | |10077 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22987 |0 | |10077 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22988 |0 | |10077 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22989 |0 | |10077 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22990 |0 | |10077 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22991 |0 | |10077 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22992 |0 | |10077 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22996 |0 | |10078 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22997 |0 | |10078 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22998 |0 | |10078 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22999 |0 | |10078 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23000 |0 | |10078 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23001 |0 | |10078 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23002 |0 | |10078 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23003 |0 | |10078 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23004 |0 | |10078 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23005 |0 | |10078 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23007 |0 | |10078 |CPU iowait time |system.cpu.util[,iowait] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23011 |0 | |10078 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23012 |0 | |10078 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23013 |0 | |10078 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23014 |0 | |10078 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23015 |0 | |10078 |Free swap space |system.swap.size[,free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23016 |0 | |10078 |Free swap space in % |system.swap.size[,pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23017 |0 | |10078 |Total swap space |system.swap.size[,total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23018 |0 | |10078 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23019 |0 | |10078 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23020 |0 | |10078 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23021 |0 | |10078 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23022 |0 | |10078 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23023 |0 | |10078 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23024 |0 | |10078 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23025 |0 | |10078 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23026 |0 | |10078 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23027 |0 | |10078 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23028 |0 | |10078 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23029 |0 | |10078 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23030 |0 | |10078 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23031 |0 | |10078 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23032 |0 | |10078 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23035 |0 | |10079 |Maximum number of opened files |kernel.maxfiles |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23036 |0 | |10079 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23039 |0 | |10079 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23041 |0 | |10079 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23042 |0 | |10079 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23043 |0 | |10079 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23053 |0 | |10079 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23054 |0 | |10079 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23058 |0 | |10079 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23059 |0 | |10079 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23060 |0 | |10079 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23061 |0 | |10079 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23062 |0 | |10079 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23063 |0 | |10079 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23067 |0 | |10079 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23068 |0 | |10079 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23069 |0 | |10079 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23070 |0 | |10079 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23071 |0 | |10079 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23072 |0 | |10079 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23073 |0 | |10075 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23074 |0 | |10075 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23075 |0 | |10074 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23076 |0 | |10074 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23077 |0 | |10079 |Incoming network traffic on en0 |net.if.in[en0] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23078 |0 | |10079 |Outgoing network traffic on en0 |net.if.out[en0] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23108 |0 | |10076 |CPU available physical processors in the shared pool |system.stat[cpu,app] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23109 |0 | |10076 |CPU entitled capacity consumed |system.stat[cpu,ec] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23110 |0 | |10076 |CPU idle time |system.stat[cpu,id] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23111 |0 | |10076 |CPU logical processor utilization |system.stat[cpu,lbusy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23112 |0 | |10076 |CPU number of physical processors consumed |system.stat[cpu,pc] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23113 |0 | |10076 |CPU system time |system.stat[cpu,sy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23114 |0 | |10076 |CPU user time |system.stat[cpu,us] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23115 |0 | |10076 |CPU iowait time |system.stat[cpu,wa] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23116 |0 | |10076 |Amount of data transferred |system.stat[disk,bps] |1m |1w |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23117 |0 | |10076 |Number of transfers |system.stat[disk,tps] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23118 |0 | |10076 |Processor units is entitled to receive |system.stat[ent] |1h |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23119 |0 | |10076 |Kernel thread context switches |system.stat[faults,cs] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23120 |0 | |10076 |Device interrupts |system.stat[faults,in] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23121 |0 | |10076 |System calls |system.stat[faults,sy] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23122 |0 | |10076 |Length of the swap queue |system.stat[kthr,b] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23123 |0 | |10076 |Length of the run queue |system.stat[kthr,r] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23124 |0 | |10076 |Active virtual pages |system.stat[memory,avm] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23125 |0 | |10076 |Free real memory |system.stat[memory,fre] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23126 |0 | |10076 |File page-ins per second |system.stat[page,fi] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23127 |0 | |10076 |File page-outs per second |system.stat[page,fo] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23128 |0 | |10076 |Pages freed (page replacement) |system.stat[page,fr] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23129 |0 | |10076 |Pages paged in from paging space |system.stat[page,pi] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23130 |0 | |10076 |Pages paged out to paging space |system.stat[page,po] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23131 |0 | |10076 |Pages scanned by page-replacement algorithm |system.stat[page,sr] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23171 |5 | |10047 |Utilization of snmp trapper data collector processes, in % |zabbix[process,snmp trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23251 |5 | |10047 |Zabbix queue |zabbix[queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23318 |0 | |10050 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23329 |0 | |10074 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23340 |5 | |10048 |Number of processed values per second |zabbix[wcache,values] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23341 |5 | |10048 |Zabbix history index cache, % used |zabbix[wcache,index,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23342 |5 | |10048 |Zabbix history write cache, % used |zabbix[wcache,history,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23343 |5 | |10048 |Utilization of self-monitoring internal processes, in % |zabbix[process,self-monitoring,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23344 |5 | |10048 |Utilization of snmp trapper data collector processes, in % |zabbix[process,snmp trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23345 |5 | |10048 |Utilization of trapper data collector processes, in % |zabbix[process,trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23346 |5 | |10048 |Utilization of unreachable poller data collector processes, in % |zabbix[process,unreachable poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23347 |5 | |10048 |Utilization of configuration syncer internal processes, in % |zabbix[process,configuration syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23348 |5 | |10048 |Utilization of poller data collector processes, in % |zabbix[process,poller,avg,busy] |1m |1w |365d |0 |0 |localhost |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23349 |5 | |10048 |Utilization of java poller data collector processes, in % |zabbix[process,java poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23350 |5 | |10048 |Utilization of history syncer internal processes, in % |zabbix[process,history syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23351 |5 | |10048 |Utilization of heartbeat sender internal processes, in % |zabbix[process,heartbeat sender,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23352 |5 | |10048 |Utilization of discoverer data collector processes, in % |zabbix[process,discoverer,avg,busy] |1m |1w |365d |0 |0 |localhost |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23353 |5 | |10048 |Utilization of housekeeper internal processes, in % |zabbix[process,housekeeper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23354 |5 | |10048 |Utilization of http poller data collector processes, in % |zabbix[process,http poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23355 |5 | |10048 |Utilization of ipmi poller data collector processes, in % |zabbix[process,ipmi poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23356 |5 | |10048 |Utilization of icmp pinger data collector processes, in % |zabbix[process,icmp pinger,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23357 |5 | |10048 |Zabbix configuration cache, % used |zabbix[rcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23358 |5 | |10048 |Zabbix queue |zabbix[queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23359 |5 | |10048 |Zabbix queue over 10 minutes |zabbix[queue,10m] |10m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23360 |5 | |10048 |Utilization of data sender internal processes, in % |zabbix[process,data sender,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23540 |0 | |10075 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23634 |5 | |10047 |Zabbix vmware cache, % used |zabbix[vmware,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23644 |3 | |10093 |FTP service is running |net.tcp.service[ftp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23645 |3 | |10094 |HTTP service is running |net.tcp.service[http] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23646 |3 | |10095 |HTTPS service is running |net.tcp.service[https] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23647 |3 | |10096 |IMAP service is running |net.tcp.service[imap] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23648 |3 | |10097 |LDAP service is running |net.tcp.service[ldap] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23649 |3 | |10098 |NNTP service is running |net.tcp.service[nntp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23650 |3 | |10099 |NTP service is running |net.udp.service[ntp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23651 |3 | |10100 |POP service is running |net.tcp.service[pop] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23652 |3 | |10101 |SMTP service is running |net.tcp.service[smtp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23653 |3 | |10102 |SSH service is running |net.tcp.service[ssh] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23654 |3 | |10103 |Telnet service is running |net.tcp.service[telnet] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23661 |5 | |10047 |Zabbix value cache operating mode |zabbix[vcache,cache,mode] |1m |1w |365d |0 |3 | | | | |NULL |15 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23663 |5 | |10047 |Utilization of task manager internal processes, in % |zabbix[process,task manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |25366 |5 | |10047 |Utilization of ipmi manager internal processes, in % |zabbix[process,ipmi manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |25368 |5 | |10048 |Utilization of ipmi manager internal processes, in % |zabbix[process,ipmi manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |25369 |5 | |10048 |Utilization of task manager internal processes, in % |zabbix[process,task manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |25370 |5 | |10047 |Utilization of alert manager internal processes, in % |zabbix[process,alert manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |25665 |5 | |10047 |Utilization of preprocessing manager internal processes, in % |zabbix[process,preprocessing manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |25666 |5 | |10047 |Utilization of preprocessing worker internal processes, in % |zabbix[process,preprocessing worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26925 |12 | |10171 |Power |power |1m |1w |365d |0 |3 | | | | |NULL |NULL | |power |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26926 |12 | |10171 |Processor Vcc |processor_vcc |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |Processor Vcc |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26927 |12 | |10171 |System Fan 3 |system_fan_3 |1m |1w |365d |0 |0 | |RPM | | |NULL |NULL | |System Fan 3 |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26928 |12 | |10171 |BB Ambient Temp |bb_ambient_temp |1m |1w |365d |0 |0 | |C | | |NULL |NULL | |BB Ambient Temp |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26929 |12 | |10171 |BB +5.0V |bb_5.0v |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +5.0V |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26930 |12 | |10171 |BB +3.3V |bb_3.3v |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +3.3V |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26931 |12 | |10171 |BB +3.3V STBY |bb_3.3v_stby |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +3.3V STBY |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26932 |12 | |10171 |BB +1.8V SM |bb_1.8v_sm |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +1.8V SM |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26933 |12 | |10172 |Front Panel Temp |front_panel_temp |1m |1w |365d |0 |0 | |C | | |NULL |NULL | |Front Panel Temp|0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26934 |12 | |10172 |Power |power |1m |1w |365d |0 |3 | | | | |NULL |NULL | |power |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26935 |12 | |10172 |System Fan 2 |system_fan_2 |1m |1w |365d |0 |0 | |RPM | | |NULL |NULL | |System Fan 2 |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26936 |12 | |10172 |System Fan 3 |system_fan_3 |1m |1w |365d |0 |0 | |RPM | | |NULL |NULL | |System Fan 3 |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26937 |12 | |10172 |BB +5.0V |bb_5.0v |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +5.0V |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26938 |12 | |10172 |BB +3.3V STBY |bb_3.3v_stby |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +3.3V STBY |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26939 |12 | |10172 |BB +1.05V PCH |bb_1.05v_pch |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +1.05V PCH |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26940 |12 | |10172 |BB +1.1V P1 Vccp |bb_1.1v_p1_vccp |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +1.1V P1 Vccp|0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26941 |12 | |10172 |BB +1.5V P1 DDR3 |bb_1.5v_p1_ddr3 |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +1.5V P1 DDR3|0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26942 |12 | |10172 |BB +3.3V |bb_3.3v |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +3.3V |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26943 |12 | |10172 |Baseboard Temp |baseboard_temp |1m |1w |365d |0 |0 | |C | | |NULL |NULL | |Baseboard Temp |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27031 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10183 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27032 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10183 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27065 |3 | |10186 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27066 |3 | |10186 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27067 |3 | |10186 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27078 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10188 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27079 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27080 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27081 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27082 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27083 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27084 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27085 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27086 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27087 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27098 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10190 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27099 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27100 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27101 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27102 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27103 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27104 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27105 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27106 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27107 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27118 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10192 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27119 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27120 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27121 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27122 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27123 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27124 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27125 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27126 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27127 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27152 |20 |1.3.6.1.2.1.1.5.0 |10204 |System name |system.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27154 |5 | |10204 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27157 |17 | |10204 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27203 |20 |1.3.6.1.2.1.1.1.0 |10207 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27207 |20 |1.3.6.1.4.1.6527.3.1.2.1.1.9.0 |10207 |Used memory |vm.memory.used[sgiKbMemoryUsed.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The value of sgiKbMemoryUsed indicates the total pre-allocated pool memory, in kilobytes, currently in use on the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27208 |20 |1.3.6.1.4.1.6527.3.1.2.1.1.1.0 |10207 |CPU utilization |system.cpu.util[sgiCpuUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The value of sgiCpuUsage indicates the current CPU utilization for the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27209 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8,{#TEMP_SENSOR},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.17] |10207 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27210 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6527.3.1.2.2.1.4.1.2] |10207 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27211 |20 |discovery[{#ENT_NAME},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8,{#ENT_CLASS},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.7,{#ENT_SN},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5] |10207 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27212 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.{#SNMPINDEX} |10207 |{#SNMPVALUE}: Temperature |sensor.temp.value[tmnxHwTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The current temperature reading in degrees celsius from this hardware component's temperature sensor. If this component does not contain a temperature sensor, then the value -1 is returned. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27213 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.4.1.2.{#SNMPINDEX} |10207 |#{#SNMPINDEX}: Fan status |sensor.fan.status[tmnxChassisFanOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |23 | | |0 | | | | |2 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;Current status of the Fan tray. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27214 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5.{#SNMPINDEX} |10207 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[tmnxHwSerialNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TIMETRA-CHASSIS-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27236 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.6.0 |10208 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27237 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.10.0 |10208 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27238 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.7.0 |10208 |Overall system health status |system.status[swOperStatus.0] |30s |2w |0d |0 |3 | | | | |NULL |25 | | |0 | | | | |0 |NULL |MIB: SW-MIB&eol;The current operational status of the switch.The states are as follow:&eol;online(1) means the switch is accessible by an external Fibre Channel port&eol;offline(2) means the switch is not accessible&eol;testing(3) means the switch is in a built-in test mode and is not accessible by an external Fibre Channel port&eol;faulty(4) means the switch is not operational. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27240 |20 |1.3.6.1.4.1.1588.2.1.1.1.26.1.0 |10208 |CPU utilization |system.cpu.util[swCpuUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB&eol;System's CPU usage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27242 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5] |10208 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27243 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5] |10208 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27244 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5] |10208 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27246 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[swSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |24 | | |0 | | | | |2 |NULL |MIB: SW-MIB&eol;Temperature status of testpoint: {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27247 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Temperature |sensor.temp.value[swSensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: SW-MIB&eol;Temperature readings of testpoint: {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27248 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[swSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |24 | | |0 | | | | |2 |NULL |MIB: SW-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27249 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Fan speed |sensor.fan.speed[swSensorValue.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: SW-MIB&eol;The current value (reading) of the sensor.&eol;The value, -2147483648, represents an unknown quantity.&eol;The fan value will be in RPM(revolution per minute) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27250 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Fan status |sensor.fan.status[swSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |24 | | |0 | | | | |2 |NULL |MIB: SW-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27294 |20 |1.3.6.1.4.1.1991.1.1.2.1.52.0 |10209 |CPU utilization |system.cpu.util[snAgGblCpuUtil1MinAvg.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The statistics collection of 1 minute CPU utilization. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27295 |20 |1.3.6.1.4.1.1991.1.1.2.1.11.0 |10210 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The version of the running software in the form'major.minor.maintenance[letters]' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27296 |20 |1.3.6.1.4.1.1991.1.1.1.1.2.0 |10210 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27297 |20 |1.3.6.1.4.1.1991.1.1.2.1.11.0 |10211 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The version of the running software in the form 'major.minor.maintenance[letters]' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27302 |20 |discovery[{#PSU_INDEX},1.3.6.1.4.1.1991.1.1.1.2.1.1.1] |10210 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasPwrSupplyTable: A table of each power supply information. Only installed power supply appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27303 |20 |discovery[{#FAN_INDEX},1.3.6.1.4.1.1991.1.1.1.3.1.1.1] |10210 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasFanTable: A table of each fan information. Only installed fan appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27304 |20 |discovery[{#SENSOR_DESCR},1.3.6.1.4.1.1991.1.1.2.13.1.1.3] |10210 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snAgentTempTable:Table to list temperatures of the modules in the device. This table is applicable to only those modules with temperature sensors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27306 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.1.1.18] |10210 |Temperature Discovery Chassis |temp.chassis.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Since temperature of the chassis is not available on all Brocade/Foundry hardware, this LLD is here to avoid unsupported items. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27307 |20 |discovery[{#PSU_UNIT},1.3.6.1.4.1.1991.1.1.1.2.2.1.1,{#PSU_INDEX},1.3.6.1.4.1.1991.1.1.1.2.2.1.2] |10211 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasPwrSupply2Table: A table of each power supply information for each unit. Only installed power supply appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27308 |20 |discovery[{#FAN_UNIT},1.3.6.1.4.1.1991.1.1.1.3.2.1.1,{#FAN_INDEX},1.3.6.1.4.1.1991.1.1.1.3.2.1.2] |10211 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasFan2Table: A table of each fan information for each unit. Only installed fan appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27309 |20 |discovery[{#SENSOR_DESCR},1.3.6.1.4.1.1991.1.1.2.13.3.1.4] |10211 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snAgentTemp2Table:Table to list temperatures of the modules in the device for each unit. This table is applicable to only those modules with temperature sensors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27310 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.3.31.2.1.1.5] |10211 |Stack Discovery |stack.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering snStackingConfigUnitTable for Model names |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27311 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.1.4.1.1.1] |10211 |Chassis Discovery |chassis.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasUnitIndex: The index to chassis table. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27312 |20 |1.3.6.1.4.1.1991.1.1.1.2.1.1.3.{#SNMPINDEX} |10210 |PSU {#PSU_INDEX}: Power supply status |sensor.psu.status[snChasPwrSupplyOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |26 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27313 |20 |1.3.6.1.4.1.1991.1.1.1.3.1.1.3.{#SNMPINDEX} |10210 |Fan {#FAN_INDEX}: Fan status |sensor.fan.status[snChasFanOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |27 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27314 |20 |1.3.6.1.4.1.1991.1.1.2.13.1.1.4.{#SNMPINDEX} |10210 |{#SENSOR_DESCR}: Temperature |sensor.temp.value[snAgentTempValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;Temperature of the sensor represented by this row. Each unit is 0.5 degrees Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27315 |20 |1.3.6.1.4.1.1991.1.1.1.1.18.{#SNMPINDEX} |10210 |Chassis #{#SNMPINDEX}: Temperature |sensor.temp.value[snChasActualTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;Temperature of the chassis. Each unit is 0.5 degrees Celsius.&eol;Only management module built with temperature sensor hardware is applicable.&eol;For those non-applicable management module, it returns no-such-name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27316 |20 |1.3.6.1.4.1.1991.1.1.1.2.2.1.4.{#SNMPINDEX} |10211 |Unit {#PSU_UNIT} PSU {#PSU_INDEX}: Power supply status |sensor.psu.status[snChasPwrSupply2OperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |26 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27317 |20 |1.3.6.1.4.1.1991.1.1.1.3.2.1.4.{#SNMPINDEX} |10211 |Unit {#FAN_UNIT} Fan {#FAN_INDEX}: Fan status |sensor.fan.status[snChasFan2OperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |27 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27318 |20 |1.3.6.1.4.1.1991.1.1.2.13.3.1.5.{#SNMPINDEX} |10211 |{#SENSOR_DESCR}: Temperature |sensor.temp.value[snAgentTemp2Value.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;Temperature of the sensor represented by this row. Each unit is 0.5 degrees Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27319 |20 |1.3.6.1.4.1.1991.1.1.3.31.2.1.1.5.{#SNMPINDEX} |10211 |Unit {#SNMPINDEX}: Hardware model name |system.hw.model[snStackingConfigUnitType.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-STACKING-MIB&eol;A description of the configured/active system type for each unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27320 |20 |1.3.6.1.4.1.1991.1.1.1.4.1.1.2.{#SNMPINDEX} |10211 |Unit {#SNMPVALUE}: Hardware serial number |system.hw.serialnumber[snChasUnitSerNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The serial number of the chassis for each unit. If the serial number is unknown or unavailable then the value should be a zero length string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27376 |20 |1.3.6.1.4.1.9.2.1.58 |10215 |CPU utilization |system.cpu.util[avgBusy5] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: OLD-CISCO-CPU-MIB&eol;5 minute exponentially-decayed moving average of the CPU busy percentage.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27378 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10216 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27379 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10216 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27390 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10212 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.&eol;http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27391 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10213 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&eol;indexed with cpmCPUTotalIndex .&eol;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&eol;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&eol;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27393 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10216 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27394 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10217 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status&eol;maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27395 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.5.1.2] |10217 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of power supply status maintained by the environmental monitor card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27396 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.4.1.2] |10217 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of fan status maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27415 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10212 |{#SNMPVALUE}: Free memory |vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27416 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10212 |{#SNMPVALUE}: Used memory |vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27417 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10213 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[cpmCPUTotal5minRev.{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;The cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27419 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10216 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27420 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10217 |{#SNMPVALUE}: Temperature status |sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current state of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27421 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10217 |{#SNMPVALUE}: Temperature |sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current measurement of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27422 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10217 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27423 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10217 |{#SENSOR_INFO}: Fan status |sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27473 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.9.1.1] |10221 |CPU and Memory and Flash Discovery |module.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27474 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.3.1.1] |10221 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A list of power supply residents in the S-series chassis. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27475 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.4.1.1] |10221 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27476 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.2.1.2] |10221 |Stack Unit Discovery |stack.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27478 |20 |1.3.6.1.4.1.6027.3.10.1.2.9.1.3.{#SNMPINDEX} |10221 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[chStackUnitCpuUtil1Min.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;CPU utilization in percentage for last 1 minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27479 |20 |1.3.6.1.4.1.6027.3.10.1.2.3.1.2.{#SNMPINDEX} |10221 |PSU {#SNMPVALUE}: Power supply status |sensor.psu.status[chSysPowerSupplyOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |31 | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The status of the power supply {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27480 |20 |1.3.6.1.4.1.6027.3.10.1.2.4.1.2.{#SNMPINDEX} |10221 |Fan {#SNMPVALUE}: Fan status |sensor.fan.status[chSysFanTrayOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |30 | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The status of the fan tray {#SNMPVALUE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27481 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.10.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Operating system |system.sw.os[chStackUnitCodeVersion.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;Current code version of this unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27482 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.21.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Hardware version(revision) |system.hw.version[chStackUnitProductRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The unit manufacturer's product revision |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27483 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.12.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Hardware serial number |system.hw.serialnumber[chStackUnitSerialNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The unit's serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27484 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.7.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Hardware model name |system.hw.model[chStackUnitModelID.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The plugged-in model ID for this unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27485 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.14.{#SNMPINDEX} |10221 |Device {#SNMPVALUE}: Temperature |sensor.temp.value[chStackUnitTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The temperature of the unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27508 |20 |1.3.6.1.2.1.47.1.1.1.1.8.1 |10222 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27509 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10222 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27510 |20 |1.3.6.1.2.1.1.1.0 |10222 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27511 |20 |1.3.6.1.4.1.171.10.97.2.36.1.1.3.0 |10222 |CPU utilization |system.cpu.util[myCPUUtilization5Min.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MY-PROCESS-MIB&eol;CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27512 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.35.1.1.1.2] |10222 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27513 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.23.1.2] |10222 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27514 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.18.1.3] |10222 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27515 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.21.1.3] |10222 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27517 |20 |1.3.6.1.4.1.171.10.97.2.1.1.23.1.3.{#SNMPINDEX} |10222 |{#SNMPVALUE}: Temperature |sensor.temp.value[mySystemTemperatureCurrent.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MY-SYSTEM-MIB&eol;Return the current temperature of the FastSwitch.The temperature display is not supported for the current temperature returns to 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27518 |20 |1.3.6.1.4.1.171.10.97.2.1.1.18.1.2.{#SNMPINDEX} |10222 |{#SNMPVALUE}: Power supply status |sensor.psu.status[mySystemElectricalSourceIsNormal.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |32 | | |0 | | | | |2 |NULL |MIB: MY-SYSTEM-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27519 |20 |1.3.6.1.4.1.171.10.97.2.1.1.21.1.2.{#SNMPINDEX} |10222 |{#SNMPVALUE}: Fan status |sensor.fan.status[mySystemFanIsNormal.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |32 | | |0 | | | | |2 |NULL |MIB: MY-SYSTEM-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27543 |20 |1.3.6.1.2.1.47.1.1.1.1.8.1 |10223 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27544 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10223 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27545 |20 |1.3.6.1.4.1.171.12.1.1.12.0 |10223 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: DLINK-AGENT-MIB&eol;A text string containing the serial number of this device. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27546 |20 |1.3.6.1.2.1.1.1.0 |10223 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27547 |20 |1.3.6.1.4.1.171.12.1.1.6.2.0 |10223 |CPU utilization |system.cpu.util[agentCPUutilizationIn1min.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: DLINK-AGENT-MIB&eol;The unit of time is 1 minute. The value will be between 0% (idle) and 100%(very busy). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27548 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.1.1.9.1.1] |10223 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27549 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.8.1.1] |10223 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27550 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.6.1.2,{#STATUS},1.3.6.1.4.1.171.12.11.1.6.1.3] |10223 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |swPowerID of EQUIPMENT-MIB::swPowerTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27551 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.7.1.2,{#STATUS},1.3.6.1.4.1.171.12.11.1.7.1.3] |10223 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |swFanID of EQUIPMENT-MIB::swFanTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27553 |20 |1.3.6.1.4.1.171.12.11.1.8.1.2.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Temperature |sensor.temp.value[swTemperatureCurrent.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EQUIPMENT-MIB&eol;The shelf current temperature. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27554 |20 |1.3.6.1.4.1.171.12.11.1.6.1.3.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Power supply status |sensor.psu.status[swPowerStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |34 | | |0 | | | | |2 |NULL |MIB: EQUIPMENT-MIB&eol;Indicates the current power status.&eol;lowVoltage : The voltage of the power unit is too low.&eol;overCurrent: The current of the power unit is too high.&eol;working : The power unit is working normally.&eol;fail : The power unit has failed.&eol;connect : The power unit is connected but not powered on.&eol;disconnect : The power unit is not connected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27555 |20 |1.3.6.1.4.1.171.12.11.1.7.1.3.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Fan status |sensor.fan.status[swFanStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |33 | | |0 | | | | |2 |NULL |MIB: EQUIPMENT-MIB&eol;Indicates the current fan status.&eol;speed-0 : If the fan function is normal and the fan does not spin due to the temperature not reaching the threshold, the status of the fan is speed 0.&eol;speed-low : Fan spin using the lowest speed.&eol;speed-middle: Fan spin using the middle speed.&eol;speed-high : Fan spin using the highest speed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27579 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10224 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27580 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10224 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27582 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10224 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27583 |20 |1.3.6.1.2.1.47.1.1.1.1.2.1 |10224 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27584 |20 |1.3.6.1.4.1.1916.1.1.1.8.0 |10224 |Device: Temperature |sensor.temp.value[extremeCurrentTemperature.0] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Temperature readings of testpoint: Device&eol;Reference: https://gtacknowledge.extremenetworks.com/articles/Q_A/Does-EXOS-support-temperature-polling-via-SNMP-on-all-nodes-in-a-stack |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27585 |20 |1.3.6.1.4.1.1916.1.1.1.7.0 |10224 |Device: Temperature status |sensor.temp.status[extremeOverTemperatureAlarm.0] |3m |2w |0d |0 |3 | | | | |NULL |37 | | |0 | | | | |0 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Temperature status of testpoint: Device |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27586 |20 |1.3.6.1.4.1.1916.1.32.1.2.0 |10224 |CPU utilization |system.cpu.util[extremeCpuMonitorTotalUtilization.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: EXTREME-SOFTWARE-MONITOR-MIB&eol;Total CPU utlization (percentage) as of last sampling. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27587 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.32.2.2.1.1] |10224 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27588 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.1.1.27.1.1] |10224 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Table of status of all power supplies in the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27589 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.1.1.9.1.1] |10224 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27591 |20 |1.3.6.1.4.1.1916.1.32.2.2.1.2.{#SNMPINDEX} |10224 |#{#SNMPVALUE}: Total memory |vm.memory.total[extremeMemoryMonitorSystemTotal.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EXTREME-SOFTWARE-MONITOR-MIB&eol;Total amount of DRAM in Kbytes in the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27593 |20 |1.3.6.1.4.1.1916.1.1.1.27.1.2.{#SNMPINDEX} |10224 |PSU {#SNMPVALUE}: Power supply status |sensor.psu.status[extremePowerSupplyStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |38 | | |0 | | | | |2 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Status of the power supply {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27594 |20 |1.3.6.1.4.1.1916.1.1.1.9.1.4.{#SNMPINDEX} |10224 |Fan {#SNMPVALUE}: Fan speed |sensor.fan.speed[extremeFanSpeed.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;The speed (RPM) of a cooling fan in the fantray {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27595 |20 |1.3.6.1.4.1.1916.1.1.1.9.1.2.{#SNMPINDEX} |10224 |Fan {#SNMPVALUE}: Fan status |sensor.fan.status[extremeFanOperational.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |36 | | |0 | | | | |2 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Operational status of a cooling fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27665 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.47.1.1.1.1.2,{#MODULE_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10227 |Module Discovery |module.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Filter limits results to 'Module level1' or Fabric Modules |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27666 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.47.1.1.1.1.2,{#MODULE_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10227 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering modules temperature (same filter as in Module Discovery) plus and temperature sensors |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27667 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_DESCR},1.3.6.1.2.1.47.1.1.1.1.2] |10227 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of PhysicalClass - 7: fan(7) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27668 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_DESCR},1.3.6.1.2.1.47.1.1.1.1.2] |10227 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of PhysicalClass - 6: powerSupply(6) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27669 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10227 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27671 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.6.{#SNMPINDEX} |10227 |{#MODULE_NAME}: CPU utilization |system.cpu.util[hh3cEntityExtCpuUsage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;The CPU usage for this entity. Generally, the CPU usage&eol;will calculate the overall CPU usage on the entity, and it&eol;is not sensible with the number of CPU on the entity |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27672 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.12.{#SNMPINDEX} |10227 |{#SNMPVALUE}: Temperature |sensor.temp.value[hh3cEntityExtTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;The temperature for the {#SNMPVALUE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27673 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.19.{#SNMPINDEX} |10227 |{#ENT_NAME}: Fan status |sensor.fan.status[hh3cEntityExtErrorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |39 | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;Indicate the error state of this entity object.&eol;fanError(41) means that the fan stops working. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27674 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.19.{#SNMPINDEX} |10227 |{#ENT_NAME}: Power supply status |sensor.psu.status[hh3cEntityExtErrorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |39 | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;Indicate the error state of this entity object.&eol;psuError(51) means that the Power Supply Unit is in the state of fault.&eol;rpsError(61) means the Redundant Power Supply is in the state of fault. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27675 |20 |1.3.6.1.2.1.47.1.1.1.1.10.{#SNMPINDEX} |10227 |{#ENT_NAME}: Operating system |system.sw.os[entPhysicalSoftwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27676 |20 |1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX} |10227 |{#ENT_NAME}: Hardware version(revision) |system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27677 |20 |1.3.6.1.2.1.47.1.1.1.1.9.{#SNMPINDEX} |10227 |{#ENT_NAME}: Firmware version |system.hw.firmware[entPhysicalFirmwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27678 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10227 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27679 |20 |1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX} |10227 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalDescr.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27745 |20 |discovery[{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10229 |MPU Discovery |mpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |http://support.huawei.com/enterprise/KnowledgebaseReadAction.action?contentId=KB1000090234. Filter limits results to Main Processing Units |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27746 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10229 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27747 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2011.5.25.31.1.1.10.1.1] |10229 |FAN Discovery |discovery.fans |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27748 |20 |1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX} |10229 |{#ENT_NAME}: Hardware version(revision) |system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27749 |20 |1.3.6.1.2.1.47.1.1.1.1.10.{#SNMPINDEX} |10229 |{#ENT_NAME}: Operating system |system.sw.os[entPhysicalSoftwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27750 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10229 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27751 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.{#SNMPINDEX} |10229 |{#ENT_NAME}: Temperature |sensor.temp.value[hwEntityTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB&eol;The temperature for the {#SNMPVALUE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27753 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.{#SNMPINDEX} |10229 |{#ENT_NAME}: CPU utilization |system.cpu.util[hwEntityCpuUsage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB&eol;The CPU usage for this entity. Generally, the CPU usage will calculate the overall CPU usage on the entity, and itis not sensible with the number of CPU on the entity.&eol;Reference: http://support.huawei.com/enterprise/KnowledgebaseReadAction.action?contentId=KB1000090234 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27754 |20 |1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX} |10229 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalDescr.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27755 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.10.1.7.{#SNMPINDEX} |10229 |#{#SNMPVALUE}: Fan status |sensor.fan.status[hwEntityFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |41 | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27777 |20 |1.3.6.1.4.1.10222.2.1.1.1.0 |10230 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ICS-CHASSIS-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27778 |20 |1.3.6.1.4.1.10222.2.1.1.1.0 |10230 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ICS-CHASSIS-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27779 |20 |discovery[{#SENSOR_TYPE},1.3.6.1.4.1.10222.2.1.9.8.1.2,{#SENSOR_INFO},1.3.6.1.4.1.10222.2.1.9.8.1.7] |10230 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering sensor's table with temperature filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27780 |20 |discovery[{#ENT_CLASS},1.3.6.1.4.1.10222.2.1.1.9.1.3,{#ENT_NAME},1.3.6.1.4.1.10222.2.1.1.9.1.2] |10230 |Unit Discovery |unit.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27781 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.10222.2.1.4.7.1.2] |10230 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A textual description of the power supply, that can be assigned by the administrator. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27782 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.10222.2.1.6.5.1.2] |10230 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |icsChassisFanDescription of icsChassisFanTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27783 |20 |1.3.6.1.4.1.10222.2.1.9.8.1.3.{#SNMPINDEX} |10230 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[icsChassisSensorSlotOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |43 | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The operational status of the sensor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27784 |20 |1.3.6.1.4.1.10222.2.1.9.8.1.8.{#SNMPINDEX} |10230 |{#SENSOR_INFO}: Temperature |sensor.temp.value[icsChassisSensorSlotValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The current value read from the sensor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27785 |20 |1.3.6.1.4.1.10222.2.1.1.10.1.1.{#SNMPINDEX} |10230 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[icsChassisSystemUnitFruSerialNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The serial number of the FRU. If not available, this value is a zero-length string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27786 |20 |1.3.6.1.4.1.10222.2.1.4.7.1.3.{#SNMPINDEX} |10230 |{#SNMPVALUE}: Power supply status |sensor.psu.status[icsChassisPowerSupplyEntry.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |44 | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;Actual status of the power supply:&eol;(1) unknown: status not known.&eol;(2) disabled: power supply is disabled.&eol;(3) failed - power supply is unable to supply power due to failure.&eol;(4) warning - power supply is supplying power, but an output or sensor is bad or warning.&eol;(5) standby - power supply believed usable,but not supplying power.&eol;(6) engaged - power supply is supplying power.&eol;(7) redundant - power supply is supplying power, but not needed.&eol;(8) notPresent - power supply is supplying power is not present. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27787 |20 |1.3.6.1.4.1.10222.2.1.6.5.1.3.{#SNMPINDEX} |10230 |{#SNMPVALUE}: Fan status |sensor.fan.status[icsChassisFanOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |42 | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The operational status of the fan unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27812 |20 |1.3.6.1.4.1.2636.3.1.2.0 |10231 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: JUNIPER-MIB&eol;The name, model, or detailed description of the box,indicating which product the box is about, for example 'M40'. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27813 |20 |1.3.6.1.4.1.2636.3.1.3.0 |10231 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: JUNIPER-MIB&eol;The serial number of this subject, blank if unknown or unavailable. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27814 |20 |1.3.6.1.4.1.2636.3.4.2.3.1.0 |10231 |Overall system health status |system.status[jnxRedAlarmState.0] |30s |2w |0d |0 |3 | | | | |NULL |46 | | |0 | | | | |0 |NULL |MIB: JUNIPER-ALARM-MIB&eol;The red alarm indication on the craft interface panel.&eol;The red alarm is on when there is some system&eol;failure or power supply failure or the system&eol;is experiencing a hardware malfunction or some&eol;threshold is being exceeded.&eol;&eol;This red alarm state could be turned off by the&eol;ACO/LT (Alarm Cut Off / Lamp Test) button on the&eol;front panel module. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27815 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5] |10231 |CPU and Memory Discovery |jnxOperatingTable.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for CPU and Memory&eol;http://kb.juniper.net/InfoCenter/index?page=content&id=KB17526&actp=search. Filter limits results to Routing Engines |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27816 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.7,{#SENSOR_INFO},1.3.6.1.4.1.2636.3.1.13.1.5] |10231 |Temperature discovery |jnxOperatingTable.discovery.temp |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for Temperature&eol;http://kb.juniper.net/InfoCenter/index?page=content&id=KB17526&actp=search. Filter limits results to Routing Engines |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27817 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5.4] |10231 |FAN Discovery |jnxOperatingTable.discovery.fans |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for Fans |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27818 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5.2] |10231 |PSU Discovery |jnxOperatingTable.discovery.psu |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for Power Supplies |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27821 |20 |1.3.6.1.4.1.2636.3.1.13.1.7.{#SNMPINDEX} |10231 |{#SENSOR_INFO}: Temperature |sensor.temp.value[jnxOperatingTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB&eol;The temperature in Celsius (degrees C) of {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27822 |20 |1.3.6.1.4.1.2636.3.1.13.1.6.4.{#SNMPINDEX} |10231 |{#SNMPVALUE}: Fan status |sensor.fan.status[jnxOperatingState.4.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |47 | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27823 |20 |1.3.6.1.4.1.2636.3.1.13.1.6.2.{#SNMPINDEX} |10231 |{#SNMPVALUE}: Power supply status |sensor.psu.status[jnxOperatingState.2.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |47 | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB&eol;If they are using DC power supplies there is a known issue on PR 1064039 where the fans do not detect the temperature correctly and fail to cool the power supply causing the shutdown to occur.&eol;This is fixed in Junos 13.3R7 https://forums.juniper.net/t5/Routing/PEM-0-not-OK-MX104/m-p/289644#M14122 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27893 |20 |1.3.6.1.2.1.1.1.0 |10233 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27894 |20 |1.3.6.1.4.1.14988.1.1.7.3.0 |10233 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MIKROTIK-MIB&eol;RouterBOARD serial number. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27895 |20 |1.3.6.1.4.1.14988.1.1.7.4.0 |10233 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MIKROTIK-MIB&eol;Current firmware version. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27898 |20 |1.3.6.1.2.1.25.2.3.1.5.65536 |10233 |Total memory |vm.memory.total[hrStorageSize.Memory] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in&eol;units of hrStorageAllocationUnits. This object is&eol;writable to allow remote configuration of the size of&eol;the storage area in those cases where such an&eol;operation makes sense and is possible on the&eol;underlying system. For example, the amount of main&eol;memory allocated to a buffer pool might be modified or&eol;the amount of disk space allocated to virtual memory&eol;might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27900 |20 |1.3.6.1.2.1.25.2.3.1.6.65536 |10233 |Used memory |vm.memory.used[hrStorageUsed.Memory] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27901 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1] |10233 |CPU discovery |hrProcessorLoad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrProcessorTable discovery |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27902 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11] |10233 |Temperature CPU discovery |mtxrHlProcessorTemperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |MIKROTIK-MIB::mtxrHlProcessorTemperature&eol;Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27903 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2] |10233 |Storage discovery |storage.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27904 |20 |1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} |10233 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[hrProcessorLoad.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27905 |20 |1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX} |10233 |CPU: Temperature |sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).&eol;Might be missing in entry models (RB750, RB450G..). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27906 |15 | |10233 |Disk-{#SNMPINDEX}: Space utilization |vfs.fs.pused[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vfs.fs.used[hrStorageSize.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for Disk-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27907 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10233 |Disk-{#SNMPINDEX}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in&eol;units of hrStorageAllocationUnits. This object is&eol;writable to allow remote configuration of the size of&eol;the storage area in those cases where such an&eol;operation makes sense and is possible on the&eol;underlying system. For example, the amount of main&eol;memory allocated to a buffer pool might be modified or&eol;the amount of disk space allocated to virtual memory&eol;might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27908 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10233 |Disk-{#SNMPINDEX}: Used space |vfs.fs.used[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27930 |20 |1.3.6.1.4.1.4526.10.1.1.1.3.0 |10234 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27931 |20 |1.3.6.1.4.1.4526.10.1.1.1.4.0 |10234 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB&eol;Serial number of the switch |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27935 |20 |1.3.6.1.4.1.4526.10.1.1.5.2.0 |10234 |Total memory |vm.memory.total[agentSwitchCpuProcessMemAvailable.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB&eol;The total Memory allocated for the tasks |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27936 |20 |1.3.6.1.4.1.4526.10.1.1.4.9.0 |10234 |CPU utilization |system.cpu.util[agentSwitchCpuProcessTotalUtilization.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB&eol;CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27937 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.4526.10.43.1.8.1.1] |10234 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |FASTPATH-BOXSERVICES-PRIVATE-MIB::boxServicesTempSensorsTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27938 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.4526.10.43.1.6.1.1] |10234 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |FASTPATH-BOXSERVICES-PRIVATE-MIB::1.3.6.1.4.1.4526.10.43.1.6.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27939 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.4526.10.43.1.7.1.1] |10234 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |FASTPATH-BOXSERVICES-PRIVATE-MIB::boxServicesPowSupplyIndex |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27940 |20 |1.3.6.1.4.1.4526.10.43.1.8.1.3.{#SNMPINDEX} |10234 |#{#SNMPVALUE}: Temperature status |sensor.temp.status[boxServicesTempSensorState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |51 | | |0 | | | | |2 |NULL |MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;The state of temperature sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27941 |20 |1.3.6.1.4.1.4526.10.43.1.8.1.5.{#SNMPINDEX} |10234 |#{#SNMPVALUE}: Temperature |sensor.temp.value[boxServicesTempSensorTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;The temperature value reported by sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27942 |20 |1.3.6.1.4.1.4526.10.43.1.6.1.3.{#SNMPINDEX} |10234 |#{#SNMPVALUE}: Fan status |sensor.fan.status[boxServicesFanItemState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |50 | | |0 | | | | |2 |NULL |MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;The status of fan |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27943 |20 |1.3.6.1.4.1.4526.10.43.1.7.1.3.{#SNMPINDEX} |10234 |#{#SNMPVALUE}: Power supply status |sensor.psu.status[boxServicesPowSupplyItemState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |49 | | |0 | | | | |2 |NULL |MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;The status of power supply |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27967 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10235 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27968 |20 |1.3.6.1.2.1.47.1.1.1.1.8.1 |10235 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27970 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10235 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27971 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10235 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27972 |20 |1.3.6.1.4.1.27514.100.1.11.7.0 |10235 |Used memory |vm.memory.used[switchMemoryBusy.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: QTECH-MIB&eol;Used memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27973 |20 |1.3.6.1.4.1.27514.100.1.11.6.0 |10235 |Total memory |vm.memory.total[switchMemorySize.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: QTECH-MIB&eol;Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27975 |20 |1.3.6.1.4.1.27514.100.1.11.10.0 |10235 |CPU utilization |system.cpu.util[switchCpuUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: QTECH-MIB&eol;CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27997 |20 |1.3.6.1.4.1.11863.6.1.1.5.0 |10236 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TPLINK-SYSINFO-MIB&eol;The hardware version of the product. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27998 |20 |1.3.6.1.4.1.11863.6.1.1.6.0 |10236 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TPLINK-SYSINFO-MIB&eol;The software version of the product. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27999 |20 |1.3.6.1.4.1.11863.6.1.1.8.0 |10236 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TPLINK-SYSINFO-MIB&eol;The Serial number of the product. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28000 |20 |1.3.6.1.4.1.11863.6.1.1.5.0 |10236 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TPLINK-SYSINFO-MIB&eol;The hardware version of the product. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28001 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.11863.6.4.1.1.1.1.1] |10236 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering TPLINK-SYSMONITOR-MIB::tpSysMonitorCpuTable, displays the CPU utilization of all UNITs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28002 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.11863.6.4.1.2.1.1.1] |10236 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering TPLINK-SYSMONITOR-MIB::tpSysMonitorMemoryTable, displays the memory utilization of all UNITs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28003 |20 |1.3.6.1.4.1.11863.6.4.1.1.1.1.3.{#SNMPINDEX} |10236 |#{#SNMPVALUE}: CPU utilization |system.cpu.util[tpSysMonitorCpu1Minute.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TPLINK-SYSMONITOR-MIB&eol;Displays the CPU utilization in 1 minute.&eol;Reference: http://www.tp-link.com/faq-1330.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28026 |20 |1.2.840.10036.3.1.2.1.3.5 |10237 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IEEE802dot11-MIB&eol;A printable string used to identify the manufacturer's product name of the resource. Maximum string length is 128 octets. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28027 |20 |1.2.840.10036.3.1.2.1.4.5 |10237 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IEEE802dot11-MIB&eol;Printable string used to identify the manufacturer's product version of the resource. Maximum string length is 128 octets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28031 |20 |1.3.6.1.4.1.10002.1.1.1.4.2.1.3.2 |10237 |CPU utilization |system.cpu.util[loadValue.2] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FROGFOOT-RESOURCES-MIB&eol;5 minute load average of processor load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28141 |20 |1.3.6.1.4.1.11.2.14.11.5.1.1.3.0 |10250 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: NETSWITCH-MIB&eol;Contains the operating code version number (also known as software or firmware).&eol;For example, a software version such as A.08.01 is described as follows:&eol;A the function set available in your router&eol;08 the common release number&eol;01 updates to the current common release |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28142 |20 |1.3.6.1.4.1.11.2.36.1.1.2.9.0 |10250 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SEMI-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28143 |20 |1.3.6.1.4.1.11.2.14.11.5.1.9.6.1.0 |10250 |CPU utilization |system.cpu.util[hpSwitchCpuStat.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: STATISTICS-MIB&eol;The CPU utilization in percent(%).&eol;Reference: http://h20564.www2.hpe.com/hpsc/doc/public/display?docId=emr_na-c02597344&sp4ts.oid=51079 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28144 |20 |discovery[{#SENSOR_TYPE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2,{#SENSOR_PRECISION},1.3.6.1.2.1.99.1.1.1.3] |10250 |Temperature Discovery |temp.precision0.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with celsius filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28145 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.1] |10250 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of NETSWITCH-MIB::hpLocalMemTable, A table that contains information on all the local memory for each slot. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28146 |20 |discovery[{#ENT_CLASS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.2,{#ENT_DESCR},1.3.6.1.4.1.11.2.14.11.1.2.6.1.7,{#ENT_STATUS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.4] |10250 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of hpicfSensorObjectId that ends with: 11.2.3.7.8.3.2 - fans and are present |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28147 |20 |discovery[{#ENT_CLASS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.2,{#ENT_DESCR},1.3.6.1.4.1.11.2.14.11.1.2.6.1.7,{#ENT_STATUS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.4] |10250 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of hpicfSensorObjectId that ends with: 11.2.3.7.8.3.1 - power supplies and are present |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28148 |20 |discovery[{#ENT_CLASS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.2,{#ENT_DESCR},1.3.6.1.4.1.11.2.14.11.1.2.6.1.7,{#ENT_STATUS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.4] |10250 |Temp Status Discovery |temp.status.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of hpicfSensorObjectId that ends with: 11.2.3.7.8.3.3 - over temp status and are present |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28149 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10250 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28150 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10250 |{#SENSOR_INFO}: Temperature |sensor.temp.value[entPhySensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28153 |20 |1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.7.{#SNMPINDEX} |10250 |#{#SNMPVALUE}: Used memory |vm.memory.used[hpLocalMemAllocBytes.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: NETSWITCH-MIB&eol;The number of currently allocated bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28154 |20 |1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.{#SNMPINDEX} |10250 |{#ENT_DESCR}: Fan status |sensor.fan.status[hpicfSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |40 | | |0 | | | | |2 |NULL |MIB: HP-ICF-CHASSIS&eol;Actual status indicated by the sensor: {#ENT_DESCR} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28155 |20 |1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.{#SNMPINDEX} |10250 |{#ENT_DESCR}: Power supply status |sensor.psu.status[hpicfSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |40 | | |0 | | | | |2 |NULL |MIB: HP-ICF-CHASSIS&eol;Actual status indicated by the sensor: {#ENT_DESCR} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28156 |20 |1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.{#SNMPINDEX} |10250 |{#ENT_DESCR}: Temperature status |sensor.temp.status[hpicfSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |40 | | |0 | | | | |2 |NULL |MIB: HP-ICF-CHASSIS&eol;Actual status indicated by the sensor: {#ENT_DESCR} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28157 |20 |1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX} |10250 |{#ENT_NAME}: Hardware version(revision) |system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28158 |20 |1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX} |10250 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalDescr.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28196 |20 |discovery[{#SENSOR_TYPE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2,{#SENSOR_PRECISION},1.3.6.1.2.1.99.1.1.1.3] |10251 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with celsius filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28197 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2] |10251 |Fan Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with rpm filter |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28198 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10251 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28199 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10251 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28200 |20 |1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[entPhySensorOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |18 | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The operational status of the sensor {#SENSOR_INFO}. Possible values:&eol;- ok(1) indicates that the agent can obtain the sensor value.&eol;- unavailable(2) indicates that the agent presently cannot obtain the sensor value.&eol;- nonoperational(3) indicates that the agent believes the sensor is broken. The sensor could have a hard failure (disconnected wire), or a soft failure such as out-of-range, jittery, or wildly fluctuating readings. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28201 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Temperature |sensor.temp.value[entPhySensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28202 |20 |1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Fan status |sensor.fan.status[entPhySensorOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |18 | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The operational status of the sensor {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28203 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Fan speed |sensor.fan.speed[entPhySensorValue.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28204 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10251 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28205 |20 |1.3.6.1.2.1.47.1.1.1.1.13.{#SNMPINDEX} |10251 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalModelName.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28206 |20 |1.3.6.1.2.1.131.1.1.1.3.{#SNMPINDEX} |10251 |{#ENT_NAME}: Power supply status |sensor.psu.status[entStateOper.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |48 | | |0 | | | | |2 |NULL |MIB: ENTITY-STATE-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28244 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10252 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&eol;indexed with cpmCPUTotalIndex .&eol;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&eol;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&eol;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28246 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.5.{#SNMPINDEX} |10252 |{#SNMPVALUE}: CPU utilization |system.cpu.util[cpmCPUTotal5min.{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;The overall CPU busy percentage in the last 5 minute&eol;period. This object deprecates the avgBusy5 object from&eol;the OLD-CISCO-SYSTEM-MIB. This object is deprecated&eol;by cpmCPUTotal5minRev which has the changed range&eol;of value (0..100)&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28248 |5 | |10047 |Zabbix preprocessing queue |zabbix[preprocessing_queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28250 |5 | |10048 |Utilization of vmware data collector processes, in % |zabbix[process,vmware collector,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |28251 |5 | |10048 |Zabbix vmware cache, % used |zabbix[vmware,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |28305 |20 |discovery[{#SENSOR_TYPE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2,{#SENSOR_PRECISION},1.3.6.1.2.1.99.1.1.1.3,{#THRESHOLD_LO_WARN},1.3.6.1.4.1.30065.3.12.1.1.1.1,{#THRESHOLD_LO_CRIT},1.3.6.1.4.1.30065.3.12.1.1.1.2,{#THRESHOLD_HI_WARN},1.3.6.1.4.1.30065.3.12.1.1.1.3,{#THRESHOLD_HI_CRIT},1.3.6.1.4.1.30065.3.12.1.1.1.4]|10254 |Get sensors |sensors.get |1h |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Gets sensors with type, description, and thresholds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28308 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10254 |Entity discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28309 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10254 |PSU discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28323 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Temperature |sensor.temp.value[entPhySensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28324 |20 |1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[entPhySensorOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |18 | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The operational status of the sensor {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28325 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Fan speed |sensor.fan.speed[entPhySensorValue.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28326 |20 |1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Fan status |sensor.fan.status[entPhySensorOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |18 | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The operational status of the sensor {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28327 |20 |1.3.6.1.2.1.47.1.1.1.1.13.{#SNMPINDEX} |10254 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalModelName.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28328 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10254 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28329 |20 |1.3.6.1.2.1.131.1.1.1.3.{#SNMPINDEX} |10254 |{#ENT_NAME}: Power supply status |sensor.psu.status[entStateOper.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |48 | | |0 | | | | |2 |NULL |MIB: ENTITY-STATE-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28341 |20 |1.3.6.1.4.1.674.10892.5.2.1.0 |10255 |Overall system health status |system.status[globalSystemStatus.0] |30s |2w |0d |0 |3 | | | | |NULL |59 | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the overall rollup status of all components in the system being monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28342 |20 |1.3.6.1.4.1.674.10892.5.1.3.12.0 |10255 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the model name of the system. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28344 |20 |1.3.6.1.4.1.674.10892.5.1.3.2.0 |10255 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the service tag of the system. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28345 |20 |1.3.6.1.4.1.674.10892.5.1.1.8.0 |10255 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the firmware version of a remote access card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28346 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.20.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.674.10892.5.4.700.20.1.8] |10255 |Temperature CPU Discovery |temp.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Probe Table IDRAC-MIB-SMIv2::temperatureProbeTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28347 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.20.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.674.10892.5.4.700.20.1.8] |10255 |Temperature Ambient Discovery |temp.ambient.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Probe Table IDRAC-MIB-SMIv2::temperatureProbeTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28348 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.600.12.1.5,{#PSU_DESCR},1.3.6.1.4.1.674.10892.5.4.600.12.1.8] |10255 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::powerSupplyTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28349 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.12.1.5,{#FAN_DESCR},1.3.6.1.4.1.674.10892.5.4.700.12.1.8,{#TYPE},1.3.6.1.4.1.674.10892.5.4.700.12.1.7] |10255 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::coolingDeviceTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28350 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1,{#DISK_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2] |10255 |Physical Disk Discovery |physicaldisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::physicalDiskTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28351 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1,{#DISK_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2] |10255 |Virtual Disk Discovery |virtualdisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::virtualDiskTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28352 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38,{#CNTLR_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79] |10255 |Array Controller Discovery |physicaldisk.arr.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::controllerTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28353 |20 |discovery[{#BATTERY_NUM},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1] |10255 |Array Controller Cache Discovery |array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::batteryTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28354 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} |10255 |{#SENSOR_LOCALE}: Temperature |sensor.temp.value[temperatureProbeReading.CPU.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0020.0001.0006 This attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete. When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete,the value returned for this attribute is the temperature that the probeis reading in tenths of degrees Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28355 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} |10255 |{#SENSOR_LOCALE}: Temperature status |sensor.temp.status[temperatureProbeStatus.CPU.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0020.0001.0005 This attribute defines the probe status of the temperature probe. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28356 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} |10255 |{#SENSOR_LOCALE}: Temperature |sensor.temp.value[temperatureProbeReading.Ambient.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0020.0001.0006 This attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete. When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete,the value returned for this attribute is the temperature that the probeis reading in tenths of degrees Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28357 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} |10255 |{#SENSOR_LOCALE}: Temperature status |sensor.temp.status[temperatureProbeStatus.Ambient.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0020.0001.0005 This attribute defines the probe status of the temperature probe. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28358 |20 |1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX} |10255 |{#PSU_DESCR}: Power supply status |sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |59 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0600.0012.0001.0005 This attribute defines the status of the power supply. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28359 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX} |10255 |{#FAN_DESCR}: Fan status |sensor.fan.status[coolingDeviceStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0012.0001.0005 This attribute defines the probe status of the cooling device. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28360 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX} |10255 |{#FAN_DESCR}: Fan speed |sensor.fan.speed[coolingDeviceReading.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0012.0001.0006 This attribute defines the reading for a cooling device&eol;of subtype other than coolingDeviceSubTypeIsDiscrete. When the value&eol;for coolingDeviceSubType is other than coolingDeviceSubTypeIsDiscrete, the&eol;value returned for this attribute is the speed in RPM or the OFF/ON value&eol;of the cooling device. When the value for coolingDeviceSubType is&eol;coolingDeviceSubTypeIsDiscrete, a value is not returned for this attribute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28361 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk status |system.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}] |3m |90d |0d |0 |3 | | | | |NULL |61 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The status of the physical disk itself without the propagation of any contained component status.&eol;Possible values:&eol;1: Other&eol;2: Unknown&eol;3: OK&eol;4: Non-critical&eol;5: Critical&eol;6: Non-recoverable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28362 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk serial number |system.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}] |1d |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The physical disk's unique identification number from the manufacturer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28363 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk S.M.A.R.T. status |system.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}] |3m |90d |0d |0 |3 | | | | |NULL |62 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;Indicates whether the physical disk has received a predictive failure alert. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28364 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk model name |system.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The model number of the physical disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28365 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.27.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk part number |system.hw.physicaldisk.part_number[physicalDiskPartNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The part number of the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28366 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk media type |system.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}] |1h |2w |0d |0 |3 | | | | |NULL |63 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The media type of the physical disk. Possible Values:&eol;1: The media type could not be determined.&eol;2: Hard Disk Drive (HDD).&eol;3: Solid State Drive (SSD). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28367 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX} |10255 |{#DISK_NAME}: Disk size |system.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}] |1h |2w |0d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The size of the physical disk in megabytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28368 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Layout type |system.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |65 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The virtual disk's RAID type.&eol;Possible values:&eol;1: Not one of the following&eol;2: RAID-0&eol;3: RAID-1&eol;4: RAID-5&eol;5: RAID-6&eol;6: RAID-10&eol;7: RAID-50&eol;8: RAID-60&eol;9: Concatenated RAID 1&eol;10: Concatenated RAID 5 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28369 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Current state |system.hw.virtualdisk.state[virtualDiskOperationalState.{#SNMPINDEX}] |3m |2w |365d |0 |3 | | | | |NULL |66 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The state of the virtual disk when there are progressive operations ongoing.&eol;Possible values:&eol;1: There is no active operation running.&eol;2: The virtual disk configuration has changed. The physical disks included in the virtual disk are being modified to support the new configuration.&eol;3: A Consistency Check (CC) is being performed on the virtual disk.&eol;4: The virtual disk is being initialized.&eol;5: BackGround Initialization (BGI) is being performed on the virtual disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28370 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Read policy |system.hw.virtualdisk.readpolicy[virtualDiskReadPolicy.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The read policy used by the controller for read operations on this virtual disk.&eol;Possible values:&eol;1: No Read Ahead.&eol;2: Read Ahead.&eol;3: Adaptive Read Ahead. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28371 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Write policy |system.hw.virtualdisk.writepolicy[virtualDiskWritePolicy.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |67 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The write policy used by the controller for write operations on this virtual disk.&eol;Possible values:&eol;1: Write Through.&eol;2: Write Back.&eol;3: Force Write Back. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28372 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Disk size |system.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}] |1h |2w |0d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The size of the virtual disk in megabytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28373 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Status |system.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}] |3m |2w |365d |0 |3 | | | | |NULL |69 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The current state of this virtual disk (which includes any member physical disks.)&eol;Possible states:&eol;1: The current state could not be determined.&eol;2: The virtual disk is operating normally or optimally.&eol;3: The virtual disk has encountered a failure. The data on disk is lost or is about to be lost.&eol;4: The virtual disk encountered a failure with one or all of the constituent redundant physical disks.&eol;The data on the virtual disk might no longer be fault tolerant. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28374 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX} |10255 |{#CNTLR_NAME}: Disk array controller status |system.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |59 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The status of the controller itself without the propagation of any contained component status.&eol;Possible values:&eol;1: Other&eol;2: Unknown&eol;3: OK&eol;4: Non-critical&eol;5: Critical&eol;6: Non-recoverable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28375 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX} |10255 |{#CNTLR_NAME}: Disk array controller model |system.hw.diskarray.model[controllerName.{#SNMPINDEX}] |1d |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The controller's name as represented in Storage Management. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28376 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX} |10255 |Battery {#BATTERY_NUM}: Disk array cache controller battery status |system.hw.diskarray.cache.battery.status[batteryState.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |64 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;Current state of battery.&eol;Possible values:&eol;1: The current state could not be determined.&eol;2: The battery is operating normally.&eol;3: The battery has failed and needs to be replaced.&eol;4: The battery temperature is high or charge level is depleting.&eol;5: The battery is missing or not detected.&eol;6: The battery is undergoing the re-charge phase.&eol;7: The battery voltage or charge level is below the threshold. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28388 |20 |1.3.6.1.4.1.232.6.2.6.1.0 |10256 |System: Temperature status |sensor.temp.status[cpqHeThermalCondition.0] |1m |7d |0d |0 |3 | | | | |NULL |54 | | |0 | | | | |0 |NULL |MIB: CPQHLTH-MIB&eol;This value specifies the overall condition of the system's thermal environment.&eol;This value will be one of the following:&eol;other(1) Temperature could not be determined.&eol;ok(2) The temperature sensor is within normal operating range.&eol;degraded(3) The temperature sensor is outside of normal operating range.&eol;failed(4) The temperature sensor detects a condition that could permanently damage the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28390 |20 |1.3.6.1.4.1.232.2.2.4.2.0 |10256 |Hardware model name |system.hw.model |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: CPQSINFO-MIB&eol;The machine product name.The name of the machine used in this system. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28391 |20 |1.3.6.1.4.1.232.2.2.2.1.0 |10256 |Hardware serial number |system.hw.serialnumber |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: CPQSINFO-MIB&eol;The serial number of the physical system unit. The string will be empty if the system does not report the serial number function. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28392 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery |tempDescr.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28393 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery Ambient |tempDescr.discovery.ambient |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with ambient(11) and 0.1 index filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28394 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery CPU |tempDescr.discovery.cpu |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with cpu(6) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28395 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery Memory |tempDescr.discovery.memory |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with memory(7) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28396 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery PSU |tempDescr.discovery.psu |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with powerSupply(10) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28397 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery I/O |tempDescr.discovery.io |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with ioBoard(5) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28398 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.9.3.1.5,{#CHASSIS_NUM},1.3.6.1.4.1.232.6.2.9.3.1.1,{#BAY_NUM},1.3.6.1.4.1.232.6.2.9.3.1.2] |10256 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |CPQHLTH-MIB::cpqHeFltTolPowerSupplyStatus |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28399 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.7.1.9] |10256 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |CPQHLTH-MIB::cpqHeFltTolFanCondition |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28400 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.2.1.1.1,{#CNTLR_SLOT},1.3.6.1.4.1.232.3.2.2.1.1.5,{#CNTLR_LOCATION},1.3.6.1.4.1.232.3.2.2.1.1.20] |10256 |Array Controller Discovery |array.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: CPQIDA-MIB::cpqDaCntlrTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28401 |20 |discovery[{#CACHE_STATUS},1.3.6.1.4.1.232.3.2.2.2.1.2,{#CACHE_CNTRL_INDEX},1.3.6.1.4.1.232.3.2.2.2.1.1] |10256 |Array Controller Cache Discovery |array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: CPQIDA-MIB::cpqDaAccelTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28402 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.5.1.1.5,{#DISK_LOCATION},1.3.6.1.4.1.232.3.2.5.1.1.64] |10256 |Physical Disk Discovery |physicalDisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of physical drive entries CPQIDA-MIB::cpqDaPhyDrvTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28403 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.3.1.1.2,{#DISK_NAME},1.3.6.1.4.1.232.3.2.3.1.1.14] |10256 |Virtual Disk Discovery |virtualdisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |CPQIDA-MIB::cpqDaLogDrvTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28404 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |{#SNMPINDEX}: Temperature |sensor.temp.value[cpqHeTemperatureCelsius.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: {#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28405 |20 |1.3.6.1.4.1.232.6.2.6.8.1.3.{#SNMPINDEX} |10256 |{#SNMPINDEX}: Temperature sensor location |sensor.temp.locale[cpqHeTemperatureLocale.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |55 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;This specifies the location of the temperature sensor present in the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28406 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |Ambient: Temperature |sensor.temp.value[cpqHeTemperatureCelsius.Ambient.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: Ambient |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28407 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |CPU-{#SNMPINDEX}: Temperature |sensor.temp.value[cpqHeTemperatureCelsius.CPU.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: CPU-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28408 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |Memory-{#SNMPINDEX}: Temperature |sensor.temp.value[cpqHeTemperatureCelsius.Memory.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: Memory-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28409 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |PSU-{#SNMPINDEX}: Temperature |sensor.temp.value[cpqHeTemperatureCelsius.PSU.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: PSU-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28411 |20 |1.3.6.1.4.1.232.6.2.9.3.1.4.{#SNMPINDEX} |10256 |Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status |sensor.psu.status[cpqHeFltTolPowerSupplyCondition.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |54 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The condition of the power supply. This value will be one of the following:&eol;other(1) The status could not be determined or not present.&eol;ok(2) The power supply is operating normally.&eol;degraded(3) A temperature sensor, fan or other power supply component is outside of normal operating range.&eol;failed(4) A power supply component detects a condition that could permanently damage the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28412 |20 |1.3.6.1.4.1.232.6.2.6.7.1.9.{#SNMPINDEX} |10256 |Fan {#SNMPINDEX}: Fan status |sensor.fan.status[cpqHeFltTolFanCondition.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |54 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The condition of the fan.&eol;This value will be one of the following:&eol;other(1) Fan status detection is not supported by this system or driver.&eol;ok(2) The fan is operating properly.&eol;degraded(2) A redundant fan is not operating properly.&eol;failed(4) A non-redundant fan is not operating properly. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28413 |20 |1.3.6.1.4.1.232.3.2.2.1.1.6.{#SNMPINDEX} |10256 |{#CNTLR_LOCATION}: Disk array controller status |system.hw.diskarray.status[cpqDaCntlrCondition.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |54 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;This value represents the overall condition of this controller,&eol;and any associated logical drives,physical drives, and array accelerators. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28414 |20 |1.3.6.1.4.1.232.3.2.2.1.1.2.{#SNMPINDEX} |10256 |{#CNTLR_LOCATION}: Disk array controller model |system.hw.diskarray.model[cpqDaCntlrModel.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |56 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Array Controller Model. The type of controller card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28415 |20 |1.3.6.1.4.1.232.3.2.2.2.1.2.{#SNMPINDEX} |10256 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller status |system.hw.diskarray.cache.status[cpqDaAccelStatus.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |71 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Cache Module/Operations Status. This describes the status of the cache module and/or cache operations.&eol;Note that for some controller models, a cache module board that physically attaches to the controller or chipset may not be an available option.&eol;&eol;The status can be:&eol;Other (1)&eol; Indicates that the instrument agent does not recognize the status of the cache module. You may need to upgrade the instrument agent.&eol;&eol;Invalid (2)&eol; Indicates that a cache module board has not been installed in this system or is present but not configured.&eol;&eol;Enabled (3)&eol; Indicates that cache operations are currently configured and enabled for at least one logical drive.&eol;&eol;Temporarily Disabled (4)&eol; Indicates that cache operations have been temporarily disabled. View the cache module board error code object to determine why the write cache operations have been temporarily disabled.&eol;&eol;Permanently Disabled (5)&eol; Indicates that cache operations have been permanently disabled. View the cache module board error code object to determine why the write cache operations have been disabled.&eol;&eol;Cache Module Flash Memory Not Attached (6)&eol; Indicates that the flash memory component of the flash backed cache module is not attached. This status will be set when the flash memory is not attached and the Supercap is attached. This value is only used on flash backed cache modules that support removable flash memory.&eol;&eol;Cache Module Degraded Failsafe Speed (7)&eol; Indicates that the cache module board is currently degraded and operating at a failsafe speed. View variables cpqDaCacheMemoryDataWidth and cpqDaCacheMemoryTransferRate to obtain the cache module board`s current memory data width and memory transfer rate.&eol;&eol;Cache Module Critical Failure (8)&eol; Indicates that the cache module board has encountered a critical failure. The controller is currently operating in Zero Memory Raid mode.&eol;&eol;Read Cache Could Not Be Mapped (9)&eol; Indicates that the read cache memory in a split cache configuration could not be mapped by the operating system and as a result is not available. This status may be caused by virtual space limitations in certain operating systems and is only applicable to B-Series controllers.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28416 |20 |1.3.6.1.4.1.232.3.2.2.2.1.6.{#SNMPINDEX} |10256 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status |system.hw.diskarray.cache.battery.status[cpqDaAccelBattery.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |72 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Cache Module Board Backup Power Status. This monitors the status of each backup power source on the board.&eol;The backup power source can only recharge when the system has power applied. The type of backup power source used is indicated by cpqDaAccelBackupPowerSource.&eol;The following values are valid:&eol;Other (1) Indicates that the instrument agent does not recognize backup power status. You may need to update your software.&eol;&eol;Ok (2) The backup power source is fully charged.&eol;&eol;Recharging (3) The array controller has one or more cache module backup power sources that are recharging.&eol;Cache module operations such as Battery/Flash Backed Write Cache, Expansion, Extension and Migration are temporarily suspended until the backup power source is fully charged.&eol;Cache module operations will automatically resume when charging is complete.&eol;&eol;Failed (4) The battery pack is below the sufficient voltage level and has not recharged in 36 hours.&eol;Your Cache Module board needs to be serviced.&eol;&eol;Degraded (5) The battery is still operating, however, one of the batteries in the pack has failed to recharge properly.&eol;Your Cache Module board should be serviced as soon as possible.&eol;&eol;NotPresent (6) A backup power source is not present on the cache module board. Some controllers do not have backup power sources.&eol;&eol;Capacitor Failed (7) The flash backed cache module capacitor is below the sufficient voltage level and has not recharged in 10 minutes. Your Cache Module board needs to be serviced.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28417 |20 |1.3.6.1.4.1.232.3.2.5.1.1.6.{#SNMPINDEX} |10256 |{#DISK_LOCATION}: Physical disk status |system.hw.physicaldisk.status[cpqDaPhyDrvStatus.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |57 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Physical Drive Status. This shows the status of the physical drive. The following values are valid for the physical drive status:&eol;other (1) Indicates that the instrument agent does not recognize the drive.&eol;You may need to upgrade your instrument agent and/or driver software.&eol;ok (2) Indicates the drive is functioning properly.&eol;failed (3) Indicates that the drive is no longer operating and should be replaced.&eol;predictiveFailure(4) Indicates that the drive has a predictive failure error and should be replaced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28418 |20 |1.3.6.1.4.1.232.3.2.5.1.1.57.{#SNMPINDEX} |10256 |{#DISK_LOCATION}: Physical disk S.M.A.R.T. status |system.hw.physicaldisk.smart_status[cpqDaPhyDrvSmartStatus.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |70 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Physical Drive S.M.A.R.T Status.The following values are defined:&eol;other(1) The agent is unable to determine if the status of S.M.A.R.T predictive failure monitoring for this drive.&eol;ok(2) Indicates the drive is functioning properly.&eol;replaceDrive(3) Indicates that the drive has a S.M.A.R.T predictive failure error and should be replaced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28419 |20 |1.3.6.1.4.1.232.3.2.5.1.1.51.{#SNMPINDEX} |10256 |{#DISK_LOCATION}: Physical disk serial number |system.hw.physicaldisk.serialnumber[cpqDaPhyDrvSerialNum.{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Physical Drive Serial Number.&eol;This is the serial number assigned to the physical drive.&eol;This value is based upon the serial number as returned by the SCSI inquiry command&eol;but may have been modified due to space limitations. This can be used for identification purposes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28420 |20 |1.3.6.1.4.1.232.3.2.5.1.1.3.{#SNMPINDEX} |10256 |{#DISK_LOCATION}: Physical disk model name |system.hw.physicaldisk.model[cpqDaPhyDrvModel.{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Physical Drive Model.This is a text description of the physical drive.&eol;The text that appears depends upon who manufactured the drive and the drive type.&eol;If a drive fails, note the model to identify the type of drive necessary for replacement.&eol;If a model number is not present, you may not have properly initialized the drive array to which the physical drive is attached for monitoring. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28421 |20 |1.3.6.1.4.1.232.3.2.5.1.1.69.{#SNMPINDEX} |10256 |{#DISK_LOCATION}: Physical disk media type |system.hw.physicaldisk.media_type[cpqDaPhyDrvMediaType.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |73 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Drive Array Physical Drive Media Type.The following values are defined:&eol;other(1) The instrument agent is unable to determine the physical drive’s media type.&eol;rotatingPlatters(2) The physical drive media is composed of rotating platters.&eol;solidState(3) The physical drive media is composed of solid state electronics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28422 |20 |1.3.6.1.4.1.232.3.2.5.1.1.45.{#SNMPINDEX} |10256 |{#DISK_LOCATION}: Disk size |system.hw.physicaldisk.size[cpqDaPhyDrvMediaType.{#SNMPINDEX}] |1m |7d |0d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Physical Drive Size in MB.&eol;This is the size of the physical drive in megabytes.&eol;This value is calculated using the value 1,048,576 (2^20) as a megabyte.&eol;Drive manufacturers sometimes use the number 1,000,000 as a megabyte when giving drive capacities so this value may differ&eol;from the advertised size of a drive. This field is only applicable for controllers which support SCSI drives,&eol;and therefore is not supported by the IDA or IDA-2 controllers. The field will contain 0xFFFFFFFF if the drive capacity cannot be calculated&eol;or if the controller does not support SCSI drives. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28423 |20 |1.3.6.1.4.1.232.3.2.3.1.1.4.{#SNMPINDEX} |10256 |Disk {#SNMPINDEX}({#DISK_NAME}): Status |system.hw.virtualdisk.status[cpqDaLogDrvStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |75 | | |0 | | | | |2 |NULL |Logical Drive Status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28424 |20 |1.3.6.1.4.1.232.3.2.3.1.1.3.{#SNMPINDEX} |10256 |Disk {#SNMPINDEX}({#DISK_NAME}): Layout type |system.hw.virtualdisk.layout[cpqDaLogDrvFaultTol.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |74 | | |0 | | | | |2 |NULL |Logical Drive Fault Tolerance.&eol;This shows the fault tolerance mode of the logical drive. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28425 |20 |1.3.6.1.4.1.232.3.2.3.1.1.9.{#SNMPINDEX} |10256 |Disk {#SNMPINDEX}({#DISK_NAME}): Disk size |system.hw.virtualdisk.size[cpqDaLogDrvSize.{#SNMPINDEX}] |1m |7d |0d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Logical Drive Size.&eol;This is the size of the logical drive in megabytes. This value&eol;is calculated using the value 1,048,576 (2^20) as a megabyte.&eol;Drive manufacturers sometimes use the number 1,000,000 as a&eol;megabyte when giving drive capacities so this value may&eol;differ from the advertised size of a drive. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28465 |20 |1.3.6.1.4.1.2.3.51.3.1.4.1.0 |10258 |Overall system health status |system.status[systemHealthStat.0] |30s |2w |0d |0 |3 | | | | |NULL |58 | | |0 | | | | |0 |NULL |MIB: IMM-MIB&eol;Indicates status of system health for the system in which the IMM resides. Value of 'nonRecoverable' indicates a severe error has occurred and the system may not be functioning. A value of 'critical' indicates that a error has occurred but the system is currently functioning properly. A value of 'nonCritical' indicates that a condition has occurred that may change the state of the system in the future but currently the system is working properly. A value of 'normal' indicates that the system is operating normally. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28466 |20 |1.3.6.1.4.1.2.3.51.3.1.5.2.1.5.0 |10258 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IMM-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28467 |20 |1.3.6.1.4.1.2.3.51.3.1.5.2.1.3.0 |10258 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IMM-MIB&eol;Machine serial number VPD information |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28468 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.1.2.1.2] |10258 |Temperature Discovery |tempDescr.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning IMM-MIB::tempTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28469 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.1.2.1.2] |10258 |Temperature Discovery Ambient |tempDescr.discovery.ambient |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning IMM-MIB::tempTable with Ambient filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28470 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.1.2.1.2] |10258 |Temperature Discovery CPU |tempDescr.discovery.cpu |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning IMM-MIB::tempTable with CPU filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28471 |20 |discovery[{#PSU_DESCR},1.3.6.1.4.1.2.3.51.3.1.11.2.1.2] |10258 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IMM-MIB::powerFruName |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28472 |20 |discovery[{#FAN_DESCR},1.3.6.1.4.1.2.3.51.3.1.3.2.1.2] |10258 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IMM-MIB::fanDescr |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28473 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.12.2.1.1] |10258 |Physical Disk Discovery |physicalDisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28474 |20 |1.3.6.1.4.1.2.3.51.3.1.1.2.1.3.{#SNMPINDEX} |10258 |{#SNMPVALUE}: Temperature |sensor.temp.value[tempReading.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;Temperature readings of testpoint: {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28475 |20 |1.3.6.1.4.1.2.3.51.3.1.1.2.1.3.{#SNMPINDEX} |10258 |Ambient: Temperature |sensor.temp.value[tempReading.Ambient.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;Temperature readings of testpoint: Ambient |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28476 |20 |1.3.6.1.4.1.2.3.51.3.1.1.2.1.3.{#SNMPINDEX} |10258 |CPU: Temperature |sensor.temp.value[tempReading.CPU.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;Temperature readings of testpoint: CPU |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28477 |20 |1.3.6.1.4.1.2.3.51.3.1.11.2.1.6.{#SNMPINDEX} |10258 |{#PSU_DESCR}: Power supply status |sensor.psu.status[powerHealthStatus.{#SNMPINDEX}] |3m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;A description of the power module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28478 |20 |1.3.6.1.4.1.2.3.51.3.1.3.2.1.10.{#SNMPINDEX} |10258 |{#FAN_DESCR}: Fan status |sensor.fan.status[fanHealthStatus.{#SNMPINDEX}] |3m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;A description of the fan component status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28479 |20 |1.3.6.1.4.1.2.3.51.3.1.3.2.1.3.{#SNMPINDEX} |10258 |{#FAN_DESCR}: Fan speed, % |sensor.fan.speed.percentage[fanSpeed.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;Fan speed expressed in percent(%) of maximum RPM.&eol;An octet string expressed as 'ddd% of maximum' where:d is a decimal digit or blank space for a leading zero.&eol;If the fan is determined not to be running or the fan speed cannot be determined, the string will indicate 'Offline'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28480 |20 |1.3.6.1.4.1.2.3.51.3.1.12.2.1.3.{#SNMPINDEX} |10258 |{#SNMPINDEX}: Physical disk status |system.hw.physicaldisk.status[diskHealthStatus.{#SNMPINDEX}] |3m |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28481 |20 |1.3.6.1.4.1.2.3.51.3.1.12.2.1.2.{#SNMPINDEX} |10258 |{#SNMPINDEX}: Physical disk part number |system.hw.physicaldisk.part_number[diskFruName.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;disk module FRU name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28493 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.21317.1.3.1.2,{#SENSOR_DESCR},1.3.6.1.4.1.21317.1.3.1.13] |10259 |Temperature Discovery |tempDescr.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning ATEN-IPMI-MIB::sensorTable with filter: not connected temp sensors (Value = 0) |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28494 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.21317.1.3.1.2,{#SENSOR_DESCR},1.3.6.1.4.1.21317.1.3.1.13] |10259 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning ATEN-IPMI-MIB::sensorTable with filter: not connected FAN sensors (Value = 0) |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28495 |20 |1.3.6.1.4.1.21317.1.3.1.2.{#SNMPINDEX} |10259 |{#SENSOR_DESCR}: Temperature |sensor.temp.value[sensorReading.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ATEN-IPMI-MIB&eol;A textual string containing information about the interface.&eol;This string should include the name of the manufacturer, the product name and the version of the interface hardware/software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28496 |20 |1.3.6.1.4.1.21317.1.3.1.2.{#SNMPINDEX} |10259 |{#SENSOR_DESCR}: Fan speed, % |sensor.fan.speed.percentage[sensorReading.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ATEN-IPMI-MIB&eol;A textual string containing information about the interface.&eol;This string should include the name of the manufacturer, the product name and the version of the interface hardware/software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28511 |16 | |10260 |Tomcat: Version |jmx["Catalina:type=Server",serverInfo] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |0 |NULL |The version of the Tomcat. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28533 |5 | |10047 |Zabbix LLD queue |zabbix[lld_queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28535 |5 | |10047 |Utilization of LLD manager internal processes, in % |zabbix[process,lld manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28537 |5 | |10047 |Utilization of LLD worker internal processes, in % |zabbix[process,lld worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28539 |5 | |10261 |Zabbix stats |zabbix[stats,{$ADDRESS},{$PORT}] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Zabbix server statistics master item. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28540 |5 | |10261 |Zabbix stats queue |zabbix[stats,{$ADDRESS},{$PORT},queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28541 |5 | |10261 |Zabbix stats queue over $5 |zabbix[stats,{$ADDRESS},{$PORT},queue,10m] |10m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28585 |5 | |10262 |Zabbix stats |zabbix[stats,{$ADDRESS},{$PORT}] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Zabbix proxy statistics master item. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28586 |5 | |10262 |Zabbix stats queue |zabbix[stats,{$ADDRESS},{$PORT},queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28587 |5 | |10262 |Zabbix stats queue over $5 |zabbix[stats,{$ADDRESS},{$PORT},queue,10m] |10m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28617 |5 | |10048 |Zabbix preprocessing queue |zabbix[preprocessing_queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28618 |5 | |10048 |Utilization of preprocessing manager internal processes, in % |zabbix[process,preprocessing manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28619 |5 | |10048 |Utilization of preprocessing worker internal processes, in % |zabbix[process,preprocessing worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28671 |0 | |10263 |PostgreSQL: Get connections sum |pgsql.connections.sum["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_activity&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ACTIVITY-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28672 |0 | |10263 |PostgreSQL: Get locks |pgsql.locks["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_locks per database&eol;https://www.postgresql.org/docs/current/explicit-locking.html#LOCKING-TABLES |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28673 |0 | |10263 |Status: Ping time |pgsql.ping.time["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28674 |0 | |10263 |Status: Ping |pgsql.ping["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28675 |0 | |10263 |PostgreSQL: Get queries |pgsql.queries["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}","{$PG.QUERY_ETIME.MAX.WARN}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics by query execution time |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28676 |0 | |10263 |Replication: standby count |pgsql.replication.count["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of standby servers |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28677 |0 | |10263 |Replication: lag in seconds |pgsql.replication.lag.sec["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Replication lag with Master in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28678 |0 | |10263 |Replication: recovery role |pgsql.replication.recovery_role["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |76 | | |0 | | | | |0 |NULL |Replication role: 1 — recovery is still in progress (standby mode), 0 — master mode. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28679 |0 | |10263 |Replication: status |pgsql.replication.status["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |77 | | |0 | | | | |0 |NULL |Replication status: 0 — streaming is down, 1 — streaming is up, 2 — master mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28680 |0 | |10263 |Status: Config hash |pgsql.config.hash["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |15m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |PostgreSQL configuration hash |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28681 |0 | |10263 |Status: Cache hit ratio % |pgsql.cache.hit["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache hit ratio |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28682 |0 | |10263 |PostgreSQL: Get bgwriter |pgsql.bgwriter["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics about the background writer process's activity |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28683 |0 | |10263 |PostgreSQL: Get transactions |pgsql.transactions["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect metrics by transaction execution time |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28684 |0 | |10263 |Status: Uptime |pgsql.uptime["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28685 |0 | |10263 |Status: Version |pgsql.version["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |PostgreSQL version |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28686 |0 | |10263 |PostgreSQL: Get WAL |pgsql.wal.stat["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |5m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Master item to collect WAL metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28687 |0 | |10263 |PostgreSQL: Get dbstat |pgsql.dbstat["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_database per database&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-DATABASE-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28711 |0 | |10263 |Database discovery |pgsql.discovery.db["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28712 |0 | |10263 |DB {#DBNAME}: Database size |pgsql.db.size["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}","{#DBNAME}"] |15m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Database size |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28713 |0 | |10263 |DB {#DBNAME}: Get frozen XID |pgsql.frozenxid["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{#DBNAME}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28714 |0 | |10263 |DB {#DBNAME}: Get scans |pgsql.scans["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{#DBNAME}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of scans done for table/index in the database |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28743 |0 | |10264 |Apache: Service ping |net.tcp.service[http,"{$APACHE.STATUS.HOST}","{$APACHE.STATUS.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28744 |0 | |10264 |Apache: Memory usage (vsize) |proc.mem["{$APACHE.PROCESS_NAME}",,,,vsize] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Virtual memory size used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28745 |0 | |10264 |Apache: Memory usage (rss) |proc.mem["{$APACHE.PROCESS_NAME}",,,,rss] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Resident set size memory used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28746 |0 | |10264 |Apache: Number of processes running |proc.num["{$APACHE.PROCESS_NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28747 |0 | |10264 |Apache: CPU utilization |proc.cpu.util["{$APACHE.PROCESS_NAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Process CPU utilization percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28748 |0 | |10264 |Apache: Service response time |net.tcp.service.perf[http,"{$APACHE.STATUS.HOST}","{$APACHE.STATUS.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28775 |19 | |10265 |Apache: Get status |apache.get_status |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Getting data from a machine-readable version of the Apache status page.&eol;https://httpd.apache.org/docs/current/mod/mod_status.html |0 |30d |0 | |NULL |3s |{$APACHE.STATUS.SCHEME}://{HOST.CONN}:{$APACHE.STATUS.PORT}/{$APACHE.STATUS.PATH} | | |200 |1 |0 | |2 |0 |0 |0 |0 |0 |0 |
-ROW |28776 |3 | |10265 |Apache: Service ping |net.tcp.service[http,"{HOST.CONN}","{$APACHE.STATUS.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28777 |3 | |10265 |Apache: Service response time |net.tcp.service.perf[http,"{HOST.CONN}","{$APACHE.STATUS.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28804 |0 | |10266 |Nginx: Get stub status page |web.page.get["{$NGINX.STUB_STATUS.HOST}","{$NGINX.STUB_STATUS.PATH}","{$NGINX.STUB_STATUS.PORT}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The following status information is provided:&eol;Active connections - the current number of active client connections including Waiting connections.&eol;Accepts - the total number of accepted client connections.&eol;Handled - the total number of handled connections. Generally, the parameter value is the same as accepts unless some resource limits have been reached (for example, the worker_connections limit).&eol;Requests - the total number of client requests.&eol;Reading - the current number of connections where nginx is reading the request header.&eol;Writing - the current number of connections where nginx is writing the response back to the client.&eol;Waiting - the current number of idle client connections waiting for a request.&eol;https://nginx.org/en/docs/http/ngx_http_stub_status_module.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28805 |0 | |10266 |Nginx: Service response time |net.tcp.service.perf[http,"{$NGINX.STUB_STATUS.HOST}","{$NGINX.STUB_STATUS.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28806 |0 | |10266 |Nginx: CPU utilization |proc.cpu.util[nginx] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Process CPU utilization percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28807 |0 | |10266 |Nginx: Memory usage (rss) |proc.mem[nginx,,,,rss] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Resident set size memory used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28808 |0 | |10266 |Nginx: Memory usage (vsize) |proc.mem[nginx,,,,vsize] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Virtual memory size used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28809 |0 | |10266 |Nginx: Number of processes running |proc.num[nginx] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of the Nginx processes running. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28810 |0 | |10266 |Nginx: Service status |net.tcp.service[http,"{$NGINX.STUB_STATUS.HOST}","{$NGINX.STUB_STATUS.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28821 |19 | |10267 |Nginx: Get stub status page |nginx.get_stub_status |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The following status information is provided:&eol;Active connections - the current number of active client connections including Waiting connections.&eol;Accepts - the total number of accepted client connections.&eol;Handled - the total number of handled connections. Generally, the parameter value is the same as accepts unless some resource limits have been reached (for example, the worker_connections limit).&eol;Requests - the total number of client requests.&eol;Reading - the current number of connections where nginx is reading the request header.&eol;Writing - the current number of connections where nginx is writing the response back to the client.&eol;Waiting - the current number of idle client connections waiting for a request.&eol;https://nginx.org/en/docs/http/ngx_http_stub_status_module.html |0 |30d |0 | |NULL |3s |{$NGINX.STUB_STATUS.SCHEME}://{HOST.CONN}:{$NGINX.STUB_STATUS.PORT}/{$NGINX.STUB_STATUS.PATH} | | |200 |1 |0 | |2 |0 |0 |0 |0 |0 |0 |
-ROW |28822 |3 | |10267 |Nginx: Service status |net.tcp.service[http,"{HOST.CONN}","{$NGINX.STUB_STATUS.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28823 |3 | |10267 |Nginx: Service response time |net.tcp.service.perf[http,"{HOST.CONN}","{$NGINX.STUB_STATUS.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28894 |20 |1.3.6.1.4.1.2636.3.1.13.1.8.{#SNMPINDEX} |10231 |{#SNMPVALUE}: CPU utilization |system.cpu.util[jnxOperatingCPU.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB&eol;The CPU utilization in percentage of this subject. Zero if unavailable or inapplicable.&eol;Reference: http://kb.juniper.net/library/CUSTOMERSERVICE/GLOBAL_JTAC/BK26199/SRX%20SNMP%20Monitoring%20Guide_v1.1.pdf |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28909 |0 | |10170 |Info: MySQL version |mysql.version["{$MYSQL.HOST}","{$MYSQL.PORT}"] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28910 |0 | |10170 |Availability: MySQL status |mysql.ping["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28911 |15 | |10170 |Performance: Buffer pool efficiency |mysql.buffer_pool_efficiency |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(mysql.innodb_buffer_pool_reads) / &eol;( last(mysql.innodb_buffer_pool_read_requests) + &eol;( last(mysql.innodb_buffer_pool_read_requests) = 0 ) ) * 100 * &eol;( last(mysql.innodb_buffer_pool_read_requests) > 0 ) | |0 | | | | |0 |NULL |The item shows how effectively the buffer pool is serving reads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28912 |15 | |10170 |Performance: Buffer pool utilization |mysql.buffer_pool_utilization |1m |7d |365d |0 |0 | |% | | |NULL |NULL |( last(mysql.innodb_buffer_pool_pages_total) - &eol;last(mysql.innodb_buffer_pool_pages_free) ) / &eol;( last(mysql.innodb_buffer_pool_pages_total) + &eol;( last(mysql.innodb_buffer_pool_pages_total) = 0 ) ) * 100 *&eol;( last(mysql.innodb_buffer_pool_pages_total) > 0 ) | |0 | | | | |0 |NULL |Ratio of used to total pages in the buffer pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28913 |0 | |10170 |Availability: Get status variables |mysql.get_status_variables["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The item gets server global status information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28948 |0 | |10170 |Databases discovery |mysql.db.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning databases in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28949 |0 | |10170 |Replication discovery |mysql.replication.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If 'show slave status' returns Master_Host, "Replication: *" items are created. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28950 |0 | |10170 |Info: Size of database {#DBNAME} |mysql.dbsize["{$MYSQL.HOST}","{$MYSQL.PORT}","{#DBNAME}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28951 |0 | |10170 |Replication: Slave status {#MASTERHOST} |mysql.slave_status["{$MYSQL.HOST}","{$MYSQL.PORT}","{#MASTERHOST}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The item gets status information on essential parameters of the slave threads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28978 |15 | |10268 |Memory utilization |vm.memory.util[snmp] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vm.memory.total[memTotalReal.0]")-(last("vm.memory.free[memAvailReal.0]")+last("vm.memory.buffers[memBuffer.0]")+last("vm.memory.cached[memCached.0]")))/last("vm.memory.total[memTotalReal.0]")*100 | |0 | | | | |0 |NULL |Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28979 |20 |1.3.6.1.4.1.2021.4.6.0 |10268 |Free memory |vm.memory.free[memAvailReal.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28980 |20 |1.3.6.1.4.1.2021.4.14.0 |10268 |Memory (buffers) |vm.memory.buffers[memBuffer.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Memory used by kernel buffers (Buffers in /proc/meminfo) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28981 |20 |1.3.6.1.4.1.2021.4.15.0 |10268 |Memory (cached) |vm.memory.cached[memCached.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Memory used by the page cache and slabs (Cached and Slab in /proc/meminfo) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28982 |20 |1.3.6.1.4.1.2021.4.5.0 |10268 |Total memory |vm.memory.total[memTotalReal.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28983 |15 | |10268 |Available memory |vm.memory.available[snmp] |1m |7d |365d |0 |3 | |B | | |NULL |NULL |last("vm.memory.free[memAvailReal.0]")+last("vm.memory.buffers[memBuffer.0]")+last("vm.memory.cached[memCached.0]") | |0 | | | | |0 |NULL |Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28984 |20 |1.3.6.1.4.1.2021.4.3.0 |10268 |Total swap space |system.swap.total[memTotalSwap.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The total amount of swap space configured for this host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28985 |20 |1.3.6.1.4.1.2021.4.4.0 |10268 |Free swap space |system.swap.free[memAvailSwap.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of swap space currently unused or available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28986 |15 | |10268 |Free swap space in % |system.swap.pfree[snmp] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("system.swap.free[memAvailSwap.0]")/last("system.swap.total[memTotalSwap.0]")*100 | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28987 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-1"] |10270 |Load average (1m avg) |system.cpu.load.avg1[laLoad.1] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28988 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-5"] |10270 |Load average (5m avg) |system.cpu.load.avg5[laLoad.2] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28989 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-15"] |10270 |Load average (15m avg) |system.cpu.load.avg15[laLoad.3] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28990 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1] |10270 |Number of CPUs |system.cpu.num[snmp] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;Count the number of CPU cores by counting number of cores discovered in hrProcessorTable using LLD |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28991 |20 |1.3.6.1.4.1.2021.11.59.0 |10270 |Interrupts per second |system.cpu.intr[ssRawInterrupts.0] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28992 |20 |1.3.6.1.4.1.2021.11.60.0 |10270 |Context switches per second |system.cpu.switches[ssRawContexts.0] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29008 |20 |discovery[{#DEVNAME},1.3.6.1.4.1.2021.13.15.1.1.2] |10269 |Block devices discovery |vfs.dev.discovery[snmp] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Block devices are discovered from UCD-DISKIO-MIB::diskIOTable (http://net-snmp.sourceforge.net/docs/mibs/ucdDiskIOMIB.html#diskIOTable) |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29010 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10271 |Mounted filesystem discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29014 |20 |1.3.6.1.4.1.2021.13.15.1.1.5.{#SNMPINDEX} |10269 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[diskIOReads.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-DISKIO-MIB&eol;The number of read accesses from this device since boot. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29015 |20 |1.3.6.1.4.1.2021.13.15.1.1.6.{#SNMPINDEX} |10269 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[diskIOWrites.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-DISKIO-MIB&eol;The number of write accesses from this device since boot. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29016 |20 |1.3.6.1.4.1.2021.13.15.1.1.9.{#SNMPINDEX} |10269 |{#DEVNAME}: Disk utilization |vfs.dev.util[diskIOLA1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-DISKIO-MIB&eol;The 1 minute average load of disk (%) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29017 |20 |1.3.6.1.4.1.2021.11.53.0 |10270 |CPU idle time |system.cpu.idle[ssCpuRawIdle.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29018 |20 |1.3.6.1.4.1.2021.11.52.0 |10270 |CPU system time |system.cpu.system[ssCpuRawSystem.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29019 |20 |1.3.6.1.4.1.2021.11.50.0 |10270 |CPU user time |system.cpu.user[ssCpuRawUser.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29020 |20 |1.3.6.1.4.1.2021.11.64.0 |10270 |CPU steal time |system.cpu.steal[ssCpuRawSteal.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29021 |20 |1.3.6.1.4.1.2021.11.61.0 |10270 |CPU softirq time |system.cpu.softirq[ssCpuRawSoftIRQ.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of time the CPU has been servicing software interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29022 |20 |1.3.6.1.4.1.2021.11.51.0 |10270 |CPU nice time |system.cpu.nice[ssCpuRawNice.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29023 |20 |1.3.6.1.4.1.2021.11.54.0 |10270 |CPU iowait time |system.cpu.iowait[ssCpuRawWait.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29024 |20 |1.3.6.1.4.1.2021.11.56.0 |10270 |CPU interrupt time |system.cpu.interrupt[ssCpuRawInterrupt.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29025 |20 |1.3.6.1.4.1.2021.11.65.0 |10270 |CPU guest time |system.cpu.guest[ssCpuRawGuest.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;Guest time (time spent running a virtual CPU for a guest operating system) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29026 |20 |1.3.6.1.4.1.2021.11.66.0 |10270 |CPU guest nice time |system.cpu.guest_nice[ssCpuRawGuestNice.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29027 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10271 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29028 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10271 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29029 |15 | |10271 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29030 |20 |1.3.6.1.4.1.2021.9.1.10["index","1.3.6.1.4.1.2021.9.1.2", "{#FSNAME}"] |10271 |{#FSNAME}: Free inodes in % |vfs.fs.inode.pfree[dskPercentNode.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;If having problems collecting this item make sure access to UCD-SNMP-MIB is allowed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29087 |0 | |10272 |Number of CPUs |system.cpu.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29088 |0 | |10272 |CPU iowait time |system.cpu.util[,iowait] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29089 |0 | |10272 |Context switches per second |system.cpu.switches |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29090 |0 | |10272 |CPU guest nice time |system.cpu.util[,guest_nice] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29091 |0 | |10272 |CPU guest time |system.cpu.util[,guest] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Guest time (time spent running a virtual CPU for a guest operating system) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29092 |0 | |10272 |CPU softirq time |system.cpu.util[,softirq] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing software interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29093 |0 | |10272 |CPU interrupt time |system.cpu.util[,interrupt] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29094 |0 | |10272 |CPU steal time |system.cpu.util[,steal] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29095 |0 | |10272 |CPU nice time |system.cpu.util[,nice] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29096 |0 | |10272 |Load average (1m avg) |system.cpu.load[all,avg1] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29097 |0 | |10272 |CPU user time |system.cpu.util[,user] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29098 |0 | |10272 |CPU system time |system.cpu.util[,system] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29099 |0 | |10272 |CPU idle time |system.cpu.util[,idle] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29100 |0 | |10272 |Load average (15m avg) |system.cpu.load[all,avg15] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29101 |0 | |10272 |Load average (5m avg) |system.cpu.load[all,avg5] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29102 |0 | |10272 |Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29103 |0 | |10274 |Available memory in % |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory as percentage of total. See also: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29104 |0 | |10274 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29105 |0 | |10274 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29106 |0 | |10274 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29107 |0 | |10274 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29108 |0 | |10274 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29110 |0 | |10277 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29111 |0 | |10277 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29112 |0 | |10277 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29113 |0 | |10277 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29114 |0 | |10277 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29115 |0 | |10277 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29116 |0 | |10277 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29117 |0 | |10277 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29118 |0 | |10277 |Number of processes |proc.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29119 |0 | |10277 |Number of running processes |proc.num[,,run] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29120 |0 | |10277 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29121 |0 | |10277 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29122 |0 | |10277 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29123 |0 | |10277 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29201 |0 | |10273 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29203 |0 | |10276 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29210 |0 | |10273 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29211 |0 | |10273 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29212 |0 | |10273 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29213 |0 | |10273 |{#FSNAME}: Free inodes in % |vfs.fs.inode[{#FSNAME},pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29216 |0 | |10276 |Interface {#IFNAME}: Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29217 |0 | |10276 |Interface {#IFNAME}: Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29218 |0 | |10276 |Interface {#IFNAME}: Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29219 |0 | |10276 |Interface {#IFNAME}: Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29220 |0 | |10276 |Interface {#IFNAME}: Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29221 |0 | |10276 |Interface {#IFNAME}: Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29222 |0 | |10276 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29223 |0 | |10276 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |NULL |78 | | |0 | | | | |2 |NULL |Indicates the interface protocol type as a decimal value.&eol;See include/uapi/linux/if_arp.h for all possible values.&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29273 |7 | |10278 |Number of CPUs |system.cpu.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29274 |7 | |10278 |CPU iowait time |system.cpu.util[,iowait] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29275 |7 | |10278 |Context switches per second |system.cpu.switches |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29276 |7 | |10278 |CPU guest nice time |system.cpu.util[,guest_nice] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29277 |7 | |10278 |CPU guest time |system.cpu.util[,guest] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Guest time (time spent running a virtual CPU for a guest operating system) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29278 |7 | |10278 |CPU softirq time |system.cpu.util[,softirq] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing software interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29279 |7 | |10278 |CPU interrupt time |system.cpu.util[,interrupt] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29280 |7 | |10278 |CPU steal time |system.cpu.util[,steal] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29281 |7 | |10278 |CPU nice time |system.cpu.util[,nice] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29282 |7 | |10278 |Load average (1m avg) |system.cpu.load[all,avg1] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29283 |7 | |10278 |CPU user time |system.cpu.util[,user] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29284 |7 | |10278 |CPU system time |system.cpu.util[,system] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29285 |7 | |10278 |CPU idle time |system.cpu.util[,idle] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29286 |7 | |10278 |Load average (15m avg) |system.cpu.load[all,avg15] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29287 |7 | |10278 |Load average (5m avg) |system.cpu.load[all,avg5] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29288 |7 | |10278 |Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29289 |7 | |10280 |Available memory in % |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory as percentage of total. See also: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29290 |7 | |10280 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29291 |7 | |10280 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29292 |7 | |10280 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29293 |7 | |10280 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29294 |7 | |10280 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29296 |7 | |10283 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29297 |7 | |10283 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29298 |0 | |10283 |System local time |system.localtime |1m |7d |365d |1 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29299 |7 | |10283 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29300 |7 | |10283 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29301 |7 | |10283 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29302 |7 | |10283 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29303 |7 | |10283 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29304 |7 | |10283 |Number of processes |proc.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29305 |7 | |10283 |Number of running processes |proc.num[,,run] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29306 |7 | |10283 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29307 |7 | |10283 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29308 |7 | |10283 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29309 |7 | |10283 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29349 |7 | |10279 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29351 |7 | |10282 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29355 |7 | |10279 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29356 |7 | |10279 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29357 |7 | |10279 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29358 |7 | |10279 |{#FSNAME}: Free inodes in % |vfs.fs.inode[{#FSNAME},pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29361 |7 | |10282 |Interface {#IFNAME}: Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29362 |7 | |10282 |Interface {#IFNAME}: Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29363 |7 | |10282 |Interface {#IFNAME}: Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29364 |7 | |10282 |Interface {#IFNAME}: Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29365 |7 | |10282 |Interface {#IFNAME}: Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29366 |7 | |10282 |Interface {#IFNAME}: Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29367 |7 | |10282 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29368 |7 | |10282 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |NULL |78 | | |0 | | | | |2 |NULL |Indicates the interface protocol type as a decimal value.&eol;See include/uapi/linux/if_arp.h for all possible values.&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29395 |19 | |10285 |Get node_exporter metrics |node_exporter.get |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |http://{HOST.CONN}:{$NODE_EXPORTER_PORT}/metrics | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29396 |15 | |10285 |Memory utilization |vm.memory.util[node_exporter] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vm.memory.total[node_exporter]")-last("vm.memory.available[node_exporter]"))/last("vm.memory.total[node_exporter]")*100 | |0 | | | | |0 |NULL |Memory used percentage is calculated as (total-available)/total*100 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29397 |15 | |10285 |Free swap space in % |system.swap.pfree[node_exporter] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("system.swap.free[node_exporter]")/last("system.swap.total[node_exporter]")*100 | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29432 |15 | |10285 |{#FSNAME}: Used space |vfs.fs.used[node_exporter,"{#FSNAME}"] |1m |7d |365d |0 |0 | |B | | |NULL |NULL |(last("vfs.fs.total[node_exporter,\"{#FSNAME}\"]")-last("vfs.fs.free[node_exporter,\"{#FSNAME}\"]")) | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29433 |15 | |10285 |{#FSNAME}: Space utilization |vfs.fs.pused[node_exporter,"{#FSNAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vfs.fs.used[node_exporter,\"{#FSNAME}\"]")/last("vfs.fs.total[node_exporter,\"{#FSNAME}\"]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29434 |15 | |10285 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[node_exporter,"{#DEVNAME}"] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last("vfs.dev.read.time.rate[node_exporter,\"{#DEVNAME}\"]")/(last("vfs.dev.read.rate[node_exporter,\"{#DEVNAME}\"]")+(last("vfs.dev.read.rate[node_exporter,\"{#DEVNAME}\"]")=0)))*1000*(last("vfs.dev.read.rate[node_exporter,\"{#DEVNAME}\"]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29435 |15 | |10285 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[node_exporter,"{#DEVNAME}"] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last("vfs.dev.write.time.rate[node_exporter,\"{#DEVNAME}\"]")/(last("vfs.dev.write.rate[node_exporter,\"{#DEVNAME}\"]")+(last("vfs.dev.write.rate[node_exporter,\"{#DEVNAME}\"]")=0)))*1000*(last("vfs.dev.write.rate[node_exporter,\"{#DEVNAME}\"]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29454 |0 | |10286 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29455 |0 | |10286 |CPU interrupt time |perf_counter_en["\Processor Information(_total)\% Interrupt Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Information\% Interrupt Time is the time the processor spends receiving and servicing &eol;hardware interrupts during sample intervals. This value is an indirect indicator of the activity of &eol;devices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication &eol;lines, network interface cards and other peripheral devices. This is an easy way to identify a potential &eol;hardware failure. This should never be higher than 20%. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29456 |0 | |10286 |Context switches per second |perf_counter_en["\System\Context Switches/sec"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Context Switches/sec is the combined rate at which all processors on the computer are switched from one thread to another.&eol;Context switches occur when a running thread voluntarily relinquishes the processor, is preempted by a higher priority ready thread, or switches between user-mode and privileged (kernel) mode to use an Executive or subsystem service.&eol;It is the sum of Thread\\Context Switches/sec for all threads running on all processors in the computer and is measured in numbers of switches.&eol;There are context switch counters on the System and Thread objects. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29457 |0 | |10286 |CPU privileged time |perf_counter_en["\Processor Information(_total)\% Privileged Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Information\% Privileged Time counter shows the percent of time that the processor is spent &eol;executing in Kernel (or Privileged) mode. Privileged mode includes services interrupts inside Interrupt &eol;Service Routines (ISRs), executing Deferred Procedure Calls (DPCs), Device Driver calls and other kernel-mode &eol;functions of the Windows® Operating System. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29458 |0 | |10286 |CPU user time |perf_counter_en["\Processor Information(_total)\% User Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Information\% User Time counter shows the percent of time that the processor(s) is spent executing &eol;in User mode. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29459 |0 | |10286 |CPU queue length |perf_counter_en["\System\Processor Queue Length"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Queue Length shows the number of threads that are observed as delayed in the processor Ready Queue &eol;and are waiting to be executed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29460 |0 | |10287 |Used memory |vm.memory.size[used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Used memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29461 |0 | |10287 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29462 |15 | |10287 |Memory utilization |vm.memory.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.size[used]") / last("vm.memory.size[total]") * 100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29463 |0 | |10287 |Cache bytes |perf_counter_en["\Memory\Cache Bytes"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache Bytes is the sum of the Memory\\System Cache Resident Bytes, Memory\\System Driver Resident Bytes, &eol;Memory\\System Code Resident Bytes, and Memory\\Pool Paged Resident Bytes counters. This counter displays &eol;the last observed value only; it is not an average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29466 |0 | |10287 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29467 |0 | |10287 |Free system page table entries |perf_counter_en["\Memory\Free System Page Table Entries"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This indicates the number of page table entries not currently in use by the system. If the number is less &eol;than 5,000, there may well be a memory leak or you running out of memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29468 |0 | |10287 |Memory page faults per second |perf_counter_en["\Memory\Page Faults/sec"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Page Faults/sec is the average number of pages faulted per second. It is measured in number of pages &eol;faulted per second because only one page is faulted in each fault operation, hence this is also equal &eol;to the number of page fault operations. This counter includes both hard faults (those that require &eol;disk access) and soft faults (where the faulted page is found elsewhere in physical memory.) Most &eol;processors can handle large numbers of soft faults without significant consequence. However, hard faults, &eol;which require disk access, can cause significant delays. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29469 |0 | |10287 |Memory pages per second |perf_counter_en["\Memory\Pages/sec"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This measures the rate at which pages are read from or written to disk to resolve hard page faults. &eol;If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29470 |0 | |10287 |Memory pool non-paged |perf_counter_en["\Memory\Pool Nonpaged Bytes"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |This measures the size, in bytes, of the non-paged pool. This is an area of system memory for objects &eol;that cannot be written to disk but instead must remain in physical memory as long as they are allocated. &eol;There is a possible memory leak if the value is greater than 175MB (or 100MB with the /3GB switch). &eol;A typical Event ID 2019 is recorded in the system event log. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29472 |0 | |10290 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29473 |0 | |10290 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29474 |0 | |10290 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29475 |0 | |10290 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29476 |0 | |10290 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29477 |0 | |10290 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads used by all running processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29478 |0 | |10290 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29506 |0 | |10288 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29512 |0 | |10288 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29513 |0 | |10288 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29514 |0 | |10288 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29544 |5 | |10050 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29545 |7 | |10292 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29546 |7 | |10292 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29547 |7 | |10292 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |NULL |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29561 |7 | |10293 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29562 |7 | |10293 |CPU interrupt time |perf_counter_en["\Processor Information(_total)\% Interrupt Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Information\% Interrupt Time is the time the processor spends receiving and servicing &eol;hardware interrupts during sample intervals. This value is an indirect indicator of the activity of &eol;devices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication &eol;lines, network interface cards and other peripheral devices. This is an easy way to identify a potential &eol;hardware failure. This should never be higher than 20%. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29563 |7 | |10293 |Context switches per second |perf_counter_en["\System\Context Switches/sec"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Context Switches/sec is the combined rate at which all processors on the computer are switched from one thread to another.&eol;Context switches occur when a running thread voluntarily relinquishes the processor, is preempted by a higher priority ready thread, or switches between user-mode and privileged (kernel) mode to use an Executive or subsystem service.&eol;It is the sum of Thread\\Context Switches/sec for all threads running on all processors in the computer and is measured in numbers of switches.&eol;There are context switch counters on the System and Thread objects. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29564 |7 | |10293 |CPU privileged time |perf_counter_en["\Processor Information(_total)\% Privileged Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Information\% Privileged Time counter shows the percent of time that the processor is spent &eol;executing in Kernel (or Privileged) mode. Privileged mode includes services interrupts inside Interrupt &eol;Service Routines (ISRs), executing Deferred Procedure Calls (DPCs), Device Driver calls and other kernel-mode &eol;functions of the Windows® Operating System. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29565 |7 | |10293 |CPU user time |perf_counter_en["\Processor Information(_total)\% User Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Information\% User Time counter shows the percent of time that the processor(s) is spent executing &eol;in User mode. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29566 |7 | |10293 |CPU queue length |perf_counter_en["\System\Processor Queue Length"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Queue Length shows the number of threads that are observed as delayed in the processor Ready Queue &eol;and are waiting to be executed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29567 |7 | |10294 |Used memory |vm.memory.size[used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Used memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29568 |7 | |10294 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29569 |15 | |10294 |Memory utilization |vm.memory.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.size[used]") / last("vm.memory.size[total]") * 100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29570 |7 | |10294 |Cache bytes |perf_counter_en["\Memory\Cache Bytes"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache Bytes is the sum of the Memory\\System Cache Resident Bytes, Memory\\System Driver Resident Bytes, &eol;Memory\\System Code Resident Bytes, and Memory\\Pool Paged Resident Bytes counters. This counter displays &eol;the last observed value only; it is not an average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29573 |7 | |10294 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29574 |7 | |10294 |Free system page table entries |perf_counter_en["\Memory\Free System Page Table Entries"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This indicates the number of page table entries not currently in use by the system. If the number is less &eol;than 5,000, there may well be a memory leak or you running out of memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29575 |7 | |10294 |Memory page faults per second |perf_counter_en["\Memory\Page Faults/sec"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Page Faults/sec is the average number of pages faulted per second. It is measured in number of pages &eol;faulted per second because only one page is faulted in each fault operation, hence this is also equal &eol;to the number of page fault operations. This counter includes both hard faults (those that require &eol;disk access) and soft faults (where the faulted page is found elsewhere in physical memory.) Most &eol;processors can handle large numbers of soft faults without significant consequence. However, hard faults, &eol;which require disk access, can cause significant delays. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29576 |7 | |10294 |Memory pages per second |perf_counter_en["\Memory\Pages/sec"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This measures the rate at which pages are read from or written to disk to resolve hard page faults. &eol;If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29577 |7 | |10294 |Memory pool non-paged |perf_counter_en["\Memory\Pool Nonpaged Bytes"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |This measures the size, in bytes, of the non-paged pool. This is an area of system memory for objects &eol;that cannot be written to disk but instead must remain in physical memory as long as they are allocated. &eol;There is a possible memory leak if the value is greater than 175MB (or 100MB with the /3GB switch). &eol;A typical Event ID 2019 is recorded in the system event log. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29579 |7 | |10297 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29580 |0 | |10297 |System local time |system.localtime |1m |7d |365d |1 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29581 |7 | |10297 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29582 |7 | |10297 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29583 |7 | |10297 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29584 |7 | |10297 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads used by all running processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29585 |7 | |10297 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29613 |7 | |10295 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29619 |7 | |10295 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29620 |7 | |10295 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29621 |7 | |10295 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29653 |0 | |10301 |RabbitMQ: Get node overview |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/overview"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29654 |0 | |10301 |RabbitMQ: Get nodes |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/nodes/{$RABBITMQ.CLUSTER.NAME}@{HOST.NAME}?memory=true"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns nodes metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29655 |0 | |10301 |RabbitMQ: Service ping |net.tcp.service[http,"{$RABBITMQ.API.HOST}","{$RABBITMQ.API.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29656 |0 | |10301 |RabbitMQ: CPU utilization |proc.cpu.util["{$RABBITMQ.PROCESS_NAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Process CPU utilization percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29657 |0 | |10301 |RabbitMQ: Memory usage (vsize) |proc.mem["{$RABBITMQ.PROCESS_NAME}",,,,vsize] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Virtual memory size used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29658 |0 | |10301 |RabbitMQ: Memory usage (rss) |proc.mem["{$RABBITMQ.PROCESS_NAME}",,,,rss] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Resident set size memory used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29659 |0 | |10301 |RabbitMQ: Number of processes running |proc.num["{$RABBITMQ.PROCESS_NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29660 |0 | |10301 |RabbitMQ: Service response time |net.tcp.service.perf[http,"{$RABBITMQ.API.HOST}","{$RABBITMQ.API.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29661 |0 | |10301 |RabbitMQ: Get queues |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/queues"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns queues metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29662 |0 | |10301 |RabbitMQ: Healthcheck |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/healthchecks/node"] |1m |7h |365d |0 |3 | | | | |NULL |82 | | |0 | | | | |0 |NULL |Runs basic healthchecks in the current node. Checks that the rabbit application is running, channels and queues can be listed successfully, and that no alarms are in effect. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29738 |19 | |10302 |RabbitMQ: Get overview |rabbitmq.get_overview |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/overview | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29739 |19 | |10302 |RabbitMQ: Get exchanges |rabbitmq.get_exchanges |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns exchanges metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/exchanges | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29741 |19 | |10303 |RabbitMQ: Get nodes |rabbitmq.get_nodes |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns nodes metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/nodes/{$RABBITMQ.CLUSTER.NAME}@{HOST.NAME}?memory=true| | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29742 |3 | |10303 |RabbitMQ: Service ping |net.tcp.service[http,"{HOST.CONN}","{$RABBITMQ.API.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29743 |3 | |10303 |RabbitMQ: Service response time |net.tcp.service.perf[http,"{HOST.CONN}","{$RABBITMQ.API.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29744 |19 | |10303 |RabbitMQ: Healthcheck |rabbitmq.healthcheck |1m |7h |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |Runs basic healthchecks in the current node. Checks that the rabbit application is running, channels and queues can be listed successfully, and that no alarms are in effect. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/healthchecks/node | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29745 |19 | |10303 |RabbitMQ: Get queues |rabbitmq.get_queues |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns queues metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/queues | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29822 |5 | |10047 |Utilization of alert syncer internal processes, in % |zabbix[process,alert syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29844 |20 |1.3.6.1.2.1.1.3.0 |10204 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29845 |20 |1.3.6.1.2.1.1.6.0 |10204 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29846 |20 |1.3.6.1.2.1.1.4.0 |10204 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29847 |20 |1.3.6.1.2.1.1.2.0 |10204 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29848 |20 |1.3.6.1.2.1.1.1.0 |10204 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29994 |20 |1.3.6.1.4.1.232.6.1.3.0 |10256 |Overall system health status |system.status[cpqHeMibCondition.0] |1m |7d |0d |0 |3 | | | | |NULL |54 | | |0 | | | | |0 |NULL |MIB: CPQHLTH-MIB&eol;The overall condition. This object represents the overall status of the server information represented by this MIB. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29998 |0 | |10300 |RabbitMQ: Get overview |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/overview"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29999 |0 | |10300 |RabbitMQ: Get exchanges |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/exchanges"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns exchanges metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30043 |19 | |10303 |RabbitMQ: Get node overview |rabbitmq.get_node_overview |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/overview | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30057 |20 |discovery[{#SENSOR_LOCATION},1.3.6.1.4.1.9.9.719.1.9.44.1.2] |10304 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30058 |20 |discovery[{#SENSOR_LOCATION},1.3.6.1.4.1.9.9.719.1.41.2.1.2] |10304 |Temperature CPU Discovery |temp.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30059 |20 |discovery[{#PSU_LOCATION},1.3.6.1.4.1.9.9.719.1.15.56.1.2] |10304 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30060 |20 |discovery[{#UNIT_LOCATION},1.3.6.1.4.1.9.9.719.1.9.35.1.2] |10304 |Unit Discovery |unit.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30061 |20 |discovery[{#FAN_LOCATION},1.3.6.1.4.1.9.9.719.1.15.12.1.2] |10304 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30062 |20 |discovery[{#DISK_LOCATION},1.3.6.1.4.1.9.9.719.1.45.4.1.2] |10304 |Physical Disk Discovery |physicalDisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of physical drive entries CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageLocalDiskTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30063 |20 |discovery[{#VDISK_LOCATION},1.3.6.1.4.1.9.9.719.1.45.8.1.2] |10304 |Virtual Disk Discovery |virtualdisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageLocalLunTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30064 |20 |discovery[{#DISKARRAY_LOCATION},1.3.6.1.4.1.9.9.719.1.45.1.1.2] |10304 |Array Controller Discovery |array.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30065 |20 |discovery[{#DISKARRAY_CACHE_LOCATION},1.3.6.1.4.1.9.9.719.1.45.11.1.2] |10304 |Array Controller Cache Discovery |array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30066 |20 |1.3.6.1.4.1.9.9.719.1.9.44.1.4.{#SNMPINDEX} |10304 |{#SENSOR_LOCATION}.Ambient: Temperature |sensor.temp.value[cucsComputeRackUnitMbTempStatsAmbientTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Temperature readings of testpoint: {#SENSOR_LOCATION}.Ambient |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30067 |20 |1.3.6.1.4.1.9.9.719.1.9.44.1.8.{#SNMPINDEX} |10304 |{#SENSOR_LOCATION}.Front: Temperature |sensor.temp.value[cucsComputeRackUnitMbTempStatsFrontTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Cisco UCS compute:RackUnitMbTempStats:frontTemp managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30068 |20 |1.3.6.1.4.1.9.9.719.1.9.44.1.21.{#SNMPINDEX} |10304 |{#SENSOR_LOCATION}.Rear: Temperature |sensor.temp.value[cucsComputeRackUnitMbTempStatsRearTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Cisco UCS compute:RackUnitMbTempStats:rearTemp managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30069 |20 |1.3.6.1.4.1.9.9.719.1.9.44.1.13.{#SNMPINDEX} |10304 |{#SENSOR_LOCATION}.IOH: Temperature |sensor.temp.value[cucsComputeRackUnitMbTempSltatsIoh1Temp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Cisco UCS compute:RackUnitMbTempStats:ioh1Temp managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30070 |20 |1.3.6.1.4.1.9.9.719.1.41.2.1.10.{#SNMPINDEX} |10304 |{#SENSOR_LOCATION}: Temperature |sensor.temp.value[cucsProcessorEnvStatsTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-PROCESSOR-MIB&eol;Cisco UCS processor:EnvStats:temperature managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30071 |20 |1.3.6.1.4.1.9.9.719.1.15.56.1.7.{#SNMPINDEX} |10304 |{#PSU_LOCATION}: Power supply status |sensor.psu.status[cucsEquipmentPsuOperState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |84 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB&eol;Cisco UCS equipment:Psu:operState managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30072 |20 |1.3.6.1.4.1.9.9.719.1.9.35.1.42.{#SNMPINDEX} |10304 |{#UNIT_LOCATION}: Overall system health status |system.status[cucsComputeRackUnitOperState.{#SNMPINDEX}] |30s |2w |0d |0 |3 | | | | |NULL |85 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Cisco UCS compute:RackUnit:operState managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30073 |20 |1.3.6.1.4.1.9.9.719.1.9.35.1.32.{#SNMPINDEX} |10304 |{#UNIT_LOCATION}: Hardware model name |system.hw.model[cucsComputeRackUnitModel.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Cisco UCS compute:RackUnit:model managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30074 |20 |1.3.6.1.4.1.9.9.719.1.9.35.1.47.{#SNMPINDEX} |10304 |{#UNIT_LOCATION}: Hardware serial number |system.hw.serialnumber[cucsComputeRackUnitSerial.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Cisco UCS compute:RackUnit:serial managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30075 |20 |1.3.6.1.4.1.9.9.719.1.15.12.1.9.{#SNMPINDEX} |10304 |{#FAN_LOCATION}: Fan status |sensor.fan.status[cucsEquipmentFanOperState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |84 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB&eol;Cisco UCS equipment:Fan:operState managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30076 |20 |1.3.6.1.4.1.9.9.719.1.45.4.1.18.{#SNMPINDEX} |10304 |{#DISK_LOCATION}: Physical disk status |system.hw.physicaldisk.status[cucsStorageLocalDiskDiskState.{#SNMPINDEX}] |3m |90d |0d |0 |3 | | | | |NULL |86 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalDisk:diskState managed object property. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30077 |20 |1.3.6.1.4.1.9.9.719.1.45.4.1.12.{#SNMPINDEX} |10304 |{#DISK_LOCATION}: Physical disk model name |system.hw.physicaldisk.model[cucsStorageLocalDiskSerial.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalDisk:serial managed object property. Actually returns part number code |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30078 |20 |1.3.6.1.4.1.9.9.719.1.45.4.1.7.{#SNMPINDEX} |10304 |{#DISK_LOCATION}: Physical disk media type |system.hw.physicaldisk.media_type[cucsStorageLocalDiskModel.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalDisk:model managed object property. Actually returns 'HDD' or 'SSD' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30079 |20 |1.3.6.1.4.1.9.9.719.1.45.4.1.13.{#SNMPINDEX} |10304 |{#DISK_LOCATION}: Disk size |system.hw.physicaldisk.size[cucsStorageLocalDiskSize.{#SNMPINDEX}] |1h |2w |0d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalDisk:size managed object property. In MB. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30080 |20 |1.3.6.1.4.1.9.9.719.1.45.8.1.10.{#SNMPINDEX} |10304 |{#VDISK_LOCATION}: Status |system.hw.virtualdisk.status[cucsStorageLocalLunPresence.{#SNMPINDEX}] |3m |2w |365d |0 |3 | | | | |NULL |88 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalLun:presence managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30081 |20 |1.3.6.1.4.1.9.9.719.1.45.8.1.14.{#SNMPINDEX} |10304 |{#VDISK_LOCATION}: Layout type |system.hw.virtualdisk.layout[cucsStorageLocalLunType.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |87 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalLun:type managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30082 |20 |1.3.6.1.4.1.9.9.719.1.45.8.1.13.{#SNMPINDEX} |10304 |{#VDISK_LOCATION}: Disk size |system.hw.virtualdisk.size[cucsStorageLocalLunSize.{#SNMPINDEX}] |1h |2w |0d |0 |3 | |B | | |NULL |87 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalLun:size managed object property in MB. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30083 |20 |1.3.6.1.4.1.9.9.719.1.45.1.1.6.{#SNMPINDEX} |10304 |{#DISKARRAY_LOCATION}: Disk array controller status |system.hw.diskarray.status[cucsStorageControllerOperState.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |84 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30084 |20 |1.3.6.1.4.1.9.9.719.1.45.1.1.5.{#SNMPINDEX} |10304 |{#DISKARRAY_LOCATION}: Disk array controller model |system.hw.diskarray.model[cucsStorageControllerModel.{#SNMPINDEX}] |1d |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30085 |20 |1.3.6.1.4.1.9.9.719.1.45.11.1.9.{#SNMPINDEX} |10304 |{#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery status |system.hw.diskarray.cache.battery.status[cucsStorageRaidBatteryOperability.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |84 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30086 |20 |1.3.6.1.2.1.1.1.0 |10207 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30087 |20 |1.3.6.1.4.1.6527.3.1.2.1.1.10.0 |10207 |Available memory |vm.memory.available[sgiKbMemoryAvailable.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The value of sgiKbMemoryAvailable indicates the amount of free memory, in kilobytes, in the overall system that is not allocated to memory pools, but is available in case a memory pool needs to grow. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30088 |15 | |10207 |Total memory |vm.memory.total[snmp] |1m |7d |365d |0 |3 | |B | | |NULL |NULL |last("vm.memory.available[sgiKbMemoryAvailable.0]")+last("vm.memory.used[sgiKbMemoryUsed.0]") | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30089 |15 | |10207 |Memory utilization |vm.memory.util[vm.memory.util.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[sgiKbMemoryUsed.0]")/(last("vm.memory.available[sgiKbMemoryAvailable.0]")+last("vm.memory.used[sgiKbMemoryUsed.0]"))*100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30090 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6527.3.1.2.2.1.5.1.6] |10207 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30091 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.5.1.6.{#SNMPINDEX} |10207 |#{#SNMPINDEX}: Power supply status |sensor.psu.status[tmnxChassisPowerSupply1Status.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |23 | | |0 | | | | |2 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The overall status of an equipped power supply. &eol;For AC multiple powersupplies, this represents the overall status of the first power supplyin the tray (or shelf).&eol;For any other type, this represents the overall status of the power supply.&eol;If tmnxChassisPowerSupply1Status is'deviceStateOk', then all monitored statuses are 'deviceStateOk'.&eol;A value of 'deviceStateFailed' represents a condition where at least one monitored status is in a failed state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30092 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.5.1.7.{#SNMPINDEX} |10207 |#{#SNMPINDEX}: Power supply status |sensor.psu.status[tmnxChassisPowerSupply2Status.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |23 | | |0 | | | | |2 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The overall status of an equipped power supply.&eol;For AC multiple powersupplies, this represents the overall status of the second power supplyin the tray (or shelf).&eol;For any other type, this field is unused and set to 'deviceNotEquipped'.&eol;If tmnxChassisPowerSupply2Status is 'deviceStateOk', then all monitored statuses are 'deviceStateOk'.&eol;A value of 'deviceStateFailed' represents a condition where at least one monitored status is in a failed state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30093 |20 |1.3.6.1.4.1.1588.2.1.1.1.26.6.0 |10208 |Memory utilization |vm.memory.util[swMemUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB&eol;Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30094 |20 |1.3.6.1.4.1.1991.1.1.2.1.53.0 |10209 |Memory utilization |vm.memory.util[snAgGblDynMemUtil.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The system dynamic memory utilization, in unit of percentage.&eol;Deprecated: Refer to snAgSystemDRAMUtil.&eol;For NI platforms, refer to snAgentBrdMemoryUtil100thPercent |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30097 |20 |1.3.6.1.2.1.1.1.0 |10216 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30101 |15 | |10212 |{#SNMPVALUE}: Memory utilization |vm.memory.util[vm.memory.util.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]")/(last("vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}]")+last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30105 |20 |1.3.6.1.4.1.6027.3.10.1.2.9.1.5.{#SNMPINDEX} |10221 |#{#SNMPINDEX}: Memory utilization |vm.memory.util[chStackUnitMemUsageUtil.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;Total memory usage in percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30106 |20 |1.3.6.1.4.1.171.10.97.2.1.1.2.0 |10222 |Operating system |system.sw.os[mySystemSwVersion.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MY-SYSTEM-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30107 |20 |1.3.6.1.4.1.171.10.97.2.35.1.1.1.3.{#SNMPINDEX} |10222 |{#SNMPINDEX}: Memory utilization |vm.memory.util[myMemoryPoolCurrentUtilization.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MY-MEMORY-MIB&eol;This is the memory pool utilization currently. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30108 |20 |1.3.6.1.4.1.171.12.1.1.9.1.4.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Memory utilization |vm.memory.util[agentDRAMutilization.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: DLINK-AGENT-MIB&eol;The percentage of used DRAM memory of the total DRAM memory available.The value will be between 0%(idle) and 100%(very busy) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30109 |20 |1.3.6.1.4.1.1916.1.1.1.13.0 |10224 |Operating system |system.sw.os[extremePrimarySoftwareRev.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;The software revision of the primary image stored in this device.&eol;This string will have a zero length if the revision is unknown, invalid or not present.&eol;This will also be reported in RMON2 probeSoftwareRev if this is the software image currently running in the device. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30110 |20 |1.3.6.1.4.1.1916.1.32.2.2.1.3.{#SNMPINDEX} |10224 |#{#SNMPVALUE}: Available memory |vm.memory.available[extremeMemoryMonitorSystemFree.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EXTREME-SOFTWARE-MONITOR-MIB&eol;Total amount of free memory in Kbytes in the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30111 |15 | |10224 |#{#SNMPVALUE}: Memory utilization |vm.memory.util[{#SNMPVALUE}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vm.memory.total[extremeMemoryMonitorSystemTotal.{#SNMPINDEX}]") - last("vm.memory.available[extremeMemoryMonitorSystemFree.{#SNMPINDEX}]")) / last("vm.memory.total[extremeMemoryMonitorSystemTotal.{#SNMPINDEX}]") * 100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30112 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.8.{#SNMPINDEX} |10227 |{#MODULE_NAME}: Memory utilization |vm.memory.util[hh3cEntityExtMemUsage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;The memory usage for the entity. This object indicates what&eol;percent of memory are used. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30113 |20 |1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.6.{#SNMPINDEX} |10250 |#{#SNMPVALUE}: Available memory |vm.memory.available[hpLocalMemFreeBytes.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: NETSWITCH-MIB&eol;The number of available (unallocated) bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30114 |20 |1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.5.{#SNMPINDEX} |10250 |#{#SNMPVALUE}: Total memory |vm.memory.total[hpLocalMemTotalBytes.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: NETSWITCH-MIB&eol;The number of currently installed bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30115 |15 | |10250 |#{#SNMPVALUE}: Memory utilization |vm.memory.util[snmp.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[hpLocalMemAllocBytes.{#SNMPINDEX}]")/last("vm.memory.total[hpLocalMemTotalBytes.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30116 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.{#SNMPINDEX} |10229 |{#ENT_NAME}: Memory utilization |vm.memory.util[hwEntityMemUsage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB&eol;The memory usage for the entity. This object indicates what percent of memory are used.&eol;Reference: http://support.huawei.com/enterprise/KnowledgebaseReadAction.action?contentId=KB1000090234 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30117 |20 |1.3.6.1.2.1.1.1.0 |10231 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30118 |20 |1.3.6.1.4.1.2636.3.1.13.1.11.{#SNMPINDEX} |10231 |{#SNMPVALUE}: Memory utilization |vm.memory.util[jnxOperatingBuffer.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB&eol;The buffer pool utilization in percentage of this subject. Zero if unavailable or inapplicable.&eol;Reference: http://kb.juniper.net/library/CUSTOMERSERVICE/GLOBAL_JTAC/BK26199/SRX%20SNMP%20Monitoring%20Guide_v1.1.pdf |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30119 |20 |1.3.6.1.4.1.14988.1.1.4.4.0 |10233 |Operating system |system.sw.os[mtxrLicVersion.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MIKROTIK-MIB&eol;Software version. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30120 |15 | |10233 |Memory utilization |vm.memory.util[memoryUsedPercentage.Memory] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[hrStorageUsed.Memory]")/last("vm.memory.total[hrStorageSize.Memory]")*100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30121 |20 |1.3.6.1.4.1.4526.10.1.1.1.10.0 |10234 |Operating system |system.sw.os[agentInventoryOperatingSystem.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB&eol;Operating System running on this unit |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30122 |20 |1.3.6.1.4.1.4526.10.1.1.5.1.0 |10234 |Available memory |vm.memory.available[agentSwitchCpuProcessMemFree.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB&eol;The total memory freed for utilization. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30123 |15 | |10234 |Memory utilization |vm.memory.util[memoryUsedPercentage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vm.memory.total[agentSwitchCpuProcessMemAvailable.0]")-last("vm.memory.available[agentSwitchCpuProcessMemFree.0]"))/last("vm.memory.total[agentSwitchCpuProcessMemAvailable.0]")*100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30124 |20 |1.3.6.1.4.1.27514.100.1.11.9.0 |10235 |Temperature |sensor.temp.value[switchTemperature.0] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: QTECH-MIB&eol;Temperature readings of testpoint: __RESOURCE__ |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30125 |20 |1.3.6.1.4.1.27514.100.1.3.0 |10235 |Operating system |system.sw.os[sysSoftwareVersion.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: QTECH-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30126 |15 | |10235 |Memory utilization |vm.memory.util[vm.memory.util.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[switchMemoryBusy.0]")/last("vm.memory.total[switchMemorySize.0]")*100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30127 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.27514.100.1.12.1.3] |10235 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30128 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.27514.100.1.7.1.5] |10235 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30129 |20 |1.3.6.1.4.1.27514.100.1.12.1.3.{#SNMPINDEX} |10235 |{#SNMPINDEX}: Fan status |sensor.fan.status[sysFanStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |52 | | |0 | | | | |2 |NULL |MIB: QTECH-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30130 |20 |1.3.6.1.4.1.27514.100.1.7.1.5.{#SNMPINDEX} |10235 |{#SNMPINDEX}: Power supply status |sensor.psu.status[sysPowerStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |53 | | |0 | | | | |2 |NULL |MIB: QTECH-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30131 |20 |1.3.6.1.4.1.11863.6.4.1.2.1.1.2.{#SNMPINDEX} |10236 |#{#SNMPVALUE}: Memory utilization |vm.memory.util[tpSysMonitorMemoryUtilization.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TPLINK-SYSMONITOR-MIB&eol;Displays the memory utilization.&eol;Reference: http://www.tp-link.com/faq-1330.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30132 |20 |1.3.6.1.4.1.10002.1.1.1.1.3.0 |10237 |Memory (buffers) |vm.memory.buffers[memBuffer.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FROGFOOT-RESOURCES-MIB&eol;Memory used by kernel buffers (Buffers in /proc/meminfo) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30133 |20 |1.3.6.1.4.1.10002.1.1.1.1.4.0 |10237 |Memory (cached) |vm.memory.cached[memCache.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FROGFOOT-RESOURCES-MIB&eol;Memory used by the page cache and slabs (Cached and Slab in /proc/meminfo) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30134 |20 |1.3.6.1.4.1.10002.1.1.1.1.2.0 |10237 |Free memory |vm.memory.free[memFree.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FROGFOOT-RESOURCES-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30135 |20 |1.3.6.1.4.1.10002.1.1.1.1.1.0 |10237 |Total memory |vm.memory.total[memTotal.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FROGFOOT-RESOURCES-MIB&eol;Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30136 |15 | |10237 |Memory utilization |vm.memory.util[memoryUsedPercentage] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vm.memory.total[memTotal.0]")-(last("vm.memory.free[memFree.0]")+last("vm.memory.buffers[memBuffer.0]")+last("vm.memory.cached[memCache.0]")))/last("vm.memory.total[memTotal.0]")*100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30137 |0 | |10286 |CPU DPC time |perf_counter_en["\Processor Information(_total)\% DPC Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Processor DPC time is the time that a single processor spent receiving and servicing deferred procedure &eol;calls (DPCs). DPCs are interrupts that run at a lower priority than standard interrupts. % DPC Time is a &eol;component of % Privileged Time because DPCs are executed in privileged mode. If a high % DPC Time is &eol;sustained, there may be a processor bottleneck or an application or hardware related issue that can &eol;significantly diminish overall system performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30139 |7 | |10293 |CPU DPC time |perf_counter_en["\Processor Information(_total)\% DPC Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Processor DPC time is the time that a single processor spent receiving and servicing deferred procedure &eol;calls (DPCs). DPCs are interrupts that run at a lower priority than standard interrupts. % DPC Time is a &eol;component of % Privileged Time because DPCs are executed in privileged mode. If a high % DPC Time is &eol;sustained, there may be a processor bottleneck or an application or hardware related issue that can &eol;significantly diminish overall system performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30141 |20 |1.3.6.1.4.1.674.10892.5.1.3.6.0 |10255 |Operating system |system.sw.os[systemOSName] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the name of the operating system that the hostis running. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30142 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10305 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30147 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10306 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30148 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10307 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30157 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10306 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30158 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10306 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30159 |15 | |10306 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30160 |15 | |10307 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30161 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10307 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30162 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10307 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30187 |0 | |10308 |HAProxy: Service response time |net.tcp.service.perf["{$HAPROXY.STATS.SCHEME}","{HOST.CONN}","{$HAPROXY.STATS.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30188 |0 | |10308 |HAProxy: Service status |net.tcp.service["{$HAPROXY.STATS.SCHEME}","{HOST.CONN}","{$HAPROXY.STATS.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30189 |0 | |10308 |HAProxy: Get stats |web.page.get["{$HAPROXY.STATS.SCHEME}://{HOST.CONN}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH};csv"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |HAProxy Statistics Report in CSV format |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30190 |0 | |10308 |HAProxy: Get stats page |web.page.get["{$HAPROXY.STATS.SCHEME}://{HOST.CONN}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |HAProxy Statistics Report HTML |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30196 |15 | |10308 |HAProxy Frontend {#PXNAME}: Session utilization |haproxy.frontend.sutil[{#PXNAME}:{#SVNAME}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(haproxy.frontend.scur[{#PXNAME}:{#SVNAME}]) / last(haproxy.frontend.slim[{#PXNAME}:{#SVNAME}]) * 100 | |0 | | | | |2 |NULL |Percentage of sessions used (scur / slim * 100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30230 |19 | |10309 |HAProxy: Get stats |haproxy.get |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$HAPROXY.USERNAME} |{$HAPROXY.PASSWORD} | | |0 |NULL |HAProxy Statistics Report in CSV format |0 |30d |0 | |NULL |3s |{$HAPROXY.STATS.SCHEME}://{HOST.CONN}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH};csv | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30231 |19 | |10309 |HAProxy: Get stats page |haproxy.get_html |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$HAPROXY.USERNAME} |{$HAPROXY.PASSWORD} | | |0 |NULL |HAProxy Statistics Report HTML |0 |30d |0 | |NULL |3s |{$HAPROXY.STATS.SCHEME}://{HOST.CONN}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH} | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30239 |15 | |10309 |HAProxy Frontend {#PXNAME}: Session utilization |haproxy.frontend.sutil[{#PXNAME}:{#SVNAME}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(haproxy.frontend.scur[{#PXNAME}:{#SVNAME}]) / last(haproxy.frontend.slim[{#PXNAME}:{#SVNAME}]) * 100 | |0 | | | | |2 |NULL |Percentage of sessions used (scur / slim * 100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30273 |0 | |10310 |Redis: Ping |redis.ping["{$REDIS.CONN.URI}"] |1m |7h |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30274 |0 | |10310 |Redis: Slowlog entries per second |redis.slowlog.count["{$REDIS.CONN.URI}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30275 |0 | |10310 |Redis: Get config |redis.config["{$REDIS.CONN.URI}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30276 |0 | |10310 |Redis: Get info |redis.info["{$REDIS.CONN.URI}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30337 |0 | |10310 |Process metrics discovery |proc.num["{$REDIS.LLD.PROCESS_NAME}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Collect metrics by Zabbix agent if it exists |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30344 |0 | |10310 |Redis: CPU utilization |proc.cpu.util["{$REDIS.PROCESS_NAME}{#SINGLETON}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Process CPU utilization percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30345 |0 | |10310 |Redis: Memory usage (rss) |proc.mem["{$REDIS.PROCESS_NAME}{#SINGLETON}",,,,rss] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Resident set size memory used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30346 |0 | |10310 |Redis: Memory usage (vsize) |proc.mem["{$REDIS.PROCESS_NAME}{#SINGLETON}",,,,vsize] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Virtual memory size used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30347 |0 | |10310 |Redis: Number of processes running |proc.num["{$REDIS.PROCESS_NAME}{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30423 |0 | |10314 |Windows services discovery |service.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Windows services of different types as defined in template's macros. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30425 |0 | |10314 |State of service "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) |service.info["{#SERVICE.NAME}",state] |1m |7d |365d |0 |3 | | | | |NULL |3 | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30427 |7 | |10315 |Windows services discovery |service.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Windows services of different types as defined in template's macros. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30429 |7 | |10315 |State of service "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) |service.info["{#SERVICE.NAME}",state] |1m |7d |365d |0 |3 | | | | |NULL |3 | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30431 |0 | |10316 |MySQL: Version |mysql.version["{$MYSQL.HOST}","{$MYSQL.PORT}"] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30432 |0 | |10316 |MySQL: Status |mysql.ping["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30433 |0 | |10316 |MySQL: Get status variables |mysql.get_status_variables["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The item gets server global status information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30434 |15 | |10316 |MySQL: Buffer pool utilization |mysql.buffer_pool_utilization |1m |7d |365d |0 |0 | |% | | |NULL |NULL |( last(mysql.innodb_buffer_pool_pages_total) - &bsn;last(mysql.innodb_buffer_pool_pages_free) ) / &bsn;( last(mysql.innodb_buffer_pool_pages_total) + &bsn;( last(mysql.innodb_buffer_pool_pages_total) = 0 ) ) * 100 * &bsn;( last(mysql.innodb_buffer_pool_pages_total) > 0 ) | |0 | | | | |0 |NULL |Ratio of used to total pages in the buffer pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30435 |15 | |10316 |MySQL: Buffer pool efficiency |mysql.buffer_pool_efficiency |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(mysql.innodb_buffer_pool_reads) / &bsn;( last(mysql.innodb_buffer_pool_read_requests) + &bsn;( last(mysql.innodb_buffer_pool_read_requests) = 0 ) ) * 100 * &bsn;( last(mysql.innodb_buffer_pool_read_requests) > 0 ) | |0 | | | | |0 |NULL |The item shows how effectively the buffer pool is serving reads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30472 |0 | |10316 |Databases discovery |mysql.db.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning databases in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30473 |0 | |10316 |Replication discovery |mysql.replication.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If "show slave status" returns Master_Host, "Replication: *" items are created. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30474 |0 | |10316 |MySQL: Size of database {#DBNAME} |mysql.dbsize["{$MYSQL.HOST}","{$MYSQL.PORT}","{#DBNAME}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30475 |0 | |10316 |MySQL: Replication Slave status {#MASTERHOST} |mysql.slave_status["{$MYSQL.HOST}","{$MYSQL.PORT}","{#MASTERHOST}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The item gets status information on essential parameters of the slave threads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30479 |11 | |10317 |MySQL: Get status variables |db.odbc.get[get_status_variables,"{$MYSQL.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |show global status | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |0 |NULL |The item gets server global status information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30480 |11 | |10317 |MySQL: Version |db.odbc.select[version,"{$MYSQL.DSN}"] |15m |7d |0 |0 |1 | | | | |NULL |NULL |select version() | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30481 |11 | |10317 |MySQL: Status |db.odbc.select[ping,"{$MYSQL.DSN}"] |1m |7d |365d |0 |3 | | | | |NULL |1 |select "1" | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30482 |15 | |10317 |MySQL: Buffer pool efficiency |mysql.buffer_pool_efficiency |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(mysql.innodb_buffer_pool_reads) / &bsn;( last(mysql.innodb_buffer_pool_read_requests) + &bsn;( last(mysql.innodb_buffer_pool_read_requests) = 0 ) ) * 100 * &bsn;( last(mysql.innodb_buffer_pool_read_requests) > 0 ) | |0 | | | | |0 |NULL |The item shows how effectively the buffer pool is serving reads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30483 |15 | |10317 |MySQL: Buffer pool utilization |mysql.buffer_pool_utilization |1m |7d |365d |0 |0 | |% | | |NULL |NULL |( last(mysql.innodb_buffer_pool_pages_total) - &bsn;last(mysql.innodb_buffer_pool_pages_free) ) / &bsn;( last(mysql.innodb_buffer_pool_pages_total) + &bsn;( last(mysql.innodb_buffer_pool_pages_total) = 0 ) ) * 100 * &bsn;( last(mysql.innodb_buffer_pool_pages_total) > 0 ) | |0 | | | | |0 |NULL |Ratio of used to total pages in the buffer pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30520 |11 | |10317 |Databases discovery |db.odbc.discovery[databases,"{$MYSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |show databases | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |1 |NULL |Scanning databases in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30521 |11 | |10317 |Replication discovery |db.odbc.discovery[replication,"{$MYSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |show slave status | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |1 |NULL |If "show slave status" returns Master_Host, "Replication: *" items are created. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30522 |11 | |10317 |MySQL: Size of database {#DATABASE} |db.odbc.select[{#DATABASE}_size,"{$MYSQL.DSN}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL |SELECT COALESCE(SUM(DATA_LENGTH + INDEX_LENGTH),0) FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA="{#DATABASE}" | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30523 |11 | |10317 |MySQL: Replication Slave status {#MASTER_HOST} |db.odbc.get["{#MASTER_HOST}","{$MYSQL.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |show slave status | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |2 |NULL |The item gets status information on essential parameters of the slave threads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30527 |0 | |10318 |Docker: Get data_usage |docker.data_usage |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30528 |0 | |10318 |Docker: Get containers |docker.containers |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30529 |0 | |10318 |Docker: Get info |docker.info |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30530 |0 | |10318 |Docker: Ping |docker.ping |1m |7h |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30531 |0 | |10318 |Docker: Get images |docker.images |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30571 |0 | |10318 |Containers discovery |docker.containers.discovery[false] |15m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for containers metrics&eol;&eol;Parameter:&eol;true - Returns all containers&eol;false - Returns only running containers |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30572 |0 | |10318 |Images discovery |docker.images.discovery |15m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for images metrics |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30573 |0 | |10318 |Container {#NAME}: Get stats |docker.container_stats["{#NAME}"] |1m |0 |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Get container stats based on resource usage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30574 |0 | |10318 |Container {#NAME}: Get info |docker.container_info["{#NAME}"] |1m |0 |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Return low-level information about a container |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30611 |0 | |10319 |Memcached: Ping |memcached.ping["{$MEMCACHED.CONN.URI}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30612 |0 | |10319 |Memcached: Get status |memcached.stats["{$MEMCACHED.CONN.URI}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30637 |0 | |10320 |MySQL: Version |mysql.version["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30638 |0 | |10320 |MySQL: Status |mysql.ping["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30639 |0 | |10320 |MySQL: Get status variables |mysql.get_status_variables["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The item gets server global status information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30640 |15 | |10320 |MySQL: Buffer pool utilization |mysql.buffer_pool_utilization |1m |7d |365d |0 |0 | |% | | |NULL |NULL |( last(mysql.innodb_buffer_pool_pages_total) - &bsn;last(mysql.innodb_buffer_pool_pages_free) ) / &bsn;( last(mysql.innodb_buffer_pool_pages_total) + &bsn;( last(mysql.innodb_buffer_pool_pages_total) = 0 ) ) * 100 * &bsn;( last(mysql.innodb_buffer_pool_pages_total) > 0 ) | |0 | | | | |0 |NULL |Ratio of used to total pages in the buffer pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30641 |15 | |10320 |MySQL: Buffer pool efficiency |mysql.buffer_pool_efficiency |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(mysql.innodb_buffer_pool_reads) / &bsn;( last(mysql.innodb_buffer_pool_read_requests) + &bsn;( last(mysql.innodb_buffer_pool_read_requests) = 0 ) ) * 100 * &bsn;( last(mysql.innodb_buffer_pool_read_requests) > 0 ) | |0 | | | | |0 |NULL |The item shows how effectively the buffer pool is serving reads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30678 |0 | |10320 |Databases discovery |mysql.db.discovery["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning databases in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30679 |0 | |10320 |Replication discovery |mysql.replication.discovery["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If "show slave status" returns Master_Host, "Replication: *" items are created. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30680 |0 | |10320 |MySQL: Size of database {#DATABASE} |mysql.db.size["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}","{#DATABASE}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30681 |0 | |10320 |MySQL: Replication Slave status {#MASTER_HOST} |mysql.replication.get_slave_status["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}","{#MASTER_HOST}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The item gets status information on essential parameters of the slave threads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30685 |12 | |10321 |Get IPMI sensors |ipmi.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The master item that receives all sensors with values for LLD and dependent elements from BMC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30690 |3 | |10322 |ES: Service status |net.tcp.service["{$ELASTICSEARCH.SCHEME}","{HOST.CONN}","{$ELASTICSEARCH.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Checks if the service is running and accepting TCP connections. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30691 |19 | |10322 |ES: Get cluster stats |es.cluster.get_stats |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$ELASTICSEARCH.USERNAME}|{$ELASTICSEARCH.PASSWORD}| | |0 |NULL |Returns cluster statistics. |0 |30d |0 | |NULL |15s |{$ELASTICSEARCH.SCHEME}://{HOST.CONN}:{$ELASTICSEARCH.PORT}/_cluster/stats | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30692 |3 | |10322 |ES: Service response time |net.tcp.service.perf["{$ELASTICSEARCH.SCHEME}","{HOST.CONN}","{$ELASTICSEARCH.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Checks performance of the TCP service. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30693 |19 | |10322 |ES: Get nodes stats |es.nodes.get_stats |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$ELASTICSEARCH.USERNAME}|{$ELASTICSEARCH.PASSWORD}| | |0 |NULL |Returns cluster nodes statistics. |0 |30d |0 | |NULL |30s |{$ELASTICSEARCH.SCHEME}://{HOST.CONN}:{$ELASTICSEARCH.PORT}/_nodes/stats | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30694 |19 | |10322 |ES: Get cluster health |es.cluster.get_health |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$ELASTICSEARCH.USERNAME}|{$ELASTICSEARCH.PASSWORD}| | |0 |NULL |Returns the health status of a cluster. |0 |30d |0 | |NULL |15s |{$ELASTICSEARCH.SCHEME}://{HOST.CONN}:{$ELASTICSEARCH.PORT}/_cluster/health?timeout=5s | | | |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30713 |19 | |10322 |Cluster nodes discovery |es.nodes.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$ELASTICSEARCH.USERNAME}|{$ELASTICSEARCH.PASSWORD}| | |1 |NULL |Discovery ES cluster nodes. |0 |30d |0 | |NULL |15s |{$ELASTICSEARCH.SCHEME}://{HOST.CONN}:{$ELASTICSEARCH.PORT}/_nodes/_all/nodes | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30714 |15 | |10322 |ES {#ES.NODE}: Query latency |es.node.indices.search.query_latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |change(es.node.indices.search.query_time_in_millis[{#ES.NODE}]) / &bsn;( change(es.node.indices.search.query_total[{#ES.NODE}]) + (change(es.node.indices.search.query_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average query latency calculated by sampling the total number of queries and the total elapsed time at regular intervals. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30715 |15 | |10322 |ES {#ES.NODE}: Flush latency |es.node.indices.flush.latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |change(es.node.indices.flush.total_time_in_millis[{#ES.NODE}]) / ( change(es.node.indices.flush.total[{#ES.NODE}]) + (change(es.node.indices.flush.total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average flush latency calculated from the available flush.total and flush.total_time_in_millis metrics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30716 |15 | |10322 |ES {#ES.NODE}: Indexing latency |es.node.indices.indexing.index_latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |change(es.node.indices.indexing.index_time_in_millis[{#ES.NODE}]) / ( change(es.node.indices.indexing.index_total[{#ES.NODE}]) + (change(es.node.indices.indexing.index_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average indexing latency calculated from the available index_total and index_time_in_millis metrics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30717 |15 | |10322 |ES {#ES.NODE}: Fetch latency |es.node.indices.search.fetch_latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |change(es.node.indices.search.fetch_time_in_millis[{#ES.NODE}]) / ( change(es.node.indices.search.fetch_total[{#ES.NODE}]) + (change(es.node.indices.search.fetch_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average fetch latency calculated by sampling the total number of fetches and the total elapsed time at regular intervals. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30762 |15 | |10308 |HAProxy TCP Frontend {#PXNAME}: Session utilization |haproxy.frontend_tcp.sutil[{#PXNAME}:{#SVNAME}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(haproxy.frontend_tcp.scur[{#PXNAME}:{#SVNAME}]) / last(haproxy.frontend_tcp.slim[{#PXNAME}:{#SVNAME}]) * 100 | |0 | | | | |2 |NULL |Percentage of sessions used (scur / slim * 100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30789 |3 | |10309 |HAProxy: Service response time |net.tcp.service.perf["{$HAPROXY.STATS.SCHEME}","{HOST.CONN}","{$HAPROXY.STATS.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30790 |3 | |10309 |HAProxy: Service status |net.tcp.service["{$HAPROXY.STATS.SCHEME}","{HOST.CONN}","{$HAPROXY.STATS.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30794 |15 | |10309 |HAProxy TCP Frontend {#PXNAME}: Session utilization |haproxy.frontend_tcp.sutil[{#PXNAME}:{#SVNAME}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(haproxy.frontend_tcp.scur[{#PXNAME}:{#SVNAME}]) / last(haproxy.frontend_tcp.slim[{#PXNAME}:{#SVNAME}]) * 100 | |0 | | | | |2 |NULL |Percentage of sessions used (scur / slim * 100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30821 |19 | |10323 |ClickHouse: Ping |clickhouse.ping |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ping | | | |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30822 |19 | |10323 |ClickHouse: Version |clickhouse.version |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the server |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"SELECT version()"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
-ROW |30823 |19 | |10323 |ClickHouse: Get replicas info |clickhouse.replicas |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"SELECT database, table, is_readonly, is_session_expired, future_parts, parts_to_check, queue_size, inserts_in_queue, merges_in_queue, log_max_index, log_pointer, total_replicas, active_replicas, log_max_index - log_pointer as replica_lag FROM system.replicas format JSON"}]| |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
-ROW |30824 |19 | |10323 |ClickHouse: Get system.asynchronous_metrics |clickhouse.system.asynchronous_metrics |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get metrics that are calculated periodically in the background |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"select metric, value from system.asynchronous_metrics format JSON"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
-ROW |30825 |19 | |10323 |ClickHouse: Get system.events |clickhouse.system.events |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get information about the number of events that have occurred in the system. |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"select event, value from system.events format JSON"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
-ROW |30826 |19 | |10323 |ClickHouse: Get system.metrics |clickhouse.system.metrics |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get metrics which can be calculated instantly, or have a current value format JSONEachRow |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"select metric, value from system.metrics format JSON"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
-ROW |30827 |19 | |10323 |ClickHouse: Longest currently running query time |clickhouse.process.elapsed |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Get longest running query. |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"SELECT max(elapsed) FROM system.processes"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
-ROW |30828 |19 | |10323 |ClickHouse: Get tables info |clickhouse.tables |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"select database, table, sum(bytes) as bytes, count() as parts, sum(rows) as rows from system.parts where active = 1 group by database, table format JSON"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
-ROW |30829 |19 | |10323 |ClickHouse: Get system.settings |clickhouse.system.settings |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get information about settings that are currently in use. |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"select name, value from system.settings format JSON"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
-ROW |30830 |19 | |10323 |ClickHouse: Get dictionaries info |clickhouse.dictionaries |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"SELECT * FROM system.dictionaries format JSON"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
-ROW |30896 |0 | |10264 |Apache: Get status |web.page.get["{$APACHE.STATUS.SCHEME}://{$APACHE.STATUS.HOST}:{$APACHE.STATUS.PORT}/{$APACHE.STATUS.PATH}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Getting data from a machine-readable version of the Apache status page.&eol;https://httpd.apache.org/docs/current/mod/mod_status.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30923 |3 | |10324 |Etcd: Service's TCP port state |net.tcp.service["{$ETCD.SCHEME}","{HOST.CONN}","{$ETCD.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30924 |19 | |10324 |Etcd: Node health |etcd.health |1m |7d |365d |0 |3 | | | | |NULL |96 | | |1 |{$ETCD.USER} |{$ETCD.PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$ETCD.SCHEME}://{HOST.CONN}:{$ETCD.PORT}/health | | | |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30925 |19 | |10324 |Etcd: Get node metrics |etcd.get_metrics |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$ETCD.USER} |{$ETCD.PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$ETCD.SCHEME}://{HOST.CONN}:{$ETCD.PORT}/metrics | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30926 |19 | |10324 |Etcd: Get version |etcd.get_version |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$ETCD.SCHEME}://{HOST.CONN}:{$ETCD.PORT}/version | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30968 |3 | |10325 |IIS: {$IIS.PORT} port ping |net.tcp.service[{$IIS.SERVICE},,{$IIS.PORT}] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30969 |0 | |10325 |IIS: Total connection attempts |perf_counter_en["\Web Service(_Total)\Total Connection Attempts (all instances)"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of connections to the Web or FTP service that have been attempted since service startup. The count is the total for all Web sites or FTP sites combined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30970 |0 | |10325 |IIS: Method POST requests per second |perf_counter_en["\Web Service(_Total)\Post Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of HTTP requests using POST method. Generally used for forms or gateway requests. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30971 |0 | |10325 |IIS: Method PROPFIND requests per second |perf_counter_en["\Web Service(_Total)\Propfind Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the PROPFIND method made. Propfind requests retrieve property values on files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30972 |0 | |10325 |IIS: Method PROPPATCH requests per second |perf_counter_en["\Web Service(_Total)\Proppatch Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the PROPPATCH method made. Proppatch requests set property values on files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30973 |0 | |10325 |IIS: Method PUT requests per second |perf_counter_en["\Web Service(_Total)\Put Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the PUT method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30974 |0 | |10325 |IIS: Method MS-SEARCH requests per second |perf_counter_en["\Web Service(_Total)\Search Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the MS-SEARCH method made. Search requests are used to query the server to find resources that match a set of conditions provided by the client. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30975 |0 | |10325 |IIS: Uptime |perf_counter_en["\Web Service(_Total)\Service Uptime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Service uptime in seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30976 |0 | |10325 |IIS: Method Total requests per second |perf_counter_en["\Web Service(_Total)\Total Method Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of all HTTP requests received. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30977 |0 | |10325 |IIS: Method OPTIONS requests per second |perf_counter_en["\Web Service(_Total)\Options Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the OPTIONS method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30978 |0 | |10325 |IIS: Method TRACE requests per second |perf_counter_en["\Web Service(_Total)\Trace Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the TRACE method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30979 |0 | |10325 |IIS: Method TRACE requests per second |perf_counter_en["\Web Service(_Total)\Unlock Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the UNLOCK method made. Unlock requests are used to remove locks from files. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30980 |0 | |10325 |IIS: Files cache hits percentage |perf_counter_en["\Web Service Cache\File Cache Hits %"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The ratio of user-mode file cache hits to total cache requests (since service startup). Note: This value might be low if the Kernel URI cache hits percentage is high. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30981 |0 | |10325 |IIS: File cache misses |perf_counter_en["\Web Service Cache\File Cache Misses"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of unsuccessful lookups in the user-mode file cache since service startup. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30982 |0 | |10325 |IIS: URIs cache hits percentage |perf_counter_en["\Web Service Cache\URI Cache Hits %"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The ratio of user-mode URI Cache Hits to total cache requests (since service startup) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30983 |0 | |10325 |IIS: URI cache misses |perf_counter_en["\Web Service Cache\URI Cache Misses"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of unsuccessful lookups in the user-mode URI cache since service startup. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30984 |0 | |10325 |IIS: World Wide Web Publishing Service (W3SVC) state |service_state[W3SVC] |1m |7d |365d |0 |3 | | | | |NULL |3 | | |0 | | | | |0 |NULL |The World Wide Web Publishing Service (W3SVC) provides web connectivity and administration of websites through the IIS snap-in. If the World Wide Web Publishing Service stops, the operating system cannot serve any form of web request. This service was dependent on "Windows Process Activation Service". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30985 |0 | |10325 |IIS: Method Total Other requests per second |perf_counter_en["\Web Service(_Total)\Other Request Methods/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total Other Request Methods is the number of HTTP requests that are not OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, MOVE, COPY, MKCOL, PROPFIND, PROPPATCH, SEARCH, LOCK or UNLOCK methods (since service startup). Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30986 |0 | |10325 |IIS: Not Found errors per second |perf_counter_en["\Web Service(_Total)\Not Found Errors/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of errors due to requests that couldn't be satisfied by the server because the requested document could not be found. These are generally reported to the client with HTTP error code 404. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30987 |0 | |10325 |IIS: Anonymous users per second |perf_counter_en["\Web Service(_Total)\Anonymous Users/sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of requests from users over an anonymous connection per second. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30988 |0 | |10325 |IIS: Current connections |perf_counter_en["\Web Service(_Total)\Current Connections"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active connections. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30989 |0 | |10325 |IIS: Bytes Received per second |perf_counter_en["\Web Service(_Total)\Bytes Received/sec", 60] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute at which data bytes are received by the service at the Application Layer. Does not include protocol headers or control bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30990 |0 | |10325 |IIS: Bytes Sent per second |perf_counter_en["\Web Service(_Total)\Bytes Sent/sec", 60] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute at which data bytes are sent by the service. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30991 |0 | |10325 |IIS: Bytes Total per second |perf_counter_en["\Web Service(_Total)\Bytes Total/Sec", 60] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute of total bytes/sec transferred by the Web service (sum of bytes sent/sec and bytes received/sec). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30992 |0 | |10325 |IIS: Method CGI requests per second |perf_counter_en["\Web Service(_Total)\CGI Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of CGI requests that are simultaneously being processed by the Web service. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30993 |0 | |10325 |IIS: Connection attempts per second |perf_counter_en["\Web Service(_Total)\Connection Attempts/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute that connections using the Web service are being attempted. The count is the average for all Web sites combined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30994 |0 | |10325 |IIS: Method COPY requests per second |perf_counter_en["\Web Service(_Total)\Copy Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests made using the COPY method. Copy requests are used for copying files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30995 |0 | |10325 |IIS: Method DELETE requests per second |perf_counter_en["\Web Service(_Total)\Delete Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the DELETE method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30996 |0 | |10325 |IIS: NonAnonymous users per second |perf_counter_en["\Web Service(_Total)\NonAnonymous Users/sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of requests from users over a non-anonymous connection per second. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30997 |0 | |10325 |IIS: Method Method GET requests per second |perf_counter_en["\Web Service(_Total)\Get Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests made using the GET method. GET requests are generally used for basic file retrievals or image maps, though they can be used with forms. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30998 |0 | |10325 |IIS: Method HEAD requests per second |perf_counter_en["\Web Service(_Total)\Head Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the HEAD method made. HEAD requests generally indicate a client is querying the state of a document they already have to see if it needs to be refreshed. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30999 |0 | |10325 |IIS: Method ISAPI requests per second |perf_counter_en["\Web Service(_Total)\ISAPI Extension Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of ISAPI Extension requests that are simultaneously being processed by the Web service. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31000 |0 | |10325 |IIS: Locked errors per second |perf_counter_en["\Web Service(_Total)\Locked Errors/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of errors due to requests that couldn't be satisfied by the server because the requested document was locked. These are generally reported as an HTTP 423 error code to the client. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31001 |0 | |10325 |IIS: Method LOCK requests per second |perf_counter_en["\Web Service(_Total)\Lock Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests made using the LOCK method. Lock requests are used to lock a file for one user so that only that user can modify the file. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31002 |0 | |10325 |IIS: Method MKCOL requests per second |perf_counter_en["\Web Service(_Total)\Mkcol Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the MKCOL method made. Mkcol requests are used to create directories on the server. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31003 |0 | |10325 |IIS: Method MOVE requests per second |perf_counter_en["\Web Service(_Total)\Move Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the MOVE method made. Move requests are used for moving files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31004 |0 | |10325 |IIS: Windows Process Activation Service (WAS) state |service_state[WAS] |1m |7d |365d |0 |3 | | | | |NULL |3 | | |0 | | | | |0 |NULL |Windows Process Activation Service (WAS) is a tool for managing worker processes that contain applications that host Windows Communication Foundation (WCF) services. Worker processes handle requests that are sent to a Web Server for specific application pools. Each application pool sets boundaries for the applications it contains. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31005 |0 | |10325 |Application pools discovery |wmi.getall[root\webAdministration, select Name from ApplicationPool] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31006 |0 | |10325 |IIS: AppPool {#APPPOOL} state |perf_counter_en["\APP_POOL_WAS({#APPPOOL})\Current Application Pool State"] |1m |7d |365d |0 |3 | | | | |NULL |98 | | |0 | | | | |2 |NULL |The state of the application pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31007 |0 | |10325 |IIS: {#APPPOOL} Uptime |perf_counter_en["\APP_POOL_WAS({#APPPOOL})\Current Application Pool Uptime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The web application uptime period since the last restart. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31008 |0 | |10325 |IIS: AppPool {#APPPOOL} recycles |perf_counter_en["\APP_POOL_WAS({#APPPOOL})\Total Application Pool Recycles"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times the application pool has been recycled since Windows Process Activation Service (WAS) started. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31009 |0 | |10325 |IIS: AppPool {#APPPOOL} current queue size |perf_counter_en["\HTTP Service Request Queues({#APPPOOL})\CurrentQueueSize"] |30s |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of requests in the queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31010 |3 | |10326 |IIS: {$IIS.PORT} port ping |net.tcp.service[{$IIS.SERVICE},,{$IIS.PORT}] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31011 |7 | |10326 |IIS: Total connection attempts |perf_counter_en["\Web Service(_Total)\Total Connection Attempts (all instances)"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of connections to the Web or FTP service that have been attempted since service startup. The count is the total for all Web sites or FTP sites combined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31012 |7 | |10326 |IIS: Method POST requests per second |perf_counter_en["\Web Service(_Total)\Post Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of HTTP requests using POST method. Generally used for forms or gateway requests. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31013 |7 | |10326 |IIS: Method PROPFIND requests per second |perf_counter_en["\Web Service(_Total)\Propfind Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the PROPFIND method made. Propfind requests retrieve property values on files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31014 |7 | |10326 |IIS: Method PROPPATCH requests per second |perf_counter_en["\Web Service(_Total)\Proppatch Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the PROPPATCH method made. Proppatch requests set property values on files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31015 |7 | |10326 |IIS: Method PUT requests per second |perf_counter_en["\Web Service(_Total)\Put Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the PUT method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31016 |7 | |10326 |IIS: Method MS-SEARCH requests per second |perf_counter_en["\Web Service(_Total)\Search Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the MS-SEARCH method made. Search requests are used to query the server to find resources that match a set of conditions provided by the client. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31017 |7 | |10326 |IIS: Uptime |perf_counter_en["\Web Service(_Total)\Service Uptime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Service uptime in seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31018 |7 | |10326 |IIS: Method Total requests per second |perf_counter_en["\Web Service(_Total)\Total Method Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of all HTTP requests received. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31019 |7 | |10326 |IIS: Method OPTIONS requests per second |perf_counter_en["\Web Service(_Total)\Options Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the OPTIONS method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31020 |7 | |10326 |IIS: Method TRACE requests per second |perf_counter_en["\Web Service(_Total)\Trace Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the TRACE method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31021 |7 | |10326 |IIS: Method TRACE requests per second |perf_counter_en["\Web Service(_Total)\Unlock Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the UNLOCK method made. Unlock requests are used to remove locks from files. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31022 |7 | |10326 |IIS: Files cache hits percentage |perf_counter_en["\Web Service Cache\File Cache Hits %"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The ratio of user-mode file cache hits to total cache requests (since service startup). Note: This value might be low if the Kernel URI cache hits percentage is high. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31023 |7 | |10326 |IIS: File cache misses |perf_counter_en["\Web Service Cache\File Cache Misses"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of unsuccessful lookups in the user-mode file cache since service startup. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31024 |7 | |10326 |IIS: URIs cache hits percentage |perf_counter_en["\Web Service Cache\URI Cache Hits %"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The ratio of user-mode URI Cache Hits to total cache requests (since service startup) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31025 |7 | |10326 |IIS: URI cache misses |perf_counter_en["\Web Service Cache\URI Cache Misses"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of unsuccessful lookups in the user-mode URI cache since service startup. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31026 |7 | |10326 |IIS: World Wide Web Publishing Service (W3SVC) state |service_state[W3SVC] |1m |7d |365d |0 |3 | | | | |NULL |3 | | |0 | | | | |0 |NULL |The World Wide Web Publishing Service (W3SVC) provides web connectivity and administration of websites through the IIS snap-in. If the World Wide Web Publishing Service stops, the operating system cannot serve any form of web request. This service was dependent on "Windows Process Activation Service". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31027 |7 | |10326 |IIS: Method Total Other requests per second |perf_counter_en["\Web Service(_Total)\Other Request Methods/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total Other Request Methods is the number of HTTP requests that are not OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, MOVE, COPY, MKCOL, PROPFIND, PROPPATCH, SEARCH, LOCK or UNLOCK methods (since service startup). Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31028 |7 | |10326 |IIS: Not Found errors per second |perf_counter_en["\Web Service(_Total)\Not Found Errors/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of errors due to requests that couldn't be satisfied by the server because the requested document could not be found. These are generally reported to the client with HTTP error code 404. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31029 |7 | |10326 |IIS: Anonymous users per second |perf_counter_en["\Web Service(_Total)\Anonymous Users/sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of requests from users over an anonymous connection per second. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31030 |7 | |10326 |IIS: Current connections |perf_counter_en["\Web Service(_Total)\Current Connections"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active connections. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31031 |7 | |10326 |IIS: Bytes Received per second |perf_counter_en["\Web Service(_Total)\Bytes Received/sec", 60] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute at which data bytes are received by the service at the Application Layer. Does not include protocol headers or control bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31032 |7 | |10326 |IIS: Bytes Sent per second |perf_counter_en["\Web Service(_Total)\Bytes Sent/sec", 60] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute at which data bytes are sent by the service. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31033 |7 | |10326 |IIS: Bytes Total per second |perf_counter_en["\Web Service(_Total)\Bytes Total/Sec", 60] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute of total bytes/sec transferred by the Web service (sum of bytes sent/sec and bytes received/sec). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31034 |7 | |10326 |IIS: Method CGI requests per second |perf_counter_en["\Web Service(_Total)\CGI Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of CGI requests that are simultaneously being processed by the Web service. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31035 |7 | |10326 |IIS: Connection attempts per second |perf_counter_en["\Web Service(_Total)\Connection Attempts/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute that connections using the Web service are being attempted. The count is the average for all Web sites combined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31036 |7 | |10326 |IIS: Method COPY requests per second |perf_counter_en["\Web Service(_Total)\Copy Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests made using the COPY method. Copy requests are used for copying files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31037 |7 | |10326 |IIS: Method DELETE requests per second |perf_counter_en["\Web Service(_Total)\Delete Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the DELETE method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31038 |7 | |10326 |IIS: NonAnonymous users per second |perf_counter_en["\Web Service(_Total)\NonAnonymous Users/sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of requests from users over a non-anonymous connection per second. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31039 |7 | |10326 |IIS: Method Method GET requests per second |perf_counter_en["\Web Service(_Total)\Get Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests made using the GET method. GET requests are generally used for basic file retrievals or image maps, though they can be used with forms. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31040 |7 | |10326 |IIS: Method HEAD requests per second |perf_counter_en["\Web Service(_Total)\Head Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the HEAD method made. HEAD requests generally indicate a client is querying the state of a document they already have to see if it needs to be refreshed. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31041 |7 | |10326 |IIS: Method ISAPI requests per second |perf_counter_en["\Web Service(_Total)\ISAPI Extension Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of ISAPI Extension requests that are simultaneously being processed by the Web service. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31042 |7 | |10326 |IIS: Locked errors per second |perf_counter_en["\Web Service(_Total)\Locked Errors/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of errors due to requests that couldn't be satisfied by the server because the requested document was locked. These are generally reported as an HTTP 423 error code to the client. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31043 |7 | |10326 |IIS: Method LOCK requests per second |perf_counter_en["\Web Service(_Total)\Lock Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests made using the LOCK method. Lock requests are used to lock a file for one user so that only that user can modify the file. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31044 |7 | |10326 |IIS: Method MKCOL requests per second |perf_counter_en["\Web Service(_Total)\Mkcol Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the MKCOL method made. Mkcol requests are used to create directories on the server. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31045 |7 | |10326 |IIS: Method MOVE requests per second |perf_counter_en["\Web Service(_Total)\Move Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the MOVE method made. Move requests are used for moving files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31046 |7 | |10326 |IIS: Windows Process Activation Service (WAS) state |service_state[WAS] |1m |7d |365d |0 |3 | | | | |NULL |3 | | |0 | | | | |0 |NULL |Windows Process Activation Service (WAS) is a tool for managing worker processes that contain applications that host Windows Communication Foundation (WCF) services. Worker processes handle requests that are sent to a Web Server for specific application pools. Each application pool sets boundaries for the applications it contains. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31047 |7 | |10326 |Application pools discovery |wmi.getall[root\webAdministration, select Name from ApplicationPool] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31048 |7 | |10326 |IIS: AppPool {#APPPOOL} state |perf_counter_en["\APP_POOL_WAS({#APPPOOL})\Current Application Pool State"] |1m |7d |365d |0 |3 | | | | |NULL |98 | | |0 | | | | |2 |NULL |The state of the application pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31049 |7 | |10326 |IIS: {#APPPOOL} Uptime |perf_counter_en["\APP_POOL_WAS({#APPPOOL})\Current Application Pool Uptime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The web application uptime period since the last restart. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31050 |7 | |10326 |IIS: AppPool {#APPPOOL} recycles |perf_counter_en["\APP_POOL_WAS({#APPPOOL})\Total Application Pool Recycles"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times the application pool has been recycled since Windows Process Activation Service (WAS) started. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31051 |7 | |10326 |IIS: AppPool {#APPPOOL} current queue size |perf_counter_en["\HTTP Service Request Queues({#APPPOOL})\CurrentQueueSize"] |30s |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of requests in the queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31054 |3 | |10323 |ClickHouse: Check port availability |net.tcp.service[{$CLICKHOUSE.SCHEME},"{HOST.CONN}","{$CLICKHOUSE.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31055 |11 | |10327 |MSSQL: Get performance counters |db.odbc.get[get_status_variables,"{$MSSQL.DSN}"] |0;m0-59 |0 |0 |0 |4 | | | | |NULL |NULL |SELECT object_name,counter_name,instance_name,cntr_value&bsn;FROM sys.dm_os_performance_counters&bsn;UNION&bsn;SELECT '{$MSSQL.INSTANCE}' as object_name,'Version' as counter_name,@@version as instance_name,0 as cntr_value&bsn;UNION&bsn;SELECT '{$MSSQL.INSTANCE}' as object_name,'Uptime' as counter_name,'' as instance_name,DATEDIFF(second,sqlserver_start_time,GETDATE()) as cntr_value&bsn;FROM sys.dm_os_sys_info&bsn;UNION&bsn;SELECT '{$MSSQL.INSTANCE}:Databases' as object_name,'State' as counter_name,name as instance_name,state as cntr_value&bsn;FROM sys.databases&bsn;UNION&bsn;SELECT a.object_name,'BufferCacheHitRatio' as counter_name,'' as instance_name,cast(a.cntr_value*100.0/b.cntr_value as dec(3,0)) as cntr_value&bsn;FROM sys.dm_os_performance_counters a&bsn;JOIN (SELECT cntr_value,OBJECT_NAME&bsn;FROM sys.dm_os_performance_counters&bsn;WHERE counter_name='Buffer cache hit ratio base' AND OBJECT_NAME='{$MSSQL.INSTANCE}:Buffer Manager') b&bsn;ON a.OBJECT_NAME=b.OBJECT_NAME&bsn;WHERE a.counter_name='Buffer cache hit ratio' AND a.OBJECT_NAME='{$MSSQL.INSTANCE}:Buffer Manager'&bsn;UNION&bsn;SELECT a.object_name,'WorktablesFromCacheRatio' as counter_name,'' as instance_name,cast(a.cntr_value*100.0/b.cntr_value as dec(3,0)) as cntr_value&bsn;FROM sys.dm_os_performance_counters a&bsn;JOIN (SELECT cntr_value,OBJECT_NAME&bsn;FROM sys.dm_os_performance_counters&bsn;WHERE counter_name='Worktables From Cache Base' AND OBJECT_NAME='{$MSSQL.INSTANCE}:Access Methods') b&bsn;ON a.OBJECT_NAME=b.OBJECT_NAME&bsn;WHERE a.counter_name='Worktables From Cache Ratio' AND a.OBJECT_NAME='{$MSSQL.INSTANCE}:Access Methods'&bsn;UNION&bsn;SELECT a.object_name,'CacheHitRatio' as counter_name,'_Total' as instance_name,cast(a.cntr_value*100.0/b.cntr_value as dec(3,0)) as cntr_value&bsn;FROM sys.dm_os_performance_counters a&bsn;JOIN (SELECT cntr_value,OBJECT_NAME&bsn;FROM sys.dm_os_performance_counters&bsn;WHERE counter_name='Cache Hit Ratio base' AND OBJECT_NAME='{$MSSQL.INSTANCE}:Plan Cache' AND instance_name='_Total') b&bsn;ON a.OBJECT_NAME=b.OBJECT_NAME&bsn;WHERE a.counter_name='Cache Hit Ratio' AND a.OBJECT_NAME='{$MSSQL.INSTANCE}:Plan Cache' AND instance_name='_Total'| |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |0 |NULL |The item gets server global status information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31056 |15 | |10327 |MSSQL: Total average wait time |mssql.average_wait_time |0;m0-59s3 |7d |365d |0 |0 | |ms | | |NULL |NULL |(last(mssql.average_wait_time_raw) - prev(mssql.average_wait_time_raw)) /&bsn;(last(mssql.average_wait_time_base) - prev(mssql.average_wait_time_base) + &bsn;(last(mssql.average_wait_time_base) - prev(mssql.average_wait_time_base)=0)) | |0 | | | | |0 |NULL |The average wait time, in milliseconds, for each lock request that had to wait. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31057 |3 | |10327 |MSSQL: Service's TCP port state |net.tcp.service[tcp,{HOST.CONN},{$MSSQL.PORT}] |30s |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Test the availability of MS SQL Server on TCP port. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31058 |15 | |10327 |MSSQL: Average latch wait time |mssql.average_latch_wait_time |0;m0-59s3 |7d |365d |0 |0 | |ms | | |NULL |NULL |(last(mssql.average_latch_wait_time_raw) - prev(mssql.average_latch_wait_time_raw)) /&bsn;(last(mssql.average_latch_wait_time_base) - prev(mssql.average_latch_wait_time_base) + &bsn;(last(mssql.average_latch_wait_time_base) - prev(mssql.average_latch_wait_time_base)=0)) | |0 | | | | |0 |NULL |Average latch wait time (in milliseconds) for latch requests that had to wait. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31122 |11 | |10327 |Availability groups discovery |db.odbc.discovery[availability_groups,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name as group_name &bsn;FROM sys.availability_groups | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Discovery the existed availability groups. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31123 |11 | |10327 |Database discovery |db.odbc.discovery[dbname,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name as dbname &bsn;FROM sys.databases | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Scanning databases in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31124 |11 | |10327 |Local database discovery |db.odbc.discovery[local_db,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT ag.name AS group_name, arcs.replica_server_name AS replica_name,&bsn;db_name(drs.database_id) AS dbname, drs.is_local&bsn;FROM sys.dm_hadr_database_replica_states drs JOIN sys.dm_hadr_availability_replica_cluster_states arcs&bsn;ON arcs.replica_id = drs.replica_id&bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id&bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id&bsn;WHERE drs.is_local = 1 | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Discovery of the local availability databases. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31125 |11 | |10327 |Mirroring discovery |db.odbc.discovery[mirrors,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT db_name(database_id) as dbname&bsn;FROM sys.database_mirroring&bsn;WHERE mirroring_state_desc IS NOT NULL | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |To see the row for a database other than master or tempdb, you must&eol;either be the database owner or have at least ALTER ANY DATABASE or VIEW ANY&eol;DATABASE server-level permission or CREATE DATABASE permission in the master&eol;database. To see non-NULL values on a mirror database, you must be a member&eol;of the sysadmin fixed server role. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31126 |11 | |10327 |Non-local database discovery |db.odbc.discovery[non-local_db,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT ag.name AS group_name, arcs.replica_server_name AS replica_name,&bsn;db_name(drs.database_id) AS dbname, drs.is_local&bsn;FROM sys.dm_hadr_database_replica_states drs JOIN sys.dm_hadr_availability_replica_cluster_states arcs &bsn;ON arcs.replica_id = drs.replica_id &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id&bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id&bsn;WHERE drs.is_local = 0 | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Discovery of the non-local (not local to the SQL Server instance) availability databases. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31127 |11 | |10327 |Replication discovery |db.odbc.discovery[replicas,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT ag.name as group_name, &bsn;arcs.replica_server_name as replica_name&bsn;FROM sys.dm_hadr_availability_replica_cluster_states as arcs &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id&bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Discovery of the database replicas. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31128 |11 | |10327 |MSSQL AG '{#GROUP_NAME}': Get replica states |db.odbc.get[{#GROUP_NAME}_replica_states,"{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT ag.name as group_name,&bsn;ISNULL(ags.primary_recovery_health, 2) as primary_recovery_health,&bsn;ISNULL(ags.primary_replica, 'Unknown') as primary_replica,&bsn;ISNULL(ags.secondary_recovery_health, 2) as secondary_recovery_health,&bsn;ags.synchronization_health as synchronization_health&bsn;FROM sys.dm_hadr_availability_group_states ags JOIN sys.availability_groups ag ON ag.group_id = ags.group_id | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting replica states - name, primary and secondary health, synchronization health. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31129 |11 | |10327 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}': Get local DB states |db.odbc.get["{#GROUP_NAME}_{#DBNAME}_local_db.states","{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT drs.database_state as database_state, &bsn;drs.is_suspended as is_suspended, &bsn;drs.synchronization_health as synchronization_health, &bsn;ag.name as group_name,&bsn;arcs.replica_server_name as replica_name,&bsn;db_name(drs.database_id) as dbname&bsn;FROM sys.dm_hadr_database_replica_states drs &bsn;JOIN sys.dm_hadr_availability_replica_cluster_states arcs ON arcs.replica_id = drs.replica_id &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id &bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting the states of the local availability database. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31130 |11 | |10327 |MSSQL Mirroring '{#DBNAME}': Get the mirror state |db.odbc.get["{#DBNAME}_mirroring_state","{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT ISNULL(m.mirroring_role,0) as mirroring_role,&bsn;ISNULL(m.mirroring_role_sequence,0) as mirroring_role_sequence,&bsn;ISNULL(m.mirroring_state,7) as mirroring_state,&bsn;ISNULL(m.mirroring_witness_state,3) as mirroring_witness_state,&bsn;ISNULL(m.mirroring_safety_level,3) as mirroring_safety_level,&bsn;db_name(m.database_id) as dbname &bsn;FROM sys.database_mirroring as m&bsn;WHERE m.mirroring_state_desc IS NOT NULL | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting mirrors state |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31132 |11 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Get the replica state |db.odbc.get["{#GROUP_NAME}_{#REPLICA_NAME}_replica.state","{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT ars.connected_state as connected_state,&bsn;ars.is_local as is_local,&bsn;arcs.join_state as join_state,&bsn;ISNULL(ars.operational_state,6) as operational_state,&bsn;ISNULL(ars.recovery_health,2) as recovery_health,&bsn;ars.role as role,&bsn;ars.synchronization_health as synchronization_health,&bsn;ag.name as group_name, &bsn;arcs.replica_server_name as replica_name&bsn;FROM sys.dm_hadr_availability_replica_cluster_states as arcs &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id&bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id&bsn;WHERE ag.name = '{#GROUP_NAME}' AND arcs.replica_server_name = '{#REPLICA_NAME}' | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting the database replica states. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31180 |0 | |10328 |PostgreSQL: Get bgwriter |pgsql.bgwriter["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |https://www.postgresql.org/docs/12/monitoring-stats.html#PG-STAT-BGWRITER-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31181 |0 | |10328 |Replication: Lag in bytes |pgsql.replication.lag.b["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Replication lag with Master in byte. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31182 |0 | |10328 |PostgreSQL: Get connections |pgsql.connections["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_activity&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ACTIVITY-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31183 |0 | |10328 |PostgreSQL: Get dbstat sum |pgsql.dbstat.sum["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_database per database&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-DATABASE-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31185 |0 | |10328 |PostgreSQL: Get dbstat |pgsql.dbstat["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_database per database&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-DATABASE-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31186 |0 | |10328 |PostgreSQL: Get locks |pgsql.locks["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_locks per database&eol;https://www.postgresql.org/docs/current/explicit-locking.html#LOCKING-TABLES |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31188 |0 | |10328 |PostgreSQL: Ping |pgsql.ping["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31189 |0 | |10328 |Replication: Standby count |pgsql.replication.count["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of standby servers |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31190 |0 | |10328 |Replication: Lag in seconds |pgsql.replication.lag.sec["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Replication lag with Master in seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31191 |0 | |10328 |Replication: Recovery role |pgsql.replication.recovery_role["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |3 | | | | |NULL |76 | | |0 | | | | |0 |NULL |Replication role: 1 — recovery is still in progress (standby mode), 0 — master mode. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31192 |0 | |10328 |Replication: Status |pgsql.replication.status["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |3 | | | | |NULL |77 | | |0 | | | | |0 |NULL |Replication status: 0 — streaming is down, 1 — streaming is up, 2 — master mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31193 |0 | |10328 |PostgreSQL: Uptime |pgsql.uptime["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31194 |0 | |10328 |Autovacuum: Count of autovacuum workers |pgsql.autovacuum.count["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of autovacuum workers. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31195 |0 | |10328 |PostgreSQL: Get archive |pgsql.archive["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect archive status metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31196 |0 | |10328 |PostgreSQL: Get WAL |pgsql.wal.stat["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |5m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect WAL metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31240 |0 | |10328 |Database discovery |pgsql.db.discovery["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31241 |0 | |10328 |DB {#DBNAME}: Database age |pgsql.db.age["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"] |10m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Database age |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31242 |0 | |10328 |DB {#DBNAME}: Database size |pgsql.db.size["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Database size |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31243 |0 | |10328 |DB {#DBNAME}: Get bloating tables |pgsql.db.bloating_tables["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bloating tables |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31273 |0 | |10275 |Block devices discovery |vfs.dev.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31276 |15 | |10275 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last("vfs.dev.read.time.rate[{#DEVNAME}]")/(last("vfs.dev.read.rate[{#DEVNAME}]")+(last("vfs.dev.read.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.read.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31277 |15 | |10275 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last("vfs.dev.write.time.rate[{#DEVNAME}]")/(last("vfs.dev.write.rate[{#DEVNAME}]")+(last("vfs.dev.write.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.write.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31278 |0 | |10275 |{#DEVNAME}: Get stats |vfs.file.contents[/sys/block/{#DEVNAME}/stat] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Get contents of /sys/block/{#DEVNAME}/stat for disk stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31305 |7 | |10281 |Block devices discovery |vfs.dev.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31307 |15 | |10281 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last("vfs.dev.read.time.rate[{#DEVNAME}]")/(last("vfs.dev.read.rate[{#DEVNAME}]")+(last("vfs.dev.read.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.read.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31308 |15 | |10281 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last("vfs.dev.write.time.rate[{#DEVNAME}]")/(last("vfs.dev.write.rate[{#DEVNAME}]")+(last("vfs.dev.write.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.write.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31309 |7 | |10281 |{#DEVNAME}: Get stats |vfs.file.contents[/sys/block/{#DEVNAME}/stat] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Get contents of /sys/block/{#DEVNAME}/stat for disk stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31325 |0 | |10286 |Number of cores |wmi.get[root/cimv2,"Select NumberOfLogicalProcessors from Win32_ComputerSystem"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical processors available on the computer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31326 |0 | |10287 |Used swap space in % |perf_counter_en["\Paging file(_Total)\% Usage"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The used space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31327 |15 | |10287 |Free swap space |system.swap.free |1m |7d |365d |0 |3 | |B | | |NULL |NULL |last("system.swap.size[,total]") - last("system.swap.size[,total]") / 100 * last("perf_counter_en[\"\Paging file(_Total)\% Usage\"]") | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31333 |0 | |10289 |Physical disks discovery |perf_instance_en.discovery[PhysicalDisk] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of installed physical disks. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31335 |0 | |10289 |{#DEVNAME}: Disk utilization |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Disk Time",60] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31336 |0 | |10289 |{#DEVNAME}: Disk average queue size (avgqu-sz) |perf_counter_en["\PhysicalDisk({#DEVNAME})\Current Disk Queue Length",60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31337 |0 | |10289 |{#DEVNAME}: Disk read rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Reads/sec",60] |1m |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of read operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31338 |0 | |10289 |{#DEVNAME}: Disk write rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Writes/sec",60] |1m |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of write operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31343 |7 | |10293 |Number of cores |wmi.get[root/cimv2,"Select NumberOfLogicalProcessors from Win32_ComputerSystem"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical processors available on the computer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31344 |7 | |10294 |Used swap space in % |perf_counter_en["\Paging file(_Total)\% Usage"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The used space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31345 |15 | |10294 |Free swap space |system.swap.free |1m |7d |365d |0 |3 | |B | | |NULL |NULL |last("system.swap.size[,total]") - last("system.swap.size[,total]") / 100 * last("perf_counter_en[\"\Paging file(_Total)\% Usage\"]") | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31351 |7 | |10296 |Physical disks discovery |perf_instance_en.discovery[PhysicalDisk] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of installed physical disks. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31353 |7 | |10296 |{#DEVNAME}: Disk utilization |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Disk Time",60] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31354 |7 | |10296 |{#DEVNAME}: Disk average queue size (avgqu-sz) |perf_counter_en["\PhysicalDisk({#DEVNAME})\Current Disk Queue Length",60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31355 |7 | |10296 |{#DEVNAME}: Disk read rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Reads/sec",60] |1m |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of read operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31356 |7 | |10296 |{#DEVNAME}: Disk write rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Writes/sec",60] |1m |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of write operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31361 |11 | |10329 |Oracle: Get archive log info |db.odbc.get[get_archivelog_stat,"{$ORACLE.DSN}"] |5m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT&bsn;d.dest_name, DECODE (d.status, 'VALID',3, 'DEFERRED', 2, 'ERROR', 1, 0) AS status,&bsn;d.log_sequence,&bsn;d.error&bsn;FROM v$archive_dest d , v$database db&bsn;WHERE d.status != 'INACTIVE' AND db.log_mode = 'ARCHIVELOG'; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31362 |11 | |10329 |Oracle: Get tablespaces stats |db.odbc.get[tablespace_stats,"{$ORACLE.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT df.tablespace_name AS TABLESPACE, df.type AS TYPE, NVL(SUM(df.BYTES), 0) AS FILE_BYTES, NVL(SUM(df.MAX_BYTES), 0) AS MAX_BYTES, NVL(SUM(f.FREE), 0) AS FREE_BYTES, SUM(df.BYTES)-SUM(f.FREE) AS USED_BYTES, ROUND(DECODE(SUM(df.MAX_BYTES), 0, 0, (SUM(df.BYTES) / SUM(df.MAX_BYTES) * 100)), 2) AS USED_PCT_MAX, ROUND(DECODE(SUM(df.BYTES), 0, 0,(SUM(df.BYTES)-SUM(f.FREE))/ SUM(df.BYTES)* 100), 2) AS USED_FILE_PCT, DECODE(df.STATUS, 'ONLINE', 1, 'OFFLINE', 2, 'READ ONLY', 3, 0) AS STATUS FROM ( SELECT ddf.file_id, dt.contents AS TYPE, dt.STATUS , ddf.file_name, ddf.tablespace_name, TRUNC(ddf.bytes) AS bytes, TRUNC(GREATEST(ddf.bytes, ddf.maxbytes)) AS max_bytes FROM dba_data_files ddf, dba_tablespaces dt WHERE ddf.tablespace_name = dt.tablespace_name ) df, ( SELECT TRUNC(SUM(bytes)) AS FREE, file_id FROM dba_free_space GROUP BY file_id ) f WHERE df.file_id = f.file_id (+) GROUP BY df.tablespace_name, df.TYPE, df.status UNION ALL SELECT Y.name AS TABLESPACE, Y.type AS TYPE, NVL(SUM(Y.BYTES), 0) AS FILE_BYTES, NVL(SUM(Y.MAX_BYTES), 0) AS MAX_BYTES, NVL(MAX(NVL(Y.FREE_BYTES, 0)), 0) AS FREE, SUM(Y.BYTES)-SUM(Y.FREE_BYTES) AS USED_BYTES, ROUND(DECODE(SUM(Y.MAX_BYTES), 0, 0, (SUM(Y.BYTES) / SUM(Y.MAX_BYTES) * 100)), 2) AS USED_PCT_MAX, ROUND(DECODE(SUM(Y.BYTES), 0, 0,(SUM(Y.BYTES)-SUM(Y.FREE_BYTES))/ SUM(Y.BYTES)* 100), 2) AS USED_FILE_PCT, DECODE(Y.TBS_STATUS, 'ONLINE', 1, 'OFFLINE', 2, 'READ ONLY', 3, 0) AS STATUS FROM ( SELECT dtf.tablespace_name AS name, dt.contents AS TYPE, dt.STATUS AS tbs_status, dtf.status AS status, dtf.bytes AS bytes, (SELECT ((f.total_blocks - s.tot_used_blocks)* vp.value) FROM ( SELECT tablespace_name, SUM(used_blocks) tot_used_blocks FROM gv$sort_segment WHERE tablespace_name != 'DUMMY' GROUP BY tablespace_name) s, ( SELECT tablespace_name, SUM(blocks) total_blocks FROM dba_temp_files WHERE tablespace_name != 'DUMMY' GROUP BY tablespace_name) f, ( SELECT value FROM v$parameter WHERE name = 'db_block_size') vp WHERE f.tablespace_name = s.tablespace_name AND f.tablespace_name = dtf.tablespace_name ) AS free_bytes, CASE WHEN dtf.maxbytes = 0 THEN dtf.bytes ELSE dtf.maxbytes END AS max_bytes FROM sys.dba_temp_files dtf, sys.dba_tablespaces dt WHERE dtf.tablespace_name = dt.tablespace_name ) Y GROUP BY Y.name, Y.TYPE, Y.tbs_status;| |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL |Get tablespaces stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31363 |11 | |10329 |Oracle: Get ASM stats |db.odbc.get[get_asm_stat,"{$ORACLE.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT&bsn;name AS dg_name,&bsn;ROUND(total_mb / DECODE(TYPE, 'NORMAL', 2, 'HIGH', 3, 'EXTERN', 1)*1024*1024) AS size_byte,&bsn;ROUND(usable_file_mb*1024*1024 ) AS free_size_byte,&bsn;ROUND(100-(usable_file_mb /(total_mb / DECODE(TYPE, 'NORMAL', 2, 'HIGH', 3, 'EXTERN', 1)))* 100, 2) AS used_percent&bsn;FROM v$asm_diskgroup ; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL |Get ASM disk groups stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31364 |0 | |10329 |Oracle: Service's TCP port state |net.tcp.service[tcp,{HOST.CONN},{$ORACLE.PORT}] |30s |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Test the availability of Oracle on TCP port. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31365 |0 | |10329 |Oracle: Number of LISTENER processes |proc.num[,,,"tnslsnr LISTENER"] |30s |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of LISTENER processes running |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31367 |11 | |10329 |Oracle: Get CDB and No-CDB info |db.odbc.get[get_cdb_info,"{$ORACLE.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT name as DBNAME,&bsn;DECODE(open_mode, 'MOUNTED', 1, 'READ ONLY', 2, 'READ WRITE', 3, 'READ ONLY WITH APPLY', 4, 'MIGRATE', 5, 0) AS open_mode,&bsn;DECODE(database_role, 'SNAPSHOT STANDBY', 1, 'LOGICAL STANDBY', 2, 'PHYSICAL STANDBY', 3, 'PRIMARY', 4, 'FAR SYNC', 5, 0) AS ROLE,&bsn;DECODE(force_logging, 'YES',1,'NO',0,0) AS force_logging,&bsn;DECODE(log_mode, 'MANUAL',2 ,'ARCHIVELOG',1,'NOARCHIVELOG',0,0) AS log_mode&bsn;FROM v$database | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL |Get info about CDB and No-CDB databases on instansce. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31368 |11 | |10329 |Oracle: Get PDB info |db.odbc.get[get_pdb_info,"{$ORACLE.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT&bsn;name as DBNAME,&bsn;DECODE(open_mode, 'MOUNTED', 1, 'READ ONLY', 2, 'READ WRITE', 3, 'READ ONLY WITH APPLY', 4, 'MIGRATE', 5, 0) AS open_mode&bsn;FROM v$pdbs; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL |Get info about PDB databases on instansce. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31369 |11 | |10329 |Oracle: Get instance state |db.odbc.get[get_instance_state,"{$ORACLE.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT&bsn;INSTANCE_NAME,&bsn;HOST_NAME,&bsn;VERSION &pipe;&pipe; '-' &pipe;&pipe; EDITION AS VERSION,&bsn;floor((SYSDATE - startup_time)*60*60*24) AS UPTIME,&bsn;decode(status,'STARTED',1,'MOUNTED',2,'OPEN',3,'OPEN MIGRATE',4, 0) AS STATUS,&bsn;decode(archiver,'STOPPED',1,'STARTED',2,'FAILED',3, 0) AS ARCHIVER,&bsn;decode(instance_role,'PRIMARY_INSTANCE',1,'SECONDARY_INSTANCE',2, 0) AS INSTANCE_ROLE&bsn;FROM v$instance; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL |The item gets state of the current instance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31434 |11 | |10329 |Archive log discovery |db.odbc.discovery[archivelog,"{$ORACLE.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT d.dest_name&bsn;FROM v$archive_dest d , v$database db WHERE d.status != 'INACTIVE' AND db.log_mode = 'ARCHIVELOG'; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |1 |NULL |Log archive destinations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31435 |11 | |10329 |ASM disk groups discovery |db.odbc.discovery[asm,"{$ORACLE.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name AS dg_name FROM v$asm_diskgroup; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |1 |NULL |ASM disk groups |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31436 |11 | |10329 |Database discovery |db.odbc.discovery[db_list,"{$ORACLE.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name as DBNAME, DECODE(CDB, 'YES', 'CDB', 'No-CDB') AS TYPE FROM V$DATABASE; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |1 |NULL |Scanning databases in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31437 |11 | |10329 |PDB discovery |db.odbc.discovery[pdb_list,"{$ORACLE.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name as DBNAME FROM V$PDBS; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |1 |NULL |Scanning PDB in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31438 |11 | |10329 |Tablespace discovery |db.odbc.discovery[tbsname,"{$ORACLE.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT&bsn;tablespace_name AS tablespace,&bsn;contents FROM DBA_TABLESPACES; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |1 |NULL |Scanning tablespaces in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31455 |0 | |10291 |Network interfaces WMI get |wmi.getall[root\cimv2,"select Name,Description,NetConnectionID,Speed,AdapterTypeId,NetConnectionStatus from win32_networkadapter where PhysicalAdapter=True and NetConnectionStatus>0"]|1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Raw data of win32_networkadapter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31459 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of incoming packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31460 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of incoming packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31461 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Incoming traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31462 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31463 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31464 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Outgoing traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31477 |7 | |10298 |Network interfaces WMI get |wmi.getall[root\cimv2,"select Name,Description,NetConnectionID,Speed,AdapterTypeId,NetConnectionStatus from win32_networkadapter where PhysicalAdapter=True and NetConnectionStatus>0"]|1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Raw data of win32_networkadapter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31481 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of incoming packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31482 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of incoming packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31483 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Incoming traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31484 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31485 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31486 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Outgoing traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31499 |16 | |10169 |ClassLoading: Loaded class count |jmx["java.lang:type=ClassLoading","LoadedClassCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays number of classes that are currently loaded in the Java virtual machine. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31500 |16 | |10169 |MemoryPool: PS Perm Gen used |jmx["java.lang:type=MemoryPool,name=PS Perm Gen","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31501 |16 | |10169 |MemoryPool: Code Cache committed |jmx["java.lang:type=MemoryPool,name=Code Cache","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31502 |16 | |10169 |MemoryPool: CodeCache maximum size |jmx["java.lang:type=MemoryPool,name=Code Cache","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31503 |16 | |10169 |MemoryPool: Code Cache used |jmx["java.lang:type=MemoryPool,name=Code Cache","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31504 |16 | |10169 |MemoryPool: Perm Gen committed |jmx["java.lang:type=MemoryPool,name=Perm Gen","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31505 |16 | |10169 |MemoryPool: Perm Gen maximum size |jmx["java.lang:type=MemoryPool,name=Perm Gen","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31506 |16 | |10169 |MemoryPool: Perm Gen used |jmx["java.lang:type=MemoryPool,name=Perm Gen","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31507 |16 | |10169 |MemoryPool: PS Old Gen |jmx["java.lang:type=MemoryPool,name=PS Old Gen","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31508 |16 | |10169 |MemoryPool: PS Old Gen maximum size |jmx["java.lang:type=MemoryPool,name=PS Old Gen","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31509 |16 | |10169 |MemoryPool: PS Old Gen used |jmx["java.lang:type=MemoryPool,name=PS Old Gen","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31510 |16 | |10169 |MemoryPool: PS Perm Gen committed |jmx["java.lang:type=MemoryPool,name=PS Perm Gen","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31511 |16 | |10169 |MemoryPool: PS Perm Gen maximum size |jmx["java.lang:type=MemoryPool,name=PS Perm Gen","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31512 |16 | |10169 |MemoryPool: Tenured Gen committed |jmx["java.lang:type=MemoryPool,name=Tenured Gen","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31513 |16 | |10169 |MemoryPool: CMS Perm Gen maximum size |jmx["java.lang:type=MemoryPool,name=CMS Perm Gen","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31514 |16 | |10169 |MemoryPool: Tenured Gen maximum size |jmx["java.lang:type=MemoryPool,name=Tenured Gen","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31515 |16 | |10169 |MemoryPool: Tenured Gen used |jmx["java.lang:type=MemoryPool,name=Tenured Gen","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31516 |16 | |10169 |OperatingSystem: File descriptors maximum count |jmx["java.lang:type=OperatingSystem","MaxFileDescriptorCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This is the number of file descriptors we can have opened in the same process, as determined by the operating system. You can never have more file descriptors than this number. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31517 |16 | |10169 |OperatingSystem: File descriptors opened |jmx["java.lang:type=OperatingSystem","OpenFileDescriptorCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This is the number of opened file descriptors at the moment, if this reaches the MaxFileDescriptorCount, the application will throw an IOException: Too many open files. This could mean you’re are opening file descriptors and never closing them. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31518 |16 | |10169 |OperatingSystem: Process CPU Load |jmx["java.lang:type=OperatingSystem","ProcessCpuLoad"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |ProcessCpuLoad represents the CPU load in this process. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31519 |16 | |10169 |Runtime: JVM uptime |jmx["java.lang:type=Runtime","Uptime"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31520 |16 | |10169 |Runtime: JVM name |jmx["java.lang:type=Runtime","VmName"] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31521 |16 | |10169 |Runtime: JVM version |jmx["java.lang:type=Runtime","VmVersion"] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31522 |16 | |10169 |Threading: Daemon thread count |jmx["java.lang:type=Threading","DaemonThreadCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of daemon threads running. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31523 |16 | |10169 |Threading: Peak thread count |jmx["java.lang:type=Threading","PeakThreadCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum number of threads being executed at the same time since the JVM was started or the peak was reset. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31524 |16 | |10169 |Threading: Thread count |jmx["java.lang:type=Threading","ThreadCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads running at the current moment. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31525 |16 | |10169 |MemoryPool: CMS Perm Gen used |jmx["java.lang:type=MemoryPool,name=CMS Perm Gen","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31526 |16 | |10169 |MemoryPool: CMS Perm Gen committed |jmx["java.lang:type=MemoryPool,name=CMS Perm Gen","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31527 |16 | |10169 |ClassLoading: Total loaded class count |jmx["java.lang:type=ClassLoading","TotalLoadedClassCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of classes that have been loaded since the Java virtual machine has started execution. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31528 |16 | |10169 |GarbageCollector: PS MarkSweep number of collections per second |jmx["java.lang:type=GarbageCollector,name=PS MarkSweep","CollectionCount"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of collections that have occurred per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31529 |16 | |10169 |ClassLoading: Unloaded class count |jmx["java.lang:type=ClassLoading","UnloadedClassCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of classes that have been loaded since the Java virtual machine has started execution. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31530 |16 | |10169 |Compilation: Name of the current JIT compiler |jmx["java.lang:type=Compilation","Name"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of classes unloaded since the Java virtual machine has started execution. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31531 |16 | |10169 |Compilation: Accumulated time spent |jmx["java.lang:type=Compilation","TotalCompilationTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated elapsed time spent in compilation, in seconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31532 |16 | |10169 |GarbageCollector: ConcurrentMarkSweep number of collections per second |jmx["java.lang:type=GarbageCollector,name=ConcurrentMarkSweep","CollectionCount"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of collections that have occurred per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31533 |16 | |10169 |GarbageCollector: ConcurrentMarkSweep accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=ConcurrentMarkSweep","CollectionTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated collection elapsed time, in seconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31534 |16 | |10169 |GarbageCollector: Copy number of collections per second |jmx["java.lang:type=GarbageCollector,name=Copy","CollectionCount"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of collections that have occurred per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31535 |16 | |10169 |GarbageCollector: Copy accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=Copy","CollectionTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated collection elapsed time, in seconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31536 |16 | |10169 |GarbageCollector: MarkSweepCompact number of collections per second |jmx["java.lang:type=GarbageCollector,name=MarkSweepCompact","CollectionCount"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of collections that have occurred per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31537 |16 | |10169 |GarbageCollector: MarkSweepCompact accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=MarkSweepCompact","CollectionTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated collection elapsed time, in seconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31538 |16 | |10169 |GarbageCollector: ParNew number of collections per second |jmx["java.lang:type=GarbageCollector,name=ParNew","CollectionCount"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of collections that have occurred per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31539 |16 | |10169 |GarbageCollector: ParNew accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=ParNew","CollectionTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated collection elapsed time, in seconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31540 |16 | |10169 |GarbageCollector: PS MarkSweep accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=PS MarkSweep","CollectionTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated collection elapsed time, in seconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31541 |16 | |10169 |MemoryPool: CMS Old Gen used |jmx["java.lang:type=MemoryPool,name=CMS Old Gen","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31542 |16 | |10169 |GarbageCollector: PS Scavenge number of collections per second |jmx["java.lang:type=GarbageCollector,name=PS Scavenge","CollectionCount"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of collections that have occurred per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31543 |16 | |10169 |GarbageCollector: PS Scavenge accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=PS Scavenge","CollectionTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated collection elapsed time, in seconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31544 |16 | |10169 |Memory: Heap memory committed |jmx["java.lang:type=Memory","HeapMemoryUsage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current heap memory allocated. This amount of memory is guaranteed for the Java virtual machine to use. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31545 |16 | |10169 |Memory: Heap memory maximum size |jmx["java.lang:type=Memory","HeapMemoryUsage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of heap that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31546 |16 | |10169 |Memory: Heap memory used |jmx["java.lang:type=Memory","HeapMemoryUsage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage outside the heap. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31547 |16 | |10169 |Memory: Non-Heap memory committed |jmx["java.lang:type=Memory","NonHeapMemoryUsage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated outside the heap. This amount of memory is guaranteed for the Java virtual machine to use. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31548 |16 | |10169 |Memory: Non-Heap memory maximum size |jmx["java.lang:type=Memory","NonHeapMemoryUsage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of non-heap memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31549 |16 | |10169 |Memory: Non-Heap memory used |jmx["java.lang:type=Memory","NonHeapMemoryUsage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage outside the heap |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31550 |16 | |10169 |Memory: Object pending finalization count |jmx["java.lang:type=Memory","ObjectPendingFinalizationCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The approximate number of objects for which finalization is pending. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31551 |16 | |10169 |MemoryPool: CMS Old Gen committed |jmx["java.lang:type=MemoryPool,name=CMS Old Gen","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31552 |16 | |10169 |MemoryPool: CMS Old Gen maximum size |jmx["java.lang:type=MemoryPool,name=CMS Old Gen","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31553 |16 | |10169 |Threading: Total started thread count |jmx["java.lang:type=Threading","TotalStartedThreadCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads started since the JVM was launched. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31554 |3 | |10173 |VMware: Event log |vmware.eventlog[{$VMWARE.URL},skip] |1m |7d |0 |0 |2 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Collect VMware event log. See also: https://www.zabbix.com/documentation/5.0/manual/config/items/preprocessing/examples#filtering_vmware_event_log_records |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31555 |3 | |10173 |VMware: Full name |vmware.fullname[{$VMWARE.URL}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |VMware service full name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31556 |3 | |10173 |VMware: Version |vmware.version[{$VMWARE.URL}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |VMware service version. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31557 |3 | |10174 |VMware: Cluster name |vmware.vm.cluster.name[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Cluster name of the guest VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31558 |3 | |10174 |VMware: Swapped memory |vmware.vm.memory.size.swapped[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of guest physical memory swapped out to the VM's swap device by ESX. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31559 |3 | |10174 |VMware: Unshared storage space |vmware.vm.storage.unshared[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Total storage space, in bytes, occupied by the virtual machine across all datastores, that is not shared with any other virtual machine. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31560 |3 | |10174 |VMware: Uncommitted storage space |vmware.vm.storage.uncommitted[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Additional storage space, in bytes, potentially used by this virtual machine on all datastores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31561 |3 | |10174 |VMware: Committed storage space |vmware.vm.storage.committed[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Total storage space, in bytes, committed to this virtual machine across all datastores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31562 |3 | |10174 |VMware: Power state |vmware.vm.powerstate[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | | | | |NULL |12 | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The current power state of the virtual machine. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31563 |3 | |10174 |VMware: Memory size |vmware.vm.memory.size[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Total size of configured memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31564 |3 | |10174 |VMware: Host memory usage |vmware.vm.memory.size.usage.host[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of host physical memory allocated to the VM, accounting for saving from memory sharing with other VMs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31565 |3 | |10174 |VMware: Guest memory usage |vmware.vm.memory.size.usage.guest[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of guest physical memory that is being used by the VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31566 |3 | |10174 |VMware: Shared memory |vmware.vm.memory.size.shared[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of guest physical memory shared through transparent page sharing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31567 |3 | |10174 |VMware: Number of virtual CPUs |vmware.vm.cpu.num[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Number of virtual CPUs assigned to the guest. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31568 |3 | |10174 |VMware: Private memory |vmware.vm.memory.size.private[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Amount of memory backed by host memory and not being shared. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31569 |3 | |10174 |VMware: Compressed memory |vmware.vm.memory.size.compressed[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of memory currently in the compression cache for this VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31570 |3 | |10174 |VMware: Ballooned memory |vmware.vm.memory.size.ballooned[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of guest physical memory that is currently reclaimed through the balloon driver. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31571 |3 | |10174 |VMware: Hypervisor name |vmware.vm.hv.name[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Hypervisor name of the guest VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31572 |3 | |10174 |VMware: Datacenter name |vmware.vm.datacenter.name[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Datacenter name of the guest VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31573 |3 | |10174 |VMware: CPU usage |vmware.vm.cpu.usage[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |Hz | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Current upper-bound on CPU usage. The upper-bound is based on the host the virtual machine is current running on, as well as limits configured on the virtual machine itself or any parent resource pool. Valid while the virtual machine is running. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31574 |3 | |10174 |VMware: CPU ready |vmware.vm.cpu.ready[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Time that the virtual machine was ready, but could not get scheduled to run on the physical CPU during last measurement interval (VMware vCenter/ESXi Server performance counter sampling interval - 20 seconds) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31575 |3 | |10174 |VMware: Uptime |vmware.vm.uptime[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |System uptime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31576 |3 | |10175 |VMware: Cluster name |vmware.hv.cluster.name[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Cluster name of the guest VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31577 |3 | |10175 |VMware: Vendor |vmware.hv.hw.vendor[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The hardware vendor identification. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31578 |3 | |10175 |VMware: Version |vmware.hv.version[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Dot-separated version string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31579 |3 | |10175 |VMware: Uptime |vmware.hv.uptime[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |System uptime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31580 |3 | |10175 |VMware: Overall status |vmware.hv.status[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | | | | |NULL |13 | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The overall alarm status of the host: gray - unknown, green - ok, red - it has a problem, yellow - it might have a problem. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31581 |3 | |10175 |VMware: Health state rollup |vmware.hv.sensor.health.state[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | | | | |NULL |13 | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The host health state rollup sensor value: gray - unknown, green - ok, red - it has a problem, yellow - it might have a problem. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31582 |3 | |10175 |VMware: Number of bytes transmitted |vmware.hv.network.out[{$VMWARE.URL},{HOST.HOST},bps] |{$VMWARE_PERF_INTERVAL} |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |VMware hypervisor network output statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31583 |3 | |10175 |VMware: Number of bytes received |vmware.hv.network.in[{$VMWARE.URL},{HOST.HOST},bps] |{$VMWARE_PERF_INTERVAL} |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |VMware hypervisor network input statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31584 |3 | |10175 |VMware: Used memory |vmware.hv.memory.used[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Physical memory usage on the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31585 |3 | |10175 |VMware: Ballooned memory |vmware.hv.memory.size.ballooned[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of guest physical memory that is currently reclaimed through the balloon driver. Sum of all guest VMs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31586 |3 | |10175 |VMware: Bios UUID |vmware.hv.hw.uuid[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The hardware BIOS identification. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31587 |3 | |10175 |VMware: CPU usage |vmware.hv.cpu.usage[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |Hz | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Aggregated CPU usage across all cores on the host in Hz. This is only available if the host is connected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31588 |3 | |10175 |VMware: Model |vmware.hv.hw.model[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The system model identification. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31589 |3 | |10175 |VMware: Total memory |vmware.hv.hw.memory[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The physical memory size. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31590 |3 | |10175 |VMware: CPU threads |vmware.hv.hw.cpu.threads[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Number of physical CPU threads on the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31591 |3 | |10175 |VMware: CPU cores |vmware.hv.hw.cpu.num[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Number of physical CPU cores on the host. Physical CPU cores are the processors contained by a CPU package. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31592 |3 | |10175 |VMware: CPU model |vmware.hv.hw.cpu.model[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The CPU model. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31593 |3 | |10175 |VMware: CPU frequency |vmware.hv.hw.cpu.freq[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | |Hz | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The speed of the CPU cores. This is an average value if there are multiple speeds. The product of CPU frequency and number of cores is approximately equal to the sum of the MHz for all the individual cores on the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31594 |3 | |10175 |VMware: Full name |vmware.hv.fullname[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The complete product name, including the version information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31595 |3 | |10175 |VMware: Datacenter name |vmware.hv.datacenter.name[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Datacenter name of the hypervisor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31596 |3 | |10175 |VMware: Number of guest VMs |vmware.hv.vm.num[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Number of guest virtual machines. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31597 |3 | |10173 |Discover VMware clusters |vmware.cluster.discovery[{$VMWARE.URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL |Discovery of clusters |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31598 |3 | |10173 |Discover VMware datastores |vmware.datastore.discovery[{$VMWARE.URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31599 |3 | |10173 |Discover VMware hypervisors |vmware.hv.discovery[{$VMWARE.URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL |Discovery of hypervisors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31600 |3 | |10173 |Discover VMware VMs |vmware.vm.discovery[{$VMWARE.URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL |Discovery of guest virtual machines. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31601 |3 | |10174 |Network device discovery |vmware.vm.net.if.discovery[{$VMWARE.URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL |Discovery of all network devices. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31602 |3 | |10174 |Disk device discovery |vmware.vm.vfs.dev.discovery[{$VMWARE.URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL |Discovery of all disk devices. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31603 |3 | |10174 |Mounted filesystem discovery |vmware.vm.vfs.fs.discovery[{$VMWARE.URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL |Discovery of all guest file systems. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31604 |3 | |10175 |Datastore discovery |vmware.hv.datastore.discovery[{$VMWARE.URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31605 |3 | |10173 |VMware: Status of "{#CLUSTER.NAME}" cluster |vmware.cluster.status[{$VMWARE.URL},{#CLUSTER.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |13 | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware cluster status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31606 |3 | |10173 |VMware: Average read latency of the datastore {#DATASTORE} |vmware.datastore.read[{$VMWARE.URL},{#DATASTORE},latency] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |Amount of time for a read operation from the datastore (milliseconds). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31607 |3 | |10173 |VMware: Free space on datastore {#DATASTORE} (percentage) |vmware.datastore.size[{$VMWARE.URL},{#DATASTORE},pfree] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware datastore space in percentage from total. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31608 |3 | |10173 |VMware: Total size of datastore {#DATASTORE} |vmware.datastore.size[{$VMWARE.URL},{#DATASTORE}] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware datastore space in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31609 |3 | |10173 |VMware: Average write latency of the datastore {#DATASTORE} |vmware.datastore.write[{$VMWARE.URL},{#DATASTORE},latency] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |Amount of time for a write operation to the datastore (milliseconds). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31610 |3 | |10174 |VMware: Number of bytes received on interface {#IFDESC} |vmware.vm.net.if.in[{$VMWARE.URL},{HOST.HOST},{#IFNAME},bps] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine network interface input statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31611 |3 | |10174 |VMware: Number of packets received on interface {#IFDESC} |vmware.vm.net.if.in[{$VMWARE.URL},{HOST.HOST},{#IFNAME},pps] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine network interface input statistics (packets per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31612 |3 | |10174 |VMware: Number of bytes transmitted on interface {#IFDESC} |vmware.vm.net.if.out[{$VMWARE.URL},{HOST.HOST},{#IFNAME},bps] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine network interface output statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31613 |3 | |10174 |VMware: Number of packets transmitted on interface {#IFDESC} |vmware.vm.net.if.out[{$VMWARE.URL},{HOST.HOST},{#IFNAME},pps] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine network interface output statistics (packets per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31614 |3 | |10174 |VMware: Average number of bytes read from the disk {#DISKDESC} |vmware.vm.vfs.dev.read[{$VMWARE.URL},{HOST.HOST},{#DISKNAME},bps] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine disk device read statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31615 |3 | |10174 |VMware: Average number of reads from the disk {#DISKDESC} |vmware.vm.vfs.dev.read[{$VMWARE.URL},{HOST.HOST},{#DISKNAME},ops] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine disk device read statistics (operations per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31616 |3 | |10174 |VMware: Average number of bytes written to the disk {#DISKDESC} |vmware.vm.vfs.dev.write[{$VMWARE.URL},{HOST.HOST},{#DISKNAME},bps] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine disk device write statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31617 |3 | |10174 |VMware: Average number of writes to the disk {#DISKDESC} |vmware.vm.vfs.dev.write[{$VMWARE.URL},{HOST.HOST},{#DISKNAME},ops] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine disk device write statistics (operations per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31618 |3 | |10174 |VMware: Free disk space on {#FSNAME} |vmware.vm.vfs.fs.size[{$VMWARE.URL},{HOST.HOST},{#FSNAME},free] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine file system statistics (bytes). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31619 |3 | |10174 |VMware: Free disk space on {#FSNAME} (percentage) |vmware.vm.vfs.fs.size[{$VMWARE.URL},{HOST.HOST},{#FSNAME},pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine file system statistics (percentages). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31620 |3 | |10174 |VMware: Total disk space on {#FSNAME} |vmware.vm.vfs.fs.size[{$VMWARE.URL},{HOST.HOST},{#FSNAME},total] |1h |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine total disk space (bytes). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31621 |3 | |10174 |VMware: Used disk space on {#FSNAME} |vmware.vm.vfs.fs.size[{$VMWARE.URL},{HOST.HOST},{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine used disk space (bytes). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31622 |3 | |10175 |VMware: Average read latency of the datastore {#DATASTORE} |vmware.hv.datastore.read[{$VMWARE.URL},{HOST.HOST},{#DATASTORE},latency] |{$VMWARE_PERF_INTERVAL} |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |Average amount of time for a read operation from the datastore (milliseconds). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31623 |3 | |10175 |VMware: Free space on datastore {#DATASTORE} (percentage) |vmware.hv.datastore.size[{$VMWARE.URL},{HOST.HOST},{#DATASTORE},pfree] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware datastore space in percentage from total. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31624 |3 | |10175 |VMware: Total size of datastore {#DATASTORE} |vmware.hv.datastore.size[{$VMWARE.URL},{HOST.HOST},{#DATASTORE}] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware datastore space in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31625 |3 | |10175 |VMware: Average write latency of the datastore {#DATASTORE} |vmware.hv.datastore.write[{$VMWARE.URL},{HOST.HOST},{#DATASTORE},latency] |{$VMWARE_PERF_INTERVAL} |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |Average amount of time for a write operation to the datastore (milliseconds). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31626 |15 | |10327 |MSSQL: Percent of Adhoc queries running |mssql.percent_of_adhoc_queries |0;m0-59s3 |7d |365d |0 |0 | |% | | |NULL |NULL |last(mssql.sql_compilations_sec.rate) * 100 /&bsn;(last(mssql.batch_requests_sec.rate) + (last(mssql.batch_requests_sec.rate)=0)) | |0 | | | | |0 |NULL |The ratio of SQL compilations per second to Batch requests per second in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31627 |15 | |10327 |MSSQL: Full scans to Index searches ratio |mssql.scan_to_search |0;m0-59s3 |7d |365d |0 |0 | | | | |NULL |NULL |last(mssql.full_scans_sec.rate) / (last(mssql.index_searches_sec.rate) + (last(mssql.index_searches_sec.rate)=0)) | |0 | | | | |0 |NULL |The ratio of Full scans per second to Index searches per second. The threshold recommendation is strictly for OLTP workloads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31628 |15 | |10327 |MSSQL: Percent of Recompiled Transact-SQL Objects |mssql.percent_recompilations_to_compilations |0;m0-59s3 |7d |365d |0 |0 | |% | | |NULL |NULL |last(mssql.sql_recompilations_sec.rate) * 100 /&bsn;(last(mssql.sql_compilations_sec.rate) + (last(mssql.sql_compilations_sec.rate)=0)) | |0 | | | | |0 |NULL |The ratio of SQL re-compilations per second to SQL compilations per second in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31629 |0 | |10333 |Oracle: Ping |oracle.ping["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |30s |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Test the connection to Oracle Database state |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31630 |0 | |10333 |Oracle: Datafiles count |oracle.datafiles.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Current number of datafile. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31631 |0 | |10333 |Oracle: Get FRA stats |oracle.fra.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get FRA statistics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31632 |0 | |10333 |Oracle: Number of processes |oracle.proc.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31633 |0 | |10333 |Oracle: Get SGA stats |oracle.sga.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get SGA statistics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31634 |0 | |10333 |Oracle: Get PDB info |oracle.pdb.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get info about PDB databases on instansce. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31635 |0 | |10333 |Oracle: Get ASM stats |oracle.diskgroups.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get ASM disk groups stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31636 |0 | |10333 |Oracle: Get system metrics |oracle.sys.metrics["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |0;m0-59 |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The item gets system metric values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31637 |0 | |10333 |Oracle: Get instance state |oracle.instance.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The item gets state of the current instance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31638 |0 | |10333 |Oracle: Get system parameters |oracle.sys.params["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get a set of system parameter values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31639 |0 | |10333 |Oracle: Get PGA stats |oracle.pga.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get PGA statistics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31640 |0 | |10333 |Oracle: Redo logs available to switch |oracle.redolog.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of available for log switching inactive/unused REDO logs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31641 |0 | |10333 |Oracle: User's expire password |oracle.user.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |7d |365d |0 |0 | |days | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of days before zabbix account password expired. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31642 |0 | |10333 |Oracle: Get archive log info |oracle.archive.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |5m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31643 |0 | |10333 |Oracle: Get sessions stats |oracle.sessions.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}","{$ORACLE.SESSION.LOCK.MAX.TIME}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get sessions statistics. {$ORACLE.SESSION.LOCK.MAX.TIME} -- maximum seconds in the current wait condition for counting long time locked sessions. Default: 600 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31644 |0 | |10333 |Oracle: Get CDB and No-CDB info |oracle.cdb.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get info about CDB and No-CDB databases on instansce. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31645 |0 | |10333 |Oracle: Get tablespaces stats |oracle.ts.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get tablespaces stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31706 |0 | |10333 |Archive log discovery |oracle.archive.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Log archive destinations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31707 |0 | |10333 |Database discovery |oracle.db.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning databases in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31708 |0 | |10333 |ASM disk groups discovery |oracle.diskgroups.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ASM disk groups |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31709 |0 | |10333 |PDB discovery |oracle.pdb.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning PDB in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31710 |0 | |10333 |Tablespace discovery |oracle.ts.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning tablespaces in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31727 |11 | |10329 |Oracle: Get system metrics (2) |db.odbc.get[get_system_metrics_2,"{$ORACLE.DSN}"] |0;m0-59 |0 |0 |0 |4 | | | | |NULL |NULL |SELECT 'SGA::' &pipe;&pipe; INITCAP(pool) AS METRIC , SUM(bytes) AS VALUE FROM V$SGASTAT&bsn;WHERE pool IN ( 'java pool', 'large pool' ) GROUP BY pool&bsn;UNION&bsn;SELECT 'SGA::Shared Pool', SUM(bytes) FROM V$SGASTAT&bsn;WHERE pool = 'shared pool' AND name NOT IN ('library cache', 'dictionary cache', 'free memory', 'sql area')&bsn;UNION&bsn;SELECT 'SGA::' &pipe;&pipe; INITCAP(name), bytes FROM V$SGASTAT&bsn;WHERE pool IS NULL AND name IN ('log_buffer', 'fixed_sga')&bsn;UNION&bsn;SELECT 'SGA::Buffer_Cache', SUM(bytes) FROM V$SGASTAT&bsn;WHERE pool IS NULL AND name IN ('buffer_cache', 'db_block_buffers')&bsn;UNION&bsn;SELECT 'REDO::Available', count(*) from v$log t where t.status in ('INACTIVE', 'UNUSED')&bsn;UNION&bsn;SELECT 'USER::Expire password', ROUND(DECODE(SIGN(NVL(u.expiry_date, SYSDATE + 999) - SYSDATE),-1, 0, NVL(u.expiry_date, SYSDATE + 999) - SYSDATE)) exp_passwd_days_before&bsn;FROM dba_users u WHERE username = UPPER('{$ORACLE.USER}')&bsn;UNION&bsn; SELECT 'FRA::Space Limit', space_limit FROM V$RECOVERY_FILE_DEST&bsn;UNION&bsn; SELECT 'FRA::Space Used', space_used FROM V$RECOVERY_FILE_DEST&bsn;UNION&bsn; SELECT 'FRA::Space Reclaimable', space_reclaimable FROM V$RECOVERY_FILE_DEST&bsn;UNION&bsn; SELECT 'FRA::Number Of Files', number_of_files FROM V$RECOVERY_FILE_DEST&bsn;UNION&bsn; SELECT 'FRA::Usable Pct', DECODE(space_limit, 0, 0,(100-(100 *(space_used-space_reclaimable)/ space_limit))) AS VALUE FROM V$RECOVERY_FILE_DEST&bsn;UNION&bsn; SELECT 'FRA::Restore Point', COUNT(*) FROM V$RESTORE_POINT;| |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL |The item gets system metric values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31728 |11 | |10329 |Oracle: Get system metrics (1) |db.odbc.get[get_system_metrics_1,"{$ORACLE.DSN}"] |0;m0-59 |0 |0 |0 |4 | | | | |NULL |NULL |SELECT 'SYS::' &pipe;&pipe; METRIC_NAME AS METRIC, ROUND(VALUE,3) AS VALUE&bsn; FROM V$SYSMETRIC WHERE GROUP_ID = 2&bsn;UNION&bsn; SELECT 'SYSPARAM::' &pipe;&pipe; INITCAP(NAME), to_number(VALUE)&bsn; FROM V$SYSTEM_PARAMETER WHERE NAME IN ('sessions', 'processes', 'db_files')&bsn;UNION&bsn; SELECT 'SESSION::Long time locked' ,count(*) FROM V$SESSION s WHERE s.BLOCKING_SESSION IS NOT NULL AND s.BLOCKING_SESSION_STATUS='VALID' AND s.SECONDS_IN_WAIT > {$ORACLE.SESSION.LOCK.MAX.TIME}&bsn;UNION&bsn;SELECT 'SESSION::Lock rate' ,(cnt_block / cnt_all)* 100 pct&bsn;FROM ( SELECT COUNT(*) cnt_block FROM v$session WHERE blocking_session IS NOT NULL), ( SELECT COUNT(*) cnt_all FROM v$session)&bsn;UNION&bsn; SELECT 'SESSION::Total', COUNT(*) FROM V$SESSION&bsn;UNION&bsn;SELECT 'SESSION::' &pipe;&pipe; INITCAP(STATUS)&pipe;&pipe; ' ' &pipe;&pipe; INITCAP(TYPE), COUNT(*) FROM V$SESSION GROUP BY STATUS, TYPE&bsn;UNION&bsn;SELECT 'SESSION::Concurrency rate', NVL(ROUND(SUM(duty_act.cnt*100 / num_cores.val)), 0)&bsn;FROM&bsn;( SELECT DECODE(session_state, 'ON CPU', 'CPU', wait_class) wait_class, ROUND(COUNT(*)/(60 * 15), 1) cnt&bsn;FROM v$active_session_history sh&bsn;WHERE sh.sample_time >= SYSDATE - 15 / 1440 AND DECODE(session_state, 'ON CPU', 'CPU', wait_class) IN('Concurrency')&bsn;GROUP BY DECODE(session_state, 'ON CPU', 'CPU', wait_class)) duty_act,&bsn;( SELECT SUM(value) val FROM v$osstat WHERE stat_name = 'NUM_CPU_CORES') num_cores&bsn;UNION&bsn; SELECT 'PGA::' &pipe;&pipe; INITCAP(NAME), VALUE FROM V$PGASTAT&bsn; UNION&bsn;SELECT 'PROC::Procnum', COUNT(*) FROM v$process&bsn;UNION&bsn;SELECT 'DATAFILE::Count', COUNT(*) FROM v$datafile;| |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL |The item gets system metric values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31787 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10] |10233 |Temperature sensor discovery |mtxrHlTemperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |MIKROTIK-MIB::mtxrHlTemperature&eol;Since temperature sensor is not available on all Mikrotik hardware,&eol;this is done to avoid unsupported items. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31788 |20 |discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7] |10233 |AP channel discovery |mtxrWlAp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |MIKROTIK-MIB::mtxrWlAp |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31789 |20 |discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10233 |CAPsMAN AP channel discovery |mtxrWlCMChannel.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |MIKROTIK-MIB::mtxrWlCMChannel |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31790 |20 |1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX} |10233 |Device: Temperature |sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrHlTemperature Device temperature in Celsius (degrees C).&eol;Might be missing in entry models (RB750, RB450G..).&eol;&eol;Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31791 |20 |1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP authenticated clients |ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlApAuthClientCount Number of authentication clients. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31792 |20 |1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP band |ssid.band[mtxrWlApBand.{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlApBand |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31793 |20 |1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): SSID |ssid.name[mtxrWlApSsid.{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlApSsid Service Set Identifier. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31794 |20 |1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP noise floor |ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlApNoiseFloor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31795 |20 |1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP registered clients |ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlApClientCount Client established connection to AP, but didn't finish all authetncation procedures for full connection. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31796 |20 |1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP authenticated clients |ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlCMAuthClientCount Number of authentication clients. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31797 |20 |1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP channel |ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlCMChannel |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31798 |20 |1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP registered clients |ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlCMRegClientCount Client established connection to AP, but didn't finish all authetncation procedures for full connection. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31799 |20 |1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP state |ssid.state[mtxrWlCMState.{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlCMState Wireless interface state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31800 |0 | |10334 |Ceph: Get df |ceph.df.details["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31801 |0 | |10334 |Ceph: Get OSD dump |ceph.osd.dump["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31802 |0 | |10334 |Ceph: Get overall cluster status |ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31803 |0 | |10334 |Ceph: Ping |ceph.ping["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31804 |0 | |10334 |Ceph: Get OSD stats |ceph.osd.stats["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31851 |0 | |10334 |OSD |ceph.osd.discovery["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31852 |0 | |10334 |Pool |ceph.pool.discovery["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31868 |0 | |10335 |PHP-FPM: Get status page |web.page.get["{$PHP_FPM.HOST}","{$PHP_FPM.STATUS.PAGE}?json","{$PHP_FPM.PORT}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31869 |0 | |10335 |PHP-FPM: php-fpm_ping |web.page.get["{$PHP_FPM.HOST}","{$PHP_FPM.PING.PAGE}","{$PHP_FPM.PORT}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31870 |0 | |10335 |PHP-FPM: Number of processes running |proc.num["{$PHP_FPM.PROCESS_NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31871 |15 | |10335 |PHP-FPM: Queue usage |php-fpm.listen_queue_usage |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(php-fpm.listen_queue)/(last(php-fpm.listen_queue_len)+last(php-fpm.listen_queue_len)=0)*100 | |0 | | | | |0 |NULL |Queue utilization |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31872 |0 | |10335 |PHP-FPM: Memory usage (rss) |proc.mem["{$PHP_FPM.PROCESS_NAME}",,,,rss] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Resident set size memory used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31873 |0 | |10335 |PHP-FPM: Memory usage, % |proc.mem["{$PHP_FPM.PROCESS_NAME}",,,,pmem] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory used percentage relative to total memory available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31874 |0 | |10335 |PHP-FPM: CPU utilization |proc.cpu.util["{$PHP_FPM.PROCESS_NAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Process CPU utilization percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31891 |15 | |10336 |PHP-FPM: Queue usage |php-fpm.listen_queue_usage |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(php-fpm.listen_queue)/(last(php-fpm.listen_queue_len)+last(php-fpm.listen_queue_len)=0)*100 | |0 | | | | |0 |NULL |Queue utilization |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31892 |19 | |10336 |PHP-FPM: Get status page |php-fpm.get_status |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$PHP_FPM.SCHEME}://{$PHP_FPM.HOST}:{$PHP_FPM.PORT}/{$PHP_FPM.STATUS.PAGE}?json | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31893 |19 | |10336 |PHP-FPM: Get ping page |php-fpm.get_ping |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$PHP_FPM.SCHEME}://{$PHP_FPM.HOST}:{$PHP_FPM.PORT}/{$PHP_FPM.PING.PAGE} | | |200 |1 |0 | |2 |0 |0 |0 |0 |0 |0 |
-ROW |31910 |3 | |10337 |Squid: Service ping |net.tcp.service[tcp,,{$SQUID.HTTP.PORT}] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31911 |20 |1.3.6.1.4.1.3495.1.3.1.7.0 |10337 |Squid: Objects count |squid[cacheNumObjCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of objects stored by the cache |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31912 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.6.5 |10337 |Squid: ICP query service time per 5 minutes |squid[cacheIcpQuerySvcTime.5] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |ICP query service time per 5 minutes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31913 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.6.60 |10337 |Squid: ICP query service time per hour |squid[cacheIcpQuerySvcTime.60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |ICP query service time per hour |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31914 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.7.5 |10337 |Squid: ICP reply service time per 5 minutes |squid[cacheIcpReplySvcTime.5] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |ICP reply service time per 5 minutes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31915 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.7.60 |10337 |Squid: ICP reply service time per hour |squid[cacheIcpReplySvcTime.60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |ICP reply service time per hour |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31916 |20 |1.3.6.1.4.1.3495.1.4.1.3.0 |10337 |Squid: IP cache hits per second |squid[cacheIpHits] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of IP Cache hits |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31917 |20 |1.3.6.1.4.1.3495.1.4.1.6.0 |10337 |Squid: IP cache misses per second |squid[cacheIpMisses] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of IP Cache misses |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31918 |20 |1.3.6.1.4.1.3495.1.4.1.2.0 |10337 |Squid: IP cache requests per second |squid[cacheIpRequests] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of IP Cache requests |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31919 |20 |1.3.6.1.4.1.3495.1.3.1.6.0 |10337 |Squid: Memory maximum resident size |squid[cacheMaxResSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum Resident Size |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31920 |20 |1.3.6.1.4.1.3495.1.2.5.1.0 |10337 |Squid: Memory maximum cache size |squid[cacheMemMaxSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The value of the cache_mem parameter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31921 |20 |1.3.6.1.4.1.3495.1.3.1.3.0 |10337 |Squid: Memory cache usage |squid[cacheMemUsage] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total accounted memory |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31922 |20 |1.3.6.1.4.1.3495.1.3.2.1.1.0 |10337 |Squid: HTTP requests received per second |squid[cacheProtoClientHttpRequests] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of HTTP requests received |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31923 |20 |1.3.6.1.4.1.3495.1.3.2.1.7.0 |10337 |Squid: ICP messages received per second |squid[cacheIcpPktsRecv] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of ICP messages received |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31924 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.10.1 |10337 |Squid: Byte hit ratio per 1 minute |squid[cacheRequestByteRatio.1] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Byte Hit Ratios |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31925 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.10.5 |10337 |Squid: Byte hit ratio per 5 minutes |squid[cacheRequestByteRatio.5] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Byte Hit Ratios |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31926 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.10.60 |10337 |Squid: Byte hit ratio per 1 hour |squid[cacheRequestByteRatio.60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Byte Hit Ratios |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31927 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.9.1 |10337 |Squid: Request hit ratio per 1 minute |squid[cacheRequestHitRatio.1] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Byte Hit Ratios |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31928 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.9.5 |10337 |Squid: Request hit ratio per 5 minutes |squid[cacheRequestHitRatio.5] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Byte Hit Ratios |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31929 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.9.60 |10337 |Squid: Request hit ratio per 1 hour |squid[cacheRequestHitRatio.60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Byte Hit Ratios |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31930 |20 |1.3.6.1.4.1.3495.1.2.5.3.0 |10337 |Squid: Cache swap high water mark |squid[cacheSwapHighWM] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache Swap High Water Mark |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31931 |20 |1.3.6.1.4.1.3495.1.2.5.4.0 |10337 |Squid: Cache swap low water mark |squid[cacheSwapLowWM] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache Swap Low Water Mark |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31932 |20 |1.3.6.1.4.1.3495.1.2.5.2.0 |10337 |Squid: Cache swap directory size |squid[cacheSwapMaxSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total of the cache_dir space allocated |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31933 |20 |1.3.6.1.4.1.3495.1.3.1.1.0 |10337 |Squid: Sys page faults per second |squid[cacheSysPageFaults] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Page faults with physical I/O |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31934 |20 |1.3.6.1.4.1.3495.1.1.3.0 |10337 |Squid: Uptime |squid[cacheUptime] |5m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The Uptime of the cache in timeticks (in hundredths of a second) with preprocessing |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31935 |20 |1.3.6.1.4.1.3495.1.3.2.1.6.0 |10337 |Squid: ICP messages sent per second |squid[cacheIcpPktsSent] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of ICP messages sent |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31936 |20 |1.3.6.1.4.1.3495.1.3.2.1.8.0 |10337 |Squid: ICP traffic transmitted per second |squid[cacheIcpKbSent] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of ICP traffic transmitted |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31937 |20 |1.3.6.1.4.1.3495.1.3.1.5.0 |10337 |Squid: CPU usage |squid[cacheCpuUsage] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The percentage use of the CPU |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31938 |20 |1.3.6.1.4.1.3495.1.4.2.3.0 |10337 |Squid: FQDN cache hits per second |squid[cacheFqdnHits] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of FQDN Cache hits |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31939 |20 |1.3.6.1.4.1.3495.1.3.1.12.0 |10337 |Squid: File descriptor count - current used |squid[cacheCurrentFileDescrCnt] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of file descriptors in use |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31940 |20 |1.3.6.1.4.1.3495.1.3.1.13.0 |10337 |Squid: File descriptor count - current maximum |squid[cacheCurrentFileDescrMax] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Highest number of file descriptors in use |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31941 |20 |1.3.6.1.4.1.3495.1.3.1.8.0 |10337 |Squid: Objects LRU expiration age |squid[cacheCurrentLRUExpiration] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Storage LRU Expiration Age |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31942 |20 |1.3.6.1.4.1.3495.1.3.1.11.0 |10337 |Squid: File descriptor count - current reserved |squid[cacheCurrentResFileDescrCnt] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Reserved number of file descriptors |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31943 |20 |1.3.6.1.4.1.3495.1.3.2.1.14.0 |10337 |Squid: Cache swap current size |squid[cacheCurrentSwapSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Storage Swap Size |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31944 |20 |1.3.6.1.4.1.3495.1.3.1.9.0 |10337 |Squid: Objects unlinkd requests |squid[cacheCurrentUnlinkRequests] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Requests given to unlinkd |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31945 |20 |1.3.6.1.4.1.3495.1.3.1.10.0 |10337 |Squid: File descriptor count - current available |squid[cacheCurrentUnusedFDescrCnt] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Available number of file descriptors |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31946 |20 |1.3.6.1.4.1.3495.1.4.3.2.0 |10337 |Squid: DNS server replies per second |squid[cacheDnsReplies] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of external dns server replies |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31947 |20 |1.3.6.1.4.1.3495.1.4.3.1.0 |10337 |Squid: DNS server requests per second |squid[cacheDnsRequests] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of external dns server requests |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31948 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.8.5 |10337 |Squid: DNS service time per 5 minutes |squid[cacheDnsSvcTime.5] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |DNS service time per 5 minutes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31949 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.8.60 |10337 |Squid: DNS service time per hour |squid[cacheDnsSvcTime.60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |DNS service time per hour |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31950 |20 |1.3.6.1.4.1.3495.1.4.2.6.0 |10337 |Squid: FQDN cache misses per second |squid[cacheFqdnMisses] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of FQDN Cache misses |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31951 |20 |1.3.6.1.4.1.3495.1.3.2.1.9.0 |10337 |Squid: ICP traffic received per second |squid[cacheIcpKbRecv] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of ICP traffic received |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31952 |20 |1.3.6.1.4.1.3495.1.4.2.2.0 |10337 |Squid: FQDN cache requests per second |squid[cacheFqdnRequests] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of FQDN Cache requests |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31953 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.2.5 |10337 |Squid: HTTP all service time per 5 minutes |squid[cacheHttpAllSvcTime.5] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |HTTP all service time per 5 minutes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31954 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.2.60 |10337 |Squid: HTTP all service time per hour |squid[cacheHttpAllSvcTime.60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |HTTP all service time per hour |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31955 |20 |1.3.6.1.4.1.3495.1.3.2.1.3.0 |10337 |Squid: HTTP Errors sent per second |squid[cacheHttpErrors] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of HTTP Errors sent to clients |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31956 |20 |1.3.6.1.4.1.3495.1.3.2.1.2.0 |10337 |Squid: HTTP Hits sent from cache per second |squid[cacheHttpHits] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of HTTP Hits sent to clients from cache |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31957 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.5.5 |10337 |Squid: HTTP miss service time per 5 minutes |squid[cacheHttpHitSvcTime.5] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |HTTP hit service time per 5 minutes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31958 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.5.60 |10337 |Squid: HTTP hit service time per hour |squid[cacheHttpHitSvcTime.60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |HTTP hit service time per hour |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31959 |20 |1.3.6.1.4.1.3495.1.3.2.1.4.0 |10337 |Squid: HTTP traffic received per second |squid[cacheHttpInKb] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of HTTP traffic received from clients |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31960 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.3.5 |10337 |Squid: HTTP miss service time per 5 minutes |squid[cacheHttpMissSvcTime.5] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |HTTP miss service time per 5 minutes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31961 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.3.60 |10337 |Squid: HTTP miss service time per hour |squid[cacheHttpMissSvcTime.60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |HTTP miss service time per hour |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31962 |20 |1.3.6.1.4.1.3495.1.3.2.1.5.0 |10337 |Squid: HTTP traffic sent per second |squid[cacheHttpOutKb] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of HTTP traffic sent to clients |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31963 |20 |1.3.6.1.4.1.3495.1.2.3.0 |10337 |Squid: Version |squid[cacheVersionId] |1m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache Software Version |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31964 |20 |discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10233 |LTE modem discovery |mtxrLTEModem.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |MIKROTIK-MIB::mtxrLTEModemInterfaceIndex |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31965 |20 |1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP |lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dbm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrLTEModemSignalRSRP Reference Signal Received Power. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31966 |20 |1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ |lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |db | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrLTEModemSignalRSRQ Reference Signal Received Quality. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31967 |20 |1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI |lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dbm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrLTEModemSignalRSSI Received Signal Strength Indicator. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31968 |20 |1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): LTE modem SINR |lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |db | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31969 |3 | |10338 |Asterisk: Service status |net.tcp.service["tcp","{HOST.CONN}","{$AMI.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Asterisk Manager API port avalability. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31970 |3 | |10338 |Asterisk: Service response time |net.tcp.service.perf["tcp","{HOST.CONN}","{$AMI.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Asterisk Manager API performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31971 |19 | |10338 |Asterisk: Get stats |asterisk.get_stats |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Asterisk system information in JSON format. |0 |30d |0 | |NULL |3s |{$AMI.URL} |[{"action":"login"},{"username":"{$AMI.USERNAME}"},{"secret":"{$AMI.SECRET}"}] | |200 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
-ROW |32012 |19 | |10339 |Get DataNodes states |hadoop.datanodes.get |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$HADOOP.NAMENODE.HOST}:{$HADOOP.NAMENODE.PORT}/jmx?qry=Hadoop:service=NameNode,name=NameNodeInfo | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32013 |19 | |10339 |Get NodeManagers states |hadoop.nodemanagers.get |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$HADOOP.RESOURCEMANAGER.HOST}:{$HADOOP.RESOURCEMANAGER.PORT}/jmx?qry=Hadoop:service=ResourceManager,name=RMNMInfo | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32014 |3 | |10339 |NameNode: Service status |net.tcp.service["tcp","{$HADOOP.NAMENODE.HOST}","{$HADOOP.NAMENODE.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Hadoop NameNode API port availability. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32015 |3 | |10339 |ResourceManager: Service response time |net.tcp.service.perf["tcp","{$HADOOP.RESOURCEMANAGER.HOST}","{$HADOOP.RESOURCEMANAGER.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Hadoop ResourceManager API performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32016 |3 | |10339 |NameNode: Service response time |net.tcp.service.perf["tcp","{$HADOOP.NAMENODE.HOST}","{$HADOOP.NAMENODE.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Hadoop NameNode API performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32017 |19 | |10339 |Get ResourceManager stats |hadoop.resourcemanager.get |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$HADOOP.RESOURCEMANAGER.HOST}:{$HADOOP.RESOURCEMANAGER.PORT}/jmx | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32018 |3 | |10339 |ResourceManager: Service status |net.tcp.service["tcp","{$HADOOP.RESOURCEMANAGER.HOST}","{$HADOOP.RESOURCEMANAGER.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Hadoop ResourceManager API port availability. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32019 |19 | |10339 |Get NameNode stats |hadoop.namenode.get |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$HADOOP.NAMENODE.HOST}:{$HADOOP.NAMENODE.PORT}/jmx | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32046 |19 | |10339 |Data node discovery |hadoop.datanode.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s |{$HADOOP.NAMENODE.HOST}:{$HADOOP.NAMENODE.PORT}/jmx?qry=Hadoop:service=NameNode,name=NameNodeInfo | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32047 |19 | |10339 |Node manager discovery |hadoop.nodemanager.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s |{$HADOOP.RESOURCEMANAGER.HOST}:{$HADOOP.RESOURCEMANAGER.PORT}/jmx?qry=Hadoop:service=ResourceManager,name=RMNMInfo | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32048 |19 | |10339 |Hadoop DataNode {#HOSTNAME}: Get stats |hadoop.datanode.get[{#HOSTNAME}] |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s |{#INFOADDR}/jmx | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32049 |19 | |10339 |Hadoop NodeManager {#HOSTNAME}: Get stats |hadoop.nodemanager.get[{#HOSTNAME}] |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s |{#NODEHTTPADDRESS}/jmx | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32071 |16 | |10340 |Kafka: Leader election per second |jmx["kafka.controller:type=ControllerStats,name=LeaderElectionRateAndTimeMs","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of leader elections per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32072 |16 | |10340 |Kafka: Request handler average idle percent |jmx["kafka.server:type=KafkaRequestHandlerPool,name=RequestHandlerAvgIdlePercent","OneMinuteRate"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Indicates the percentage of time that the request handler (IO) threads are not in use. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32073 |16 | |10340 |Kafka: Fetch-Consumer request total time, mean |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=UpdateMetadata","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time for a request to update metadata. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32074 |16 | |10340 |Kafka: Network processor average idle percent |jmx["kafka.network:type=SocketServer,name=NetworkProcessorAvgIdlePercent","Value"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The average percentage of time that the network processors are idle. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32075 |16 | |10340 |Kafka: Uptime |jmx["kafka.server:type=app-info","start-time-ms"] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Service uptime in seconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32076 |16 | |10340 |Kafka: Version |jmx["kafka.server:type=app-info","version"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Current version of brocker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32077 |16 | |10340 |Kafka: Bytes in per second |jmx["kafka.server:type=BrokerTopicMetrics,name=BytesInPerSec","Count"] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The rate at which data sent from producers is consumed by the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32078 |16 | |10340 |Kafka: Bytes out per second |jmx["kafka.server:type=BrokerTopicMetrics,name=BytesOutPerSec","Count"] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The rate at which data is fetched and read from the broker by consumers. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32079 |16 | |10340 |Kafka: Bytes rejected per second |jmx["kafka.server:type=BrokerTopicMetrics,name=BytesRejectedPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The rate at which bytes rejected per second by the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32080 |16 | |10340 |Kafka: Client fetch request failed per second |jmx["kafka.server:type=BrokerTopicMetrics,name=FailedFetchRequestsPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of client fetch request failures per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32081 |16 | |10340 |Kafka: Produce requests failed per second |jmx["kafka.server:type=BrokerTopicMetrics,name=FailedProduceRequestsPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of failed produce requests per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32082 |16 | |10340 |Kafka: Messages in per second |jmx["kafka.server:type=BrokerTopicMetrics,name=MessagesInPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The rate at which individual messages are consumed by the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32083 |16 | |10340 |Kafka: Requests in producer purgatory |jmx["kafka.server:type=DelayedOperationPurgatory,name=PurgatorySize,delayedOperation=Fetch","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of requests waiting in producer purgatory. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32084 |16 | |10340 |Kafka: Requests in fetch purgatory |jmx["kafka.server:type=DelayedOperationPurgatory,name=PurgatorySize,delayedOperation=Produce","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of requests waiting in fetch purgatory. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32085 |16 | |10340 |Kafka: Replication maximum lag |jmx["kafka.server:type=ReplicaFetcherManager,name=MaxLag,clientId=Replica","Value"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The maximum lag between the time that messages are received by the leader replica and by the follower replicas. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32086 |16 | |10340 |Kafka: UpdateMetadata request total time, p95 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=UpdateMetadata","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time for update metadata requests for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32087 |16 | |10340 |Kafka: ISR expands per second |jmx["kafka.server:type=ReplicaManager,name=IsrExpandsPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The rate at which the number of ISRs in the broker increases. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32088 |16 | |10340 |Kafka: ISR shrink per second |jmx["kafka.server:type=ReplicaManager,name=IsrShrinksPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Rate of replicas leaving the ISR pool. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32089 |16 | |10340 |Kafka: Leader count |jmx["kafka.server:type=ReplicaManager,name=LeaderCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of replicas for which this broker is the leader. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32090 |16 | |10340 |Kafka: Partition count |jmx["kafka.server:type=ReplicaManager,name=PartitionCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of partitions in the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32091 |16 | |10340 |Kafka: Number of reassigning partitions |jmx["kafka.server:type=ReplicaManager,name=ReassigningPartitions","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of reassigning leader partitions on a broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32092 |16 | |10340 |Kafka: Under minimum ISR partition count |jmx["kafka.server:type=ReplicaManager,name=UnderMinIsrPartitionCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of partitions under the minimum In-Sync Replica (ISR) count. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32093 |16 | |10340 |Kafka: Under replicated partitions |jmx["kafka.server:type=ReplicaManager,name=UnderReplicatedPartitions","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of partitions that have not been fully replicated in the follower replicas (the number of non-reassigning replicas - the number of ISR > 0). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32094 |16 | |10340 |Kafka: Request queue size |jmx["kafka.server:type=Request","queue-size"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The size of the delay queue. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32095 |16 | |10340 |Kafka: ZooKeeper connection status |jmx["kafka.server:type=SessionExpireListener,name=SessionState","Value"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Connection status of broker's ZooKeeper session. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32096 |16 | |10340 |Kafka: ZooKeeper disconnect rate |jmx["kafka.server:type=SessionExpireListener,name=ZooKeeperDisconnectsPerSec","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |ZooKeeper client disconnect per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32097 |16 | |10340 |Kafka: ZooKeeper session expiration rate |jmx["kafka.server:type=SessionExpireListener,name=ZooKeeperExpiresPerSec","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |ZooKeeper client session expiration per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32098 |16 | |10340 |Kafka: ZooKeeper readonly rate |jmx["kafka.server:type=SessionExpireListener,name=ZooKeeperReadOnlyConnectsPerSec","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |ZooKeeper client readonly per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32099 |16 | |10340 |Kafka: ZooKeeper sync rate |jmx["kafka.server:type=SessionExpireListener,name=ZooKeeperSyncConnectsPerSec","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |ZooKeeper client sync per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32100 |16 | |10340 |Kafka: UpdateMetadata request total time, p99 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=UpdateMetadata","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time for update metadata requests for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32101 |16 | |10340 |Kafka: Produce request total time, mean |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=Produce","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time in ms to serve the Produce request. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32102 |16 | |10340 |Kafka: Unclean leader election per second |jmx["kafka.controller:type=ControllerStats,name=UncleanLeaderElectionsPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of “unclean” elections per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32103 |16 | |10340 |Kafka: Produce response send time, p95 |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=Produce","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The time taken, in milliseconds, to send the response for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32104 |16 | |10340 |Kafka: Controller state on broker |jmx["kafka.controller:type=KafkaController,name=ActiveControllerCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |122 | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |One indicates that the broker is the controller for the cluster. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32105 |16 | |10340 |Kafka: Offline partitions count |jmx["kafka.controller:type=KafkaController,name=OfflinePartitionsCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of partitions that don't have an active leader. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32106 |16 | |10340 |Kafka: Ineligible pending replica deletes |jmx["kafka.controller:type=KafkaController,name=ReplicasIneligibleToDeleteCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of ineligible pending replica deletes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32107 |16 | |10340 |Kafka: Pending replica deletes |jmx["kafka.controller:type=KafkaController,name=ReplicasToDeleteCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of pending replica deletes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32108 |16 | |10340 |Kafka: Ineligible pending topic deletes |jmx["kafka.controller:type=KafkaController,name=TopicsIneligibleToDeleteCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of ineligible pending topic deletes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32109 |16 | |10340 |Kafka: Pending topic deletes |jmx["kafka.controller:type=KafkaController,name=TopicsToDeleteCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of pending topic deletes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32110 |16 | |10340 |Kafka: Offline log directory count |jmx["kafka.log:type=LogManager,name=OfflineLogDirectoryCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of offline log directories (for example, after a hardware failure). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32111 |16 | |10340 |Kafka: Fetch-Consumer response send time, p95 |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchConsumer","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The time taken, in milliseconds, to send the response for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32112 |16 | |10340 |Kafka: Fetch-Consumer response send time, p99 |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchConsumer","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The time taken, in milliseconds, to send the response for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32113 |16 | |10340 |Kafka: Fetch-Consumer response send time, mean |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchConsumer","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time taken, in milliseconds, to send the response. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32114 |16 | |10340 |Kafka: Fetch-Follower response send time, p95 |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchFollower","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The time taken, in milliseconds, to send the response for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32115 |16 | |10340 |Kafka: Fetch-Follower response send time, p99 |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchFollower","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The time taken, in milliseconds, to send the response for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32116 |16 | |10340 |Kafka: Fetch-Follower response send time, mean |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchFollower","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time taken, in milliseconds, to send the response. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32117 |16 | |10340 |Kafka: Produce response send time, p99 |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=Produce","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The time taken, in milliseconds, to send the response for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32118 |16 | |10340 |Kafka: Produce request total time, p99 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=Produce","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time in ms to serve the Produce requests for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32119 |16 | |10340 |Kafka: Produce response send time, mean |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=Produce","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time taken, in milliseconds, to send the response. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32120 |16 | |10340 |Kafka: Temporary memory size in bytes (Fetch), max |jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Fetch","Max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The maximum of temporary memory used for converting message formats and decompressing messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32121 |16 | |10340 |Kafka: Temporary memory size in bytes (Fetch), min |jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Fetch","Mean"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The minimum of temporary memory used for converting message formats and decompressing messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32122 |16 | |10340 |Kafka: Temporary memory size in bytes (Produce), max |jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Produce","Max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The maximum of temporary memory used for converting message formats and decompressing messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32123 |16 | |10340 |Kafka: Temporary memory size in bytes (Produce), avg |jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Produce","Mean"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The amount of temporary memory used for converting message formats and decompressing messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32124 |16 | |10340 |Kafka: Temporary memory size in bytes (Produce), min |jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Produce","Min"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The minimum of temporary memory used for converting message formats and decompressing messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32125 |16 | |10340 |Kafka: Fetch-Consumer request total time, p95 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchConsumer","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time in ms to serve the Fetch-Consumer request for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32126 |16 | |10340 |Kafka: Fetch-Consumer request total time, p99 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchConsumer","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time in ms to serve the specified Fetch-Consumer for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32127 |16 | |10340 |Kafka: Fetch-Consumer request total time, mean |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchConsumer","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time in ms to serve the Fetch-Consumer request. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32128 |16 | |10340 |Kafka: Fetch-Follower request total time, p95 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchFollower","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time in ms to serve the Fetch-Follower request for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32129 |16 | |10340 |Kafka: Fetch-Follower request total time, p99 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchFollower","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time in ms to serve the Fetch-Follower request for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32130 |16 | |10340 |Kafka: Fetch-Follower request total time, mean |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchFollower","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time in ms to serve the Fetch-Follower request. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32131 |16 | |10340 |Kafka: Produce request total time, p95 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=Produce","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time in ms to serve the Produce requests for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32132 |16 | |10340 |Kafka: ZooKeeper client request latency |jmx["kafka.server:type=ZooKeeperClientMetrics,name=ZooKeeperRequestLatencyMs","Count"] |1m |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Latency in millseconds for ZooKeeper requests from broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32133 |16 | |10340 |Topic Metrics (read) |jmx.discovery[beans,"kafka.server:type=BrokerTopicMetrics,name=BytesOutPerSec,topic=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32134 |16 | |10340 |Topic Metrics (errors) |jmx.discovery[beans,"kafka.server:type=BrokerTopicMetrics,name=BytesRejectedPerSec,topic=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32135 |16 | |10340 |Topic Metrics (write) |jmx.discovery[beans,"kafka.server:type=BrokerTopicMetrics,name=MessagesInPerSec,topic=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32136 |16 | |10340 |Kafka {#JMXTOPIC}: Bytes out per second |jmx["kafka.server:type=BrokerTopicMetrics,name=BytesOutPerSec,topic={#JMXTOPIC}","Count"] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |2 |NULL |The rate at which data is fetched and read from the broker by consumers (by topic). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32137 |16 | |10340 |Kafka {#JMXTOPIC}: Bytes rejected per second |jmx["kafka.server:type=BrokerTopicMetrics,name=BytesRejectedPerSec,topic={#JMXTOPIC}","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |2 |NULL |Rejected bytes rate by topic. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32138 |16 | |10340 |Kafka {#JMXTOPIC}: Bytes in per second |jmx["kafka.server:type=BrokerTopicMetrics,name=BytesInPerSec,topic={#JMXTOPIC}","Count"] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |2 |NULL |The rate at which data sent from producers is consumed by topic. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32139 |16 | |10340 |Kafka {#JMXTOPIC}: Messages in per second |jmx["kafka.server:type=BrokerTopicMetrics,name=MessagesInPerSec,topic={#JMXTOPIC}","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |2 |NULL |The rate at which individual messages are consumed by topic. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32140 |16 | |10260 |Protocol handlers discovery |jmx.discovery[attributes,"Catalina:type=ProtocolHandler,port=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |1 |NULL |Discovery for ProtocolHandler |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32141 |16 | |10260 |Global request processors discovery |jmx.discovery[beans,"Catalina:type=GlobalRequestProcessor,name=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |1 |NULL |Discovery for GlobalRequesProcessor |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32142 |16 | |10260 |Contexts discovery |jmx.discovery[beans,"Catalina:type=Manager,host=*,context=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |1 |NULL |Discovery for contexts |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32143 |16 | |10260 |Thread pools discovery |jmx.discovery[beans,"Catalina:type=ThreadPool,name=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |1 |NULL |Discovery for ThreadPool |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32144 |16 | |10260 |{#JMXVALUE}: Gzip compression status |jmx[{#JMXOBJ},compression] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Gzip compression status on {#JMXNAME}. Enabling gzip compression may save server bandwidth. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32145 |16 | |10260 |{#JMXNAME}: Bytes received per second |jmx[{#JMXOBJ},bytesReceived] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Bytes received rate by processor {#JMXNAME} |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32146 |16 | |10260 |{#JMXNAME}: Bytes sent per second |jmx[{#JMXOBJ},bytesSent] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Bytes sent rate by processor {#JMXNAME} |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32147 |16 | |10260 |{#JMXNAME}: Errors per second |jmx[{#JMXOBJ},errorCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Error rate of request processor {#JMXNAME} |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32148 |16 | |10260 |{#JMXNAME}: Requests processing time |jmx[{#JMXOBJ},processingTime] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |The total time to process all incoming requests of request processor {#JMXNAME} |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32149 |16 | |10260 |{#JMXNAME}: Requests per second |jmx[{#JMXOBJ},requestCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Rate of requests served by request processor {#JMXNAME} |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32150 |16 | |10260 |{#JMXHOST}{#JMXCONTEXT}: Sessions active |jmx[{#JMXOBJ},activeSessions] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Active sessions of the application. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32151 |16 | |10260 |{#JMXHOST}{#JMXCONTEXT}: Sessions active maximum so far |jmx[{#JMXOBJ},maxActive] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Maximum number of active sessions so far. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32152 |16 | |10260 |{#JMXHOST}{#JMXCONTEXT}: Sessions allowed maximum |jmx[{#JMXOBJ},maxActiveSessions] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |The maximum number of active Sessions allowed, or -1 for no limit. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32153 |16 | |10260 |{#JMXHOST}{#JMXCONTEXT}: Sessions rejected per second |jmx[{#JMXOBJ},rejectedSessions] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Rate of sessions we rejected due to maxActive being reached. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32154 |16 | |10260 |{#JMXHOST}{#JMXCONTEXT}: Sessions created per second |jmx[{#JMXOBJ},sessionCounter] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Rate of sessions created by this application per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32155 |16 | |10260 |{#JMXNAME}: Threads count |jmx[{#JMXOBJ},currentThreadCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Amount of threads the thread pool has right now, both busy and free. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32156 |16 | |10260 |{#JMXNAME}: Threads busy |jmx[{#JMXOBJ},currentThreadsBusy] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Number of the requests that are being currently handled. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32157 |16 | |10260 |{#JMXNAME}: Threads limit |jmx[{#JMXOBJ},maxThreads] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Limit of the threads count. When currentThreadsBusy counter reaches the maxThreads limit, no more requests could be handled, and the application chokes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32158 |19 | |10341 |Zookeeper: Get server metrics |zookeeper.get_metrics |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$ZOOKEEPER.SCHEME}://{HOST.CONN}:{$ZOOKEEPER.PORT}/{$ZOOKEEPER.COMMAND_URL}/monitor | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32159 |19 | |10341 |Zookeeper: Get connections stats |zookeeper.get_connections_stats |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get information on client connections to server. Note, depending on the number of client connections this operation may be expensive (i.e. impact server performance). |0 |30d |0 | |NULL |3s |{$ZOOKEEPER.SCHEME}://{HOST.CONN}:{$ZOOKEEPER.PORT}/{$ZOOKEEPER.COMMAND_URL}/connections | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32193 |19 | |10341 |Clients discovery |zookeeper.clients |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Get list of client connections.&eol;Note, depending on the number of client connections this operation may be expensive (i.e. impact server performance). |0 |30d |0 | |NULL |3s |{$ZOOKEEPER.SCHEME}://{HOST.CONN}:{$ZOOKEEPER.PORT}/{$ZOOKEEPER.COMMAND_URL}/connections | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32207 |16 | |10342 |Cluster: Name |jmx["org.apache.cassandra.db:type=StorageService","ClusterName"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32208 |16 | |10342 |Thread pool SecondaryIndexManagement: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=SecondaryIndexManagement,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;SecondaryIndexManagement: Performs updates to secondary indexes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32209 |16 | |10342 |Thread pool HintsDispatcher: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=HintsDispatcher,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;HintsDispatcher: Performs hinted handoff. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32210 |16 | |10342 |Thread pool HintsDispatcher: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=HintsDispatcher,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;HintsDispatcher: Performs hinted handoff. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32211 |16 | |10342 |Thread pool MemtableFlushWriter: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtableFlushWriter,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;MemtableFlushWriter: Writes memtables to disk. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32212 |16 | |10342 |Thread pool MemtableFlushWriter: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtableFlushWriter,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;MemtableFlushWriter: Writes memtables to disk. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32213 |16 | |10342 |Thread pool MemtableFlushWriter: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtableFlushWriter,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;MemtableFlushWriter: Writes memtables to disk. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32214 |16 | |10342 |Thread pool MemtablePostFlush: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtablePostFlush,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;MemtablePostFlush: Cleans up commit log after memtable is written to disk. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32215 |16 | |10342 |Thread pool MemtablePostFlush: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtablePostFlush,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;MemtablePostFlush: Cleans up commit log after memtable is written to disk. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32216 |16 | |10342 |Thread pool MemtablePostFlush: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtablePostFlush,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;MemtablePostFlush: Cleans up commit log after memtable is written to disk. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32217 |16 | |10342 |Thread pool MigrationStage: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MigrationStage,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;MigrationStage: Runs schema migrations. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32218 |16 | |10342 |Thread pool MigrationStage: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MigrationStage,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;MigrationStage: Runs schema migrations. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32219 |16 | |10342 |Thread pool MigrationStage: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MigrationStage,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;MigrationStage: Runs schema migrations. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32220 |16 | |10342 |Thread pool MiscStage: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MiscStage,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;MiscStage: Misceleneous tasks run here. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32221 |16 | |10342 |Thread pool MiscStage: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MiscStage,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;MiscStage: Misceleneous tasks run here. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32222 |16 | |10342 |Thread pool MiscStage: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MiscStage,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;MiscStage: Misceleneous tasks run here. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32223 |16 | |10342 |Thread pool SecondaryIndexManagement: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=SecondaryIndexManagement,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;SecondaryIndexManagement: Performs updates to secondary indexes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32224 |16 | |10342 |Storage: Hints |jmx["org.apache.cassandra.metrics:type=Storage,name=TotalHints","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of hint messages written to this node since [re]start. Includes one entry for each host to be hinted per hint. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32225 |16 | |10342 |Thread pool SecondaryIndexManagement: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=SecondaryIndexManagement,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;SecondaryIndexManagement: Performs updates to secondary indexes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32226 |16 | |10342 |Thread pool CounterMutationStage: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=CounterMutationStage,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;CounterMutationStage: Responsible for counter writes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32227 |16 | |10342 |Thread pool CounterMutationStage: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=CounterMutationStage,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;CounterMutationStage: Responsible for counter writes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32228 |16 | |10342 |Thread pool CounterMutationStage: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=CounterMutationStage,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;CounterMutationStage: Responsible for counter writes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32229 |16 | |10342 |Thread pool MutationStage: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=MutationStage,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;MutationStage: Responsible for writes (exclude materialized and counter writes). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32230 |16 | |10342 |Thread pool.MutationStage: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=MutationStage,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;MutationStage: Responsible for writes (exclude materialized and counter writes). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32231 |16 | |10342 |Thread pool MutationStage: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=MutationStage,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;MutationStage: Responsible for writes (exclude materialized and counter writes). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32232 |16 | |10342 |Thread pool ReadStage: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ReadStage,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;ReadStage: Local reads run on this thread pool. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32233 |16 | |10342 |Thread pool ReadStage: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ReadStage,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;ReadStage: Local reads run on this thread pool. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32234 |16 | |10342 |Thread pool ReadStage: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ReadStage,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;ReadStage: Local reads run on this thread pool. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32235 |16 | |10342 |Thread pool ViewMutationStage: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ViewMutationStage,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;ViewMutationStage: Responsible for materialized view writes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32236 |16 | |10342 |Thread pool ViewMutationStage: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ViewMutationStage,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;ViewMutationStage: Responsible for materialized view writes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32237 |16 | |10342 |Thread pool ViewMutationStage: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ViewMutationStage,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;ViewMutationStage: Responsible for materialized view writes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32238 |16 | |10342 |Cluster: Nodes down |jmx["org.apache.cassandra.net:type=FailureDetector","DownEndpointCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32239 |16 | |10342 |Thread pool HintsDispatcher: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=HintsDispatcher,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;HintsDispatcher: Performs hinted handoff. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32240 |16 | |10342 |Storage: Used (bytes) |jmx["org.apache.cassandra.metrics:type=Storage,name=Load","Count"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Size, in bytes, of the on disk data size this node manages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32241 |16 | |10342 |Version |jmx["org.apache.cassandra.db:type=StorageService","ReleaseVersion"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32242 |16 | |10342 |KeyCache: requests per second |jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Requests","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Rate of cache requests. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32243 |16 | |10342 |Compaction: Number of completed tasks |jmx["org.apache.cassandra.metrics:name=CompletedTasks,type=Compaction","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of completed compactions since server [re]start. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32244 |16 | |10342 |Commitlog: Pending tasks |jmx["org.apache.cassandra.metrics:name=PendingTasks,type=CommitLog","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of commit log messages written but yet to be fsync’d. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32245 |16 | |10342 |Latency: Read median |jmx["org.apache.cassandra.metrics:name=ReadLatency,type=Table","50thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Latency read from disk in milliseconds - median. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32246 |16 | |10342 |Latency: Read 75 percentile |jmx["org.apache.cassandra.metrics:name=ReadLatency,type=Table","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Latency read from disk in milliseconds - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32247 |16 | |10342 |Latency: Read 95 percentile |jmx["org.apache.cassandra.metrics:name=ReadLatency,type=Table","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Latency read from disk in milliseconds - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32248 |16 | |10342 |Commitlog: Total size |jmx["org.apache.cassandra.metrics:name=TotalCommitLogSize,type=CommitLog","Value"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Current size, in bytes, used by all the commit log segments. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32249 |16 | |10342 |Compaction: Total compactions completed |jmx["org.apache.cassandra.metrics:name=TotalCompactionsCompleted,type=Compaction","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Throughput of completed compactions since server [re]start. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32250 |16 | |10342 |Latency: Write median |jmx["org.apache.cassandra.metrics:name=WriteLatency,type=Table","50thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Latency write to disk in milliseconds - median. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32251 |16 | |10342 |Latency: Write 75 percentile |jmx["org.apache.cassandra.metrics:name=WriteLatency,type=Table","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Latency write to disk in milliseconds - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32252 |16 | |10342 |Latency: Write 95 percentile |jmx["org.apache.cassandra.metrics:name=WriteLatency,type=Table","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Latency write to disk in milliseconds - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32253 |16 | |10342 |KeyCache: Capacity |jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Capacity","Value"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Cache capacity in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32254 |16 | |10342 |KeyCache: Entries |jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Entries","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total number of cache entries. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32255 |16 | |10342 |KeyCache: HitRate |jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=HitRate","Value"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |All time cache hit rate. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32256 |16 | |10342 |KeyCache: Hits per second |jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Hits","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Rate of cache hits. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32257 |16 | |10342 |KeyCache: Size |jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Size","Value"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total size of occupied cache, in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32258 |16 | |10342 |Storage: Errors |jmx["org.apache.cassandra.metrics:type=Storage,name=Exceptions","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of internal exceptions caught. Under normal exceptions this should be zero. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32259 |16 | |10342 |Client connections: Native |jmx["org.apache.cassandra.metrics:type=Client,name=connectedNativeClients","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of clients connected to this nodes native protocol server. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32260 |16 | |10342 |Client connections: Trifts |jmx["org.apache.cassandra.metrics:type=Client,name=connectedThriftClients","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of connected to this nodes thrift clients. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32261 |16 | |10342 |Latency: Client request read median |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Read,name=Latency","50thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total latency serving data to clients in milliseconds - median. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32262 |16 | |10342 |Latency: Client request read 75 percentile |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Read,name=Latency","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total latency serving data to clients in milliseconds - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32263 |16 | |10342 |Latency: Client request read 95 percentile |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Read,name=Latency","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total latency serving data to clients in milliseconds - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32264 |16 | |10342 |Client request: Read per second |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Read,name=Latency","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |The number of client requests per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32265 |16 | |10342 |Latency: Client request write median |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Latency","50thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total latency serving write requests from clients in milliseconds - median. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32266 |16 | |10342 |Latency: Client request write 75 percentile |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Latency","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total latency serving write requests from clients in milliseconds - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32267 |16 | |10342 |Latency: Client request write 95 percentile |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Latency","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total latency serving write requests from clients in milliseconds - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32268 |16 | |10342 |Client request: Write per second |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Latency","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |The number of local write requests per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32269 |16 | |10342 |Client request: Write Timeouts |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Timeouts","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of write requests timeouts encountered. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32270 |16 | |10342 |Compaction: Pending tasks |jmx["org.apache.cassandra.metrics:type=Compaction,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Estimated number of compactions remaining to perform. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32271 |16 | |10342 |Dropped messages: Write (Mutation) |jmx["org.apache.cassandra.metrics:type=DroppedMessage,scope=MUTATION,name=Dropped","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of dropped regular writes messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32272 |16 | |10342 |Dropped messages: Read |jmx["org.apache.cassandra.metrics:type=DroppedMessage,scope=READ,name=Dropped","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of dropped regular reads messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32273 |16 | |10342 |Cluster: Nodes up |jmx["org.apache.cassandra.net:type=FailureDetector","UpEndpointCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32274 |16 | |10342 |Tables |jmx.discovery[beans,"org.apache.cassandra.metrics:type=Table,keyspace=*,scope=*,name=ReadLatency"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |1 |NULL |Info about keyspaces and tables |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32275 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Bloom filter false ratio |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=BloomFilterFalseRatio","Value"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The ratio of Bloom filter false positives to total checks. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32276 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Row cache hits |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=RowCacheHit","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of row cache hits. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32277 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Write latency 95 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WriteLatency","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Latency write to disk in milliseconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32278 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Write latency 75 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WriteLatency","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Latency write to disk in milliseconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32279 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Waiting on free memtable space95 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WaitingOnFreeMemtableSpace","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The time spent waiting for free memtable space either on- or off-heap - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32280 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Waiting on free memtable space 75 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WaitingOnFreeMemtableSpace","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The time spent waiting for free memtable space either on- or off-heap - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32281 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Disk space used |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=TotalDiskSpaceUsed","Count"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Disk space used. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32282 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Tombstone scanned 95 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=TombstoneScannedHistogram","95thPercentile"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Number of tombstones scanned per read - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32283 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Tombstone scanned 75 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=TombstoneScannedHistogram","75thPercentile"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Number of tombstones scanned per read - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32284 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: SS Tables per read 95 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=SSTablesPerReadHistogram","95thPercentile"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of SSTable data files accessed per read - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32285 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: SS Tables per read 75 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=SSTablesPerReadHistogram","75thPercentile"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of SSTable data files accessed per read - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32286 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Snapshots size |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=SnapshotsSize","Value"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The disk space truly used by snapshots. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32287 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Row cache misses |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=RowCacheMiss","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of table row cache misses. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32288 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Out of row cache hits |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=RowCacheHitOutOfRange","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of row cache hits that do not satisfy the query filter and went to disk. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32289 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Read per second |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ReadLatency","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of client requests per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32290 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Bytes flushed |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=BytesFlushed","Count"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The amount of data that was flushed since (re)start. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32291 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Read latency 95 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ReadLatency","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Latency read from disk in milliseconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32292 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Read latency 75 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ReadLatency","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Latency read from disk in milliseconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32293 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Pending flushes |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=PendingFlushes","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of pending flushes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32294 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Pending compactions |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=PendingCompactions","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of pending compactions. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32295 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Mean partition size |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=MeanPartitionSize","Value"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The average size of compacted partition. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32296 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Max sartition size |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=MaxPartitionSize","Value"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The size of the largest compacted partition. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32297 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Live SS Table |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=LiveSSTableCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Number of "live" (in use) SSTables. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32298 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Live disk space used |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=LiveDiskSpaceUsed","Count"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The disk space used by "live" SSTables (only counts in use files). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32299 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: KeyCache hit rate |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=KeyCacheHitRate","Value"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The key cache hit rate. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32300 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Compression ratio |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=CompressionRatio","Value"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The compression ratio for all SSTables. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32301 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Compaction bytes written |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=CompactionBytesWritten","Count"] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The amount of data that was compacted since (re)start. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32302 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Col update time delta 95 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ColUpdateTimeDeltaHistogram","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The column update time delta - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32303 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Col update time delta75 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ColUpdateTimeDeltaHistogram","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The column update time delta - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32304 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Write per second |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WriteLatency","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of local write requests per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32307 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Voltage |sensor.voltage.value[entPhySensorValue.{#SNMPINDEX}] |1m |90d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32308 |20 |1.3.6.1.4.1.33333.5.64.0 |10343 |Array: Sweep Pmax |array.sweep_pmax[arrayMaxPowerSweep.0] |1m |7d |365d |0 |0 | |W | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Array Max. Power (sweep)&eol; Description:Array Max. Power (last sweep)&eol; Scaling Factor:1.0&eol; Units:W&eol; Range:[0.0, 500]&eol; Modbus address:0x003E |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32309 |20 |1.3.6.1.4.1.33333.5.53.0 |10343 |Load: State |load.state[loadState.0] |1m |7d |365d |0 |0 | | | | |NULL |124 | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Load State&eol; Description:Load State&eol; Modbus address:0x002E&eol;&eol; 0: Start&eol;1: Normal&eol;2: LvdWarning&eol;3: Lvd&eol;4: Fault&eol;5: Disconnect&eol;6: NormalOff&eol;7: Override&eol;8: NotUsed |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32310 |20 |1.3.6.1.4.1.33333.5.39.0 |10343 |Temperature: Battery |temp.battery[batteryTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Battery Temperature&eol; Description:Battery Temperature&eol; Scaling Factor:1.0&eol; Units:deg C&eol; Range:[-128, 127]&eol; Modbus address:0x001B |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32311 |20 |1.3.6.1.4.1.33333.5.40.0 |10343 |Temperature: Ambient |temp.ambient[ambientTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Ambient Temperature&eol; Description:Ambient Temperature&eol; Scaling Factor:1.0&eol; Units:deg C&eol; Range:[-128, 127]&eol; Modbus address:0x001C |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32312 |20 |1.3.6.1.4.1.33333.5.48.0 |10343 |Battery: Target Voltage |target.voltage[targetVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Target Voltage&eol; Description:Target Regulation Voltage&eol; Scaling Factor:1.0&eol; Units:V&eol; Range:[0.0, 80.0]&eol; Modbus address:0x0024 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32313 |20 |1.3.6.1.2.1.1.3.0 |10343 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32314 |20 |1.3.6.1.4.1.33333.5.54.0 |10343 |Status: Load Faults |status.load_faults[loadFaults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Description:Array Faults&eol;Modbus address:0x0022 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32315 |20 |1.3.6.1.4.1.33333.5.46.0 |10343 |Status: Array Faults |status.array_faults[arrayFaults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Description:Array Faults&eol;Modbus address:0x0022 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32316 |20 |1.3.6.1.4.1.33333.5.59.0 |10343 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Description:Alarms&eol;Modbus addresses:H=0x0038 L=0x0039 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32317 |20 |1.3.6.1.4.1.33333.5.32.0 |10343 |Load: Voltage |load.voltage[loadVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Load Voltage&eol; Description:Load Voltage&eol; Scaling Factor:1.0&eol; Units:V&eol; Range:[0, 80]&eol; Modbus address:0x0014 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32318 |20 |1.3.6.1.4.1.33333.5.34.0 |10343 |Load: Current |load.current[loadCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Load Current&eol; Description:Load Current&eol; Scaling Factor:1.0&eol; Units:A&eol; Range:[0, 60]&eol; Modbus address:0x0016 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32319 |20 |1.3.6.1.4.1.33333.5.63.0 |10343 |Array: Sweep Vmp |array.sweep_vmp[arrayVmp.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Array Vmp&eol; Description:Array Max. Power Point Voltage&eol; Scaling Factor:1.0&eol; Units:V&eol; Range:[0.0, 5000.0]&eol; Modbus address:0x003D |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32320 |20 |1.3.6.1.4.1.33333.5.56.0 |10343 |Counter: Load Amp-hours |counter.load_amp_hours[ahLoadResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Description:Ah Load (Resettable)&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 4294967294]&eol;Modbus addresses:H=0x0032 L=0x0033 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32321 |20 |1.3.6.1.4.1.33333.5.51.0 |10343 |Counter: Charge KW-hours |counter.charge_kw_hours[kwhChargeResettable.0] |1m |7d |365d |0 |0 | |!kWh | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;kWh Charge (Resettable)&eol;Description:Kilowatt Hours Charge (Resettable)&eol;Scaling Factor:1.0&eol;Units:kWh&eol;Range:[0.0, 65535]&eol;Modbus address:0x002A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32322 |20 |1.3.6.1.4.1.33333.5.49.0 |10343 |Counter: Charge Amp-hours |counter.charge_amp_hours[ahChargeResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Ah Charge (Resettable)&eol; Description:Ah Charge (Resettable)&eol; Scaling Factor:0.1&eol; Units:Ah&eol; Range:[0.0, 4294967294]&eol; Modbus addresses:H=0x0026 L=0x0027 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32323 |20 |1.3.6.1.4.1.33333.5.45.0 |10343 |Battery: Charge State |charge.state[chargeState.0] |1m |7d |365d |0 |0 | | | | |NULL |123 | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Charge State&eol; Description:Control State&eol; Modbus address:0x0021&eol;&eol; 0: Start&eol; 1: NightCheck&eol; 2: Disconnect&eol; 3: Night&eol; 4: Fault&eol; 5: BulkMppt&eol; 6: Absorption&eol; 7: Float&eol; 8: Equalize&eol; 9: Slave&eol; 10: Fixed |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32324 |20 |1.3.6.1.4.1.33333.5.33.0 |10343 |Battery: Charge Current |charge.current[chargeCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Charge Current&eol; Description:Charge Current&eol; Scaling Factor:1.0&eol; Units:A&eol; Range:[0, 40]&eol; Modbus address:0x0010 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32325 |20 |1.3.6.1.4.1.33333.5.30.0 |10343 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryTerminalVoltage.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32326 |20 |1.3.6.1.4.1.33333.5.31.0 |10343 |Array: Voltage |array.voltage[arrayVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Array Voltage&eol; Description:Array Voltage&eol; Scaling Factor:1.0&eol; Units:V&eol; Range:[0, 80]&eol; Modbus address:0x0013 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32327 |20 |1.3.6.1.4.1.33333.5.65.0 |10343 |Array: Sweep Voc |array.sweep_voc[arrayVoc.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Array Voc&eol; Description:Array Open Circuit Voltage&eol; Scaling Factor:1.0&eol; Units:V&eol; Range:[0.0, 80.0]&eol; Modbus address:0x003F |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32328 |20 |1.3.6.1.4.1.33333.5.38.0 |10343 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Heatsink Temperature&eol; Description:Heatsink Temperature&eol; Scaling Factor:1.0&eol; Units:deg C&eol; Range:[-128, 127]&eol; Modbus address:0x001A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32330 |20 |1.3.6.1.4.1.33333.5.30.0 |10343 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryTerminalVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PROSTAR-MPPT&eol;Battery Terminal Voltage&eol;Description:Battery Terminal Voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0012 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32331 |20 |1.3.6.1.4.1.33333.6.31.0 |10344 |Array: Voltage |array.voltage[arrayVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Array Voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[0, 80]&eol;Modbus address:0x0013 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32332 |20 |1.3.6.1.4.1.33333.6.59.0 |10344 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Alarms&eol;Modbus addresses:H=0x0038 L=0x0039 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32333 |20 |1.3.6.1.4.1.33333.6.39.0 |10344 |Temperature: Battery |temp.battery[batteryTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Battery Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-128, 127]&eol;Modbus address:0x001B |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32334 |20 |1.3.6.1.4.1.33333.6.40.0 |10344 |Temperature: Ambient |temp.ambient[ambientTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Ambient Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-128, 127]&eol;Modbus address:0x001C |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32335 |20 |1.3.6.1.4.1.33333.6.48.0 |10344 |Battery: Target Voltage |target.voltage[targetVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Target Regulation Voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0024 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32336 |20 |1.3.6.1.2.1.1.3.0 |10344 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32337 |20 |1.3.6.1.4.1.33333.6.54.0 |10344 |Status: Load Faults |status.load_faults[loadFaults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Load Faults&eol;Modbus address:0x002F |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32338 |20 |1.3.6.1.4.1.33333.6.46.0 |10344 |Status: Array Faults |status.array_faults[arrayFaults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Array Faults&eol;Modbus address:0x0022 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32339 |20 |1.3.6.1.4.1.33333.6.32.0 |10344 |Load: Voltage |load.voltage[loadVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Load Voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[0, 80]&eol;Modbus address:0x0014 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32340 |20 |1.3.6.1.4.1.33333.6.30.0 |10344 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryTerminalVoltage.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32341 |20 |1.3.6.1.4.1.33333.6.53.0 |10344 |Load: State |load.state[loadState.0] |1m |7d |365d |0 |0 | | | | |NULL |126 | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Load State&eol;Modbus address:0x002E&eol;&eol;0: Start&eol;1: Normal&eol;2: LvdWarning&eol;3: Lvd&eol;4: Fault&eol;5: Disconnect&eol;6: NormalOff&eol;7: Override&eol;8: NotUsed |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32342 |20 |1.3.6.1.4.1.33333.6.34.0 |10344 |Load: Current |load.current[loadCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Load Current&eol;Scaling Factor:1.0&eol;Units:A&eol;Range:[0, 60]&eol;Modbus address:0x0016 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32343 |20 |1.3.6.1.4.1.33333.6.56.0 |10344 |Counter: Load Amp-hours |counter.load_amp_hours[ahLoadResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Ah Load (Resettable)&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 4294967294]&eol;Modbus addresses:H=0x0032 L=0x0033 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32344 |20 |1.3.6.1.4.1.33333.6.51.0 |10344 |Counter: Charge KW-hours |counter.charge_kw_hours[kwhChargeResettable.0] |1m |7d |365d |0 |0 | |!kWh | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Kilowatt Hours Charge (Resettable)&eol;Scaling Factor:1.0&eol;Units:kWh&eol;Range:[0.0, 65535]&eol;Modbus address:0x002A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32345 |20 |1.3.6.1.4.1.33333.6.49.0 |10344 |Counter: Charge Amp-hours |counter.charge_amp_hours[ahChargeResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Ah Charge (Resettable)&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 4294967294]&eol;Modbus addresses:H=0x0026 L=0x0027 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32346 |20 |1.3.6.1.4.1.33333.6.45.0 |10344 |Battery: Charge State |charge.state[chargeState.0] |1m |7d |365d |0 |0 | | | | |NULL |125 | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Control State&eol;Modbus address:0x0021&eol;&eol;0: Start&eol;1: NightCheck&eol;2: Disconnect&eol;3: Night&eol;4: Fault&eol;5: Bulk&eol;6: Pwm&eol;7: Float&eol;8: Equalize |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32347 |20 |1.3.6.1.4.1.33333.6.33.0 |10344 |Battery: Charge Current |charge.current[chargeCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Charge Current&eol;Scaling Factor:1.0&eol;Units:A&eol;Range:[0, 40]&eol;Modbus address:0x0011 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32348 |20 |1.3.6.1.4.1.33333.6.38.0 |10344 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Heatsink Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-128, 127]&eol;Modbus address:0x001A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32350 |20 |1.3.6.1.4.1.33333.6.30.0 |10344 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryTerminalVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PROSTAR-PWM&eol;Description:Control State&eol;Modbus address:0x0021 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32351 |20 |1.3.6.1.4.1.33333.3.57.0 |10345 |Array: Sweep Pmax |array.sweep_pmax[arrayMaxPowerSweep.0] |1m |7d |365d |0 |0 | |W | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Array Open Circuit Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x002A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32352 |20 |1.3.6.1.4.1.33333.3.46.0 |10345 |Load: State |load.state[loadState.0] |1m |7d |365d |0 |0 | | | | |NULL |129 | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Load State&eol;Modbus address:0x001A&eol;&eol;0: Start&eol;1: Normal&eol;2: LvdWarning&eol;3: Lvd&eol;4: Fault&eol;5: Disconnect&eol;6: NormalOff&eol;7: Override&eol;8: NotUsed |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32353 |20 |1.3.6.1.4.1.33333.3.36.0 |10345 |Temperature: Battery |temp.battery[batteryTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Heatsink Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-128, 127]&eol;Modbus address:0x000D |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32354 |20 |1.3.6.1.4.1.33333.3.37.0 |10345 |Temperature: Ambient |temp.ambient[ambientTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Ambient Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-128, 127]&eol;Modbus address:0x000F |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32355 |20 |1.3.6.1.4.1.33333.3.42.0 |10345 |Battery: Target Voltage |target.voltage[targetVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Target Regulation Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0014 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32356 |20 |1.3.6.1.2.1.1.3.0 |10345 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32357 |20 |1.3.6.1.4.1.33333.3.47.0 |10345 |Status: Load Faults |status.load_faults[loadFaults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Array Faults&eol;Modbus address:0x0012 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32358 |20 |1.3.6.1.4.1.33333.3.40.0 |10345 |Status: Array Faults |status.array_faults[arrayFaults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Array Faults&eol;Modbus address:0x0012 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32359 |20 |1.3.6.1.4.1.33333.3.52.0 |10345 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Alarms&eol;Modbus addresses:H=0x0023 L=0x0024 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32360 |20 |1.3.6.1.4.1.33333.3.32.0 |10345 |Load: Voltage |load.voltage[loadVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Load Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0, 80]&eol;Modbus address:0x000A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32361 |20 |1.3.6.1.4.1.33333.3.34.0 |10345 |Load: Current |load.current[loadCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Load Current&eol;Scaling Factor:0.002415771484375&eol;Units:A&eol;Range:[0, 60]&eol;Modbus address:0x000C |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32362 |20 |1.3.6.1.4.1.33333.3.56.0 |10345 |Array: Sweep Vmp |array.sweep_vmp[arrayVmp.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Array Max. Power Point Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0.0, 5000.0]&eol;Modbus address:0x0028 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32363 |20 |1.3.6.1.4.1.33333.3.49.0 |10345 |Counter: Load Amp-hours |counter.load_amp_hours[ahLoadResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Ah Load(Resettable)&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 4294967294]&eol;Modbus addresses:H=0x001D L=0x001E |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32364 |20 |1.3.6.1.4.1.33333.3.45.0 |10345 |Counter: Charge KW-hours |counter.charge_kw_hours[kwhCharge.0] |1m |7d |365d |0 |3 | |!kWh | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32365 |20 |1.3.6.1.4.1.33333.3.43.0 |10345 |Counter: Charge Amp-hours |counter.charge_amp_hours[ahChargeResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Ah Charge(Resettable)&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 4294967294]&eol;Modbus addresses:H=0x0015 L=0x0016 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32366 |20 |1.3.6.1.4.1.33333.3.39.0 |10345 |Battery: Charge State |charge.state[chargeState.0] |1m |7d |365d |0 |0 | | | | |NULL |128 | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Control State&eol;Modbus address:0x0011&eol;&eol;0: Start&eol;1: NightCheck&eol;2: Disconnect&eol;3: Night&eol;4: Fault&eol;5: BulkMppt&eol;6: Pwm&eol;7: Float&eol;8: Equalize |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32367 |20 |1.3.6.1.4.1.33333.3.33.0 |10345 |Battery: Charge Current |charge.current[chargeCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Target Regulation Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0014 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32368 |20 |1.3.6.1.4.1.33333.3.30.0 |10345 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryVoltage.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32369 |20 |1.3.6.1.4.1.33333.3.31.0 |10345 |Array: Voltage |array.voltage[arrayVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Array Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0, 80]&eol;Modbus address:0x0009 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32370 |20 |1.3.6.1.4.1.33333.3.58.0 |10345 |Array: Sweep Voc |array.sweep_voc[arrayVoc.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Array Open Circuit Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x002A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32371 |20 |1.3.6.1.4.1.33333.3.35.0 |10345 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Battery Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-128, 127]&eol;Modbus address:0x000E |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32373 |20 |1.3.6.1.4.1.33333.3.30.0 |10345 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Control State&eol;Modbus address:0x0011 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32374 |20 |1.3.6.1.4.1.33333.9.30.0 |10346 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryVoltageSlow.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SURESINE |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32375 |20 |1.3.6.1.4.1.33333.9.31.0 |10346 |Load: A/C Current |load.ac_current[acCurrent.0] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SURESINE&eol;Description:AC Output Current&eol;Scaling Factor:0.0001953125&eol;Units:A&eol;Range:[0.0, 17]&eol;Modbus address:0x0005 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32376 |20 |1.3.6.1.4.1.33333.9.33.0 |10346 |Load: State |load.state[loadState.0] |1m |7d |365d |0 |0 | | | | |NULL |130 | | |0 | | | | |0 |NULL |MIB: SURESINE&eol;Description:Load State&eol;Modbus address:0x000B&eol;&eol; 0: Start&eol;1: LoadOn&eol;2: LvdWarning&eol;3: LowVoltageDisconnect&eol;4: Fault&eol;5: Disconnect&eol;6: NormalOff&eol;7: UnknownState&eol;8: Standby |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32377 |20 |1.3.6.1.4.1.33333.9.34.0 |10346 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SURESINE&eol;Description:Faults&eol;Modbus address:0x0007 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32378 |20 |1.3.6.1.4.1.33333.9.35.0 |10346 |Status: Faults |status.faults[faults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SURESINE&eol;Description:Faults&eol;Modbus address:0x0007 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32379 |20 |1.3.6.1.2.1.1.3.0 |10346 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32380 |20 |1.3.6.1.4.1.33333.9.32.0 |10346 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SURESINE&eol;Description:Heatsink Temperature&eol;Scaling Factor:1&eol;Units:C&eol;Range:[-128, 127]&eol;Modbus address:0x0006 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32382 |20 |1.3.6.1.4.1.33333.9.30.0 |10346 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryVoltageSlow.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: SURESINE&eol;Description:Battery Voltage(slow)&eol;Scaling Factor:0.0002581787109375&eol;Units:V&eol;Range:[0.0, 17.0]&eol;Modbus address:0x0004 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32383 |20 |1.3.6.1.4.1.33333.7.31.0 |10347 |Array: Array Current |array.current[arrayCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Array Current&eol;Scaling Factor:1.0&eol;Units:A&eol;Range:[-10, 80]&eol;Modbus address:0x001d |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32384 |20 |1.3.6.1.4.1.33333.7.50.0 |10347 |Counter: Charge Amp-hours |counter.charge_amp_hours[ahChargeResetable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Ah Charge Resettable&eol;Scaling Factor:1.0&eol;Units:Ah&eol;Range:[0.0, 5000]&eol;Modbus addresses:H=0x0034 L=0x0035 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32385 |20 |1.3.6.1.4.1.33333.7.48.0 |10347 |Temperature: Battery |temp.battery[batteryTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Batt. Temp&eol;Scaling Factor:1.0&eol;Units:C&eol;Range:[-40, 80]&eol;Modbus address:0x0025 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32386 |20 |1.3.6.1.4.1.33333.7.45.0 |10347 |Battery: Target Voltage |target.voltage[targetRegulationVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Target Voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[-10, 650.0]&eol;Modbus address:0x0033 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32387 |20 |1.3.6.1.2.1.1.3.0 |10347 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32388 |20 |1.3.6.1.4.1.33333.7.55.0 |10347 |Status: Faults |status.faults[faults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Faults&eol;Modbus addresses:H=0x002c L=0x002d |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32389 |20 |1.3.6.1.4.1.33333.7.57.0 |10347 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Alarms&eol;Modbus addresses:H=0x002e L=0x002f |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32390 |20 |1.3.6.1.4.1.33333.7.52.0 |10347 |Counter: Charge KW-hours |counter.charge_kw_hours[kwhChargeResetable.0] |1m |7d |365d |0 |0 | |!kWh | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:kWh Charge Resettable&eol;Scaling Factor:1.0&eol;Units:kWh&eol;Range:[0.0, 65535.0]&eol;Modbus address:0x0038 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32391 |20 |1.3.6.1.4.1.33333.7.46.0 |10347 |Battery: Charge State |charge.state[chargeState.0] |1m |7d |365d |0 |0 | | | | |NULL |131 | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Charge State&eol;Modbus address:0x0032&eol;&eol;0: Start&eol;1: NightCheck&eol;2: Disconnect&eol;3: Night&eol;4: Fault&eol;5: Mppt&eol;6: Absorption&eol;7: Float&eol;8: Equalize&eol;9: Slave&eol;10: Fixed |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32392 |20 |1.3.6.1.4.1.33333.7.33.0 |10347 |Array: Sweep Pmax |array.sweep_pmax[arrayPmaxLastSweep.0] |1m |7d |365d |0 |0 | |W | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Pmax (last sweep)&eol;Scaling Factor:1.0&eol;Units:W&eol;Range:[-10, 5000]&eol;Modbus address:0x003c |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32393 |20 |1.3.6.1.4.1.33333.7.44.0 |10347 |Battery: Output Power |charge.output_power[ outputPower.0] |1m |7d |365d |0 |0 | |W | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Output Power&eol;Scaling Factor:1.0&eol;Units:W&eol;Range:[-10, 4000]&eol;Modbus address:0x003a |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32394 |20 |1.3.6.1.4.1.33333.7.42.0 |10347 |Battery: Charge Current |charge.current[batteryCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Battery Current&eol;Scaling Factor:1.0&eol;Units:A&eol;Range:[-10, 80]&eol;Modbus address:0x001c |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32395 |20 |1.3.6.1.4.1.33333.7.36.0 |10347 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryVoltage.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Battery voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[-10, 80]&eol;Modbus address:0x0018 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32396 |20 |1.3.6.1.4.1.33333.7.30.0 |10347 |Array: Voltage |array.voltage[arrayVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Array Voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[-10, 650]&eol;Modbus address:0x001b |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32397 |20 |1.3.6.1.4.1.33333.7.35.0 |10347 |Array: Sweep Voc |array.sweep_voc[arrayVocLastSweep.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Voc (last sweep)&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[-10, 650.0]&eol;Modbus address:0x003e |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32398 |20 |1.3.6.1.4.1.33333.7.34.0 |10347 |Array: Sweep Vmp |array.sweep_vmp[arrayVmpLastSweep.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Vmp (last sweep)&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[-10, 650.0]&eol;Modbus address:0x003d |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32399 |20 |1.3.6.1.4.1.33333.7.49.0 |10347 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:HS Temp&eol;Scaling Factor:1.0&eol;Units:C&eol;Range:[-40, 80]&eol;Modbus address:0x0023 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32401 |20 |1.3.6.1.4.1.33333.7.36.0 |10347 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR-MPPT&eol;Description:Battery voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[-10, 80]&eol;Modbus address:0x0018 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32402 |20 |1.3.6.1.4.1.33333.2.31.0 |10348 |Array: Array Current |array.current[arrayCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Array Current&eol;Scaling Factor:0.00244140625&eol;Units:A&eol;Range:[-10, 80]&eol;Modbus address:0x001d |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32403 |20 |1.3.6.1.4.1.33333.2.50.0 |10348 |Counter: Charge Amp-hours |counter.charge_amp_hours[ahChargeResetable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Ah Charge Resettable&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 5000]&eol;Modbus addresses:H=0x0034 L=0x0035 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32404 |20 |1.3.6.1.4.1.33333.2.48.0 |10348 |Temperature: Battery |temp.battery[batteryTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Batt. Temp&eol;Scaling Factor:1.0&eol;Units:C&eol;Range:[-40, 80]&eol;Modbus address:0x0025 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32405 |20 |1.3.6.1.4.1.33333.2.45.0 |10348 |Battery: Target Voltage |target.voltage[targetRegulationVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Target Voltage&eol;Scaling Factor:0.0054931640625&eol;Units:V&eol;Range:[-10, 180.0]&eol;Modbus address:0x0033 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32406 |20 |1.3.6.1.2.1.1.3.0 |10348 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32407 |20 |1.3.6.1.4.1.33333.2.55.0 |10348 |Status: Faults |status.faults[faults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Faults&eol;Modbus address:0x002c |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32408 |20 |1.3.6.1.4.1.33333.2.57.0 |10348 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Faults&eol;Modbus address:0x002c |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32409 |20 |1.3.6.1.4.1.33333.2.52.0 |10348 |Counter: Charge KW-hours |counter.charge_kw_hours[kwhChargeResetable.0] |1m |7d |365d |0 |3 | |!kWh | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:kWh Charge Resettable&eol;Scaling Factor:0.1&eol;Units:kWh&eol;Range:[0.0, 65535.0]&eol;Modbus address:0x0038 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32410 |20 |1.3.6.1.4.1.33333.2.46.0 |10348 |Battery: Charge State |charge.state[chargeState.0] |1m |7d |365d |0 |0 | | | | |NULL |132 | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Charge State&eol;Modbus address:0x0032&eol;&eol;0: Start&eol;1: NightCheck&eol;2: Disconnect&eol;3: Night&eol;4: Fault&eol;5: Mppt&eol;6: Absorption&eol;7: Float&eol;8: Equalize&eol;9: Slave |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32411 |20 |1.3.6.1.4.1.33333.2.33.0 |10348 |Array: Sweep Pmax |array.sweep_pmax[arrayPmaxLastSweep.0] |1m |7d |365d |0 |0 | |W | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Pmax (last sweep)&eol;Scaling Factor:0.10986328125&eol;Units:W&eol;Range:[-10, 5000]&eol;Modbus address:0x003c |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32412 |20 |1.3.6.1.4.1.33333.2.44.0 |10348 |Battery: Output Power |charge.output_power[ outputPower.0] |1m |7d |365d |0 |0 | |W | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Output Power&eol;Scaling Factor:0.10986328125&eol;Units:W&eol;Range:[-10, 5000]&eol;Modbus address:0x003a |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32413 |20 |1.3.6.1.4.1.33333.2.42.0 |10348 |Battery: Charge Current |charge.current[batteryCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Battery Current&eol;Scaling Factor:0.00244140625&eol;Units:A&eol;Range:[-10, 80]&eol;Modbus address:0x001c |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32414 |20 |1.3.6.1.4.1.33333.2.36.0 |10348 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryVoltage.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32415 |20 |1.3.6.1.4.1.33333.2.30.0 |10348 |Array: Voltage |array.voltage[arrayVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Array Voltage&eol;Scaling Factor:0.0054931640625&eol;Units:V&eol;Range:[-10, 180]&eol;Modbus address:0x001b |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32416 |20 |1.3.6.1.4.1.33333.2.35.0 |10348 |Array: Sweep Voc |array.sweep_voc[arrayVocLastSweep.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Voc (last sweep)&eol;Scaling Factor:0.0054931640625&eol;Units:V&eol;Range:[-10, 180.0]&eol;Modbus address:0x003e |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32417 |20 |1.3.6.1.4.1.33333.2.34.0 |10348 |Array: Sweep Vmp |array.sweep_vmp[arrayVmpLastSweep.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Vmp (last sweep)&eol;Scaling Factor:0.0054931640625&eol;Units:V&eol;Range:[-10, 180.0]&eol;Modbus address:0x003d |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32418 |20 |1.3.6.1.4.1.33333.2.49.0 |10348 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:HS Temp&eol;Scaling Factor:1.0&eol;Units:C&eol;Range:[-40, 80]&eol;Modbus address:0x0023 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32420 |20 |1.3.6.1.4.1.33333.2.36.0 |10348 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR-MPPT&eol;Description:Battery voltage&eol;Scaling Factor:0.0054931640625&eol;Units:V&eol;Range:[-10, 180.0]&eol;Modbus address:0x0018 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32421 |20 |1.3.6.1.4.1.33333.8.30.0 |10349 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryVoltage.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Battery voltage&eol;Scaling Factor:0.002950042724609375&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0008 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32422 |20 |1.3.6.1.4.1.33333.8.45.0 |10349 |Status: Control Mode |control.mode[controlMode.0] |1m |7d |365d |0 |0 | | | | |NULL |135 | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Control Mode&eol;Modbus address:0x001A&eol;&eol;0: charge&eol;1: loadControl&eol;2: diversion&eol;3: lighting |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32423 |20 |1.3.6.1.4.1.33333.8.39.0 |10349 |Counter: Amp-hours |counter.charge_amp_hours[ahResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Ah (Resettable)&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 50000.0]&eol;Modbus addresses:H=0x0011 L=0x0012 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32424 |20 |1.3.6.1.4.1.33333.8.49.0 |10349 |Counter: KW-hours |counter.charge_kw_hours[kilowattHours.0] |1m |7d |365d |0 |0 | |!kWh | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Kilowatt Hours&eol;Scaling Factor:1.0&eol;Units:kWh&eol;Range:[0.0, 5000.0]&eol;Modbus address:0x001E |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32425 |20 |1.3.6.1.4.1.33333.8.42.0 |10349 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Alarms&eol;Modbus addresses:H=0x001D L=0x0017 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32426 |20 |1.3.6.1.4.1.33333.8.43.0 |10349 |Status: Faults |status.faults[faults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Battery voltage&eol;Scaling Factor:0.002950042724609375&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0008 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32427 |20 |1.3.6.1.2.1.1.3.0 |10349 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32428 |20 |1.3.6.1.4.1.33333.8.37.0 |10349 |Temperature: Battery |temp.battery[batteryTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Battery Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-40, 120]&eol;Modbus address:0x000F |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32429 |20 |1.3.6.1.4.1.33333.8.36.0 |10349 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Heatsink Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-40, 120]&eol;Modbus address:0x000E |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32436 |20 |1.3.6.1.4.1.33333.8.30.0 |10349 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Battery voltage&eol;Scaling Factor:0.002950042724609375&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0008 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32437 |20 |1.3.6.1.4.1.33333.8.46.0 |10349 |Battery: Charge State{#SINGLETON} |charge.state[controlState.0{#SINGLETON}] |1m |7d |365d |0 |0 | | | | |NULL |133 | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Control State&eol;Modbus address:0x001B |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32438 |20 |1.3.6.1.4.1.33333.8.38.0 |10349 |Battery: Target Voltage{#SINGLETON} |target.voltage[targetVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Target Regulation Voltage&eol;Scaling Factor:0.002950042724609375&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0010 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32439 |20 |1.3.6.1.4.1.33333.8.32.0 |10349 |Array: Voltage{#SINGLETON} |array.voltage[arrayloadVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Array/Load Voltage&eol;Scaling Factor:0.00424652099609375&eol;Units:V&eol;Range:[0, 80]&eol;Modbus address:0x000A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32440 |20 |1.3.6.1.4.1.33333.8.33.0 |10349 |Battery: Charge Current{#SINGLETON} |charge.current[chargeCurrent.0{#SINGLETON}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Charge Current&eol;Scaling Factor:0.002034515380859375&eol;Units:A&eol;Range:[0, 60]&eol;Modbus address:0x000B |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32441 |20 |1.3.6.1.4.1.33333.8.48.0 |10349 |Load: PWM Duty Cycle{#SINGLETON} |diversion.pwm_duty_cycle[pwmDutyCycle.0{#SINGLETON}] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:PWM Duty Cycle&eol;Scaling Factor:0.392156862745098&eol;Units:%&eol;Range:[0.0, 100.0]&eol;Modbus address:0x001C |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32442 |20 |1.3.6.1.4.1.33333.8.34.0 |10349 |Load: Current{#SINGLETON} |load.current[loadCurrent.0{#SINGLETON}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Load Current&eol;Scaling Factor:0.00966400146484375&eol;Units:A&eol;Range:[0, 60]&eol;Modbus address:0x000C |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32443 |20 |1.3.6.1.4.1.33333.8.32.0 |10349 |Load: Voltage{#SINGLETON} |load.voltage[arrayloadVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Array/Load Voltage&eol;Scaling Factor:0.00424652099609375&eol;Units:V&eol;Range:[0, 80]&eol;Modbus address:0x000A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32444 |20 |1.3.6.1.4.1.33333.8.47.0 |10349 |Load: State{#SINGLETON} |load.state[loadState.0{#SINGLETON}] |1m |7d |365d |0 |0 | | | | |NULL |134 | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Load State&eol;Modbus address:0x001B&eol;&eol;0: Start&eol;1: Normal&eol;2: LvdWarning&eol;3: Lvd&eol;4: Fault&eol;5: Disconnect&eol;6: LvdWarning1&eol;7: OverrideLvd&eol;8: Equalize |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32445 |0 | |10289 |{#DEVNAME}: Average disk read queue length |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk Read Queue Length",60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Average disk read queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32446 |0 | |10289 |{#DEVNAME}: Disk read request avg waiting time |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk sec/Read",60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The average time for read requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32447 |0 | |10289 |{#DEVNAME}: Disk write request avg waiting time |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk sec/Write",60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The average time for write requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32448 |0 | |10289 |{#DEVNAME}: Average disk write queue length |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk Write Queue Length",60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Average disk write queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32453 |7 | |10296 |{#DEVNAME}: Average disk read queue length |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk Read Queue Length",60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Average disk read queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32454 |7 | |10296 |{#DEVNAME}: Disk read request avg waiting time |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk sec/Read",60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The average time for read requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32455 |7 | |10296 |{#DEVNAME}: Disk write request avg waiting time |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk sec/Write",60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The average time for write requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32456 |7 | |10296 |{#DEVNAME}: Average disk write queue length |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk Write Queue Length",60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Average disk write queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32463 |16 | |10350 |Destinations discovery |jmx.discovery[beans,"org.apache.activemq:type=Broker,brokerName=*,destinationType=*,destinationName=*"] |1h |90d |0 |0 |4 | | |{1112} and {1113}| |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |1 |NULL |Discovery of destinations |0 |30d |3 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32464 |16 | |10350 |Brokers discovery |jmx.discovery[beans,"org.apache.activemq:type=Broker,brokerName=*"] |1h |90d |0 |0 |4 | | |{1114} and {1115}| |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |1 |NULL |Discovery of brokers |0 |30d |3 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32465 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Consumers count total on {#JMXBROKERNAME}|jmx["org.apache.activemq:type=Broker,brokerName={#JMXBROKERNAME}",{$ACTIVEMQ.TOTAL.CONSUMERS.COUNT: "{#JMXDESTINATIONNAME}"}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of consumers attached to the broker of this destination. Used to suppress destination's triggers when the count of consumers on the broker is lower than threshold. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32466 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Producers count total on {#JMXBROKERNAME}|jmx["org.apache.activemq:type=Broker,brokerName={#JMXBROKERNAME}",{$ACTIVEMQ.TOTAL.PRODUCERS.COUNT: "{#JMXDESTINATIONNAME}"}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of producers attached to the broker of this destination. Used to suppress destination's triggers when the count of producers on the broker is lower than threshold. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32467 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Consumers count |jmx[{#JMXOBJ},ConsumerCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of consumers attached to this destination. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32468 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Messages dequeue rate |jmx[{#JMXOBJ},DequeueCount] |1m |7d |365d |0 |3 | |messages/sec| | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Rate of messages that has been acknowledged (and removed) from the destination. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32469 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Messages enqueue rate |jmx[{#JMXOBJ},EnqueueCount] |1m |7d |365d |0 |3 | |messages/sec| | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Rate of messages that have been sent to the destination. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32470 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Expired messages count |jmx[{#JMXOBJ},ExpiredCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of messages that have been expired. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32471 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Memory usage in percents |jmx[{#JMXOBJ},MemoryPercentUsage] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |The percentage of the memory limit used. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32472 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Producers count |jmx[{#JMXOBJ},ProducerCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of producers attached to this destination. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32473 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Queue size |jmx[{#JMXOBJ},QueueSize] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of messages on this destination, including any that have been dispatched but not acknowledged. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32474 |16 | |10350 |Broker {#JMXBROKERNAME}: Version |jmx[{#JMXOBJ},BrokerVersion] |1m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |The version of the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32475 |16 | |10350 |Broker {#JMXBROKERNAME}: Memory limit |jmx[{#JMXOBJ},MemoryLimit] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Memory limit, in bytes, used for holding undelivered messages before paging to temporary storage. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32476 |16 | |10350 |Broker {#JMXBROKERNAME}: Memory usage in percents |jmx[{#JMXOBJ}, MemoryPercentUsage] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Percent of memory limit used. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32477 |16 | |10350 |Broker {#JMXBROKERNAME}: Storage limit |jmx[{#JMXOBJ},StoreLimit] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Disk limit, in bytes, used for persistent messages before producers are blocked. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32478 |16 | |10350 |Broker {#JMXBROKERNAME}: Storage usage in percents |jmx[{#JMXOBJ},StorePercentUsage] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Percent of store limit used. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32479 |16 | |10350 |Broker {#JMXBROKERNAME}: Temp limit |jmx[{#JMXOBJ},TempLimit] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Disk limit, in bytes, used for non-persistent messages and temporary data before producers are blocked. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32480 |16 | |10350 |Broker {#JMXBROKERNAME}: Temp usage in percents |jmx[{#JMXOBJ},TempPercentUsage] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Percent of temp limit used. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32481 |16 | |10350 |Broker {#JMXBROKERNAME}: Consumers count total |jmx[{#JMXOBJ},TotalConsumerCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of consumers attached to this broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32482 |16 | |10350 |Broker {#JMXBROKERNAME}: Messages dequeue rate |jmx[{#JMXOBJ},TotalDequeueCount] |1m |7d |365d |0 |3 | |messages/sec| | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Rate of messages that have been delivered by the broker and acknowledged by consumers. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32483 |16 | |10350 |Broker {#JMXBROKERNAME}: Messages enqueue rate |jmx[{#JMXOBJ},TotalEnqueueCount] |1m |7d |365d |0 |3 | |messages/sec| | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Rate of messages that have been sent to the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32484 |16 | |10350 |Broker {#JMXBROKERNAME}: Producers count total |jmx[{#JMXOBJ},TotalProducerCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of producers attached to this broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32485 |16 | |10350 |Broker {#JMXBROKERNAME}: Uptime |jmx[{#JMXOBJ},UptimeMillis] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |The uptime of the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32486 |0 | |10351 |MS Exchange: Databases total mounted |perf_counter_en["\MSExchange Active Manager(_total)\Database Mounted"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of active database copies on the server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32487 |0 | |10351 |MS Exchange [Client Access Server]: ActiveSync: ping command pending |perf_counter_en["\MSExchange ActiveSync\Ping Commands Pending", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of ping commands currently pending in the queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32488 |0 | |10351 |MS Exchange [Client Access Server]: ActiveSync: requests per second |perf_counter_en["\MSExchange ActiveSync\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of HTTP requests received from the client via ASP.NET per second. Determines the current Exchange ActiveSync request rate. Used only to determine current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32489 |0 | |10351 |MS Exchange [Client Access Server]: ActiveSync: sync commands per second |perf_counter_en["\MSExchange ActiveSync\Sync Commands/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of sync commands processed per second. Clients use this command to synchronize items within a folder. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32490 |0 | |10351 |MS Exchange [Client Access Server]: Autodiscover: requests per second |perf_counter_en["\MSExchangeAutodiscover\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of Autodiscover service requests processed each second. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32491 |0 | |10351 |MS Exchange [Client Access Server]: Availability Service: availability requests per second |perf_counter_en["\MSExchange Availability Service\Availability Requests (sec)", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of requests serviced per second. The request can be only for free/ busy information or include suggestions. One request may contain multiple mailboxes. Determines the rate at which Availability service requests are occurring. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32492 |0 | |10351 |MS Exchange [Client Access Server]: Outlook Web App: current unique users |perf_counter_en["\MSExchange OWA\Current Unique Users", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of unique users currently logged on to Outlook Web App. This value monitors the number of unique active user sessions, so that users are only removed from this counter after they log off or their session times out. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32493 |0 | |10351 |MS Exchange [Client Access Server]: Outlook Web App: requests per second |perf_counter_en["\MSExchange OWA\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of requests handled by Outlook Web App per second. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32494 |0 | |10351 |MS Exchange [Client Access Server]: MSExchangeWS: requests per second |perf_counter_en["\MSExchangeWS\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of requests processed each second. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32495 |0 | |10351 |LDAP discovery |perf_instance_en.discovery["MSExchange ADAccess Domain Controllers"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of domain controller. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32496 |0 | |10351 |Web services discovery |perf_instance_en.discovery["Web Service"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Exchange web services. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32497 |0 | |10351 |Databases discovery |perf_instance.discovery["MSExchange Active Manager"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Exchange databases. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32498 |0 | |10351 |Domain Controller [{#INSTANCE}]: Read time |perf_counter_en["\MSExchange ADAccess Domain Controllers({#INSTANCE})\LDAP Read Time", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time that it takes to send an LDAP read request to the domain controller in question and get a response. Should ideally be below 50 ms; spikes below 100 ms are acceptable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32499 |0 | |10351 |Domain Controller [{#INSTANCE}]: Search time |perf_counter_en["\MSExchange ADAccess Domain Controllers({#INSTANCE})\LDAP Search Time", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time that it takes to send an LDAP search request and get a response. Should ideally be below 50 ms; spikes below 100 ms are acceptable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32500 |0 | |10351 |Web Service [{#INSTANCE}]: Current connections |perf_counter_en["\Web Service({#INSTANCE})\Current Connections", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the current number of connections established to the each Web Service. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32501 |0 | |10351 |Active Manager [{#INSTANCE}]: Database copy role |perf_counter_en["\MSExchange Active Manager({#INSTANCE})\Database Copy Role Active"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |136 | | |0 | | | | |2 |NULL |Database copy active or passive role. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32502 |0 | |10351 |Information Store [{#INSTANCE}]: Page faults per second |perf_counter_en["\MSExchange Database({#INF.STORE})\Database Page Fault Stalls/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the rate of page faults that can't be serviced because there are no pages available for allocation from the database cache. If this counter is above 0, it's an indication that the MSExchange Database\I/O Database Writes (Attached) Average Latency is too high. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32503 |0 | |10351 |Information Store [{#INSTANCE}]: Log records stalled |perf_counter_en["\MSExchange Database({#INF.STORE})\Log Record Stalls/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the number of log records that can't be added to the log buffers per second because the log buffers are full. The average value should be below 10 per second. Spikes (maximum values) shouldn't be higher than 100 per second. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32504 |0 | |10351 |Information Store [{#INSTANCE}]: Log threads waiting |perf_counter_en["\MSExchange Database({#INF.STORE})\Log Threads Waiting", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the number of threads waiting to complete an update of the database by writing their data to the log. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32505 |0 | |10351 |Database Counters [{#INSTANCE}]: Active database read operations per second |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Attached)/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the number of database read operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32506 |0 | |10351 |Database Counters [{#INSTANCE}]: Active database read operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Attached) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time per database read operation. Should be less than 20 ms on average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32507 |0 | |10351 |Database Counters [{#INSTANCE}]: Passive database read operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Recovery) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time per passive database read operation. Should be less than 200ms on average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32508 |0 | |10351 |Database Counters [{#INSTANCE}]: Active database write operations per second |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Writes (Attached)/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the number of database write operations per second for each attached database instance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32509 |0 | |10351 |Database Counters [{#INSTANCE}]: Active database write operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Writes (Attached) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time per database write operation. Should be less than 50ms on average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32510 |0 | |10351 |Database Counters [{#INSTANCE}]: Passive database write operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Writes (Recovery) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time, in ms, per passive database write operation. Should be less than the read latency for the same instance, as measured by the MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Recovery) Average Latency counter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32511 |0 | |10351 |Information Store [{#INSTANCE}]: Active mailboxes count |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\Active mailboxes"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of active mailboxes in this database. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32512 |0 | |10351 |Information Store [{#INSTANCE}]: Database state |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\Database State"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |137 | | |0 | | | | |2 |NULL |Database state. Possible values:&eol;0: Database without any copy and dismounted.&eol;1: Database is a primary database and mounted.&eol;2: Database is a passive copy and the state is healthy. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32513 |0 | |10351 |Information Store [{#INSTANCE}]: RPC requests latency |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\RPC Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |RPC Latency average is the average latency of RPC requests per database. Average is calculated over all RPCs since exrpc32 was loaded. Should be less than 50ms at all times, with spikes less than 100ms. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32514 |0 | |10351 |Information Store [{#INSTANCE}]: RPC requests per second |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\RPC Operations/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the number of RPC operations per second for each database instance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32515 |0 | |10351 |Information Store [{#INSTANCE}]: RPC requests total |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\RPC requests", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the overall RPC requests currently executing within the information store process. Should be below 70 at all times. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32516 |7 | |10352 |MS Exchange: Databases total mounted |perf_counter_en["\MSExchange Active Manager(_total)\Database Mounted"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of active database copies on the server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32517 |7 | |10352 |MS Exchange [Client Access Server]: ActiveSync: ping command pending |perf_counter_en["\MSExchange ActiveSync\Ping Commands Pending", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of ping commands currently pending in the queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32518 |7 | |10352 |MS Exchange [Client Access Server]: ActiveSync: requests per second |perf_counter_en["\MSExchange ActiveSync\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of HTTP requests received from the client via ASP.NET per second. Determines the current Exchange ActiveSync request rate. Used only to determine current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32519 |7 | |10352 |MS Exchange [Client Access Server]: ActiveSync: sync commands per second |perf_counter_en["\MSExchange ActiveSync\Sync Commands/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of sync commands processed per second. Clients use this command to synchronize items within a folder. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32520 |7 | |10352 |MS Exchange [Client Access Server]: Autodiscover: requests per second |perf_counter_en["\MSExchangeAutodiscover\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of Autodiscover service requests processed each second. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32521 |7 | |10352 |MS Exchange [Client Access Server]: Availability Service: availability requests per second |perf_counter_en["\MSExchange Availability Service\Availability Requests (sec)", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of requests serviced per second. The request can be only for free/ busy information or include suggestions. One request may contain multiple mailboxes. Determines the rate at which Availability service requests are occurring. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32522 |7 | |10352 |MS Exchange [Client Access Server]: Outlook Web App: current unique users |perf_counter_en["\MSExchange OWA\Current Unique Users", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of unique users currently logged on to Outlook Web App. This value monitors the number of unique active user sessions, so that users are only removed from this counter after they log off or their session times out. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32523 |7 | |10352 |MS Exchange [Client Access Server]: Outlook Web App: requests per second |perf_counter_en["\MSExchange OWA\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of requests handled by Outlook Web App per second. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32524 |7 | |10352 |MS Exchange [Client Access Server]: MSExchangeWS: requests per second |perf_counter_en["\MSExchangeWS\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of requests processed each second. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32525 |7 | |10352 |LDAP discovery |perf_instance_en.discovery["MSExchange ADAccess Domain Controllers"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of domain controller. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32526 |7 | |10352 |Web services discovery |perf_instance_en.discovery["Web Service"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Exchange web services. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32527 |7 | |10352 |Databases discovery |perf_instance.discovery["MSExchange Active Manager"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Exchange databases. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32528 |7 | |10352 |Domain Controller [{#INSTANCE}]: Read time |perf_counter_en["\MSExchange ADAccess Domain Controllers({#INSTANCE})\LDAP Read Time", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time that it takes to send an LDAP read request to the domain controller in question and get a response. Should ideally be below 50 ms; spikes below 100 ms are acceptable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32529 |7 | |10352 |Domain Controller [{#INSTANCE}]: Search time |perf_counter_en["\MSExchange ADAccess Domain Controllers({#INSTANCE})\LDAP Search Time", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time that it takes to send an LDAP search request and get a response. Should ideally be below 50 ms; spikes below 100 ms are acceptable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32530 |7 | |10352 |Web Service [{#INSTANCE}]: Current connections |perf_counter_en["\Web Service({#INSTANCE})\Current Connections", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the current number of connections established to the each Web Service. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32531 |7 | |10352 |Active Manager [{#INSTANCE}]: Database copy role |perf_counter_en["\MSExchange Active Manager({#INSTANCE})\Database Copy Role Active"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |136 | | |0 | | | | |2 |NULL |Database copy active or passive role. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32532 |7 | |10352 |Information Store [{#INSTANCE}]: Page faults per second |perf_counter_en["\MSExchange Database({#INF.STORE})\Database Page Fault Stalls/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the rate of page faults that can't be serviced because there are no pages available for allocation from the database cache. If this counter is above 0, it's an indication that the MSExchange Database\I/O Database Writes (Attached) Average Latency is too high. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32533 |7 | |10352 |Information Store [{#INSTANCE}]: Log records stalled |perf_counter_en["\MSExchange Database({#INF.STORE})\Log Record Stalls/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the number of log records that can't be added to the log buffers per second because the log buffers are full. The average value should be below 10 per second. Spikes (maximum values) shouldn't be higher than 100 per second. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32534 |7 | |10352 |Information Store [{#INSTANCE}]: Log threads waiting |perf_counter_en["\MSExchange Database({#INF.STORE})\Log Threads Waiting", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the number of threads waiting to complete an update of the database by writing their data to the log. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32535 |7 | |10352 |Database Counters [{#INSTANCE}]: Active database read operations per second |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Attached)/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the number of database read operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32536 |7 | |10352 |Database Counters [{#INSTANCE}]: Active database read operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Attached) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time per database read operation. Should be less than 20 ms on average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32537 |7 | |10352 |Database Counters [{#INSTANCE}]: Passive database read operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Recovery) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time per passive database read operation. Should be less than 200ms on average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32538 |7 | |10352 |Database Counters [{#INSTANCE}]: Active database write operations per second |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Writes (Attached)/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the number of database write operations per second for each attached database instance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32539 |7 | |10352 |Database Counters [{#INSTANCE}]: Active database write operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Writes (Attached) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time per database write operation. Should be less than 50ms on average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32540 |7 | |10352 |Database Counters [{#INSTANCE}]: Passive database write operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Writes (Recovery) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time, in ms, per passive database write operation. Should be less than the read latency for the same instance, as measured by the MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Recovery) Average Latency counter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32541 |7 | |10352 |Information Store [{#INSTANCE}]: Active mailboxes count |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\Active mailboxes"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of active mailboxes in this database. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32542 |7 | |10352 |Information Store [{#INSTANCE}]: Database state |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\Database State"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |137 | | |0 | | | | |2 |NULL |Database state. Possible values:&eol;0: Database without any copy and dismounted.&eol;1: Database is a primary database and mounted.&eol;2: Database is a passive copy and the state is healthy. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32543 |7 | |10352 |Information Store [{#INSTANCE}]: RPC requests latency |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\RPC Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |RPC Latency average is the average latency of RPC requests per database. Average is calculated over all RPCs since exrpc32 was loaded. Should be less than 50ms at all times, with spikes less than 100ms. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32544 |7 | |10352 |Information Store [{#INSTANCE}]: RPC requests per second |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\RPC Operations/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the number of RPC operations per second for each database instance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32545 |7 | |10352 |Information Store [{#INSTANCE}]: RPC requests total |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\RPC requests", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the overall RPC requests currently executing within the information store process. Should be below 70 at all times. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32546 |15 | |10316 |MySQL: Calculated value of innodb_log_file_size |mysql.innodb_log_file_size |1m |7d |365d |0 |0 | | | | |NULL |NULL |(last(mysql.innodb_os_log_written) - last(mysql.innodb_os_log_written,1h)) / {$MYSQL.INNODB_LOG_FILES} | |0 | | | | |0 |NULL |Calculated by (innodb_os_log_written-innodb_os_log_written(time shift -1h))/{$MYSQL.INNODB_LOG_FILES} value of innodb_log_file_size. Innodb_log_file_size is size in bytes of each InnoDB redo log file in the log group. The combined size can be no more than 512GB. Larger values mean less disk I/O due to less flushing checkpoint activity, but also slower recovery from a crash. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32560 |15 | |10320 |MySQL: Calculated value of innodb_log_file_size |mysql.innodb_log_file_size |1m |7d |365d |0 |0 | | | | |NULL |NULL |(last(mysql.innodb_os_log_written) - last(mysql.innodb_os_log_written,1h)) / {$MYSQL.INNODB_LOG_FILES} | |0 | | | | |0 |NULL |Calculated by (innodb_os_log_written-innodb_os_log_written(time shift -1h))/{$MYSQL.INNODB_LOG_FILES} value of innodb_log_file_size. Innodb_log_file_size is size in bytes of each InnoDB redo log file in the log group. The combined size can be no more than 512GB. Larger values mean less disk I/O due to less flushing checkpoint activity, but also slower recovery from a crash. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32574 |15 | |10317 |MySQL: Calculated value of innodb_log_file_size |mysql.innodb_log_file_size |1m |7d |365d |0 |0 | | | | |NULL |NULL |(last(mysql.innodb_os_log_written) - last(mysql.innodb_os_log_written,1h)) / {$MYSQL.INNODB_LOG_FILES} | |0 | | | | |0 |NULL |Calculated by (innodb_os_log_written-innodb_os_log_written(time shift -1h))/{$MYSQL.INNODB_LOG_FILES} value of innodb_log_file_size. Innodb_log_file_size is size in bytes of each InnoDB redo log file in the log group. The combined size can be no more than 512GB. Larger values mean less disk I/O due to less flushing checkpoint activity, but also slower recovery from a crash. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32592 |0 | |10328 |PostgreSQL: Custom queries |pgsql.custom.query["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}",""] |1m |1h |0 |1 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Execute custom queries from file *.sql |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32593 |0 | |10328 |PostgreSQL: Cache hit |pgsql.cache.hit["{$PG.URI}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32594 |0 | |10328 |PostgreSQL: Age of oldest xid |pgsql.oldest.xid["{$PG.URI}","{$PG.USER}"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Age of oldest xid. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32595 |0 | |10328 |PostgreSQL: Get replication |pgsql.replication.process["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect metrics from the pg_stat_replication, which contains information about the WAL sender process, showing statistics about replication to that sender's connected standby server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32597 |0 | |10328 |Replication Discovery |pgsql.replication.process.discovery["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |15m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32612 |20 |1.3.6.1.4.1.789.1.6.4.7.0 |10353 |NetApp FAS3220: Failed disks count |fas3220.disk[diskFailedCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of disks that are currently broken. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32613 |20 |1.3.6.1.4.1.789.1.6.4.10.0 |10353 |NetApp FAS3220: Failed disks message |fas3220.disk[diskFailedMessage] |1m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |If diskFailedCount is non-zero, this is a string describing the failed disk or disks. Each failed disk is described. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32614 |20 |1.3.6.1.4.1.789.1.1.6.0 |10353 |NetApp FAS3220: Product firmware version |fas3220.inventory[productFirmwareVersion] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version string for the firmware running on this platform. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32615 |20 |1.3.6.1.4.1.789.1.1.2.0 |10353 |NetApp FAS3220: Product version |fas3220.inventory[productVersion] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version string for the software running on this platform. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32616 |20 |discovery[{#NODE.NAME},1.3.6.1.4.1.789.1.25.2.1.1] |10353 |Cluster metrics discovery |fas3220.cluster.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Cluster metrics per node |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32617 |20 |discovery[{#NODE.NAME},1.3.6.1.4.1.789.1.2.1.14.1.1] |10353 |CPU discovery |fas3220.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of CPU metrics per node |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32618 |20 |discovery[{#FSNAME},1.3.6.1.4.1.789.1.5.4.1.2,{#FSTYPE},1.3.6.1.4.1.789.1.5.4.1.23,{#VSERVER},1.3.6.1.4.1.789.1.5.4.1.34] |10353 |Filesystems discovery |fas3220.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Filesystems discovery with filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32619 |20 |discovery[{#NODE.NAME},1.3.6.1.4.1.789.1.21.2.1.1,{#PARTNER.NAME},1.3.6.1.4.1.789.1.21.2.1.8] |10353 |HA discovery |fas3220.ha.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of high availability metrics per node |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32620 |20 |discovery[{#IFNAME},1.3.6.1.4.1.789.1.22.2.1.2,{#NODE},1.3.6.1.4.1.789.1.22.2.1.1,{#TYPE},1.3.6.1.4.1.789.1.22.2.1.15,{#ROLE},1.3.6.1.4.1.789.1.22.2.1.3,{#IFDESCR},1.3.6.1.4.1.789.1.22.1.2.1.2] |10353 |Network ports discovery |fas3220.net.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Network interfaces discovery with filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32621 |20 |1.3.6.1.4.1.789.1.25.2.1.19.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Failed FAN count |fas3220.cluster[nodeEnvFailedFanCount, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of the number of chassis fans that are not operating within the recommended RPM range. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32622 |20 |1.3.6.1.4.1.789.1.25.2.1.20.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Failed FAN messgae |fas3220.cluster[nodeEnvFailedFanMessage, "{#NODE.NAME}"] |1m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Text message describing current condition of chassis fans. This is useful only if envFailedFanCount is not zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32623 |20 |1.3.6.1.4.1.789.1.25.2.1.21.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Degraded power supplies count |fas3220.cluster[nodeEnvFailedPowerSupplyCount, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of the number of power supplies that are in degraded mode. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32624 |20 |1.3.6.1.4.1.789.1.25.2.1.22.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Degraded power supplies message |fas3220.cluster[nodeEnvFailedPowerSupplyMessage, "{#NODE.NAME}"] |1m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Text message describing the state of any power supplies that are currently degraded. This is useful only if envFailedPowerSupplyCount is not zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32625 |20 |1.3.6.1.4.1.789.1.25.2.1.18.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Over-temperature |fas3220.cluster[nodeEnvOverTemperature, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |An indication of whether the hardware is currently operating outside of its recommended temperature range. The hardware will shutdown if the temperature exceeds critical thresholds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32626 |20 |1.3.6.1.4.1.789.1.25.2.1.11.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Health |fas3220.cluster[nodeHealth, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL |Whether or not the node can communicate with the cluster. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32627 |20 |1.3.6.1.4.1.789.1.25.2.1.3.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Location |fas3220.cluster[nodeLocation, "{#NODE.NAME}"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Node Location. Same as sysLocation for a specific node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32628 |20 |1.3.6.1.4.1.789.1.25.2.1.4.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Model |fas3220.cluster[nodeModel, "{#NODE.NAME}"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Node Model. Same as productModel for a specific node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32629 |20 |1.3.6.1.4.1.789.1.25.2.1.17.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: NVRAM battery status |fas3220.cluster[nodeNvramBatteryStatus, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |139 | | |0 | | | | |2 |NULL |An indication of the current status of the NVRAM battery or batteries.&eol;Batteries which are fully or partially discharged may not fully protect the system during a crash. The end-of-life status values are based on the manufacturer's recommended life for the batteries.&eol;Possible values:&eol;ok(1),&eol;partiallyDischarged(2),&eol;fullyDischarged(3),&eol;notPresent(4),&eol;nearEndOfLife(5),&eol;atEndOfLife(6),&eol;unknown(7),&eol;overCharged(8),&eol;fullyCharged(9). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32630 |20 |1.3.6.1.4.1.789.1.25.2.1.5.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Serial number |fas3220.cluster[nodeSerialNumber, "{#NODE.NAME}"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Node Serial Number. Same as productSerialNum for a specific node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32631 |20 |1.3.6.1.4.1.789.1.25.2.1.7.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Uptime |fas3220.cluster[nodeUptime, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Node uptime. Same as sysUpTime for a specific node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32632 |20 |1.3.6.1.4.1.789.1.2.1.14.1.4.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: CPU utilization |fas3220.cpu[cDOTCpuBusyTimePerCent, "{#NODE.NAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |The average, over the last minute, of the percentage of time that this processor was not idle. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32633 |20 |1.3.6.1.4.1.789.1.5.4.1.31.{#SNMPINDEX} |10353 |{#VSERVER}{#FSNAME}: Total space available |fas3220.fs[df64AvailKBytes, "{#VSERVER}{#FSNAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total disk space that is free for use on {#FSNAME}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32634 |20 |1.3.6.1.4.1.789.1.5.4.1.29.{#SNMPINDEX} |10353 |{#VSERVER}{#FSNAME}: Total space |fas3220.fs[df64TotalKBytes, "{#VSERVER}{#FSNAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total capacity in Bytes for {#FSNAME}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32635 |20 |1.3.6.1.4.1.789.1.5.4.1.30.{#SNMPINDEX} |10353 |{#VSERVER}{#FSNAME}: Total space used |fas3220.fs[df64UsedKBytes, "{#VSERVER}{#FSNAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total disk space that is in use on {#FSNAME}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32636 |20 |1.3.6.1.4.1.789.1.5.4.1.38.{#SNMPINDEX} |10353 |{#VSERVER}{#FSNAME}: Saved by compression percents |fas3220.fs[dfCompressSavedPercent, "{#VSERVER}{#FSNAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Provides the percentage of compression savings in a volume, which is ((compr_saved/used)) * 10(compr_saved + 0). This is only returned for volumes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32637 |20 |1.3.6.1.4.1.789.1.5.4.1.40.{#SNMPINDEX} |10353 |{#VSERVER}{#FSNAME}: Saved by deduplication percents |fas3220.fs[dfDedupeSavedPercent, "{#VSERVER}{#FSNAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Provides the percentage of deduplication savings in a volume, which is ((dedup_saved/(dedup_saved + used)) * 100). This is only returned for volumes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32638 |20 |1.3.6.1.4.1.789.1.5.4.1.6.{#SNMPINDEX} |10353 |{#VSERVER}{#FSNAME}: Used space percents |fas3220.fs[dfPerCentKBytesCapacity, "{#VSERVER}{#FSNAME}"] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |The percentage of disk space currently in use on {#FSNAME}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32639 |20 |1.3.6.1.4.1.789.1.21.2.1.5.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Cannot takeover cause |fas3220.ha[haCannotTakeoverCause, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |140 | | |0 | | | | |2 |NULL |The reason node cannot take over it's HA partner {#PARTNER.NAME}.&eol;Possible states:&eol; ok(1),&eol; unknownReason(2),&eol; disabledByOperator(3),&eol; interconnectOffline(4),&eol; disabledByPartner(5),&eol; takeoverFailed(6),&eol; mailboxIsInDegradedState(7),&eol; partnermailboxIsInUninitialisedState(8),&eol; mailboxVersionMismatch(9),&eol; nvramSizeMismatch(10),&eol; kernelVersionMismatch(11),&eol; partnerIsInBootingStage(12),&eol; diskshelfIsTooHot(13),&eol; partnerIsPerformingRevert(14),&eol; nodeIsPerformingRevert(15),&eol; sametimePartnerIsAlsoTryingToTakeUsOver(16),&eol; alreadyInTakenoverMode(17),&eol; nvramLogUnsynchronized(18),&eol; stateofBackupMailboxIsDoubtful(19). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32640 |20 |1.3.6.1.4.1.789.1.21.2.1.3.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: HA settings |fas3220.ha[haSettings, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |141 | | |0 | | | | |2 |NULL |High Availability configuration settings. The value notConfigured(1) indicates that the HA is not licensed. The thisNodeDead(5) setting indicates that this node has been takenover. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32641 |20 |1.3.6.1.4.1.789.1.22.1.2.1.28.{#IFSNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Inbound packets discarded |fas3220.net.if[if64InDiscards, "{#NODE}", "{#IFNAME}"] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of inbound packets that were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32642 |20 |1.3.6.1.4.1.789.1.22.1.2.1.29.{#IFSNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Inbound packets with errors |fas3220.net.if[if64InErrors, "{#NODE}", "{#IFNAME}"] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32643 |20 |1.3.6.1.4.1.789.1.22.1.2.1.25.{#IFSNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Bits received |fas3220.net.if[if64InOctets, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of octets received on the interface, including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32644 |20 |1.3.6.1.4.1.789.1.22.1.2.1.34.{#IFSNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Outbound packets discarded |fas3220.net.if[if64OutDiscards, "{#NODE}", "{#IFNAME}"] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outbound packets that were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32645 |20 |1.3.6.1.4.1.789.1.22.1.2.1.35.{#IFSNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Outbound packets with errors |fas3220.net.if[if64OutErrors, "{#NODE}", "{#IFNAME}"] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outbound packets that could not be transmitted because of errors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32646 |20 |1.3.6.1.4.1.789.1.22.1.2.1.31.{#IFSNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Bits sent |fas3220.net.if[if64OutOctets, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of octets transmitted out of the interface, including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32647 |20 |1.3.6.1.4.1.789.1.22.2.1.32.{#SNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Health degraded reason |fas3220.net.port[netportDegradedReason, "{#NODE}", "{#IFNAME}"] |1m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The list of reasons why the port is marked as degraded. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32648 |20 |1.3.6.1.4.1.789.1.22.2.1.30.{#SNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Health |fas3220.net.port[netportHealthStatus, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |0 | | | | |NULL |143 | | |0 | | | | |2 |NULL |The health status of the port. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32649 |20 |1.3.6.1.4.1.789.1.22.2.1.4.{#SNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): State |fas3220.net.port[netportLinkState, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |3 | | | | |NULL |142 | | |0 | | | | |2 |NULL |The link-state of the port. Normally it is either UP(2) or DOWN(3). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32650 |20 |1.3.6.1.4.1.789.1.22.2.1.3.{#SNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Role |fas3220.net.port[netportRole, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |3 | | | | |NULL |145 | | |0 | | | | |2 |NULL |Role of the port. A port must have one of the following roles: cluster(1), data(2), mgmt(3), intercluster(4), cluster-mgmt(5) or undef(0). The cluster port is used to communicate to other node(s) in the cluster. The data port services clients' requests. It is where all the file requests come in. The management port is used by administrator to manage resources within a node. The intercluster port is used to communicate to other cluster. The cluster-mgmt port is used to manage resources within the cluster. The undef role is for the port that has not yet been assigned a role. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32651 |20 |1.3.6.1.4.1.789.1.22.2.1.11.{#SNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Speed |fas3220.net.port[netportSpeedOper, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |3 | | | | |NULL |147 | | |0 | | | | |2 |NULL |The speed that appears on the port. It can be either undef(0), auto(1), ten Mb/s(2), hundred Mb/s(3), one Gb/s(4), or ten Gb/s(5). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32652 |20 |1.3.6.1.4.1.789.1.22.2.1.14.{#SNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Up by an administrator |fas3220.net.port[netportUpAdmin, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |3 | | | | |NULL |144 | | |0 | | | | |2 |NULL |Indicates whether the port status is set 'UP' by an administrator. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32653 |16 | |10354 |Cache groups |jmx.discovery[beans,"org.apache:group=\"Cache groups\",*"] |10m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32654 |16 | |10354 |Thread pool metrics |jmx.discovery[beans,"org.apache:group=\"Thread Pools\",*"] |10m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32655 |16 | |10354 |Data region metrics |jmx.discovery[beans,"org.apache:group=DataRegionMetrics,*"] |10m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32656 |16 | |10354 |Local node metrics |jmx.discovery[beans,"org.apache:group=Kernal,name=ClusterLocalNodeMetricsMXBeanImpl,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32657 |16 | |10354 |Cluster metrics |jmx.discovery[beans,"org.apache:group=Kernal,name=ClusterMetricsMXBeanImpl,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32658 |16 | |10354 |Ignite kernal metrics |jmx.discovery[beans,"org.apache:group=Kernal,name=IgniteKernal,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32659 |16 | |10354 |TCP Ccmmunication SPI metrics |jmx.discovery[beans,"org.apache:group=SPIs,name=TcpCommunicationSpi,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32660 |16 | |10354 |TCP discovery SPI |jmx.discovery[beans,"org.apache:group=SPIs,name=TcpDiscoverySpi,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32661 |16 | |10354 |Transaction metrics |jmx.discovery[beans,"org.apache:group=TransactionMetrics,name=TransactionMetricsMxBeanImpl,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32662 |16 | |10354 |Cache metrics |jmx.discovery[beans,"org.apache:name=\"org.apache.ignite.internal.processors.cache.CacheLocalMetricsMXBeanImpl\",*"] |10m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32663 |16 | |10354 |Cache group [{#JMXNAME}]: Backups |jmx["{#JMXOBJ}",Backups] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Count of backups configured for cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32664 |16 | |10354 |Cache group [{#JMXNAME}]: Caches |jmx["{#JMXOBJ}",Caches] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |List of caches. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32665 |16 | |10354 |Cache group [{#JMXNAME}]: Local node partitions, moving |jmx["{#JMXOBJ}",LocalNodeMovingPartitionsCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Count of partitions with state MOVING for this cache group located on this node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32666 |16 | |10354 |Cache group [{#JMXNAME}]: Local node partitions, owning |jmx["{#JMXOBJ}",LocalNodeOwningPartitionsCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Count of partitions with state OWNING for this cache group located on this node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32667 |16 | |10354 |Cache group [{#JMXNAME}]: Local node entries, renting |jmx["{#JMXOBJ}",LocalNodeRentingEntriesCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Count of entries remains to evict in RENTING partitions located on this node for this cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32668 |16 | |10354 |Cache group [{#JMXNAME}]: Local node partitions, renting |jmx["{#JMXOBJ}",LocalNodeRentingPartitionsCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Count of partitions with state RENTING for this cache group located on this node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32669 |16 | |10354 |Cache group [{#JMXNAME}]: Partition copies, max |jmx["{#JMXOBJ}",MaximumNumberOfPartitionCopies] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Maximum number of partition copies for all partitions of this cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32670 |16 | |10354 |Cache group [{#JMXNAME}]: Partition copies, min |jmx["{#JMXOBJ}",MinimumNumberOfPartitionCopies] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Minimum number of partition copies for all partitions of this cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32671 |16 | |10354 |Cache group [{#JMXNAME}]: Partitions |jmx["{#JMXOBJ}",Partitions] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Count of partitions for cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32672 |16 | |10354 |Thread pool [{#JMXNAME}]: Pool size, core |jmx["{#JMXOBJ}",CorePoolSize] |1m |7d |365d |0 |3 | |!msg | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The core number of threads. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32673 |16 | |10354 |Thread pool [{#JMXNAME}]: Pool size, max |jmx["{#JMXOBJ}",MaximumPoolSize] |1m |7d |365d |0 |3 | |!msg | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The maximum allowed number of threads. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32674 |16 | |10354 |Thread pool [{#JMXNAME}]: Pool size |jmx["{#JMXOBJ}",PoolSize] |1m |7d |365d |0 |3 | |!msg | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Current number of threads in the pool. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32675 |16 | |10354 |Thread pool [{#JMXNAME}]: Queue size |jmx["{#JMXOBJ}",QueueSize] |1m |7d |365d |0 |3 | |!msg | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Current size of the execution queue. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32676 |16 | |10354 |Data region {#JMXNAME}: Allocation, rate |jmx["{#JMXOBJ}",AllocationRate] |1m |7d |365d |0 |0 | |!pps | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Allocation rate (pages per second) averaged across rateTimeInternal. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32677 |16 | |10354 |Data region {#JMXNAME}: Checkpoint buffer size |jmx["{#JMXOBJ}",CheckpointBufferSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total size in bytes for checkpoint buffer. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32678 |16 | |10354 |Data region {#JMXNAME}: Dirty pages |jmx["{#JMXOBJ}",DirtyPages] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Number of pages in memory not yet synchronized with persistent storage. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32679 |16 | |10354 |Data region {#JMXNAME}: Eviction, rate |jmx["{#JMXOBJ}",EvictionRate] |1m |7d |365d |0 |0 | |!pps | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Eviction rate (pages per second). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32680 |16 | |10354 |Data region {#JMXNAME}: Size, max |jmx["{#JMXOBJ}",MaxSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Maximum memory region size defined by its data region. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32681 |16 | |10354 |Data region {#JMXNAME}: Offheap size |jmx["{#JMXOBJ}",OffHeapSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Offheap size in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32682 |16 | |10354 |Data region {#JMXNAME}: Offheap used size |jmx["{#JMXOBJ}",OffheapUsedSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total used offheap size in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32683 |16 | |10354 |Data region {#JMXNAME}: Pages fill factor |jmx["{#JMXOBJ}",PagesFillFactor] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The percentage of the used space. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32684 |16 | |10354 |Data region {#JMXNAME}: Pages replace, rate |jmx["{#JMXOBJ}",PagesReplaceRate] |1m |7d |365d |0 |0 | |!pps | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Rate at which pages in memory are replaced with pages from persistent storage (pages per second). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32685 |16 | |10354 |Data region {#JMXNAME}: Allocated, bytes |jmx["{#JMXOBJ}",TotalAllocatedSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total size of memory allocated in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32686 |16 | |10354 |Data region {#JMXNAME}: Used checkpoint buffer size |jmx["{#JMXOBJ}",UsedCheckpointBufferSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Used checkpoint buffer size in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32687 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs active, current |jmx["{#JMXOBJ}",CurrentActiveJobs] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Number of currently active jobs concurrently executing on the node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32688 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, current |jmx["{#JMXOBJ}",CurrentCancelledJobs] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Number of cancelled jobs that are still running. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32689 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: PME duration, current |jmx["{#JMXOBJ}",CurrentPmeDuration] |1m |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Current PME duration in milliseconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32690 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs rejected, current |jmx["{#JMXOBJ}",CurrentRejectedJobs] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Number of jobs rejected after more recent collision resolution operation. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32691 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Threads count, current |jmx["{#JMXOBJ}",CurrentThreadCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Current number of live threads. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32692 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs waiting, current |jmx["{#JMXOBJ}",CurrentWaitingJobs] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Number of queued jobs currently waiting to be executed. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32693 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Heap memory used |jmx["{#JMXOBJ}",HeapMemoryUsed] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Current heap size that is used for object allocation. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32694 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, rate |jmx["{#JMXOBJ}",TotalCancelledJobs] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total number of jobs cancelled by the node per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32695 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs executed, rate |jmx["{#JMXOBJ}",TotalExecutedJobs] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total number of jobs handled by the node per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32696 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs rejects, rate |jmx["{#JMXOBJ}",TotalRejectedJobs] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total number of jobs this node rejects during collision resolution operations since node startup per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32697 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Active baseline |jmx["{#JMXOBJ}",ActiveBaselineNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of nodes that are currently active in the baseline topology. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32698 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Baseline |jmx["{#JMXOBJ}",TotalBaselineNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total baseline nodes that are registered in the baseline topology. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32699 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Client |jmx["{#JMXOBJ}",TotalClientNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of client nodes in the cluster. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32700 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, total |jmx["{#JMXOBJ}",TotalNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total number of nodes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32701 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Server |jmx["{#JMXOBJ}",TotalServerNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of server nodes in the cluster. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32702 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Version |jmx["{#JMXOBJ}",FullVersion] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Version of Ignite instance. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32703 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Local node ID |jmx["{#JMXOBJ}",LocalNodeId] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Unique identifier for this node within grid. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32704 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Uptime |jmx["{#JMXOBJ}",UpTime] |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Uptime of Ignite instance. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32705 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Communication outbound messages queue |jmx["{#JMXOBJ}",OutboundMessagesQueueSize] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Outbound messages queue size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32706 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Communication messages received, rate |jmx["{#JMXOBJ}",ReceivedMessagesCount] |1m |7d |365d |0 |0 | |!msg/s | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of messages received per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32708 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Communication messages sent, rate |jmx["{#JMXOBJ}",SentMessagesCount] |1m |7d |365d |0 |0 | |!msg/s | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of messages sent per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32709 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Coordinator |jmx["{#JMXOBJ}",Coordinator] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Current coordinator UUID. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32710 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Discovery message worker queue |jmx["{#JMXOBJ}",MessageWorkerQueueSize] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Message worker queue current size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32711 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes failed |jmx["{#JMXOBJ}",NodesFailed] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Nodes failed count. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32712 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes joined |jmx["{#JMXOBJ}",NodesJoined] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Nodes join count. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32713 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes left |jmx["{#JMXOBJ}",NodesLeft] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Nodes left count. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32714 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Discovery reconnect, rate |jmx["{#JMXOBJ}",ReconnectCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Number of times node tries to (re)establish connection to another node per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32715 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: TotalProcessedMessages |jmx["{#JMXOBJ}",TotalProcessedMessages] |1m |7d |365d |0 |0 | |!msg/s | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of messages received per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32716 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Discovery messages received, rate |jmx["{#JMXOBJ}",TotalReceivedMessages] |1m |7d |365d |0 |0 | |!msg/s | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of messages processed per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32717 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Locked keys |jmx["{#JMXOBJ}",LockedKeysNumber] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of keys locked on the node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32718 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions owner, current |jmx["{#JMXOBJ}",OwnerTransactionsNumber] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of active transactions for which this node is the initiator. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32719 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions committed, rate |jmx["{#JMXOBJ}",TransactionsCommittedNumber] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of transactions which were committed per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32720 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions holding lock, current |jmx["{#JMXOBJ}",TransactionsHoldingLockNumber] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of active transactions holding at least one key lock. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32721 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions rolledback, rate |jmx["{#JMXOBJ}",TransactionsRolledBackNumber] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of transactions which were rollback per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32722 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache gets, rate |jmx["{#JMXOBJ}",CacheGets] |1m |7d |365d |0 |0 | |ops | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of gets to the cache per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32723 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache hits, pct |jmx["{#JMXOBJ}",CacheHitPercentage] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Percentage of successful hits. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32724 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache misses, pct |jmx["{#JMXOBJ}",CacheMissPercentage] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Percentage of accesses that failed to find anything. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32725 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache puts, rate |jmx["{#JMXOBJ}",CachePuts] |1m |7d |365d |0 |0 | |ops | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of puts to the cache per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32726 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache removals, rate |jmx["{#JMXOBJ}",CacheRemovals] |1m |7d |365d |0 |0 | |ops | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of removals from the cache per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32727 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache size |jmx["{#JMXOBJ}",CacheSize] |1m |7d |365d |0 |3 | |!keys | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of non-null values in the cache as a long value. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32728 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache transaction commits, rate |jmx["{#JMXOBJ}",CacheTxCommits] |1m |7d |365d |0 |0 | |!tps | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of transaction commits per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32729 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache transaction rollbacks, rate |jmx["{#JMXOBJ}",CacheTxRollbacks] |1m |7d |365d |0 |0 | |!tps | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of transaction rollback per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32730 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache heap entries |jmx["{#JMXOBJ}",HeapEntriesCount] |1m |7d |365d |0 |3 | |!keys | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of entries in heap memory. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32731 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery System |tempDescr.discovery.system |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with system(3) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32732 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |{#SNMPINDEX}: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32733 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |Ambient: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition.Ambient.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32734 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |CPU-{#SNMPINDEX}: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition.CPU.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32735 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |I/O-{#SNMPINDEX}: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition."I/O.{#SNMPINDEX}"] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32736 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |I/O-{#SNMPINDEX}: Temperature |sensor.temp.value[cpqHeTemperatureCelsius."I/O.{#SNMPINDEX}"] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: I/O-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32737 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |Memory-{#SNMPINDEX}: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition.Memory.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32738 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |PSU-{#SNMPINDEX}: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition.PSU.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32739 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |System-{#SNMPINDEX}: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition.System.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32740 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |System-{#SNMPINDEX}: Temperature |sensor.temp.value[cpqHeTemperatureCelsius.System.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: System-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32741 |0 | |10355 |SMART: Get attributes |smart.disk.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32742 |0 | |10355 |Attribute discovery |smart.attribute.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery SMART Vendor Specific Attributes of disks. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32743 |0 | |10355 |Disk discovery |smart.disk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery SMART disks. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32753 |7 | |10356 |SMART: Get attributes |smart.disk.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32754 |7 | |10356 |Attribute discovery |smart.attribute.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery SMART Vendor Specific Attributes of disks. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32755 |7 | |10356 |Disk discovery |smart.disk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery SMART disks. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32776 |20 |1.3.6.1.4.1.34774.4.1.1.3.0 |10357 |OceanStor 5300 V5: Status |huawei.5300.v5[status] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System running status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32777 |20 |1.3.6.1.4.1.34774.4.1.1.5.0 |10357 |OceanStor 5300 V5: Capacity total |huawei.5300.v5[totalCapacity] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total capacity of a device. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32778 |20 |1.3.6.1.4.1.34774.4.1.1.4.0 |10357 |OceanStor 5300 V5: Capacity used |huawei.5300.v5[usedCapacity] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Used capacity of a device. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32779 |20 |1.3.6.1.4.1.34774.4.1.1.6.0 |10357 |OceanStor 5300 V5: Version |huawei.5300.v5[version] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The device version. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32780 |20 |discovery[{#ID},1.3.6.1.4.1.34774.4.1.23.5.5.1.1,{#LOCATION},1.3.6.1.4.1.34774.4.1.23.5.5.1.2] |10357 |BBU discovery |huawei.5300.bbu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of BBU |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32781 |20 |discovery[{#ID},1.3.6.1.4.1.34774.4.1.23.5.2.1.1] |10357 |Controllers discovery |huawei.5300.controllers.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of controllers |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32782 |20 |discovery[{#ID},1.3.6.1.4.1.34774.4.1.23.5.1.1.1,{#MODEL},1.3.6.1.4.1.34774.4.1.23.5.1.1.12,{#LOCATION},1.3.6.1.4.1.34774.4.1.23.5.1.1.4] |10357 |Disks discovery |huawei.5300.disks.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of disks |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32783 |20 |discovery[{#NAME},1.3.6.1.4.1.34774.4.1.23.5.6.1.2] |10357 |Enclosure discovery |huawei.5300.enclosure.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of enclosures |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32784 |20 |discovery[{#ID},1.3.6.1.4.1.34774.4.1.23.5.4.1.1,{#LOCATION},1.3.6.1.4.1.34774.4.1.23.5.4.1.2] |10357 |FANs discovery |huawei.5300.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of FANs |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32785 |20 |discovery[{#NAME},1.3.6.1.4.1.34774.4.1.19.9.4.1.2] |10357 |LUNs discovery |huawei.5300.lun.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of LUNs |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32786 |20 |discovery[{#NODE},1.3.6.1.4.1.34774.4.1.21.3.1.1] |10357 |Nodes performance discovery |huawei.5300.nodes.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of nodes performance counters |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32787 |20 |discovery[{#NAME},1.3.6.1.4.1.34774.4.1.23.4.2.1.2,{#THRESHOLD},1.3.6.1.4.1.34774.4.1.23.4.2.1.14] |10357 |Storage pools discovery |huawei.5300.pool.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of storage pools |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32788 |20 |1.3.6.1.4.1.34774.4.1.23.5.5.1.3.{#SNMPINDEX} |10357 |BBU {#ID} on {#LOCATION}: Health status |huawei.5300.v5[hwInfoBBUHealthStatus, "{#ID}:{#LOCATION}"] |1m |7d |365d |0 |3 | | | | |NULL |150 | | |0 | | | | |2 |NULL |Health status of a BBU. For details, see definition of Enum Values (HEALTH_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32789 |20 |1.3.6.1.4.1.34774.4.1.23.5.5.1.4.{#SNMPINDEX} |10357 |BBU {#ID} on {#LOCATION}: Running status |huawei.5300.v5[hwInfoBBURunningStatus, "{#ID}:{#LOCATION}"] |1m |7d |365d |0 |3 | | | | |NULL |152 | | |0 | | | | |2 |NULL |Running status of a BBU. For details, see definition of Enum Values (RUNNING_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32790 |20 |1.3.6.1.4.1.34774.4.1.23.5.2.1.8.{#SNMPINDEX} |10357 |Controller {#ID}: CPU utilization |huawei.5300.v5[hwInfoControllerCPUUsage, "{#ID}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |CPU usage of a controller {#ID}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32791 |20 |1.3.6.1.4.1.34774.4.1.23.5.2.1.2.{#SNMPINDEX} |10357 |Controller {#ID}: Health status |huawei.5300.v5[hwInfoControllerHealthStatus, "{#ID}"] |1m |7d |365d |0 |3 | | | | |NULL |150 | | |0 | | | | |2 |NULL |Controller health status. For details, see definition of Enum Values (HEALTH_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32792 |20 |1.3.6.1.4.1.34774.4.1.23.5.2.1.9.{#SNMPINDEX} |10357 |Controller {#ID}: Memory utilization |huawei.5300.v5[hwInfoControllerMemoryUsage, "{#ID}"] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Memory usage of a controller {#ID}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32793 |20 |1.3.6.1.4.1.34774.4.1.23.5.2.1.6.{#SNMPINDEX} |10357 |Controller {#ID}: Role |huawei.5300.v5[hwInfoControllerRole, "{#ID}"] |1m |7d |365d |0 |3 | | | | |NULL |149 | | |0 | | | | |2 |NULL |Controller role.. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32794 |20 |1.3.6.1.4.1.34774.4.1.23.5.2.1.3.{#SNMPINDEX} |10357 |Controller {#ID}: Running status |huawei.5300.v5[hwInfoControllerRunningStatus, "{#ID}"] |1m |7d |365d |0 |3 | | | | |NULL |152 | | |0 | | | | |2 |NULL |Controller running status. For details, see definition of Enum Values (RUNNING_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32795 |20 |1.3.6.1.4.1.34774.4.1.23.5.1.1.25.{#SNMPINDEX} |10357 |Disk {#MODEL} on {#LOCATION}: Health score |huawei.5300.v5[hwInfoDiskHealthMark, "{#ID}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Health score of a disk. If the value is 255, indicating invalid. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32796 |20 |1.3.6.1.4.1.34774.4.1.23.5.1.1.2.{#SNMPINDEX} |10357 |Disk {#MODEL} on {#LOCATION}: Health status |huawei.5300.v5[hwInfoDiskHealthStatus, "{#ID}"] |1m |7d |365d |0 |3 | | | | |NULL |150 | | |0 | | | | |2 |NULL |Disk health status. For details, see definition of Enum Values (HEALTH_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32797 |20 |1.3.6.1.4.1.34774.4.1.23.5.1.1.3.{#SNMPINDEX} |10357 |Disk {#MODEL} on {#LOCATION}: Running status |huawei.5300.v5[hwInfoDiskRunningStatus, "{#ID}"] |1m |7d |365d |0 |3 | | | | |NULL |152 | | |0 | | | | |2 |NULL |Disk running status. For details, see definition of Enum Values (RUNNING_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32798 |20 |1.3.6.1.4.1.34774.4.1.23.5.1.1.11.{#SNMPINDEX} |10357 |Disk {#MODEL} on {#LOCATION}: Temperature |huawei.5300.v5[hwInfoDiskTemperature, "{#ID}"] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |Disk temperature. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32799 |20 |1.3.6.1.4.1.34774.4.1.23.5.6.1.4.{#SNMPINDEX} |10357 |Enclosure {#NAME}: Health status |huawei.5300.v5[hwInfoEnclosureHealthStatus, "{#NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |150 | | |0 | | | | |2 |NULL |Enclosure health status. For details, see definition of Enum Values (HEALTH_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32800 |20 |1.3.6.1.4.1.34774.4.1.23.5.6.1.5.{#SNMPINDEX} |10357 |Enclosure {#NAME}: Running status |huawei.5300.v5[hwInfoEnclosureRunningStatus, "{#NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |152 | | |0 | | | | |2 |NULL |Enclosure running status. For details, see definition of Enum Values (RUNNING_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32801 |20 |1.3.6.1.4.1.34774.4.1.23.5.6.1.8.{#SNMPINDEX} |10357 |Enclosure {#NAME}: Temperature |huawei.5300.v5[hwInfoEnclosureTemperature, "{#NAME}"] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |Enclosure temperature. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32802 |20 |1.3.6.1.4.1.34774.4.1.23.5.4.1.3.{#SNMPINDEX} |10357 |FAN {#ID} on {#LOCATION}: Health status |huawei.5300.v5[hwInfoFanHealthStatus, "{#ID}:{#LOCATION}"] |1m |7d |365d |0 |3 | | | | |NULL |150 | | |0 | | | | |2 |NULL |Health status of a fan. For details, see definition of Enum Values (HEALTH_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32803 |20 |1.3.6.1.4.1.34774.4.1.23.5.4.1.4.{#SNMPINDEX} |10357 |FAN {#ID} on {#LOCATION}: Running status |huawei.5300.v5[hwInfoFanRunningStatus, "{#ID}:{#LOCATION}"] |1m |7d |365d |0 |3 | | | | |NULL |152 | | |0 | | | | |2 |NULL |Operating status of a fan. For details, see definition of Enum Values (RUNNING_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32804 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.13.{#SNMPINDEX} |10357 |LUN {#NAME}: Average total I/O latency |huawei.5300.v5[hwPerfLunAverageIOResponseTime, "{#NAME}"] |1m |7d |365d |0 |3 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Average I/O latency of the node in milliseconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32805 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.15.{#SNMPINDEX} |10357 |LUN {#NAME}: Average read I/O latency |huawei.5300.v5[hwPerfLunAverageReadIOLatency, "{#NAME}"] |1m |7d |365d |0 |3 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Average read I/O response time in milliseconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32806 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.16.{#SNMPINDEX} |10357 |LUN {#NAME}: Average write I/O latency |huawei.5300.v5[hwPerfLunAverageWriteIOLatency, "{#NAME}"] |1m |7d |365d |0 |3 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Average write I/O response time in milliseconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32807 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.4.{#SNMPINDEX} |10357 |LUN {#NAME}: Read operations per second |huawei.5300.v5[hwPerfLunReadIOPS, "{#NAME}"] |1m |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |Read IOPS of the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32808 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.7.{#SNMPINDEX} |10357 |LUN {#NAME}: Read traffic per second |huawei.5300.v5[hwPerfLunReadTraffic, "{#NAME}"] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Current read bandwidth for the LUN. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32809 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.3.{#SNMPINDEX} |10357 |LUN {#NAME}: Total I/O per second |huawei.5300.v5[hwPerfLunTotalIOPS, "{#NAME}"] |1m |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |Current IOPS of the LUN. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32810 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.6.{#SNMPINDEX} |10357 |LUN {#NAME}: Total traffic per second |huawei.5300.v5[hwPerfLunTotalTraffic, "{#NAME}"] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Current total bandwidth for the LUN. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32811 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.5.{#SNMPINDEX} |10357 |LUN {#NAME}: Write operations per second |huawei.5300.v5[hwPerfLunWriteIOPS, "{#NAME}"] |1m |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |Write IOPS of the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32812 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.8.{#SNMPINDEX} |10357 |LUN {#NAME}: Write traffic per second |huawei.5300.v5[hwPerfLunWriteTraffic, "{#NAME}"] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Current write bandwidth for the LUN. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32813 |20 |1.3.6.1.4.1.34774.4.1.19.9.4.1.5.{#SNMPINDEX} |10357 |LUN {#NAME}: Capacity |huawei.5300.v5[hwStorageLunCapacity, "{#NAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Capacity of the LUN. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32814 |20 |1.3.6.1.4.1.34774.4.1.19.9.4.1.11.{#SNMPINDEX} |10357 |LUN {#NAME}: Status |huawei.5300.v5[hwStorageLunStatus, "{#NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |151 | | |0 | | | | |2 |NULL |Status of the LUN. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32815 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.2.{#SNMPINDEX} |10357 |Node {#NODE}: CPU utilization |huawei.5300.v5[hwPerfNodeCPUUsage, "{#NODE}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |CPU usage of the node {#NODE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32816 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.4.{#SNMPINDEX} |10357 |Node {#NODE}: Average I/O latency |huawei.5300.v5[hwPerfNodeDelay, "{#NODE}"] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Average I/O latency of the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32817 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.6.{#SNMPINDEX} |10357 |Node {#NODE}: Read operations per second |huawei.5300.v5[hwPerfNodeReadIOPS, "{#NODE}"] |1m |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |Read IOPS of the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32818 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.9.{#SNMPINDEX} |10357 |Node {#NODE}: Read traffic per second |huawei.5300.v5[hwPerfNodeReadTraffic, "{#NODE}"] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Read bandwidth for the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32819 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.5.{#SNMPINDEX} |10357 |Node {#NODE}: Total I/O per second |huawei.5300.v5[hwPerfNodeTotalIOPS, "{#NODE}"] |1m |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |Total IOPS of the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32820 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.8.{#SNMPINDEX} |10357 |Node {#NODE}: Total traffic per second |huawei.5300.v5[hwPerfNodeTotalTraffic, "{#NODE}"] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Total bandwidth for the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32821 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.7.{#SNMPINDEX} |10357 |Node {#NODE}: Write operations per second |huawei.5300.v5[hwPerfNodeWriteIOPS, "{#NODE}"] |1m |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |Write IOPS of the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32822 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.7.{#SNMPINDEX} |10357 |Node {#NODE}: Write traffic per second |huawei.5300.v5[hwPerfNodeWriteTraffic, "{#NODE}"] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Write bandwidth for the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32823 |20 |1.3.6.1.4.1.34774.4.1.23.4.2.1.9.{#SNMPINDEX} |10357 |Pool {#NAME}: Capacity free |huawei.5300.v5[hwInfoStoragePoolFreeCapacity, "{#NAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Available capacity of a storage pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32824 |15 | |10357 |Pool {#NAME}: Capacity used percentage |huawei.5300.v5[hwInfoStoragePoolFreeCapacityPct, "{#NAME}"] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last("huawei.5300.v5[hwInfoStoragePoolSubscribedCapacity, \"{#NAME}\"]")/last("huawei.5300.v5[hwInfoStoragePoolTotalCapacity, \"{#NAME}\"]")*100 | |0 | | | | |2 |NULL |Used capacity of a storage pool in percents. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32825 |20 |1.3.6.1.4.1.34774.4.1.23.4.2.1.5.{#SNMPINDEX} |10357 |Pool {#NAME}: Health status |huawei.5300.v5[hwInfoStoragePoolHealthStatus, "{#NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |150 | | |0 | | | | |2 |NULL |Health status of a storage pool. For details, see definition of Enum Values (HEALTH_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32826 |20 |1.3.6.1.4.1.34774.4.1.23.4.2.1.6.{#SNMPINDEX} |10357 |Pool {#NAME}: Running status |huawei.5300.v5[hwInfoStoragePoolRunningStatus, "{#NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |152 | | |0 | | | | |2 |NULL |Operating status of a storage pool. For details, see definition of Enum Values (RUNNING_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32827 |20 |1.3.6.1.4.1.34774.4.1.23.4.2.1.8.{#SNMPINDEX} |10357 |Pool {#NAME}: Capacity used |huawei.5300.v5[hwInfoStoragePoolSubscribedCapacity, "{#NAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Used capacity of a storage pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32828 |20 |1.3.6.1.4.1.34774.4.1.23.4.2.1.7.{#SNMPINDEX} |10357 |Pool {#NAME}: Capacity total |huawei.5300.v5[hwInfoStoragePoolTotalCapacity, "{#NAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total capacity of a storage pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32829 |0 | |10358 |RabbitMQ: Get overview |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/overview"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32830 |0 | |10358 |RabbitMQ: Get exchanges |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/exchanges"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns exchanges metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32831 |0 | |10359 |RabbitMQ: Service response time |net.tcp.service.perf[http,"{$RABBITMQ.API.HOST}","{$RABBITMQ.API.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32832 |0 | |10359 |RabbitMQ: Service ping |net.tcp.service[http,"{$RABBITMQ.API.HOST}","{$RABBITMQ.API.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32833 |0 | |10359 |RabbitMQ: Get node overview |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/overview"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32834 |0 | |10359 |RabbitMQ: Get nodes |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/nodes/{$RABBITMQ.CLUSTER.NAME}@{HOST.NAME}?memory=true"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns nodes metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32835 |0 | |10359 |RabbitMQ: Get queues |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/queues"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns queues metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32836 |0 | |10359 |RabbitMQ: Number of processes running |proc.num["{$RABBITMQ.PROCESS_NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32837 |0 | |10359 |RabbitMQ: CPU utilization |proc.cpu.util["{$RABBITMQ.PROCESS_NAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Process CPU utilization percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32838 |0 | |10359 |RabbitMQ: Memory usage (rss) |proc.mem["{$RABBITMQ.PROCESS_NAME}",,,,rss] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Resident set size memory used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32839 |0 | |10359 |RabbitMQ: Memory usage (vsize) |proc.mem["{$RABBITMQ.PROCESS_NAME}",,,,vsize] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Virtual memory size used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32884 |0 | |10358 |RabbitMQ: Healthcheck: alarms in effect in the cluster{#SINGLETON} |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/health/checks/alarms{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |0 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Responds a 200 OK if there are no alarms in effect in the cluster, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/alarms | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
-ROW |32885 |0 | |10359 |RabbitMQ: Healthcheck{#SINGLETON} |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/healthchecks/node{#SINGLETON}"] |1m |7h |365d |0 |3 | | | | |NULL |82 | | |0 | | | | |2 |NULL |Runs basic healthchecks in the current node. Checks that the rabbit application is running, channels and queues can be listed successfully, and that no alarms are in effect. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32886 |0 | |10359 |RabbitMQ: Healthcheck: expiration date on the certificates{#SINGLETON} |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/certificate-expiration/1/months{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |0 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Checks the expiration date on the certificates for every listener configured to use TLS. Responds a 200 OK if all certificates are valid (have not expired), otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s | | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
-ROW |32887 |0 | |10359 |RabbitMQ: Healthcheck: local alarms in effect on the this node{#SINGLETON} |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/local-alarms{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |0 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Responds a 200 OK if there are no local alarms in effect on the target node, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s | | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
-ROW |32888 |0 | |10359 |RabbitMQ: Healthcheck: classic mirrored queues without synchronised mirrors online{#SINGLETON} |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/node-is-mirror-sync-critical{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |0 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Checks if there are classic mirrored queues without synchronised mirrors online (queues that would potentially lose data if the target node is shut down). Responds a 200 OK if there are no such classic mirrored queues, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s | | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
-ROW |32889 |0 | |10359 |RabbitMQ: Healthcheck: queues with minimum online quorum{#SINGLETON} |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/node-is-quorum-critical{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |0 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Checks if there are quorum queues with minimum online quorum (queues that would lose their quorum and availability if the target node is shut down). Responds a 200 OK if there are no such quorum queues, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s | | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
-ROW |32890 |0 | |10359 |RabbitMQ: Healthcheck: virtual hosts on the this node{#SINGLETON} |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/virtual-hosts{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |0 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Responds a 200 OK if all virtual hosts and running on the target node, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s | | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
-ROW |32925 |19 | |10360 |RabbitMQ: Get exchanges |rabbitmq.get_exchanges |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns exchanges metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/exchanges | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32926 |19 | |10360 |RabbitMQ: Get overview |rabbitmq.get_overview |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/overview | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32927 |3 | |10361 |RabbitMQ: Service response time |net.tcp.service.perf[http,"{HOST.CONN}","{$RABBITMQ.API.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32928 |19 | |10361 |RabbitMQ: Get nodes |rabbitmq.get_nodes |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns nodes metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/nodes/{$RABBITMQ.CLUSTER.NAME}@{HOST.NAME}?memory=true| | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32929 |19 | |10361 |RabbitMQ: Get node overview |rabbitmq.get_node_overview |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/overview | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32930 |19 | |10361 |RabbitMQ: Get queues |rabbitmq.get_queues |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns queues metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/queues | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32931 |3 | |10361 |RabbitMQ: Service ping |net.tcp.service[http,"{HOST.CONN}","{$RABBITMQ.API.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32976 |19 | |10360 |RabbitMQ: Healthcheck: alarms in effect in the cluster{#SINGLETON} |rabbitmq.healthcheck.alarms[{#SINGLETON}] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Responds a 200 OK if there are no alarms in effect in the cluster, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/alarms | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
-ROW |32977 |19 | |10361 |RabbitMQ: Healthcheck{#SINGLETON} |rabbitmq.healthcheck[{#SINGLETON}] |1m |7h |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Runs basic healthchecks in the current node. Checks that the rabbit application is running, channels and queues can be listed successfully, and that no alarms are in effect. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/healthchecks/node | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32978 |19 | |10361 |RabbitMQ: Healthcheck: expiration date on the certificates{#SINGLETON} |rabbitmq.healthcheck.certificate_expiration[{#SINGLETON}] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Checks the expiration date on the certificates for every listener configured to use TLS. Responds a 200 OK if all certificates are valid (have not expired), otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/certificate-expiration/1/months | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
-ROW |32979 |19 | |10361 |RabbitMQ: Healthcheck: local alarms in effect on the this node{#SINGLETON} |rabbitmq.healthcheck.local_alarms[{#SINGLETON}] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Responds a 200 OK if there are no local alarms in effect on the target node, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/local-alarms | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
-ROW |32980 |19 | |10361 |RabbitMQ: Healthcheck: classic mirrored queues without synchronised mirrors online{#SINGLETON} |rabbitmq.healthcheck.mirror_sync[{#SINGLETON}] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Checks if there are classic mirrored queues without synchronised mirrors online (queues that would potentially lose data if the target node is shut down). Responds a 200 OK if there are no such classic mirrored queues, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/node-is-mirror-sync-critical | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
-ROW |32981 |19 | |10361 |RabbitMQ: Healthcheck: queues with minimum online quorum{#SINGLETON} |rabbitmq.healthcheck.quorum[{#SINGLETON}] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Checks if there are quorum queues with minimum online quorum (queues that would lose their quorum and availability if the target node is shut down). Responds a 200 OK if there are no such quorum queues, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/node-is-quorum-critical | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
-ROW |32982 |19 | |10361 |RabbitMQ: Healthcheck: virtual hosts on the this node{#SINGLETON} |rabbitmq.healthcheck.virtual_hosts[{#SINGLETON}] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Responds a 200 OK if all virtual hosts and running on the target node, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/virtual-hosts | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
-ROW |33017 |0 | |10362 |MongoDB: Get server status |mongodb.server.status["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns a database’s state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33018 |0 | |10362 |MongoDB: Get Replica Set status |mongodb.rs.status["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns the replica set status from the point of view of the member where the method is run. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33019 |0 | |10362 |MongoDB: Ping |mongodb.ping["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30s |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Test if a connection is alive or not. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33020 |0 | |10362 |MongoDB: Get oplog stats |mongodb.oplog.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns status of the replica set, using data polled from the oplog. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33021 |0 | |10362 |MongoDB: Get collections usage stats |mongodb.collections.usage["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns usage statistics for each collection. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33061 |0 | |10362 |Collection discovery |mongodb.collections.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Collect collections metrics.&eol;Note, depending on the number of DBs and collections this discovery operation may be expensive. Use filters with macros {$MONGODB.LLD.FILTER.DB.MATCHES}, {$MONGODB.LLD.FILTER.DB.NOT_MATCHES}, {$MONGODB.LLD.FILTER.COLLECTION.MATCHES}, {$MONGODB.LLD.FILTER.COLLECTION.NOT_MATCHES}. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33062 |0 | |10362 |Database discovery |mongodb.db.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Collect database metrics.&eol;Note, depending on the number of DBs this discovery operation may be expensive. Use filters with macros {$MONGODB.LLD.FILTER.DB.MATCHES}, {$MONGODB.LLD.FILTER.DB.NOT_MATCHES}. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33065 |0 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Get collection stats {#DBNAME}.{#COLLECTION} |mongodb.collection.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}","{#DBNAME}","{#COLLECTION}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Returns a variety of storage statistics for a given collection. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33066 |0 | |10362 |MongoDB {#DBNAME}: Get db stats {#DBNAME} |mongodb.db.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}","{#DBNAME}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Returns statistics reflecting the database system’s state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33139 |0 | |10363 |MongoDB cluster: Jumbo chunks |mongodb.jumbo_chunks.count["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of 'jumbo' chunks in the mongo cluster. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33140 |0 | |10363 |MongoDB cluster: Get server status |mongodb.server.status["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The mongos statistic |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33141 |0 | |10363 |MongoDB cluster: Ping |mongodb.ping["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30s |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Test if a connection is alive or not. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33142 |0 | |10363 |MongoDB cluster: Get mongodb.connpool.stats |mongodb.connpool.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns current info about connpool.stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33173 |0 | |10363 |Config servers discovery |mongodb.cfg.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery shared cluster config servers. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33174 |0 | |10363 |Collection discovery |mongodb.collections.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Collect collections metrics.&eol;Note, depending on the number of DBs and collections this discovery operation may be expensive. Use filters with macros {$MONGODB.LLD.FILTER.DB.MATCHES}, {$MONGODB.LLD.FILTER.DB.NOT_MATCHES}, {$MONGODB.LLD.FILTER.COLLECTION.MATCHES}, {$MONGODB.LLD.FILTER.COLLECTION.NOT_MATCHES}. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33175 |0 | |10363 |Database discovery |mongodb.db.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Collect database metrics.&eol;Note, depending on the number of DBs this discovery operation may be expensive. Use filters with macros {$MONGODB.LLD.FILTER.DB.MATCHES}, {$MONGODB.LLD.FILTER.DB.NOT_MATCHES}. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33176 |0 | |10363 |Shards discovery |mongodb.sh.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery shared cluster hosts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33177 |0 | |10363 |MongoDB {#DBNAME}.{#COLLECTION}: Get collection stats {#DBNAME}.{#COLLECTION} |mongodb.collection.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}","{#DBNAME}","{#COLLECTION}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Returns a variety of storage statistics for a given collection. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33178 |0 | |10363 |MongoDB {#DBNAME}: Get db stats {#DBNAME} |mongodb.db.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}","{#DBNAME}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Returns statistics reflecting the database system’s state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33194 |11 | |10327 |MSSQL AG '{#GROUP_NAME}' Non-Local DB '*{#REPLICA_NAME}*{#DBNAME}': Get non-local DB states |db.odbc.get["{#GROUP_NAME}*{#REPLICA_NAME}*{#DBNAME}_non-local_db.states","{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT drs.log_send_queue_size as log_send_queue_size,&bsn;drs.redo_queue_size as redo_queue_size,&bsn;ag.name as group_name,&bsn;arcs.replica_server_name as replica_name,&bsn;db_name(drs.database_id) as dbname&bsn;FROM sys.dm_hadr_database_replica_states drs &bsn;JOIN sys.dm_hadr_availability_replica_cluster_states arcs ON arcs.replica_id = drs.replica_id &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id &bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting the states of the non-local availability database. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33197 |3 | |10366 |ICMP ping |icmpping |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33198 |3 | |10366 |ICMP loss |icmppingloss |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33199 |3 | |10366 |ICMP response time |icmppingsec |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33200 |17 | |10366 |SNMP traps (fallback) |snmptrap.fallback |1m |7d |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33201 |20 |1.3.6.1.2.1.1.4.0 |10366 |System contact details |system.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33202 |20 |1.3.6.1.2.1.1.1.0 |10366 |System description |system.descr |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;A textual description of the entity. This value should&bsn;include the full name and version identification of the system's hardware type, software operating-system, and&bsn;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33203 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10366 |Hardware model name |system.hw.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33204 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10366 |Hardware serial number |system.hw.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33205 |20 |1.3.6.1.2.1.1.6.0 |10366 |System location |system.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33206 |20 |1.3.6.1.2.1.1.5.0 |10366 |System name |system.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33207 |20 |1.3.6.1.2.1.1.2.0 |10366 |System object ID |system.objectid |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33208 |20 |1.3.6.1.2.1.1.1.0 |10366 |Operating system |system.sw.os |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33209 |20 |1.3.6.1.2.1.1.3.0 |10366 |Uptime |system.uptime |1m |7d |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33210 |5 | |10366 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33211 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10366 |CPU discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&bsn;indexed with cpmCPUTotalIndex .&bsn;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&bsn;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&bsn;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33212 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10366 |Entity Serial Numbers discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33213 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2] |10366 |FAN discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of fan status maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33214 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10366 |Memory discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.&bsn;http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33215 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10366 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33216 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10366 |EtherLike discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33217 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2] |10366 |PSU discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of power supply status maintained by the environmental monitor card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33218 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10366 |Temperature discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status&bsn;maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33219 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10366 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&bsn;Object name: cpmCPUTotal5minRev&bsn;The cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33220 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10366 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&bsn;Object name: entPhysicalSerialNum |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33221 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10366 |{#SNMPVALUE}: Fan status |sensor.fan.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonFanState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33222 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10366 |{#SNMPVALUE}: Free memory |vm.memory.free[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&bsn;Object name: ciscoMemoryPoolFree&bsn;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33223 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10366 |{#SNMPVALUE}: Used memory |vm.memory.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&bsn;Object name: ciscoMemoryPoolUsed&bsn;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33224 |15 | |10366 |{#SNMPVALUE}: Memory utilization |vm.memory.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[{#SNMPINDEX}]")/(last("vm.memory.free[{#SNMPINDEX}]")+last("vm.memory.used[{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33225 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The number of inbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33226 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33227 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33228 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The number of outbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33229 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33230 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33231 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33232 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The current operational state of the interface.&bsn;- The testing(3) state indicates that no operational packet scan be passed&bsn;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&bsn;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&bsn;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&bsn;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&bsn;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33233 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The type of interface.&bsn;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&bsn;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33234 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&bsn;Object name: dot3StatsDuplexStatus&bsn;The current mode of operation of the MAC&bsn;entity. 'unknown' indicates that the current&bsn;duplex mode could not be determined.&bsn;&bsn;Management control of the duplex mode is&bsn;accomplished through the MAU MIB. When&bsn;an interface does not support autonegotiation,&bsn;or when autonegotiation is not enabled, the&bsn;duplex mode is controlled using&bsn;ifMauDefaultType. When autonegotiation is&bsn;supported and enabled, duplex mode is controlled&bsn;using ifMauAutoNegAdvertisedBits. In either&bsn;case, the currently operating duplex mode is&bsn;reflected both in this object and in ifMauType.&bsn;&bsn;Note that this object provides redundant&bsn;information with ifMauType. Normally, redundant&bsn;objects are discouraged. However, in this&bsn;instance, it allows a management application to&bsn;determine the duplex status of an interface&bsn;without having to know every possible value of&bsn;ifMauType. This was felt to be sufficiently&bsn;valuable to justify the redundancy.&bsn;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33235 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10366 |{#SNMPVALUE}: Power supply status |sensor.psu.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonSupplyState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33236 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10366 |{#SNMPVALUE}: Temperature status |sensor.temp.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonTemperatureState&bsn;The current state of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33237 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10366 |{#SNMPVALUE}: Temperature |sensor.temp.value[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonTemperatureValue&bsn;The current measurement of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33238 |3 | |10367 |ICMP ping |icmpping |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33239 |3 | |10367 |ICMP loss |icmppingloss |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33240 |3 | |10367 |ICMP response time |icmppingsec |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33241 |17 | |10367 |SNMP traps (fallback) |snmptrap.fallback |1m |7d |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33242 |20 |1.3.6.1.2.1.1.4.0 |10367 |System contact details |system.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33243 |20 |1.3.6.1.2.1.1.1.0 |10367 |System description |system.descr |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;A textual description of the entity. This value should&bsn;include the full name and version identification of the system's hardware type, software operating-system, and&bsn;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33244 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10367 |Hardware model name |system.hw.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33245 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10367 |Hardware serial number |system.hw.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33246 |20 |1.3.6.1.2.1.1.6.0 |10367 |System location |system.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33247 |20 |1.3.6.1.2.1.1.5.0 |10367 |System name |system.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33248 |20 |1.3.6.1.2.1.1.2.0 |10367 |System object ID |system.objectid |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33249 |20 |1.3.6.1.2.1.1.1.0 |10367 |Operating system |system.sw.os |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33250 |20 |1.3.6.1.2.1.1.3.0 |10367 |Uptime |system.uptime |1m |7d |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33251 |5 | |10367 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33252 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10367 |CPU discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&bsn;indexed with cpmCPUTotalIndex .&bsn;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&bsn;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&bsn;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33253 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10367 |Entity Serial Numbers discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33254 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2] |10367 |FAN discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of fan status maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33255 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10367 |Memory discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.&bsn;http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33256 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10367 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33257 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10367 |EtherLike discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33258 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2] |10367 |PSU discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of power supply status maintained by the environmental monitor card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33259 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10367 |Temperature discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status&bsn;maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33260 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10367 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&bsn;Object name: cpmCPUTotal5minRev&bsn;The cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33261 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10367 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&bsn;Object name: entPhysicalSerialNum |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33262 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10367 |{#SNMPVALUE}: Fan status |sensor.fan.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonFanState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33263 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10367 |{#SNMPVALUE}: Free memory |vm.memory.free[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&bsn;Object name: ciscoMemoryPoolFree&bsn;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33264 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10367 |{#SNMPVALUE}: Used memory |vm.memory.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&bsn;Object name: ciscoMemoryPoolUsed&bsn;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33265 |15 | |10367 |{#SNMPVALUE}: Memory utilization |vm.memory.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[{#SNMPINDEX}]")/(last("vm.memory.free[{#SNMPINDEX}]")+last("vm.memory.used[{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33266 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The number of inbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33267 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33268 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33269 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The number of outbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33270 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33271 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33272 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33273 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The current operational state of the interface.&bsn;- The testing(3) state indicates that no operational packet scan be passed&bsn;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&bsn;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&bsn;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&bsn;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&bsn;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33274 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The type of interface.&bsn;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&bsn;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33275 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&bsn;Object name: dot3StatsDuplexStatus&bsn;The current mode of operation of the MAC&bsn;entity. 'unknown' indicates that the current&bsn;duplex mode could not be determined.&bsn;&bsn;Management control of the duplex mode is&bsn;accomplished through the MAU MIB. When&bsn;an interface does not support autonegotiation,&bsn;or when autonegotiation is not enabled, the&bsn;duplex mode is controlled using&bsn;ifMauDefaultType. When autonegotiation is&bsn;supported and enabled, duplex mode is controlled&bsn;using ifMauAutoNegAdvertisedBits. In either&bsn;case, the currently operating duplex mode is&bsn;reflected both in this object and in ifMauType.&bsn;&bsn;Note that this object provides redundant&bsn;information with ifMauType. Normally, redundant&bsn;objects are discouraged. However, in this&bsn;instance, it allows a management application to&bsn;determine the duplex status of an interface&bsn;without having to know every possible value of&bsn;ifMauType. This was felt to be sufficiently&bsn;valuable to justify the redundancy.&bsn;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33276 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10367 |{#SNMPVALUE}: Power supply status |sensor.psu.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonSupplyState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33277 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10367 |{#SNMPVALUE}: Temperature status |sensor.temp.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonTemperatureState&bsn;The current state of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33278 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10367 |{#SNMPVALUE}: Temperature |sensor.temp.value[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonTemperatureValue&bsn;The current measurement of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33279 |3 | |10368 |ICMP ping |icmpping |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33280 |3 | |10368 |ICMP loss |icmppingloss |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33281 |3 | |10368 |ICMP response time |icmppingsec |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33282 |17 | |10368 |SNMP traps (fallback) |snmptrap.fallback |1m |7d |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33283 |20 |1.3.6.1.2.1.1.4.0 |10368 |System contact details |system.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33284 |20 |1.3.6.1.2.1.1.1.0 |10368 |System description |system.descr |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;A textual description of the entity. This value should&bsn;include the full name and version identification of the system's hardware type, software operating-system, and&bsn;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33285 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10368 |Hardware model name |system.hw.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33286 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10368 |Hardware serial number |system.hw.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33287 |20 |1.3.6.1.2.1.1.6.0 |10368 |System location |system.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33288 |20 |1.3.6.1.2.1.1.5.0 |10368 |System name |system.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33289 |20 |1.3.6.1.2.1.1.2.0 |10368 |System object ID |system.objectid |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33290 |20 |1.3.6.1.2.1.1.1.0 |10368 |Operating system |system.sw.os |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33291 |20 |1.3.6.1.2.1.1.3.0 |10368 |Uptime |system.uptime |1m |7d |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33292 |5 | |10368 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33293 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10368 |CPU discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&bsn;indexed with cpmCPUTotalIndex .&bsn;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&bsn;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&bsn;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33294 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10368 |Entity Serial Numbers discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33295 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2] |10368 |FAN discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of fan status maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33296 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10368 |Memory discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.&bsn;http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33297 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10368 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33298 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10368 |EtherLike discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33299 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2] |10368 |PSU discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of power supply status maintained by the environmental monitor card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33300 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10368 |Temperature discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status&bsn;maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33301 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10368 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&bsn;Object name: cpmCPUTotal5minRev&bsn;The cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33302 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10368 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&bsn;Object name: entPhysicalSerialNum |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33303 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10368 |{#SNMPVALUE}: Fan status |sensor.fan.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonFanState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33304 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10368 |{#SNMPVALUE}: Free memory |vm.memory.free[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&bsn;Object name: ciscoMemoryPoolFree&bsn;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33305 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10368 |{#SNMPVALUE}: Used memory |vm.memory.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&bsn;Object name: ciscoMemoryPoolUsed&bsn;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33306 |15 | |10368 |{#SNMPVALUE}: Memory utilization |vm.memory.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[{#SNMPINDEX}]")/(last("vm.memory.free[{#SNMPINDEX}]")+last("vm.memory.used[{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33307 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The number of inbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33308 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33309 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33310 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The number of outbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33311 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33312 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33313 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33314 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The current operational state of the interface.&bsn;- The testing(3) state indicates that no operational packet scan be passed&bsn;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&bsn;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&bsn;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&bsn;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&bsn;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33315 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The type of interface.&bsn;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&bsn;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33316 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&bsn;Object name: dot3StatsDuplexStatus&bsn;The current mode of operation of the MAC&bsn;entity. 'unknown' indicates that the current&bsn;duplex mode could not be determined.&bsn;&bsn;Management control of the duplex mode is&bsn;accomplished through the MAU MIB. When&bsn;an interface does not support autonegotiation,&bsn;or when autonegotiation is not enabled, the&bsn;duplex mode is controlled using&bsn;ifMauDefaultType. When autonegotiation is&bsn;supported and enabled, duplex mode is controlled&bsn;using ifMauAutoNegAdvertisedBits. In either&bsn;case, the currently operating duplex mode is&bsn;reflected both in this object and in ifMauType.&bsn;&bsn;Note that this object provides redundant&bsn;information with ifMauType. Normally, redundant&bsn;objects are discouraged. However, in this&bsn;instance, it allows a management application to&bsn;determine the duplex status of an interface&bsn;without having to know every possible value of&bsn;ifMauType. This was felt to be sufficiently&bsn;valuable to justify the redundancy.&bsn;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33317 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10368 |{#SNMPVALUE}: Power supply status |sensor.psu.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonSupplyState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33318 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10368 |{#SNMPVALUE}: Temperature status |sensor.temp.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonTemperatureState&bsn;The current state of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33319 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10368 |{#SNMPVALUE}: Temperature |sensor.temp.value[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonTemperatureValue&bsn;The current measurement of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33320 |3 | |10369 |ICMP ping |icmpping |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33321 |3 | |10369 |ICMP loss |icmppingloss |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33322 |3 | |10369 |ICMP response time |icmppingsec |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33323 |17 | |10369 |SNMP traps (fallback) |snmptrap.fallback |1m |7d |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33324 |20 |1.3.6.1.2.1.1.4.0 |10369 |System contact details |system.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33325 |20 |1.3.6.1.2.1.1.1.0 |10369 |System description |system.descr |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;A textual description of the entity. This value should&bsn;include the full name and version identification of the system's hardware type, software operating-system, and&bsn;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33326 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10369 |Hardware model name |system.hw.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33327 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10369 |Hardware serial number |system.hw.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33328 |20 |1.3.6.1.2.1.1.6.0 |10369 |System location |system.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33329 |20 |1.3.6.1.2.1.1.5.0 |10369 |System name |system.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33330 |20 |1.3.6.1.2.1.1.2.0 |10369 |System object ID |system.objectid |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33331 |20 |1.3.6.1.2.1.1.1.0 |10369 |Operating system |system.sw.os |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33332 |20 |1.3.6.1.2.1.1.3.0 |10369 |Uptime |system.uptime |1m |7d |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33333 |5 | |10369 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33334 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10369 |CPU discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&bsn;indexed with cpmCPUTotalIndex .&bsn;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&bsn;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&bsn;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33335 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10369 |Entity Serial Numbers discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33336 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2] |10369 |FAN discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of fan status maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33337 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10369 |Memory discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.&bsn;http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33338 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10369 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33339 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10369 |EtherLike discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33340 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2] |10369 |PSU discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of power supply status maintained by the environmental monitor card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33341 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10369 |Temperature discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status&bsn;maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33342 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10369 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&bsn;Object name: cpmCPUTotal5minRev&bsn;The cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33343 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10369 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&bsn;Object name: entPhysicalSerialNum |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33344 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10369 |{#SNMPVALUE}: Fan status |sensor.fan.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonFanState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33345 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10369 |{#SNMPVALUE}: Free memory |vm.memory.free[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&bsn;Object name: ciscoMemoryPoolFree&bsn;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33346 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10369 |{#SNMPVALUE}: Used memory |vm.memory.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&bsn;Object name: ciscoMemoryPoolUsed&bsn;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33347 |15 | |10369 |{#SNMPVALUE}: Memory utilization |vm.memory.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[{#SNMPINDEX}]")/(last("vm.memory.free[{#SNMPINDEX}]")+last("vm.memory.used[{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33348 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The number of inbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33349 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33350 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33351 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The number of outbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33352 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33353 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33354 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33355 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The current operational state of the interface.&bsn;- The testing(3) state indicates that no operational packet scan be passed&bsn;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&bsn;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&bsn;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&bsn;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&bsn;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33356 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The type of interface.&bsn;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&bsn;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33357 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&bsn;Object name: dot3StatsDuplexStatus&bsn;The current mode of operation of the MAC&bsn;entity. 'unknown' indicates that the current&bsn;duplex mode could not be determined.&bsn;&bsn;Management control of the duplex mode is&bsn;accomplished through the MAU MIB. When&bsn;an interface does not support autonegotiation,&bsn;or when autonegotiation is not enabled, the&bsn;duplex mode is controlled using&bsn;ifMauDefaultType. When autonegotiation is&bsn;supported and enabled, duplex mode is controlled&bsn;using ifMauAutoNegAdvertisedBits. In either&bsn;case, the currently operating duplex mode is&bsn;reflected both in this object and in ifMauType.&bsn;&bsn;Note that this object provides redundant&bsn;information with ifMauType. Normally, redundant&bsn;objects are discouraged. However, in this&bsn;instance, it allows a management application to&bsn;determine the duplex status of an interface&bsn;without having to know every possible value of&bsn;ifMauType. This was felt to be sufficiently&bsn;valuable to justify the redundancy.&bsn;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33358 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10369 |{#SNMPVALUE}: Power supply status |sensor.psu.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonSupplyState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33359 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10369 |{#SNMPVALUE}: Temperature status |sensor.temp.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonTemperatureState&bsn;The current state of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33360 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10369 |{#SNMPVALUE}: Temperature |sensor.temp.value[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonTemperatureValue&bsn;The current measurement of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33361 |3 | |10370 |ICMP ping |icmpping |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33362 |3 | |10370 |ICMP loss |icmppingloss |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33363 |3 | |10370 |ICMP response time |icmppingsec |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33364 |17 | |10370 |SNMP traps (fallback) |snmptrap.fallback |1m |7d |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33365 |20 |1.3.6.1.2.1.1.4.0 |10370 |System contact details |system.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33366 |20 |1.3.6.1.2.1.1.1.0 |10370 |System description |system.descr |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;A textual description of the entity. This value should&bsn;include the full name and version identification of the system's hardware type, software operating-system, and&bsn;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33367 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10370 |Hardware model name |system.hw.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33368 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10370 |Hardware serial number |system.hw.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33369 |20 |1.3.6.1.2.1.1.6.0 |10370 |System location |system.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33370 |20 |1.3.6.1.2.1.1.5.0 |10370 |System name |system.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33371 |20 |1.3.6.1.2.1.1.2.0 |10370 |System object ID |system.objectid |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33372 |20 |1.3.6.1.2.1.1.1.0 |10370 |Operating system |system.sw.os |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33373 |20 |1.3.6.1.2.1.1.3.0 |10370 |Uptime |system.uptime |1m |7d |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33374 |5 | |10370 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33375 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10370 |CPU discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&bsn;indexed with cpmCPUTotalIndex .&bsn;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&bsn;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&bsn;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33376 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10370 |Entity Serial Numbers discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33377 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2] |10370 |FAN discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of fan status maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33378 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10370 |Memory discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.&bsn;http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33379 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10370 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33380 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10370 |EtherLike discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33381 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2] |10370 |PSU discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of power supply status maintained by the environmental monitor card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33382 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10370 |Temperature discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status&bsn;maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33383 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10370 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&bsn;Object name: cpmCPUTotal5minRev&bsn;The cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33384 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10370 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&bsn;Object name: entPhysicalSerialNum |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33385 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10370 |{#SNMPVALUE}: Fan status |sensor.fan.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonFanState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33386 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10370 |{#SNMPVALUE}: Free memory |vm.memory.free[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&bsn;Object name: ciscoMemoryPoolFree&bsn;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33387 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10370 |{#SNMPVALUE}: Used memory |vm.memory.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&bsn;Object name: ciscoMemoryPoolUsed&bsn;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33388 |15 | |10370 |{#SNMPVALUE}: Memory utilization |vm.memory.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[{#SNMPINDEX}]")/(last("vm.memory.free[{#SNMPINDEX}]")+last("vm.memory.used[{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33389 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The number of inbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33390 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33391 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33392 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The number of outbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33393 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33394 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33395 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33396 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The current operational state of the interface.&bsn;- The testing(3) state indicates that no operational packet scan be passed&bsn;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&bsn;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&bsn;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&bsn;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&bsn;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33397 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The type of interface.&bsn;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&bsn;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33398 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&bsn;Object name: dot3StatsDuplexStatus&bsn;The current mode of operation of the MAC&bsn;entity. 'unknown' indicates that the current&bsn;duplex mode could not be determined.&bsn;&bsn;Management control of the duplex mode is&bsn;accomplished through the MAU MIB. When&bsn;an interface does not support autonegotiation,&bsn;or when autonegotiation is not enabled, the&bsn;duplex mode is controlled using&bsn;ifMauDefaultType. When autonegotiation is&bsn;supported and enabled, duplex mode is controlled&bsn;using ifMauAutoNegAdvertisedBits. In either&bsn;case, the currently operating duplex mode is&bsn;reflected both in this object and in ifMauType.&bsn;&bsn;Note that this object provides redundant&bsn;information with ifMauType. Normally, redundant&bsn;objects are discouraged. However, in this&bsn;instance, it allows a management application to&bsn;determine the duplex status of an interface&bsn;without having to know every possible value of&bsn;ifMauType. This was felt to be sufficiently&bsn;valuable to justify the redundancy.&bsn;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33399 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10370 |{#SNMPVALUE}: Power supply status |sensor.psu.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonSupplyState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33400 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10370 |{#SNMPVALUE}: Temperature status |sensor.temp.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonTemperatureState&bsn;The current state of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33401 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10370 |{#SNMPVALUE}: Temperature |sensor.temp.value[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonTemperatureValue&bsn;The current measurement of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33402 |3 | |10251 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33403 |3 | |10251 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33404 |3 | |10251 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33405 |17 | |10251 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33406 |20 |1.3.6.1.2.1.1.4.0 |10251 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33407 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10251 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33408 |20 |1.3.6.1.2.1.1.1.0 |10251 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33409 |20 |1.3.6.1.2.1.1.6.0 |10251 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33410 |20 |1.3.6.1.2.1.1.5.0 |10251 |System name |system.name |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33411 |20 |1.3.6.1.2.1.1.2.0 |10251 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33412 |20 |1.3.6.1.2.1.1.3.0 |10251 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33413 |5 | |10251 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33414 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10251 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33415 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10251 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33416 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10251 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33417 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33418 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33419 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33420 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33421 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33422 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33423 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33424 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33425 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33426 |15 | |10251 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33427 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10251 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33428 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10251 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33429 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10251 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33430 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10251 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33431 |15 | |10251 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33433 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10371 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33434 |20 |1.3.6.1.2.1.1.3.0 |10371 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33435 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10371 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33436 |20 |1.3.6.1.2.1.1.2.0 |10371 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33438 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10371 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33439 |20 |1.3.6.1.2.1.1.6.0 |10371 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33440 |20 |1.3.6.1.2.1.1.1.0 |10371 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33441 |20 |1.3.6.1.2.1.1.4.0 |10371 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33442 |17 | |10371 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33443 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10371 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33444 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10371 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33445 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10371 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33446 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10371 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33447 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10371 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33448 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10371 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33449 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10371 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33453 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10371 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33454 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10371 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33455 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10371 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33456 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10371 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33457 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10371 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33458 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10371 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33459 |5 | |10371 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33460 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10371 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33461 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10371 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33462 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10371 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33463 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10371 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33464 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10371 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33465 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10371 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33466 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33467 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33468 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33469 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33470 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33471 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10371 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33472 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10371 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33473 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10371 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33474 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10371 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33475 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10371 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33476 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10371 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33477 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10371 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33478 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10371 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33479 |19 | |10372 |Get chassis |netapp.chassis.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster/chassis?fields=id,state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33480 |15 | |10372 |Cluster latency, other |netapp.cluster.statistics.latency.other |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.cluster.statistics.latency_raw.other) - prev(netapp.cluster.statistics.latency_raw.other)) /&bsn;(last(netapp.cluster.statistics.iops_raw.other) - prev(netapp.cluster.statistics.iops_raw.other) +&bsn;(last(netapp.cluster.statistics.iops_raw.other) - prev(netapp.cluster.statistics.iops_raw.other) = 0) ) * 0.001 | |0 | | | | |0 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33481 |19 | |10372 |Get SVMs |netapp.svms.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/svm/svms?fields=name,state,comment | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33482 |19 | |10372 |Get FC ports |netapp.ports.fc.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/network/fc/ports?fields=name,node.name,description,enabled,fabric.switch_port,state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33483 |19 | |10372 |Get ethernet ports |netapp.ports.eth.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/network/ethernet/ports?fields=name,type,node.name,broadcast_domain.name,enabled,state,mtu,speed | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33484 |19 | |10372 |Get nodes |netapp.nodes.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster/nodes?fields=* | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33485 |19 | |10372 |Get LUNs |netapp.luns.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/storage/luns?fields=name,svm.name,space.size,space.used,status.state,status.container_state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33486 |19 | |10372 |Get FRUs |netapp.frus.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster/chassis?fields=id,frus.id,frus.state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33487 |19 | |10372 |Get disks |netapp.disks.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/storage/disks?fields=state,node.name | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33488 |15 | |10372 |Cluster latency, write |netapp.cluster.statistics.latency.write |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.cluster.statistics.latency_raw.write) - prev(netapp.cluster.statistics.latency_raw.write)) /&bsn;( last(netapp.cluster.statistics.iops_raw.write) - prev(netapp.cluster.statistics.iops_raw.write) +&bsn;(last(netapp.cluster.statistics.iops_raw.write) - prev(netapp.cluster.statistics.iops_raw.write) = 0) ) * 0.001 | |0 | | | | |0 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for write I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33489 |15 | |10372 |Cluster latency, total |netapp.cluster.statistics.latency.total |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.cluster.statistics.latency_raw.total) - prev(netapp.cluster.statistics.latency_raw.total)) /&bsn;( last(netapp.cluster.statistics.iops_raw.total) - prev(netapp.cluster.statistics.iops_raw.total) +&bsn;(last(netapp.cluster.statistics.iops_raw.total) - prev(netapp.cluster.statistics.iops_raw.total) = 0) ) * 0.001 | |0 | | | | |0 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric aggregated over all types of I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33490 |19 | |10372 |Get cluster |netapp.cluster.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33491 |15 | |10372 |Cluster latency, read |netapp.cluster.statistics.latency.read |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.cluster.statistics.latency_raw.read) - prev(netapp.cluster.statistics.latency_raw.read)) /&bsn;( last(netapp.cluster.statistics.iops_raw.read) - prev(netapp.cluster.statistics.iops_raw.read) +&bsn;(last(netapp.cluster.statistics.iops_raw.read) - prev(netapp.cluster.statistics.iops_raw.read) = 0) ) * 0.001 | |0 | | | | |0 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for read I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33492 |19 | |10372 |Get volumes |netapp.volumes.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/storage/volumes?fields=name,comment,state,type,svm.name,space.size,space.available,space.used,statistics | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33513 |19 | |10372 |Chassis discovery |netapp.chassis.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster/chassis?fields=id | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33514 |19 | |10372 |Disks discovery |netapp.disks.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/storage/disks?fields=name,node.name | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33516 |19 | |10372 |LUNs discovery |netapp.luns.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/storage/luns?fields=name,svm.name,space.size,space.used,status.state,status.container_state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33517 |19 | |10372 |Nodes discovery |netapp.nodes.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster/nodes?fields=name | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33518 |19 | |10372 |Ethernet ports discovery |netapp.ports.ether.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/network/ethernet/ports?fields=name,state,node.name | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33519 |19 | |10372 |FC ports discovery |netapp.ports.fc.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/network/fc/ports?fields=node.name,name,state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33520 |19 | |10372 |SVMs discovery |netapp.svms.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/svm/svms?fields=name | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33521 |19 | |10372 |Volumes discovery |netapp.volumes.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/storage/volumes?fields=name | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33522 |15 | |10372 |{#VOLUMENAME}: Volume latency, total |netapp.volume.statistics.latency.total[{#VOLUMENAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.volume.statistics.latency_raw.total[{#VOLUMENAME}]) - prev(netapp.volume.statistics.latency_raw.total[{#VOLUMENAME}])) /&bsn;( last(netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}]) +&bsn;(last(netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}]) = 0) ) * 0.001 | |0 | | | | |2 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric aggregated over all types of I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33523 |15 | |10372 |{#VOLUMENAME}: Volume latency, write |netapp.volume.statistics.latency.write[{#VOLUMENAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.volume.statistics.latency_raw.write[{#VOLUMENAME}]) - prev(netapp.volume.statistics.latency_raw.write[{#VOLUMENAME}])) /&bsn;( last(netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}]) +&bsn;(last(netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}]) = 0) ) * 0.001 | |0 | | | | |2 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for write I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33524 |15 | |10372 |{#VOLUMENAME}: Volume latency, read |netapp.volume.statistics.latency.read[{#VOLUMENAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.volume.statistics.latency_raw.read[{#VOLUMENAME}]) - prev(netapp.volume.statistics.latency_raw.read[{#VOLUMENAME}])) /&bsn;( last(netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}]) +&bsn;(last(netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}]) = 0)) * 0.001 | |0 | | | | |2 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for read I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33525 |15 | |10372 |{#VOLUMENAME}: Volume latency, other |netapp.volume.statistics.latency.other[{#VOLUMENAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.volume.statistics.latency_raw.other[{#VOLUMENAME}]) - prev(netapp.volume.statistics.latency_raw.other[{#VOLUMENAME}])) /&bsn;( last(netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]) +&bsn;(last(netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]) = 0) ) * 0.001 | |0 | | | | |2 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33568 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10373 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33569 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10373 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33570 |20 |1.3.6.1.2.1.1.3.0 |10373 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33571 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10373 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33572 |20 |1.3.6.1.2.1.1.2.0 |10373 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33574 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10373 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33575 |20 |1.3.6.1.2.1.1.6.0 |10373 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33576 |20 |1.3.6.1.2.1.1.1.0 |10373 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33577 |20 |1.3.6.1.2.1.1.4.0 |10373 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33578 |17 | |10373 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33579 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10373 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33580 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10373 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33581 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10373 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33582 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10373 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33583 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10373 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33584 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10373 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33585 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10373 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33589 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10373 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33590 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10373 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33591 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10373 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33592 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10373 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33593 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10373 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33594 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10373 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33595 |5 | |10373 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33596 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10373 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33597 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10373 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33598 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10373 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33599 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10373 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33600 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10373 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33601 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10373 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33602 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10373 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33603 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33604 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33605 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33606 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33607 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33608 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10373 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33609 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10373 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33610 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10373 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33611 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10373 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33612 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10373 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33613 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10373 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33614 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10373 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33615 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10373 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33616 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10373 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33617 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10373 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33618 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10373 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33619 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10374 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33620 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10374 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33621 |20 |1.3.6.1.2.1.1.3.0 |10374 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33622 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10374 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33623 |20 |1.3.6.1.2.1.1.2.0 |10374 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33625 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10374 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33626 |20 |1.3.6.1.2.1.1.6.0 |10374 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33627 |20 |1.3.6.1.2.1.1.1.0 |10374 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33628 |20 |1.3.6.1.2.1.1.4.0 |10374 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33629 |17 | |10374 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33630 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10374 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33631 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10374 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33632 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10374 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33633 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10374 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33634 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10374 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33635 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10374 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33636 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10374 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33640 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10374 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33641 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10374 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33642 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10374 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33643 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10374 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33644 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10374 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33645 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10374 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33646 |5 | |10374 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33647 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10374 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33648 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10374 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33649 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10374 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33650 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10374 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33651 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10374 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33652 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10374 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33653 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10374 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33654 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33655 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33656 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33657 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33658 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33659 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10374 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33660 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10374 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33661 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10374 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33662 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10374 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33663 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10374 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33664 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10374 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33665 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10374 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33666 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10374 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33667 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10374 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33668 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10374 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33669 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10374 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33670 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10375 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33671 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10375 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33672 |20 |1.3.6.1.2.1.1.3.0 |10375 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33673 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10375 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33674 |20 |1.3.6.1.2.1.1.2.0 |10375 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33676 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10375 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33677 |20 |1.3.6.1.2.1.1.6.0 |10375 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33678 |20 |1.3.6.1.2.1.1.1.0 |10375 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33679 |20 |1.3.6.1.2.1.1.4.0 |10375 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33680 |17 | |10375 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33681 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10375 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33682 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10375 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33683 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10375 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33684 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10375 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33685 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10375 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33686 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10375 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33687 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10375 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33691 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10375 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33692 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10375 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33693 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10375 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33694 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10375 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33695 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10375 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33696 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10375 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33697 |5 | |10375 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33698 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10375 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33699 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10375 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33700 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10375 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33701 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10375 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33702 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10375 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33703 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10375 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33704 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10375 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33705 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33706 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33707 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33708 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33709 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33710 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10375 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33711 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10375 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33712 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10375 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33713 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10375 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33714 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10375 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33715 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10375 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33716 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10375 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33717 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10375 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33718 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10375 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33719 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10375 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33720 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10375 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33721 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10376 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33722 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10376 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33723 |20 |1.3.6.1.2.1.1.3.0 |10376 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33724 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10376 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33725 |20 |1.3.6.1.2.1.1.2.0 |10376 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33727 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10376 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33728 |20 |1.3.6.1.2.1.1.6.0 |10376 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33729 |20 |1.3.6.1.2.1.1.1.0 |10376 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33730 |20 |1.3.6.1.2.1.1.4.0 |10376 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33731 |17 | |10376 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33732 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10376 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33733 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10376 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33734 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10376 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33735 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10376 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33736 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10376 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33737 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10376 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33738 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10376 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33742 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10376 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33743 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10376 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33744 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10376 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33745 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10376 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33746 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10376 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33747 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10376 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33748 |5 | |10376 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33749 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10376 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33750 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10376 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33751 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10376 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33752 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10376 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33753 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10376 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33754 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10376 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33755 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10376 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33756 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33757 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33758 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33759 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33760 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33761 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10376 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33762 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10376 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33763 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10376 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33764 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10376 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33765 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10376 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33766 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10376 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33767 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10376 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33768 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10376 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33769 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10376 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33770 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10376 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33771 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10376 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33772 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10377 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33773 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10377 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33774 |20 |1.3.6.1.2.1.1.3.0 |10377 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33775 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10377 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33776 |20 |1.3.6.1.2.1.1.2.0 |10377 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33778 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10377 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33779 |20 |1.3.6.1.2.1.1.6.0 |10377 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33780 |20 |1.3.6.1.2.1.1.1.0 |10377 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33781 |20 |1.3.6.1.2.1.1.4.0 |10377 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33782 |17 | |10377 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33783 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10377 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33784 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10377 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33785 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10377 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33786 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10377 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33787 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10377 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33788 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10377 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33789 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10377 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33793 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10377 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33794 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10377 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33795 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10377 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33796 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10377 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33797 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10377 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33798 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10377 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33799 |5 | |10377 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33800 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10377 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33801 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10377 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33802 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10377 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33803 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10377 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33804 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10377 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33805 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10377 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33806 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10377 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33807 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33808 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33809 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33810 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33811 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33812 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10377 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33813 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10377 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33814 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10377 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33815 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10377 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33816 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10377 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33817 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10377 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33818 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10377 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33819 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10377 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33820 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10377 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33821 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10377 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33822 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10377 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33823 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10378 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33824 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10378 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33825 |20 |1.3.6.1.2.1.1.3.0 |10378 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33826 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10378 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33827 |20 |1.3.6.1.2.1.1.2.0 |10378 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33829 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10378 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33830 |20 |1.3.6.1.2.1.1.6.0 |10378 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33831 |20 |1.3.6.1.2.1.1.1.0 |10378 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33832 |20 |1.3.6.1.2.1.1.4.0 |10378 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33833 |17 | |10378 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33834 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10378 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33835 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10378 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33836 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10378 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33837 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10378 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33838 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10378 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33839 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10378 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33840 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10378 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33844 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10378 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33845 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10378 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33846 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10378 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33847 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10378 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33848 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10378 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33849 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10378 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33850 |5 | |10378 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33851 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10378 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33852 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10378 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33853 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10378 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33854 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10378 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33855 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10378 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33856 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10378 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33857 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10378 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33858 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33859 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33860 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33861 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33862 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33863 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10378 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33864 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10378 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33865 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10378 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33866 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10378 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33867 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10378 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33868 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10378 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33869 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10378 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33870 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10378 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33871 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10378 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33872 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10378 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33873 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10378 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33874 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10379 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33875 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10379 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33876 |20 |1.3.6.1.2.1.1.3.0 |10379 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33877 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10379 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33878 |20 |1.3.6.1.2.1.1.2.0 |10379 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33880 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10379 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33881 |20 |1.3.6.1.2.1.1.6.0 |10379 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33882 |20 |1.3.6.1.2.1.1.1.0 |10379 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33883 |20 |1.3.6.1.2.1.1.4.0 |10379 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33884 |17 | |10379 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33885 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10379 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33886 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10379 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33887 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10379 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33888 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10379 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33889 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10379 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33890 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10379 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33891 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10379 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33895 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10379 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33896 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10379 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33897 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10379 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33898 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10379 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33899 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10379 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33900 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10379 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33901 |5 | |10379 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33902 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10379 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33903 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10379 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33904 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10379 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33905 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10379 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33906 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10379 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33907 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10379 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33908 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10379 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33909 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33910 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33911 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33912 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33913 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33914 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10379 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33915 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10379 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33916 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10379 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33917 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10379 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33918 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10379 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33919 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10379 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33920 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10379 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33921 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10379 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33922 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10379 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33923 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10379 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33924 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10379 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33925 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10371 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33926 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10371 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33927 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10371 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33928 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10371 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33929 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10371 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33930 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10380 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33931 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10380 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33932 |20 |1.3.6.1.2.1.1.3.0 |10380 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33933 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10380 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33934 |20 |1.3.6.1.2.1.1.2.0 |10380 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33936 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10380 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33937 |20 |1.3.6.1.2.1.1.6.0 |10380 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33938 |20 |1.3.6.1.2.1.1.1.0 |10380 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33939 |20 |1.3.6.1.2.1.1.4.0 |10380 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33940 |17 | |10380 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33941 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10380 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33942 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10380 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33943 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10380 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33944 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10380 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33945 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10380 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33946 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10380 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33947 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10380 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33951 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10380 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33952 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10380 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33953 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10380 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33954 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10380 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33955 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10380 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33956 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10380 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33957 |5 | |10380 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33958 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10380 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33959 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10380 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33960 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10380 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33961 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10380 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33962 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10380 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33963 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10380 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33964 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10380 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33965 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33966 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33967 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33968 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33969 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33970 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10380 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33971 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10380 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33972 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10380 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33973 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10380 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33974 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10380 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33975 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10380 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33976 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10380 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33977 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10380 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33978 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10380 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33979 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10380 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33980 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10380 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33981 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10381 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33982 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10381 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33983 |20 |1.3.6.1.2.1.1.3.0 |10381 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33984 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10381 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33985 |20 |1.3.6.1.2.1.1.2.0 |10381 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33987 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10381 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33988 |20 |1.3.6.1.2.1.1.6.0 |10381 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33989 |20 |1.3.6.1.2.1.1.1.0 |10381 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33990 |20 |1.3.6.1.2.1.1.4.0 |10381 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33991 |17 | |10381 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33992 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10381 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33993 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10381 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33994 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10381 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33995 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10381 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33996 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10381 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33997 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10381 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33998 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10381 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34002 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10381 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34003 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10381 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34004 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10381 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34005 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10381 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34006 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10381 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34007 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10381 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34008 |5 | |10381 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34009 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10381 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34010 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10381 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34011 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10381 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34012 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10381 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34013 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10381 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34014 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10381 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34015 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10381 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34016 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34017 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34018 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34019 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34020 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34021 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10381 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34022 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10381 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34023 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10381 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34024 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10381 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34025 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10381 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34026 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10381 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34027 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10381 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34028 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10381 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34029 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10381 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34030 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10381 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34031 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10381 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34032 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10382 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34033 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10382 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34034 |20 |1.3.6.1.2.1.1.3.0 |10382 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34035 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10382 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34036 |20 |1.3.6.1.2.1.1.2.0 |10382 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34038 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10382 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34039 |20 |1.3.6.1.2.1.1.6.0 |10382 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34040 |20 |1.3.6.1.2.1.1.1.0 |10382 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34041 |20 |1.3.6.1.2.1.1.4.0 |10382 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34042 |17 | |10382 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34043 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10382 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34044 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10382 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34045 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10382 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34046 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10382 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34047 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10382 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34048 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10382 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34049 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10382 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34053 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10382 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34054 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10382 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34055 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10382 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34056 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10382 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34057 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10382 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34058 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10382 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34059 |5 | |10382 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34060 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10382 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34061 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10382 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34062 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10382 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34063 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10382 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34064 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10382 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34065 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10382 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34066 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10382 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34067 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34068 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34069 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34070 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34071 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34072 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10382 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34073 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10382 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34074 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10382 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34075 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10382 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34076 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10382 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34077 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10382 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34078 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10382 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34079 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10382 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34080 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10382 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34081 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10382 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34082 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10382 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34083 |20 |1.3.6.1.2.1.1.5.0 |10373 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34084 |20 |1.3.6.1.2.1.1.5.0 |10374 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34085 |20 |1.3.6.1.2.1.1.5.0 |10375 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34086 |20 |1.3.6.1.2.1.1.5.0 |10376 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34087 |20 |1.3.6.1.2.1.1.5.0 |10377 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34088 |20 |1.3.6.1.2.1.1.5.0 |10378 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34089 |20 |1.3.6.1.2.1.1.5.0 |10379 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34090 |20 |1.3.6.1.2.1.1.5.0 |10371 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34091 |20 |1.3.6.1.2.1.1.5.0 |10380 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34092 |20 |1.3.6.1.2.1.1.5.0 |10381 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34093 |20 |1.3.6.1.2.1.1.5.0 |10382 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+FIELDS|itemid|type|snmp_oid |hostid|name |key_ |delay |history|trends|status|value_type|trapper_hosts|units |formula |logtimefmt |templateid|valuemapid|params |ipmi_sensor |authtype|username |password |publickey|privatekey|flags|interfaceid|description |inventory_link|lifetime|evaltype|jmx_endpoint |master_itemid|timeout |url |query_fields |posts|status_codes|follow_redirects|post_type|headers |retrieve_mode|request_method|output_format|verify_peer|verify_host|allow_traps|discover|
+ROW |10061 |5 | |10047 |Number of processed numeric (float) values per second |zabbix[wcache,values,float] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10062 |5 | |10047 |Number of processed character values per second |zabbix[wcache,values,str] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10063 |5 | |10047 |Number of processed log values per second |zabbix[wcache,values,log] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10064 |5 | |10047 |Number of processed numeric (unsigned) values per second |zabbix[wcache,values,uint] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10065 |5 | |10047 |Number of processed text values per second |zabbix[wcache,values,text] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10066 |5 | |10047 |Number of processed not supported values per second |zabbix[wcache,values,not supported] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10067 |5 | |10048 |Number of processed numeric (float) values per second |zabbix[wcache,values,float] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |10068 |5 | |10048 |Number of processed character values per second |zabbix[wcache,values,str] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |10069 |5 | |10048 |Number of processed log values per second |zabbix[wcache,values,log] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |10070 |5 | |10048 |Number of processed numeric (unsigned) values per second |zabbix[wcache,values,uint] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |10071 |5 | |10048 |Number of processed text values per second |zabbix[wcache,values,text] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |10072 |5 | |10048 |Number of processed not supported values per second |zabbix[wcache,values,not supported] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |22183 |5 | |10047 |Zabbix history write cache, % used |zabbix[wcache,history,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22185 |5 | |10047 |Zabbix trend write cache, % used |zabbix[wcache,trend,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22187 |5 | |10047 |Number of processed values per second |zabbix[wcache,values] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22189 |5 | |10047 |Zabbix configuration cache, % used |zabbix[rcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22191 |5 | |10047 |Zabbix value cache, % used |zabbix[vcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22196 |5 | |10047 |Zabbix value cache hits |zabbix[vcache,cache,hits] |1m |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22199 |5 | |10047 |Zabbix value cache misses |zabbix[vcache,cache,misses] |1m |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22219 |5 | |10047 |Zabbix queue over 10 minutes |zabbix[queue,10m] |10m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22231 |0 | |10050 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22232 |0 | |10050 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |NULL |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22396 |5 | |10047 |Zabbix history index cache, % used |zabbix[wcache,index,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22399 |5 | |10047 |Utilization of poller data collector processes, in % |zabbix[process,poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22400 |5 | |10047 |Utilization of unreachable poller data collector processes, in % |zabbix[process,unreachable poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22401 |5 | |10047 |Utilization of vmware data collector processes, in % |zabbix[process,vmware collector,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22402 |5 | |10047 |Utilization of http poller data collector processes, in % |zabbix[process,http poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22404 |5 | |10047 |Utilization of trapper data collector processes, in % |zabbix[process,trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22406 |5 | |10047 |Utilization of history syncer internal processes, in % |zabbix[process,history syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22408 |5 | |10047 |Utilization of housekeeper internal processes, in % |zabbix[process,housekeeper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22412 |5 | |10047 |Utilization of configuration syncer internal processes, in % |zabbix[process,configuration syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22414 |5 | |10047 |Utilization of self-monitoring internal processes, in % |zabbix[process,self-monitoring,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22416 |5 | |10047 |Utilization of ipmi poller data collector processes, in % |zabbix[process,ipmi poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22418 |5 | |10047 |Utilization of icmp pinger data collector processes, in % |zabbix[process,icmp pinger,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22420 |5 | |10047 |Utilization of proxy poller data collector processes, in % |zabbix[process,proxy poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22422 |5 | |10047 |Utilization of escalator internal processes, in % |zabbix[process,escalator,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22424 |5 | |10047 |Utilization of alerter internal processes, in % |zabbix[process,alerter,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22426 |5 | |10047 |Utilization of timer internal processes, in % |zabbix[process,timer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22430 |5 | |10047 |Utilization of discoverer data collector processes, in % |zabbix[process,discoverer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22689 |5 | |10047 |Utilization of java poller data collector processes, in % |zabbix[process,java poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22835 |0 | |10074 |Maximum number of opened files |kernel.maxfiles |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22836 |0 | |10074 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22837 |0 | |10074 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22838 |0 | |10074 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22839 |0 | |10074 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22840 |0 | |10074 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22841 |0 | |10074 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22842 |0 | |10074 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22843 |0 | |10074 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22844 |0 | |10074 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22845 |0 | |10074 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22846 |0 | |10074 |CPU interrupt time |system.cpu.util[,interrupt] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22848 |0 | |10074 |CPU nice time |system.cpu.util[,nice] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22851 |0 | |10074 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22852 |0 | |10074 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22853 |0 | |10074 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22854 |0 | |10074 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22855 |0 | |10074 |Free swap space |system.swap.size[,free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22856 |0 | |10074 |Free swap space in % |system.swap.size[,pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22857 |0 | |10074 |Total swap space |system.swap.size[,total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22858 |0 | |10074 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22859 |0 | |10074 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22860 |0 | |10074 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22861 |0 | |10074 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22862 |0 | |10074 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22863 |0 | |10074 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22867 |0 | |10074 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22868 |0 | |10074 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22869 |0 | |10074 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22870 |0 | |10074 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22871 |0 | |10074 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22872 |0 | |10074 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22875 |0 | |10075 |Maximum number of opened files |kernel.maxfiles |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22876 |0 | |10075 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22877 |0 | |10075 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22878 |0 | |10075 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22879 |0 | |10075 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22880 |0 | |10075 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22881 |0 | |10075 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22882 |0 | |10075 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22883 |0 | |10075 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22884 |0 | |10075 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22885 |0 | |10075 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22886 |0 | |10075 |CPU interrupt time |system.cpu.util[,interrupt] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22888 |0 | |10075 |CPU nice time |system.cpu.util[,nice] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22891 |0 | |10075 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22892 |0 | |10075 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22893 |0 | |10075 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22894 |0 | |10075 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22895 |0 | |10075 |Free swap space |system.swap.size[,free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22896 |0 | |10075 |Free swap space in % |system.swap.size[,pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22897 |0 | |10075 |Total swap space |system.swap.size[,total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22898 |0 | |10075 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22899 |0 | |10075 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22900 |0 | |10075 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22901 |0 | |10075 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22902 |0 | |10075 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22903 |0 | |10075 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22907 |0 | |10075 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22908 |0 | |10075 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22909 |0 | |10075 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22910 |0 | |10075 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22911 |0 | |10075 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22912 |0 | |10075 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22917 |0 | |10076 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22918 |0 | |10076 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22920 |0 | |10076 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22921 |0 | |10076 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22922 |0 | |10076 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22923 |0 | |10076 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22924 |0 | |10076 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22933 |0 | |10076 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22934 |0 | |10076 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22938 |0 | |10076 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22939 |0 | |10076 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22940 |0 | |10076 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22941 |0 | |10076 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22942 |0 | |10076 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22943 |0 | |10076 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22944 |0 | |10076 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22945 |0 | |10076 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22946 |0 | |10076 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22947 |0 | |10076 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22948 |0 | |10076 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22949 |0 | |10076 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22950 |0 | |10076 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22951 |0 | |10076 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22952 |0 | |10076 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22961 |0 | |10077 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22962 |0 | |10077 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22963 |0 | |10077 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22965 |0 | |10077 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22968 |0 | |10077 |CPU nice time |system.cpu.util[,nice] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22971 |0 | |10077 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22972 |0 | |10077 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22973 |0 | |10077 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22974 |0 | |10077 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22978 |0 | |10077 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22980 |0 | |10077 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22981 |0 | |10077 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22982 |0 | |10077 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22983 |0 | |10077 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22984 |0 | |10077 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22985 |0 | |10077 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22986 |0 | |10077 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22987 |0 | |10077 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22988 |0 | |10077 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22989 |0 | |10077 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22990 |0 | |10077 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22991 |0 | |10077 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22992 |0 | |10077 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22996 |0 | |10078 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22997 |0 | |10078 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22998 |0 | |10078 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22999 |0 | |10078 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23000 |0 | |10078 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23001 |0 | |10078 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23002 |0 | |10078 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23003 |0 | |10078 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23004 |0 | |10078 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23005 |0 | |10078 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23007 |0 | |10078 |CPU iowait time |system.cpu.util[,iowait] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23011 |0 | |10078 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23012 |0 | |10078 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23013 |0 | |10078 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23014 |0 | |10078 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23015 |0 | |10078 |Free swap space |system.swap.size[,free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23016 |0 | |10078 |Free swap space in % |system.swap.size[,pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23017 |0 | |10078 |Total swap space |system.swap.size[,total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23018 |0 | |10078 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23019 |0 | |10078 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23020 |0 | |10078 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23021 |0 | |10078 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23022 |0 | |10078 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23023 |0 | |10078 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23024 |0 | |10078 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23025 |0 | |10078 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23026 |0 | |10078 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23027 |0 | |10078 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23028 |0 | |10078 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23029 |0 | |10078 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23030 |0 | |10078 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23031 |0 | |10078 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23032 |0 | |10078 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23035 |0 | |10079 |Maximum number of opened files |kernel.maxfiles |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23036 |0 | |10079 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23039 |0 | |10079 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23041 |0 | |10079 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23042 |0 | |10079 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23043 |0 | |10079 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23053 |0 | |10079 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23054 |0 | |10079 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23058 |0 | |10079 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23059 |0 | |10079 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23060 |0 | |10079 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23061 |0 | |10079 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23062 |0 | |10079 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23063 |0 | |10079 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23067 |0 | |10079 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23068 |0 | |10079 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23069 |0 | |10079 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23070 |0 | |10079 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23071 |0 | |10079 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23072 |0 | |10079 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23073 |0 | |10075 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23074 |0 | |10075 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23075 |0 | |10074 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23076 |0 | |10074 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23077 |0 | |10079 |Incoming network traffic on en0 |net.if.in[en0] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23078 |0 | |10079 |Outgoing network traffic on en0 |net.if.out[en0] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23108 |0 | |10076 |CPU available physical processors in the shared pool |system.stat[cpu,app] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23109 |0 | |10076 |CPU entitled capacity consumed |system.stat[cpu,ec] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23110 |0 | |10076 |CPU idle time |system.stat[cpu,id] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23111 |0 | |10076 |CPU logical processor utilization |system.stat[cpu,lbusy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23112 |0 | |10076 |CPU number of physical processors consumed |system.stat[cpu,pc] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23113 |0 | |10076 |CPU system time |system.stat[cpu,sy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23114 |0 | |10076 |CPU user time |system.stat[cpu,us] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23115 |0 | |10076 |CPU iowait time |system.stat[cpu,wa] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23116 |0 | |10076 |Amount of data transferred |system.stat[disk,bps] |1m |1w |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23117 |0 | |10076 |Number of transfers |system.stat[disk,tps] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23118 |0 | |10076 |Processor units is entitled to receive |system.stat[ent] |1h |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23119 |0 | |10076 |Kernel thread context switches |system.stat[faults,cs] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23120 |0 | |10076 |Device interrupts |system.stat[faults,in] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23121 |0 | |10076 |System calls |system.stat[faults,sy] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23122 |0 | |10076 |Length of the swap queue |system.stat[kthr,b] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23123 |0 | |10076 |Length of the run queue |system.stat[kthr,r] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23124 |0 | |10076 |Active virtual pages |system.stat[memory,avm] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23125 |0 | |10076 |Free real memory |system.stat[memory,fre] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23126 |0 | |10076 |File page-ins per second |system.stat[page,fi] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23127 |0 | |10076 |File page-outs per second |system.stat[page,fo] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23128 |0 | |10076 |Pages freed (page replacement) |system.stat[page,fr] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23129 |0 | |10076 |Pages paged in from paging space |system.stat[page,pi] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23130 |0 | |10076 |Pages paged out to paging space |system.stat[page,po] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23131 |0 | |10076 |Pages scanned by page-replacement algorithm |system.stat[page,sr] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23171 |5 | |10047 |Utilization of snmp trapper data collector processes, in % |zabbix[process,snmp trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23251 |5 | |10047 |Zabbix queue |zabbix[queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23318 |0 | |10050 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23329 |0 | |10074 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23340 |5 | |10048 |Number of processed values per second |zabbix[wcache,values] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23341 |5 | |10048 |Zabbix history index cache, % used |zabbix[wcache,index,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23342 |5 | |10048 |Zabbix history write cache, % used |zabbix[wcache,history,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23343 |5 | |10048 |Utilization of self-monitoring internal processes, in % |zabbix[process,self-monitoring,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23344 |5 | |10048 |Utilization of snmp trapper data collector processes, in % |zabbix[process,snmp trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23345 |5 | |10048 |Utilization of trapper data collector processes, in % |zabbix[process,trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23346 |5 | |10048 |Utilization of unreachable poller data collector processes, in % |zabbix[process,unreachable poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23347 |5 | |10048 |Utilization of configuration syncer internal processes, in % |zabbix[process,configuration syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23348 |5 | |10048 |Utilization of poller data collector processes, in % |zabbix[process,poller,avg,busy] |1m |1w |365d |0 |0 |localhost |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23349 |5 | |10048 |Utilization of java poller data collector processes, in % |zabbix[process,java poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23350 |5 | |10048 |Utilization of history syncer internal processes, in % |zabbix[process,history syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23351 |5 | |10048 |Utilization of heartbeat sender internal processes, in % |zabbix[process,heartbeat sender,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23352 |5 | |10048 |Utilization of discoverer data collector processes, in % |zabbix[process,discoverer,avg,busy] |1m |1w |365d |0 |0 |localhost |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23353 |5 | |10048 |Utilization of housekeeper internal processes, in % |zabbix[process,housekeeper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23354 |5 | |10048 |Utilization of http poller data collector processes, in % |zabbix[process,http poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23355 |5 | |10048 |Utilization of ipmi poller data collector processes, in % |zabbix[process,ipmi poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23356 |5 | |10048 |Utilization of icmp pinger data collector processes, in % |zabbix[process,icmp pinger,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23357 |5 | |10048 |Zabbix configuration cache, % used |zabbix[rcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23358 |5 | |10048 |Zabbix queue |zabbix[queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23359 |5 | |10048 |Zabbix queue over 10 minutes |zabbix[queue,10m] |10m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23360 |5 | |10048 |Utilization of data sender internal processes, in % |zabbix[process,data sender,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23540 |0 | |10075 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23634 |5 | |10047 |Zabbix vmware cache, % used |zabbix[vmware,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23644 |3 | |10093 |FTP service is running |net.tcp.service[ftp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23645 |3 | |10094 |HTTP service is running |net.tcp.service[http] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23646 |3 | |10095 |HTTPS service is running |net.tcp.service[https] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23647 |3 | |10096 |IMAP service is running |net.tcp.service[imap] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23648 |3 | |10097 |LDAP service is running |net.tcp.service[ldap] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23649 |3 | |10098 |NNTP service is running |net.tcp.service[nntp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23650 |3 | |10099 |NTP service is running |net.udp.service[ntp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23651 |3 | |10100 |POP service is running |net.tcp.service[pop] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23652 |3 | |10101 |SMTP service is running |net.tcp.service[smtp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23653 |3 | |10102 |SSH service is running |net.tcp.service[ssh] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23654 |3 | |10103 |Telnet service is running |net.tcp.service[telnet] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23661 |5 | |10047 |Zabbix value cache operating mode |zabbix[vcache,cache,mode] |1m |1w |365d |0 |3 | | | | |NULL |15 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23663 |5 | |10047 |Utilization of task manager internal processes, in % |zabbix[process,task manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25366 |5 | |10047 |Utilization of ipmi manager internal processes, in % |zabbix[process,ipmi manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25368 |5 | |10048 |Utilization of ipmi manager internal processes, in % |zabbix[process,ipmi manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |25369 |5 | |10048 |Utilization of task manager internal processes, in % |zabbix[process,task manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |25370 |5 | |10047 |Utilization of alert manager internal processes, in % |zabbix[process,alert manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25665 |5 | |10047 |Utilization of preprocessing manager internal processes, in % |zabbix[process,preprocessing manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25666 |5 | |10047 |Utilization of preprocessing worker internal processes, in % |zabbix[process,preprocessing worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26925 |12 | |10171 |Power |power |1m |1w |365d |0 |3 | | | | |NULL |NULL | |power |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26926 |12 | |10171 |Processor Vcc |processor_vcc |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |Processor Vcc |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26927 |12 | |10171 |System Fan 3 |system_fan_3 |1m |1w |365d |0 |0 | |RPM | | |NULL |NULL | |System Fan 3 |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26928 |12 | |10171 |BB Ambient Temp |bb_ambient_temp |1m |1w |365d |0 |0 | |C | | |NULL |NULL | |BB Ambient Temp |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26929 |12 | |10171 |BB +5.0V |bb_5.0v |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +5.0V |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26930 |12 | |10171 |BB +3.3V |bb_3.3v |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +3.3V |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26931 |12 | |10171 |BB +3.3V STBY |bb_3.3v_stby |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +3.3V STBY |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26932 |12 | |10171 |BB +1.8V SM |bb_1.8v_sm |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +1.8V SM |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26933 |12 | |10172 |Front Panel Temp |front_panel_temp |1m |1w |365d |0 |0 | |C | | |NULL |NULL | |Front Panel Temp|0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26934 |12 | |10172 |Power |power |1m |1w |365d |0 |3 | | | | |NULL |NULL | |power |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26935 |12 | |10172 |System Fan 2 |system_fan_2 |1m |1w |365d |0 |0 | |RPM | | |NULL |NULL | |System Fan 2 |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26936 |12 | |10172 |System Fan 3 |system_fan_3 |1m |1w |365d |0 |0 | |RPM | | |NULL |NULL | |System Fan 3 |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26937 |12 | |10172 |BB +5.0V |bb_5.0v |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +5.0V |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26938 |12 | |10172 |BB +3.3V STBY |bb_3.3v_stby |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +3.3V STBY |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26939 |12 | |10172 |BB +1.05V PCH |bb_1.05v_pch |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +1.05V PCH |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26940 |12 | |10172 |BB +1.1V P1 Vccp |bb_1.1v_p1_vccp |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +1.1V P1 Vccp|0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26941 |12 | |10172 |BB +1.5V P1 DDR3 |bb_1.5v_p1_ddr3 |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +1.5V P1 DDR3|0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26942 |12 | |10172 |BB +3.3V |bb_3.3v |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +3.3V |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26943 |12 | |10172 |Baseboard Temp |baseboard_temp |1m |1w |365d |0 |0 | |C | | |NULL |NULL | |Baseboard Temp |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27031 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10183 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27032 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10183 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27065 |3 | |10186 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27066 |3 | |10186 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27067 |3 | |10186 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27078 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10188 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27079 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27080 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27081 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27082 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27083 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27084 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27085 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27086 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27087 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27098 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10190 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27099 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27100 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27101 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27102 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27103 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27104 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27105 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27106 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27107 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27118 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10192 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27119 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27120 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27121 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27122 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27123 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27124 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27125 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27126 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27127 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27152 |20 |1.3.6.1.2.1.1.5.0 |10204 |System name |system.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27154 |5 | |10204 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27157 |17 | |10204 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27203 |20 |1.3.6.1.2.1.1.1.0 |10207 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27207 |20 |1.3.6.1.4.1.6527.3.1.2.1.1.9.0 |10207 |Used memory |vm.memory.used[sgiKbMemoryUsed.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The value of sgiKbMemoryUsed indicates the total pre-allocated pool memory, in kilobytes, currently in use on the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27208 |20 |1.3.6.1.4.1.6527.3.1.2.1.1.1.0 |10207 |CPU utilization |system.cpu.util[sgiCpuUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The value of sgiCpuUsage indicates the current CPU utilization for the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27209 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8,{#TEMP_SENSOR},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.17] |10207 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27210 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6527.3.1.2.2.1.4.1.2] |10207 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27211 |20 |discovery[{#ENT_NAME},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8,{#ENT_CLASS},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.7,{#ENT_SN},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5] |10207 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27212 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.{#SNMPINDEX} |10207 |{#SNMPVALUE}: Temperature |sensor.temp.value[tmnxHwTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The current temperature reading in degrees celsius from this hardware component's temperature sensor. If this component does not contain a temperature sensor, then the value -1 is returned. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27213 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.4.1.2.{#SNMPINDEX} |10207 |#{#SNMPINDEX}: Fan status |sensor.fan.status[tmnxChassisFanOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |23 | | |0 | | | | |2 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;Current status of the Fan tray. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27214 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5.{#SNMPINDEX} |10207 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[tmnxHwSerialNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TIMETRA-CHASSIS-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27236 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.6.0 |10208 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27237 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.10.0 |10208 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27238 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.7.0 |10208 |Overall system health status |system.status[swOperStatus.0] |30s |2w |0d |0 |3 | | | | |NULL |25 | | |0 | | | | |0 |NULL |MIB: SW-MIB&eol;The current operational status of the switch.The states are as follow:&eol;online(1) means the switch is accessible by an external Fibre Channel port&eol;offline(2) means the switch is not accessible&eol;testing(3) means the switch is in a built-in test mode and is not accessible by an external Fibre Channel port&eol;faulty(4) means the switch is not operational. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27240 |20 |1.3.6.1.4.1.1588.2.1.1.1.26.1.0 |10208 |CPU utilization |system.cpu.util[swCpuUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB&eol;System's CPU usage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27242 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5] |10208 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27243 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5] |10208 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27244 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5] |10208 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27246 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[swSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |24 | | |0 | | | | |2 |NULL |MIB: SW-MIB&eol;Temperature status of testpoint: {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27247 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Temperature |sensor.temp.value[swSensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: SW-MIB&eol;Temperature readings of testpoint: {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27248 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[swSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |24 | | |0 | | | | |2 |NULL |MIB: SW-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27249 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Fan speed |sensor.fan.speed[swSensorValue.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: SW-MIB&eol;The current value (reading) of the sensor.&eol;The value, -2147483648, represents an unknown quantity.&eol;The fan value will be in RPM(revolution per minute) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27250 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Fan status |sensor.fan.status[swSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |24 | | |0 | | | | |2 |NULL |MIB: SW-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27294 |20 |1.3.6.1.4.1.1991.1.1.2.1.52.0 |10209 |CPU utilization |system.cpu.util[snAgGblCpuUtil1MinAvg.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The statistics collection of 1 minute CPU utilization. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27295 |20 |1.3.6.1.4.1.1991.1.1.2.1.11.0 |10210 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The version of the running software in the form'major.minor.maintenance[letters]' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27296 |20 |1.3.6.1.4.1.1991.1.1.1.1.2.0 |10210 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27297 |20 |1.3.6.1.4.1.1991.1.1.2.1.11.0 |10211 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The version of the running software in the form 'major.minor.maintenance[letters]' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27302 |20 |discovery[{#PSU_INDEX},1.3.6.1.4.1.1991.1.1.1.2.1.1.1] |10210 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasPwrSupplyTable: A table of each power supply information. Only installed power supply appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27303 |20 |discovery[{#FAN_INDEX},1.3.6.1.4.1.1991.1.1.1.3.1.1.1] |10210 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasFanTable: A table of each fan information. Only installed fan appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27304 |20 |discovery[{#SENSOR_DESCR},1.3.6.1.4.1.1991.1.1.2.13.1.1.3] |10210 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snAgentTempTable:Table to list temperatures of the modules in the device. This table is applicable to only those modules with temperature sensors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27306 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.1.1.18] |10210 |Temperature Discovery Chassis |temp.chassis.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Since temperature of the chassis is not available on all Brocade/Foundry hardware, this LLD is here to avoid unsupported items. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27307 |20 |discovery[{#PSU_UNIT},1.3.6.1.4.1.1991.1.1.1.2.2.1.1,{#PSU_INDEX},1.3.6.1.4.1.1991.1.1.1.2.2.1.2] |10211 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasPwrSupply2Table: A table of each power supply information for each unit. Only installed power supply appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27308 |20 |discovery[{#FAN_UNIT},1.3.6.1.4.1.1991.1.1.1.3.2.1.1,{#FAN_INDEX},1.3.6.1.4.1.1991.1.1.1.3.2.1.2] |10211 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasFan2Table: A table of each fan information for each unit. Only installed fan appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27309 |20 |discovery[{#SENSOR_DESCR},1.3.6.1.4.1.1991.1.1.2.13.3.1.4] |10211 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snAgentTemp2Table:Table to list temperatures of the modules in the device for each unit. This table is applicable to only those modules with temperature sensors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27310 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.3.31.2.1.1.5] |10211 |Stack Discovery |stack.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering snStackingConfigUnitTable for Model names |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27311 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.1.4.1.1.1] |10211 |Chassis Discovery |chassis.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasUnitIndex: The index to chassis table. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27312 |20 |1.3.6.1.4.1.1991.1.1.1.2.1.1.3.{#SNMPINDEX} |10210 |PSU {#PSU_INDEX}: Power supply status |sensor.psu.status[snChasPwrSupplyOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |26 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27313 |20 |1.3.6.1.4.1.1991.1.1.1.3.1.1.3.{#SNMPINDEX} |10210 |Fan {#FAN_INDEX}: Fan status |sensor.fan.status[snChasFanOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |27 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27314 |20 |1.3.6.1.4.1.1991.1.1.2.13.1.1.4.{#SNMPINDEX} |10210 |{#SENSOR_DESCR}: Temperature |sensor.temp.value[snAgentTempValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;Temperature of the sensor represented by this row. Each unit is 0.5 degrees Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27315 |20 |1.3.6.1.4.1.1991.1.1.1.1.18.{#SNMPINDEX} |10210 |Chassis #{#SNMPINDEX}: Temperature |sensor.temp.value[snChasActualTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;Temperature of the chassis. Each unit is 0.5 degrees Celsius.&eol;Only management module built with temperature sensor hardware is applicable.&eol;For those non-applicable management module, it returns no-such-name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27316 |20 |1.3.6.1.4.1.1991.1.1.1.2.2.1.4.{#SNMPINDEX} |10211 |Unit {#PSU_UNIT} PSU {#PSU_INDEX}: Power supply status |sensor.psu.status[snChasPwrSupply2OperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |26 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27317 |20 |1.3.6.1.4.1.1991.1.1.1.3.2.1.4.{#SNMPINDEX} |10211 |Unit {#FAN_UNIT} Fan {#FAN_INDEX}: Fan status |sensor.fan.status[snChasFan2OperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |27 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27318 |20 |1.3.6.1.4.1.1991.1.1.2.13.3.1.5.{#SNMPINDEX} |10211 |{#SENSOR_DESCR}: Temperature |sensor.temp.value[snAgentTemp2Value.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;Temperature of the sensor represented by this row. Each unit is 0.5 degrees Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27319 |20 |1.3.6.1.4.1.1991.1.1.3.31.2.1.1.5.{#SNMPINDEX} |10211 |Unit {#SNMPINDEX}: Hardware model name |system.hw.model[snStackingConfigUnitType.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-STACKING-MIB&eol;A description of the configured/active system type for each unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27320 |20 |1.3.6.1.4.1.1991.1.1.1.4.1.1.2.{#SNMPINDEX} |10211 |Unit {#SNMPVALUE}: Hardware serial number |system.hw.serialnumber[snChasUnitSerNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The serial number of the chassis for each unit. If the serial number is unknown or unavailable then the value should be a zero length string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27376 |20 |1.3.6.1.4.1.9.2.1.58 |10215 |CPU utilization |system.cpu.util[avgBusy5] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: OLD-CISCO-CPU-MIB&eol;5 minute exponentially-decayed moving average of the CPU busy percentage.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27378 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10216 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27379 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10216 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27390 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10212 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.&eol;http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27391 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10213 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&eol;indexed with cpmCPUTotalIndex .&eol;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&eol;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&eol;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27393 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10216 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27394 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10217 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status&eol;maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27395 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.5.1.2] |10217 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of power supply status maintained by the environmental monitor card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27396 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.4.1.2] |10217 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of fan status maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27415 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10212 |{#SNMPVALUE}: Free memory |vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27416 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10212 |{#SNMPVALUE}: Used memory |vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27417 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10213 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[cpmCPUTotal5minRev.{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;The cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27419 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10216 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27420 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10217 |{#SNMPVALUE}: Temperature status |sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current state of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27421 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10217 |{#SNMPVALUE}: Temperature |sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current measurement of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27422 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10217 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27423 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10217 |{#SENSOR_INFO}: Fan status |sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27473 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.9.1.1] |10221 |CPU and Memory and Flash Discovery |module.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27474 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.3.1.1] |10221 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A list of power supply residents in the S-series chassis. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27475 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.4.1.1] |10221 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27476 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.2.1.2] |10221 |Stack Unit Discovery |stack.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27478 |20 |1.3.6.1.4.1.6027.3.10.1.2.9.1.3.{#SNMPINDEX} |10221 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[chStackUnitCpuUtil1Min.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;CPU utilization in percentage for last 1 minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27479 |20 |1.3.6.1.4.1.6027.3.10.1.2.3.1.2.{#SNMPINDEX} |10221 |PSU {#SNMPVALUE}: Power supply status |sensor.psu.status[chSysPowerSupplyOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |31 | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The status of the power supply {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27480 |20 |1.3.6.1.4.1.6027.3.10.1.2.4.1.2.{#SNMPINDEX} |10221 |Fan {#SNMPVALUE}: Fan status |sensor.fan.status[chSysFanTrayOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |30 | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The status of the fan tray {#SNMPVALUE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27481 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.10.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Operating system |system.sw.os[chStackUnitCodeVersion.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;Current code version of this unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27482 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.21.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Hardware version(revision) |system.hw.version[chStackUnitProductRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The unit manufacturer's product revision |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27483 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.12.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Hardware serial number |system.hw.serialnumber[chStackUnitSerialNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The unit's serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27484 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.7.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Hardware model name |system.hw.model[chStackUnitModelID.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The plugged-in model ID for this unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27485 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.14.{#SNMPINDEX} |10221 |Device {#SNMPVALUE}: Temperature |sensor.temp.value[chStackUnitTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The temperature of the unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27508 |20 |1.3.6.1.2.1.47.1.1.1.1.8.1 |10222 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27509 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10222 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27510 |20 |1.3.6.1.2.1.1.1.0 |10222 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27511 |20 |1.3.6.1.4.1.171.10.97.2.36.1.1.3.0 |10222 |CPU utilization |system.cpu.util[myCPUUtilization5Min.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MY-PROCESS-MIB&eol;CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27512 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.35.1.1.1.2] |10222 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27513 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.23.1.2] |10222 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27514 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.18.1.3] |10222 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27515 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.21.1.3] |10222 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27517 |20 |1.3.6.1.4.1.171.10.97.2.1.1.23.1.3.{#SNMPINDEX} |10222 |{#SNMPVALUE}: Temperature |sensor.temp.value[mySystemTemperatureCurrent.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MY-SYSTEM-MIB&eol;Return the current temperature of the FastSwitch.The temperature display is not supported for the current temperature returns to 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27518 |20 |1.3.6.1.4.1.171.10.97.2.1.1.18.1.2.{#SNMPINDEX} |10222 |{#SNMPVALUE}: Power supply status |sensor.psu.status[mySystemElectricalSourceIsNormal.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |32 | | |0 | | | | |2 |NULL |MIB: MY-SYSTEM-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27519 |20 |1.3.6.1.4.1.171.10.97.2.1.1.21.1.2.{#SNMPINDEX} |10222 |{#SNMPVALUE}: Fan status |sensor.fan.status[mySystemFanIsNormal.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |32 | | |0 | | | | |2 |NULL |MIB: MY-SYSTEM-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27543 |20 |1.3.6.1.2.1.47.1.1.1.1.8.1 |10223 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27544 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10223 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27545 |20 |1.3.6.1.4.1.171.12.1.1.12.0 |10223 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: DLINK-AGENT-MIB&eol;A text string containing the serial number of this device. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27546 |20 |1.3.6.1.2.1.1.1.0 |10223 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27547 |20 |1.3.6.1.4.1.171.12.1.1.6.2.0 |10223 |CPU utilization |system.cpu.util[agentCPUutilizationIn1min.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: DLINK-AGENT-MIB&eol;The unit of time is 1 minute. The value will be between 0% (idle) and 100%(very busy). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27548 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.1.1.9.1.1] |10223 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27549 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.8.1.1] |10223 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27550 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.6.1.2,{#STATUS},1.3.6.1.4.1.171.12.11.1.6.1.3] |10223 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |swPowerID of EQUIPMENT-MIB::swPowerTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27551 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.7.1.2,{#STATUS},1.3.6.1.4.1.171.12.11.1.7.1.3] |10223 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |swFanID of EQUIPMENT-MIB::swFanTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27553 |20 |1.3.6.1.4.1.171.12.11.1.8.1.2.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Temperature |sensor.temp.value[swTemperatureCurrent.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EQUIPMENT-MIB&eol;The shelf current temperature. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27554 |20 |1.3.6.1.4.1.171.12.11.1.6.1.3.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Power supply status |sensor.psu.status[swPowerStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |34 | | |0 | | | | |2 |NULL |MIB: EQUIPMENT-MIB&eol;Indicates the current power status.&eol;lowVoltage : The voltage of the power unit is too low.&eol;overCurrent: The current of the power unit is too high.&eol;working : The power unit is working normally.&eol;fail : The power unit has failed.&eol;connect : The power unit is connected but not powered on.&eol;disconnect : The power unit is not connected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27555 |20 |1.3.6.1.4.1.171.12.11.1.7.1.3.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Fan status |sensor.fan.status[swFanStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |33 | | |0 | | | | |2 |NULL |MIB: EQUIPMENT-MIB&eol;Indicates the current fan status.&eol;speed-0 : If the fan function is normal and the fan does not spin due to the temperature not reaching the threshold, the status of the fan is speed 0.&eol;speed-low : Fan spin using the lowest speed.&eol;speed-middle: Fan spin using the middle speed.&eol;speed-high : Fan spin using the highest speed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27579 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10224 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27580 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10224 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27582 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10224 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27583 |20 |1.3.6.1.2.1.47.1.1.1.1.2.1 |10224 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27584 |20 |1.3.6.1.4.1.1916.1.1.1.8.0 |10224 |Device: Temperature |sensor.temp.value[extremeCurrentTemperature.0] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Temperature readings of testpoint: Device&eol;Reference: https://gtacknowledge.extremenetworks.com/articles/Q_A/Does-EXOS-support-temperature-polling-via-SNMP-on-all-nodes-in-a-stack |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27585 |20 |1.3.6.1.4.1.1916.1.1.1.7.0 |10224 |Device: Temperature status |sensor.temp.status[extremeOverTemperatureAlarm.0] |3m |2w |0d |0 |3 | | | | |NULL |37 | | |0 | | | | |0 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Temperature status of testpoint: Device |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27586 |20 |1.3.6.1.4.1.1916.1.32.1.2.0 |10224 |CPU utilization |system.cpu.util[extremeCpuMonitorTotalUtilization.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: EXTREME-SOFTWARE-MONITOR-MIB&eol;Total CPU utlization (percentage) as of last sampling. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27587 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.32.2.2.1.1] |10224 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27588 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.1.1.27.1.1] |10224 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Table of status of all power supplies in the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27589 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.1.1.9.1.1] |10224 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27591 |20 |1.3.6.1.4.1.1916.1.32.2.2.1.2.{#SNMPINDEX} |10224 |#{#SNMPVALUE}: Total memory |vm.memory.total[extremeMemoryMonitorSystemTotal.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EXTREME-SOFTWARE-MONITOR-MIB&eol;Total amount of DRAM in Kbytes in the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27593 |20 |1.3.6.1.4.1.1916.1.1.1.27.1.2.{#SNMPINDEX} |10224 |PSU {#SNMPVALUE}: Power supply status |sensor.psu.status[extremePowerSupplyStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |38 | | |0 | | | | |2 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Status of the power supply {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27594 |20 |1.3.6.1.4.1.1916.1.1.1.9.1.4.{#SNMPINDEX} |10224 |Fan {#SNMPVALUE}: Fan speed |sensor.fan.speed[extremeFanSpeed.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;The speed (RPM) of a cooling fan in the fantray {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27595 |20 |1.3.6.1.4.1.1916.1.1.1.9.1.2.{#SNMPINDEX} |10224 |Fan {#SNMPVALUE}: Fan status |sensor.fan.status[extremeFanOperational.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |36 | | |0 | | | | |2 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Operational status of a cooling fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27665 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.47.1.1.1.1.2,{#MODULE_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10227 |Module Discovery |module.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Filter limits results to 'Module level1' or Fabric Modules |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27666 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.47.1.1.1.1.2,{#MODULE_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10227 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering modules temperature (same filter as in Module Discovery) plus and temperature sensors |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27667 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_DESCR},1.3.6.1.2.1.47.1.1.1.1.2] |10227 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of PhysicalClass - 7: fan(7) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27668 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_DESCR},1.3.6.1.2.1.47.1.1.1.1.2] |10227 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of PhysicalClass - 6: powerSupply(6) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27669 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10227 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27671 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.6.{#SNMPINDEX} |10227 |{#MODULE_NAME}: CPU utilization |system.cpu.util[hh3cEntityExtCpuUsage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;The CPU usage for this entity. Generally, the CPU usage&eol;will calculate the overall CPU usage on the entity, and it&eol;is not sensible with the number of CPU on the entity |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27672 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.12.{#SNMPINDEX} |10227 |{#SNMPVALUE}: Temperature |sensor.temp.value[hh3cEntityExtTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;The temperature for the {#SNMPVALUE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27673 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.19.{#SNMPINDEX} |10227 |{#ENT_NAME}: Fan status |sensor.fan.status[hh3cEntityExtErrorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |39 | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;Indicate the error state of this entity object.&eol;fanError(41) means that the fan stops working. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27674 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.19.{#SNMPINDEX} |10227 |{#ENT_NAME}: Power supply status |sensor.psu.status[hh3cEntityExtErrorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |39 | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;Indicate the error state of this entity object.&eol;psuError(51) means that the Power Supply Unit is in the state of fault.&eol;rpsError(61) means the Redundant Power Supply is in the state of fault. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27675 |20 |1.3.6.1.2.1.47.1.1.1.1.10.{#SNMPINDEX} |10227 |{#ENT_NAME}: Operating system |system.sw.os[entPhysicalSoftwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27676 |20 |1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX} |10227 |{#ENT_NAME}: Hardware version(revision) |system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27677 |20 |1.3.6.1.2.1.47.1.1.1.1.9.{#SNMPINDEX} |10227 |{#ENT_NAME}: Firmware version |system.hw.firmware[entPhysicalFirmwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27678 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10227 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27679 |20 |1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX} |10227 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalDescr.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27745 |20 |discovery[{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10229 |MPU Discovery |mpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |http://support.huawei.com/enterprise/KnowledgebaseReadAction.action?contentId=KB1000090234. Filter limits results to Main Processing Units |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27746 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10229 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27747 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2011.5.25.31.1.1.10.1.1] |10229 |FAN Discovery |discovery.fans |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27748 |20 |1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX} |10229 |{#ENT_NAME}: Hardware version(revision) |system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27749 |20 |1.3.6.1.2.1.47.1.1.1.1.10.{#SNMPINDEX} |10229 |{#ENT_NAME}: Operating system |system.sw.os[entPhysicalSoftwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27750 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10229 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27751 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.{#SNMPINDEX} |10229 |{#ENT_NAME}: Temperature |sensor.temp.value[hwEntityTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB&eol;The temperature for the {#SNMPVALUE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27753 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.{#SNMPINDEX} |10229 |{#ENT_NAME}: CPU utilization |system.cpu.util[hwEntityCpuUsage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB&eol;The CPU usage for this entity. Generally, the CPU usage will calculate the overall CPU usage on the entity, and itis not sensible with the number of CPU on the entity.&eol;Reference: http://support.huawei.com/enterprise/KnowledgebaseReadAction.action?contentId=KB1000090234 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27754 |20 |1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX} |10229 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalDescr.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27755 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.10.1.7.{#SNMPINDEX} |10229 |#{#SNMPVALUE}: Fan status |sensor.fan.status[hwEntityFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |41 | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27777 |20 |1.3.6.1.4.1.10222.2.1.1.1.0 |10230 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ICS-CHASSIS-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27778 |20 |1.3.6.1.4.1.10222.2.1.1.1.0 |10230 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ICS-CHASSIS-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27779 |20 |discovery[{#SENSOR_TYPE},1.3.6.1.4.1.10222.2.1.9.8.1.2,{#SENSOR_INFO},1.3.6.1.4.1.10222.2.1.9.8.1.7] |10230 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering sensor's table with temperature filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27780 |20 |discovery[{#ENT_CLASS},1.3.6.1.4.1.10222.2.1.1.9.1.3,{#ENT_NAME},1.3.6.1.4.1.10222.2.1.1.9.1.2] |10230 |Unit Discovery |unit.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27781 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.10222.2.1.4.7.1.2] |10230 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A textual description of the power supply, that can be assigned by the administrator. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27782 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.10222.2.1.6.5.1.2] |10230 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |icsChassisFanDescription of icsChassisFanTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27783 |20 |1.3.6.1.4.1.10222.2.1.9.8.1.3.{#SNMPINDEX} |10230 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[icsChassisSensorSlotOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |43 | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The operational status of the sensor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27784 |20 |1.3.6.1.4.1.10222.2.1.9.8.1.8.{#SNMPINDEX} |10230 |{#SENSOR_INFO}: Temperature |sensor.temp.value[icsChassisSensorSlotValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The current value read from the sensor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27785 |20 |1.3.6.1.4.1.10222.2.1.1.10.1.1.{#SNMPINDEX} |10230 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[icsChassisSystemUnitFruSerialNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The serial number of the FRU. If not available, this value is a zero-length string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27786 |20 |1.3.6.1.4.1.10222.2.1.4.7.1.3.{#SNMPINDEX} |10230 |{#SNMPVALUE}: Power supply status |sensor.psu.status[icsChassisPowerSupplyEntry.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |44 | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;Actual status of the power supply:&eol;(1) unknown: status not known.&eol;(2) disabled: power supply is disabled.&eol;(3) failed - power supply is unable to supply power due to failure.&eol;(4) warning - power supply is supplying power, but an output or sensor is bad or warning.&eol;(5) standby - power supply believed usable,but not supplying power.&eol;(6) engaged - power supply is supplying power.&eol;(7) redundant - power supply is supplying power, but not needed.&eol;(8) notPresent - power supply is supplying power is not present. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27787 |20 |1.3.6.1.4.1.10222.2.1.6.5.1.3.{#SNMPINDEX} |10230 |{#SNMPVALUE}: Fan status |sensor.fan.status[icsChassisFanOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |42 | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The operational status of the fan unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27812 |20 |1.3.6.1.4.1.2636.3.1.2.0 |10231 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: JUNIPER-MIB&eol;The name, model, or detailed description of the box,indicating which product the box is about, for example 'M40'. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27813 |20 |1.3.6.1.4.1.2636.3.1.3.0 |10231 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: JUNIPER-MIB&eol;The serial number of this subject, blank if unknown or unavailable. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27814 |20 |1.3.6.1.4.1.2636.3.4.2.3.1.0 |10231 |Overall system health status |system.status[jnxRedAlarmState.0] |30s |2w |0d |0 |3 | | | | |NULL |46 | | |0 | | | | |0 |NULL |MIB: JUNIPER-ALARM-MIB&eol;The red alarm indication on the craft interface panel.&eol;The red alarm is on when there is some system&eol;failure or power supply failure or the system&eol;is experiencing a hardware malfunction or some&eol;threshold is being exceeded.&eol;&eol;This red alarm state could be turned off by the&eol;ACO/LT (Alarm Cut Off / Lamp Test) button on the&eol;front panel module. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27815 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5] |10231 |CPU and Memory Discovery |jnxOperatingTable.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for CPU and Memory&eol;http://kb.juniper.net/InfoCenter/index?page=content&id=KB17526&actp=search. Filter limits results to Routing Engines |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27816 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.7,{#SENSOR_INFO},1.3.6.1.4.1.2636.3.1.13.1.5] |10231 |Temperature discovery |jnxOperatingTable.discovery.temp |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for Temperature&eol;http://kb.juniper.net/InfoCenter/index?page=content&id=KB17526&actp=search. Filter limits results to Routing Engines |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27817 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5.4] |10231 |FAN Discovery |jnxOperatingTable.discovery.fans |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for Fans |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27818 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5.2] |10231 |PSU Discovery |jnxOperatingTable.discovery.psu |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for Power Supplies |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27821 |20 |1.3.6.1.4.1.2636.3.1.13.1.7.{#SNMPINDEX} |10231 |{#SENSOR_INFO}: Temperature |sensor.temp.value[jnxOperatingTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB&eol;The temperature in Celsius (degrees C) of {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27822 |20 |1.3.6.1.4.1.2636.3.1.13.1.6.4.{#SNMPINDEX} |10231 |{#SNMPVALUE}: Fan status |sensor.fan.status[jnxOperatingState.4.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |47 | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27823 |20 |1.3.6.1.4.1.2636.3.1.13.1.6.2.{#SNMPINDEX} |10231 |{#SNMPVALUE}: Power supply status |sensor.psu.status[jnxOperatingState.2.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |47 | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB&eol;If they are using DC power supplies there is a known issue on PR 1064039 where the fans do not detect the temperature correctly and fail to cool the power supply causing the shutdown to occur.&eol;This is fixed in Junos 13.3R7 https://forums.juniper.net/t5/Routing/PEM-0-not-OK-MX104/m-p/289644#M14122 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27893 |20 |1.3.6.1.2.1.1.1.0 |10233 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27894 |20 |1.3.6.1.4.1.14988.1.1.7.3.0 |10233 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MIKROTIK-MIB&eol;RouterBOARD serial number. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27895 |20 |1.3.6.1.4.1.14988.1.1.7.4.0 |10233 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MIKROTIK-MIB&eol;Current firmware version. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27898 |20 |1.3.6.1.2.1.25.2.3.1.5.65536 |10233 |Total memory |vm.memory.total[hrStorageSize.Memory] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in&eol;units of hrStorageAllocationUnits. This object is&eol;writable to allow remote configuration of the size of&eol;the storage area in those cases where such an&eol;operation makes sense and is possible on the&eol;underlying system. For example, the amount of main&eol;memory allocated to a buffer pool might be modified or&eol;the amount of disk space allocated to virtual memory&eol;might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27900 |20 |1.3.6.1.2.1.25.2.3.1.6.65536 |10233 |Used memory |vm.memory.used[hrStorageUsed.Memory] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27901 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1] |10233 |CPU discovery |hrProcessorLoad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrProcessorTable discovery |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27902 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11] |10233 |Temperature CPU discovery |mtxrHlProcessorTemperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |MIKROTIK-MIB::mtxrHlProcessorTemperature&eol;Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27903 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2] |10233 |Storage discovery |storage.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27904 |20 |1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} |10233 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[hrProcessorLoad.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27905 |20 |1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX} |10233 |CPU: Temperature |sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrHlProcessorTemperature Processor temperature in Celsius (degrees C).&eol;Might be missing in entry models (RB750, RB450G..). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27906 |15 | |10233 |Disk-{#SNMPINDEX}: Space utilization |vfs.fs.pused[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vfs.fs.used[hrStorageSize.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for Disk-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27907 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10233 |Disk-{#SNMPINDEX}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in&eol;units of hrStorageAllocationUnits. This object is&eol;writable to allow remote configuration of the size of&eol;the storage area in those cases where such an&eol;operation makes sense and is possible on the&eol;underlying system. For example, the amount of main&eol;memory allocated to a buffer pool might be modified or&eol;the amount of disk space allocated to virtual memory&eol;might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27908 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10233 |Disk-{#SNMPINDEX}: Used space |vfs.fs.used[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27930 |20 |1.3.6.1.4.1.4526.10.1.1.1.3.0 |10234 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27931 |20 |1.3.6.1.4.1.4526.10.1.1.1.4.0 |10234 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB&eol;Serial number of the switch |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27935 |20 |1.3.6.1.4.1.4526.10.1.1.5.2.0 |10234 |Total memory |vm.memory.total[agentSwitchCpuProcessMemAvailable.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB&eol;The total Memory allocated for the tasks |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27936 |20 |1.3.6.1.4.1.4526.10.1.1.4.9.0 |10234 |CPU utilization |system.cpu.util[agentSwitchCpuProcessTotalUtilization.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB&eol;CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27937 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.4526.10.43.1.8.1.1] |10234 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |FASTPATH-BOXSERVICES-PRIVATE-MIB::boxServicesTempSensorsTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27938 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.4526.10.43.1.6.1.1] |10234 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |FASTPATH-BOXSERVICES-PRIVATE-MIB::1.3.6.1.4.1.4526.10.43.1.6.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27939 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.4526.10.43.1.7.1.1] |10234 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |FASTPATH-BOXSERVICES-PRIVATE-MIB::boxServicesPowSupplyIndex |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27940 |20 |1.3.6.1.4.1.4526.10.43.1.8.1.3.{#SNMPINDEX} |10234 |#{#SNMPVALUE}: Temperature status |sensor.temp.status[boxServicesTempSensorState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |51 | | |0 | | | | |2 |NULL |MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;The state of temperature sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27941 |20 |1.3.6.1.4.1.4526.10.43.1.8.1.5.{#SNMPINDEX} |10234 |#{#SNMPVALUE}: Temperature |sensor.temp.value[boxServicesTempSensorTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;The temperature value reported by sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27942 |20 |1.3.6.1.4.1.4526.10.43.1.6.1.3.{#SNMPINDEX} |10234 |#{#SNMPVALUE}: Fan status |sensor.fan.status[boxServicesFanItemState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |50 | | |0 | | | | |2 |NULL |MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;The status of fan |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27943 |20 |1.3.6.1.4.1.4526.10.43.1.7.1.3.{#SNMPINDEX} |10234 |#{#SNMPVALUE}: Power supply status |sensor.psu.status[boxServicesPowSupplyItemState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |49 | | |0 | | | | |2 |NULL |MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;The status of power supply |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27967 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10235 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27968 |20 |1.3.6.1.2.1.47.1.1.1.1.8.1 |10235 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27970 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10235 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27971 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10235 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27972 |20 |1.3.6.1.4.1.27514.100.1.11.7.0 |10235 |Used memory |vm.memory.used[switchMemoryBusy.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: QTECH-MIB&eol;Used memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27973 |20 |1.3.6.1.4.1.27514.100.1.11.6.0 |10235 |Total memory |vm.memory.total[switchMemorySize.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: QTECH-MIB&eol;Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27975 |20 |1.3.6.1.4.1.27514.100.1.11.10.0 |10235 |CPU utilization |system.cpu.util[switchCpuUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: QTECH-MIB&eol;CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27997 |20 |1.3.6.1.4.1.11863.6.1.1.5.0 |10236 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TPLINK-SYSINFO-MIB&eol;The hardware version of the product. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27998 |20 |1.3.6.1.4.1.11863.6.1.1.6.0 |10236 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TPLINK-SYSINFO-MIB&eol;The software version of the product. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27999 |20 |1.3.6.1.4.1.11863.6.1.1.8.0 |10236 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TPLINK-SYSINFO-MIB&eol;The Serial number of the product. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28000 |20 |1.3.6.1.4.1.11863.6.1.1.5.0 |10236 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TPLINK-SYSINFO-MIB&eol;The hardware version of the product. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28001 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.11863.6.4.1.1.1.1.1] |10236 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering TPLINK-SYSMONITOR-MIB::tpSysMonitorCpuTable, displays the CPU utilization of all UNITs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28002 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.11863.6.4.1.2.1.1.1] |10236 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering TPLINK-SYSMONITOR-MIB::tpSysMonitorMemoryTable, displays the memory utilization of all UNITs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28003 |20 |1.3.6.1.4.1.11863.6.4.1.1.1.1.3.{#SNMPINDEX} |10236 |#{#SNMPVALUE}: CPU utilization |system.cpu.util[tpSysMonitorCpu1Minute.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TPLINK-SYSMONITOR-MIB&eol;Displays the CPU utilization in 1 minute.&eol;Reference: http://www.tp-link.com/faq-1330.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28026 |20 |1.2.840.10036.3.1.2.1.3.5 |10237 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IEEE802dot11-MIB&eol;A printable string used to identify the manufacturer's product name of the resource. Maximum string length is 128 octets. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28027 |20 |1.2.840.10036.3.1.2.1.4.5 |10237 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IEEE802dot11-MIB&eol;Printable string used to identify the manufacturer's product version of the resource. Maximum string length is 128 octets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28031 |20 |1.3.6.1.4.1.10002.1.1.1.4.2.1.3.2 |10237 |CPU utilization |system.cpu.util[loadValue.2] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FROGFOOT-RESOURCES-MIB&eol;5 minute load average of processor load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28141 |20 |1.3.6.1.4.1.11.2.14.11.5.1.1.3.0 |10250 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: NETSWITCH-MIB&eol;Contains the operating code version number (also known as software or firmware).&eol;For example, a software version such as A.08.01 is described as follows:&eol;A the function set available in your router&eol;08 the common release number&eol;01 updates to the current common release |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28142 |20 |1.3.6.1.4.1.11.2.36.1.1.2.9.0 |10250 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SEMI-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28143 |20 |1.3.6.1.4.1.11.2.14.11.5.1.9.6.1.0 |10250 |CPU utilization |system.cpu.util[hpSwitchCpuStat.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: STATISTICS-MIB&eol;The CPU utilization in percent(%).&eol;Reference: http://h20564.www2.hpe.com/hpsc/doc/public/display?docId=emr_na-c02597344&sp4ts.oid=51079 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28144 |20 |discovery[{#SENSOR_TYPE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2,{#SENSOR_PRECISION},1.3.6.1.2.1.99.1.1.1.3] |10250 |Temperature Discovery |temp.precision0.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with celsius filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28145 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.1] |10250 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of NETSWITCH-MIB::hpLocalMemTable, A table that contains information on all the local memory for each slot. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28146 |20 |discovery[{#ENT_CLASS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.2,{#ENT_DESCR},1.3.6.1.4.1.11.2.14.11.1.2.6.1.7,{#ENT_STATUS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.4] |10250 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of hpicfSensorObjectId that ends with: 11.2.3.7.8.3.2 - fans and are present |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28147 |20 |discovery[{#ENT_CLASS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.2,{#ENT_DESCR},1.3.6.1.4.1.11.2.14.11.1.2.6.1.7,{#ENT_STATUS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.4] |10250 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of hpicfSensorObjectId that ends with: 11.2.3.7.8.3.1 - power supplies and are present |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28148 |20 |discovery[{#ENT_CLASS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.2,{#ENT_DESCR},1.3.6.1.4.1.11.2.14.11.1.2.6.1.7,{#ENT_STATUS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.4] |10250 |Temp Status Discovery |temp.status.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of hpicfSensorObjectId that ends with: 11.2.3.7.8.3.3 - over temp status and are present |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28149 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10250 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28150 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10250 |{#SENSOR_INFO}: Temperature |sensor.temp.value[entPhySensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28153 |20 |1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.7.{#SNMPINDEX} |10250 |#{#SNMPVALUE}: Used memory |vm.memory.used[hpLocalMemAllocBytes.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: NETSWITCH-MIB&eol;The number of currently allocated bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28154 |20 |1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.{#SNMPINDEX} |10250 |{#ENT_DESCR}: Fan status |sensor.fan.status[hpicfSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |40 | | |0 | | | | |2 |NULL |MIB: HP-ICF-CHASSIS&eol;Actual status indicated by the sensor: {#ENT_DESCR} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28155 |20 |1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.{#SNMPINDEX} |10250 |{#ENT_DESCR}: Power supply status |sensor.psu.status[hpicfSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |40 | | |0 | | | | |2 |NULL |MIB: HP-ICF-CHASSIS&eol;Actual status indicated by the sensor: {#ENT_DESCR} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28156 |20 |1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.{#SNMPINDEX} |10250 |{#ENT_DESCR}: Temperature status |sensor.temp.status[hpicfSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |40 | | |0 | | | | |2 |NULL |MIB: HP-ICF-CHASSIS&eol;Actual status indicated by the sensor: {#ENT_DESCR} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28157 |20 |1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX} |10250 |{#ENT_NAME}: Hardware version(revision) |system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28158 |20 |1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX} |10250 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalDescr.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28196 |20 |discovery[{#SENSOR_TYPE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2,{#SENSOR_PRECISION},1.3.6.1.2.1.99.1.1.1.3] |10251 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with celsius filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28197 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2] |10251 |Fan Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with rpm filter |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28198 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10251 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28199 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10251 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28200 |20 |1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[entPhySensorOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |18 | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The operational status of the sensor {#SENSOR_INFO}. Possible values:&eol;- ok(1) indicates that the agent can obtain the sensor value.&eol;- unavailable(2) indicates that the agent presently cannot obtain the sensor value.&eol;- nonoperational(3) indicates that the agent believes the sensor is broken. The sensor could have a hard failure (disconnected wire), or a soft failure such as out-of-range, jittery, or wildly fluctuating readings. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28201 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Temperature |sensor.temp.value[entPhySensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28202 |20 |1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Fan status |sensor.fan.status[entPhySensorOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |18 | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The operational status of the sensor {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28203 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Fan speed |sensor.fan.speed[entPhySensorValue.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28204 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10251 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28205 |20 |1.3.6.1.2.1.47.1.1.1.1.13.{#SNMPINDEX} |10251 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalModelName.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28206 |20 |1.3.6.1.2.1.131.1.1.1.3.{#SNMPINDEX} |10251 |{#ENT_NAME}: Power supply status |sensor.psu.status[entStateOper.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |48 | | |0 | | | | |2 |NULL |MIB: ENTITY-STATE-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28244 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10252 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&eol;indexed with cpmCPUTotalIndex .&eol;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&eol;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&eol;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28246 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.5.{#SNMPINDEX} |10252 |{#SNMPVALUE}: CPU utilization |system.cpu.util[cpmCPUTotal5min.{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;The overall CPU busy percentage in the last 5 minute&eol;period. This object deprecates the avgBusy5 object from&eol;the OLD-CISCO-SYSTEM-MIB. This object is deprecated&eol;by cpmCPUTotal5minRev which has the changed range&eol;of value (0..100)&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28248 |5 | |10047 |Zabbix preprocessing queue |zabbix[preprocessing_queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28250 |5 | |10048 |Utilization of vmware data collector processes, in % |zabbix[process,vmware collector,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |28251 |5 | |10048 |Zabbix vmware cache, % used |zabbix[vmware,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |28305 |20 |discovery[{#SENSOR_TYPE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2,{#SENSOR_PRECISION},1.3.6.1.2.1.99.1.1.1.3,{#THRESHOLD_LO_WARN},1.3.6.1.4.1.30065.3.12.1.1.1.1,{#THRESHOLD_LO_CRIT},1.3.6.1.4.1.30065.3.12.1.1.1.2,{#THRESHOLD_HI_WARN},1.3.6.1.4.1.30065.3.12.1.1.1.3,{#THRESHOLD_HI_CRIT},1.3.6.1.4.1.30065.3.12.1.1.1.4]|10254 |Get sensors |sensors.get |1h |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Gets sensors with type, description, and thresholds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28308 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10254 |Entity discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28309 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10254 |PSU discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28323 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Temperature |sensor.temp.value[entPhySensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28324 |20 |1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[entPhySensorOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |18 | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The operational status of the sensor {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28325 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Fan speed |sensor.fan.speed[entPhySensorValue.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28326 |20 |1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Fan status |sensor.fan.status[entPhySensorOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |18 | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The operational status of the sensor {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28327 |20 |1.3.6.1.2.1.47.1.1.1.1.13.{#SNMPINDEX} |10254 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalModelName.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28328 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10254 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28329 |20 |1.3.6.1.2.1.131.1.1.1.3.{#SNMPINDEX} |10254 |{#ENT_NAME}: Power supply status |sensor.psu.status[entStateOper.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |48 | | |0 | | | | |2 |NULL |MIB: ENTITY-STATE-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28341 |20 |1.3.6.1.4.1.674.10892.5.2.1.0 |10255 |Overall system health status |system.status[globalSystemStatus.0] |30s |2w |0d |0 |3 | | | | |NULL |59 | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the overall rollup status of all components in the system being monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28342 |20 |1.3.6.1.4.1.674.10892.5.1.3.12.0 |10255 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the model name of the system. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28344 |20 |1.3.6.1.4.1.674.10892.5.1.3.2.0 |10255 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the service tag of the system. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28345 |20 |1.3.6.1.4.1.674.10892.5.1.1.8.0 |10255 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the firmware version of a remote access card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28346 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.20.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.674.10892.5.4.700.20.1.8] |10255 |Temperature CPU Discovery |temp.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Probe Table IDRAC-MIB-SMIv2::temperatureProbeTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28347 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.20.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.674.10892.5.4.700.20.1.8] |10255 |Temperature Ambient Discovery |temp.ambient.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Probe Table IDRAC-MIB-SMIv2::temperatureProbeTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28348 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.600.12.1.5,{#PSU_DESCR},1.3.6.1.4.1.674.10892.5.4.600.12.1.8] |10255 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::powerSupplyTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28349 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.12.1.5,{#FAN_DESCR},1.3.6.1.4.1.674.10892.5.4.700.12.1.8,{#TYPE},1.3.6.1.4.1.674.10892.5.4.700.12.1.7] |10255 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::coolingDeviceTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28350 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1,{#DISK_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2] |10255 |Physical Disk Discovery |physicaldisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::physicalDiskTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28351 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1,{#DISK_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2] |10255 |Virtual Disk Discovery |virtualdisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::virtualDiskTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28352 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38,{#CNTLR_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79] |10255 |Array Controller Discovery |physicaldisk.arr.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::controllerTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28353 |20 |discovery[{#BATTERY_NUM},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1] |10255 |Array Controller Cache Discovery |array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::batteryTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28354 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} |10255 |{#SENSOR_LOCALE}: Temperature |sensor.temp.value[temperatureProbeReading.CPU.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0020.0001.0006 This attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete. When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete,the value returned for this attribute is the temperature that the probeis reading in tenths of degrees Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28355 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} |10255 |{#SENSOR_LOCALE}: Temperature status |sensor.temp.status[temperatureProbeStatus.CPU.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0020.0001.0005 This attribute defines the probe status of the temperature probe. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28356 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} |10255 |{#SENSOR_LOCALE}: Temperature |sensor.temp.value[temperatureProbeReading.Ambient.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0020.0001.0006 This attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete. When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete,the value returned for this attribute is the temperature that the probeis reading in tenths of degrees Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28357 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} |10255 |{#SENSOR_LOCALE}: Temperature status |sensor.temp.status[temperatureProbeStatus.Ambient.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0020.0001.0005 This attribute defines the probe status of the temperature probe. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28358 |20 |1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX} |10255 |{#PSU_DESCR}: Power supply status |sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |59 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0600.0012.0001.0005 This attribute defines the status of the power supply. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28359 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX} |10255 |{#FAN_DESCR}: Fan status |sensor.fan.status[coolingDeviceStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0012.0001.0005 This attribute defines the probe status of the cooling device. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28360 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX} |10255 |{#FAN_DESCR}: Fan speed |sensor.fan.speed[coolingDeviceReading.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0012.0001.0006 This attribute defines the reading for a cooling device&eol;of subtype other than coolingDeviceSubTypeIsDiscrete. When the value&eol;for coolingDeviceSubType is other than coolingDeviceSubTypeIsDiscrete, the&eol;value returned for this attribute is the speed in RPM or the OFF/ON value&eol;of the cooling device. When the value for coolingDeviceSubType is&eol;coolingDeviceSubTypeIsDiscrete, a value is not returned for this attribute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28361 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk status |system.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}] |3m |90d |0d |0 |3 | | | | |NULL |61 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The status of the physical disk itself without the propagation of any contained component status.&eol;Possible values:&eol;1: Other&eol;2: Unknown&eol;3: OK&eol;4: Non-critical&eol;5: Critical&eol;6: Non-recoverable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28362 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk serial number |system.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}] |1d |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The physical disk's unique identification number from the manufacturer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28363 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk S.M.A.R.T. status |system.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}] |3m |90d |0d |0 |3 | | | | |NULL |62 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;Indicates whether the physical disk has received a predictive failure alert. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28364 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk model name |system.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The model number of the physical disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28365 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.27.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk part number |system.hw.physicaldisk.part_number[physicalDiskPartNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The part number of the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28366 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk media type |system.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}] |1h |2w |0d |0 |3 | | | | |NULL |63 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The media type of the physical disk. Possible Values:&eol;1: The media type could not be determined.&eol;2: Hard Disk Drive (HDD).&eol;3: Solid State Drive (SSD). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28367 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX} |10255 |{#DISK_NAME}: Disk size |system.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}] |1h |2w |0d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The size of the physical disk in megabytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28368 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Layout type |system.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |65 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The virtual disk's RAID type.&eol;Possible values:&eol;1: Not one of the following&eol;2: RAID-0&eol;3: RAID-1&eol;4: RAID-5&eol;5: RAID-6&eol;6: RAID-10&eol;7: RAID-50&eol;8: RAID-60&eol;9: Concatenated RAID 1&eol;10: Concatenated RAID 5 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28369 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Current state |system.hw.virtualdisk.state[virtualDiskOperationalState.{#SNMPINDEX}] |3m |2w |365d |0 |3 | | | | |NULL |66 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The state of the virtual disk when there are progressive operations ongoing.&eol;Possible values:&eol;1: There is no active operation running.&eol;2: The virtual disk configuration has changed. The physical disks included in the virtual disk are being modified to support the new configuration.&eol;3: A Consistency Check (CC) is being performed on the virtual disk.&eol;4: The virtual disk is being initialized.&eol;5: BackGround Initialization (BGI) is being performed on the virtual disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28370 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Read policy |system.hw.virtualdisk.readpolicy[virtualDiskReadPolicy.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The read policy used by the controller for read operations on this virtual disk.&eol;Possible values:&eol;1: No Read Ahead.&eol;2: Read Ahead.&eol;3: Adaptive Read Ahead. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28371 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Write policy |system.hw.virtualdisk.writepolicy[virtualDiskWritePolicy.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |67 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The write policy used by the controller for write operations on this virtual disk.&eol;Possible values:&eol;1: Write Through.&eol;2: Write Back.&eol;3: Force Write Back. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28372 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Disk size |system.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}] |1h |2w |0d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The size of the virtual disk in megabytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28373 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Status |system.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}] |3m |2w |365d |0 |3 | | | | |NULL |69 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The current state of this virtual disk (which includes any member physical disks.)&eol;Possible states:&eol;1: The current state could not be determined.&eol;2: The virtual disk is operating normally or optimally.&eol;3: The virtual disk has encountered a failure. The data on disk is lost or is about to be lost.&eol;4: The virtual disk encountered a failure with one or all of the constituent redundant physical disks.&eol;The data on the virtual disk might no longer be fault tolerant. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28374 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX} |10255 |{#CNTLR_NAME}: Disk array controller status |system.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |59 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The status of the controller itself without the propagation of any contained component status.&eol;Possible values:&eol;1: Other&eol;2: Unknown&eol;3: OK&eol;4: Non-critical&eol;5: Critical&eol;6: Non-recoverable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28375 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX} |10255 |{#CNTLR_NAME}: Disk array controller model |system.hw.diskarray.model[controllerName.{#SNMPINDEX}] |1d |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The controller's name as represented in Storage Management. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28376 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX} |10255 |Battery {#BATTERY_NUM}: Disk array cache controller battery status |system.hw.diskarray.cache.battery.status[batteryState.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |64 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;Current state of battery.&eol;Possible values:&eol;1: The current state could not be determined.&eol;2: The battery is operating normally.&eol;3: The battery has failed and needs to be replaced.&eol;4: The battery temperature is high or charge level is depleting.&eol;5: The battery is missing or not detected.&eol;6: The battery is undergoing the re-charge phase.&eol;7: The battery voltage or charge level is below the threshold. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28388 |20 |1.3.6.1.4.1.232.6.2.6.1.0 |10256 |System: Temperature status |sensor.temp.status[cpqHeThermalCondition.0] |1m |7d |0d |0 |3 | | | | |NULL |54 | | |0 | | | | |0 |NULL |MIB: CPQHLTH-MIB&eol;This value specifies the overall condition of the system's thermal environment.&eol;This value will be one of the following:&eol;other(1) Temperature could not be determined.&eol;ok(2) The temperature sensor is within normal operating range.&eol;degraded(3) The temperature sensor is outside of normal operating range.&eol;failed(4) The temperature sensor detects a condition that could permanently damage the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28390 |20 |1.3.6.1.4.1.232.2.2.4.2.0 |10256 |Hardware model name |system.hw.model |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: CPQSINFO-MIB&eol;The machine product name.The name of the machine used in this system. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28391 |20 |1.3.6.1.4.1.232.2.2.2.1.0 |10256 |Hardware serial number |system.hw.serialnumber |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: CPQSINFO-MIB&eol;The serial number of the physical system unit. The string will be empty if the system does not report the serial number function. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28392 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery |tempDescr.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28393 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery Ambient |tempDescr.discovery.ambient |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with ambient(11) and 0.1 index filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28394 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery CPU |tempDescr.discovery.cpu |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with cpu(6) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28395 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery Memory |tempDescr.discovery.memory |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with memory(7) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28396 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery PSU |tempDescr.discovery.psu |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with powerSupply(10) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28397 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery I/O |tempDescr.discovery.io |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with ioBoard(5) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28398 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.9.3.1.5,{#CHASSIS_NUM},1.3.6.1.4.1.232.6.2.9.3.1.1,{#BAY_NUM},1.3.6.1.4.1.232.6.2.9.3.1.2] |10256 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |CPQHLTH-MIB::cpqHeFltTolPowerSupplyStatus |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28399 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.7.1.9] |10256 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |CPQHLTH-MIB::cpqHeFltTolFanCondition |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28400 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.2.1.1.1,{#CNTLR_SLOT},1.3.6.1.4.1.232.3.2.2.1.1.5,{#CNTLR_LOCATION},1.3.6.1.4.1.232.3.2.2.1.1.20] |10256 |Array Controller Discovery |array.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: CPQIDA-MIB::cpqDaCntlrTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28401 |20 |discovery[{#CACHE_STATUS},1.3.6.1.4.1.232.3.2.2.2.1.2,{#CACHE_CNTRL_INDEX},1.3.6.1.4.1.232.3.2.2.2.1.1] |10256 |Array Controller Cache Discovery |array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: CPQIDA-MIB::cpqDaAccelTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28402 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.5.1.1.5,{#DISK_LOCATION},1.3.6.1.4.1.232.3.2.5.1.1.64] |10256 |Physical Disk Discovery |physicalDisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of physical drive entries CPQIDA-MIB::cpqDaPhyDrvTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28403 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.3.1.1.2,{#DISK_NAME},1.3.6.1.4.1.232.3.2.3.1.1.14] |10256 |Virtual Disk Discovery |virtualdisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |CPQIDA-MIB::cpqDaLogDrvTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28404 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |{#SNMPINDEX}: Temperature |sensor.temp.value[cpqHeTemperatureCelsius.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: {#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28405 |20 |1.3.6.1.4.1.232.6.2.6.8.1.3.{#SNMPINDEX} |10256 |{#SNMPINDEX}: Temperature sensor location |sensor.temp.locale[cpqHeTemperatureLocale.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |55 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;This specifies the location of the temperature sensor present in the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28406 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |Ambient: Temperature |sensor.temp.value[cpqHeTemperatureCelsius.Ambient.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: Ambient |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28407 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |CPU-{#SNMPINDEX}: Temperature |sensor.temp.value[cpqHeTemperatureCelsius.CPU.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: CPU-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28408 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |Memory-{#SNMPINDEX}: Temperature |sensor.temp.value[cpqHeTemperatureCelsius.Memory.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: Memory-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28409 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |PSU-{#SNMPINDEX}: Temperature |sensor.temp.value[cpqHeTemperatureCelsius.PSU.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: PSU-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28411 |20 |1.3.6.1.4.1.232.6.2.9.3.1.4.{#SNMPINDEX} |10256 |Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status |sensor.psu.status[cpqHeFltTolPowerSupplyCondition.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |54 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The condition of the power supply. This value will be one of the following:&eol;other(1) The status could not be determined or not present.&eol;ok(2) The power supply is operating normally.&eol;degraded(3) A temperature sensor, fan or other power supply component is outside of normal operating range.&eol;failed(4) A power supply component detects a condition that could permanently damage the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28412 |20 |1.3.6.1.4.1.232.6.2.6.7.1.9.{#SNMPINDEX} |10256 |Fan {#SNMPINDEX}: Fan status |sensor.fan.status[cpqHeFltTolFanCondition.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |54 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The condition of the fan.&eol;This value will be one of the following:&eol;other(1) Fan status detection is not supported by this system or driver.&eol;ok(2) The fan is operating properly.&eol;degraded(2) A redundant fan is not operating properly.&eol;failed(4) A non-redundant fan is not operating properly. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28413 |20 |1.3.6.1.4.1.232.3.2.2.1.1.6.{#SNMPINDEX} |10256 |{#CNTLR_LOCATION}: Disk array controller status |system.hw.diskarray.status[cpqDaCntlrCondition.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |54 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;This value represents the overall condition of this controller,&eol;and any associated logical drives,physical drives, and array accelerators. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28414 |20 |1.3.6.1.4.1.232.3.2.2.1.1.2.{#SNMPINDEX} |10256 |{#CNTLR_LOCATION}: Disk array controller model |system.hw.diskarray.model[cpqDaCntlrModel.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |56 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Array Controller Model. The type of controller card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28415 |20 |1.3.6.1.4.1.232.3.2.2.2.1.2.{#SNMPINDEX} |10256 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller status |system.hw.diskarray.cache.status[cpqDaAccelStatus.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |71 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Cache Module/Operations Status. This describes the status of the cache module and/or cache operations.&eol;Note that for some controller models, a cache module board that physically attaches to the controller or chipset may not be an available option.&eol;&eol;The status can be:&eol;Other (1)&eol; Indicates that the instrument agent does not recognize the status of the cache module. You may need to upgrade the instrument agent.&eol;&eol;Invalid (2)&eol; Indicates that a cache module board has not been installed in this system or is present but not configured.&eol;&eol;Enabled (3)&eol; Indicates that cache operations are currently configured and enabled for at least one logical drive.&eol;&eol;Temporarily Disabled (4)&eol; Indicates that cache operations have been temporarily disabled. View the cache module board error code object to determine why the write cache operations have been temporarily disabled.&eol;&eol;Permanently Disabled (5)&eol; Indicates that cache operations have been permanently disabled. View the cache module board error code object to determine why the write cache operations have been disabled.&eol;&eol;Cache Module Flash Memory Not Attached (6)&eol; Indicates that the flash memory component of the flash backed cache module is not attached. This status will be set when the flash memory is not attached and the Supercap is attached. This value is only used on flash backed cache modules that support removable flash memory.&eol;&eol;Cache Module Degraded Failsafe Speed (7)&eol; Indicates that the cache module board is currently degraded and operating at a failsafe speed. View variables cpqDaCacheMemoryDataWidth and cpqDaCacheMemoryTransferRate to obtain the cache module board`s current memory data width and memory transfer rate.&eol;&eol;Cache Module Critical Failure (8)&eol; Indicates that the cache module board has encountered a critical failure. The controller is currently operating in Zero Memory Raid mode.&eol;&eol;Read Cache Could Not Be Mapped (9)&eol; Indicates that the read cache memory in a split cache configuration could not be mapped by the operating system and as a result is not available. This status may be caused by virtual space limitations in certain operating systems and is only applicable to B-Series controllers.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28416 |20 |1.3.6.1.4.1.232.3.2.2.2.1.6.{#SNMPINDEX} |10256 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status |system.hw.diskarray.cache.battery.status[cpqDaAccelBattery.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |72 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Cache Module Board Backup Power Status. This monitors the status of each backup power source on the board.&eol;The backup power source can only recharge when the system has power applied. The type of backup power source used is indicated by cpqDaAccelBackupPowerSource.&eol;The following values are valid:&eol;Other (1) Indicates that the instrument agent does not recognize backup power status. You may need to update your software.&eol;&eol;Ok (2) The backup power source is fully charged.&eol;&eol;Recharging (3) The array controller has one or more cache module backup power sources that are recharging.&eol;Cache module operations such as Battery/Flash Backed Write Cache, Expansion, Extension and Migration are temporarily suspended until the backup power source is fully charged.&eol;Cache module operations will automatically resume when charging is complete.&eol;&eol;Failed (4) The battery pack is below the sufficient voltage level and has not recharged in 36 hours.&eol;Your Cache Module board needs to be serviced.&eol;&eol;Degraded (5) The battery is still operating, however, one of the batteries in the pack has failed to recharge properly.&eol;Your Cache Module board should be serviced as soon as possible.&eol;&eol;NotPresent (6) A backup power source is not present on the cache module board. Some controllers do not have backup power sources.&eol;&eol;Capacitor Failed (7) The flash backed cache module capacitor is below the sufficient voltage level and has not recharged in 10 minutes. Your Cache Module board needs to be serviced.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28417 |20 |1.3.6.1.4.1.232.3.2.5.1.1.6.{#SNMPINDEX} |10256 |{#DISK_LOCATION}: Physical disk status |system.hw.physicaldisk.status[cpqDaPhyDrvStatus.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |57 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Physical Drive Status. This shows the status of the physical drive. The following values are valid for the physical drive status:&eol;other (1) Indicates that the instrument agent does not recognize the drive.&eol;You may need to upgrade your instrument agent and/or driver software.&eol;ok (2) Indicates the drive is functioning properly.&eol;failed (3) Indicates that the drive is no longer operating and should be replaced.&eol;predictiveFailure(4) Indicates that the drive has a predictive failure error and should be replaced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28418 |20 |1.3.6.1.4.1.232.3.2.5.1.1.57.{#SNMPINDEX} |10256 |{#DISK_LOCATION}: Physical disk S.M.A.R.T. status |system.hw.physicaldisk.smart_status[cpqDaPhyDrvSmartStatus.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |70 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Physical Drive S.M.A.R.T Status.The following values are defined:&eol;other(1) The agent is unable to determine if the status of S.M.A.R.T predictive failure monitoring for this drive.&eol;ok(2) Indicates the drive is functioning properly.&eol;replaceDrive(3) Indicates that the drive has a S.M.A.R.T predictive failure error and should be replaced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28419 |20 |1.3.6.1.4.1.232.3.2.5.1.1.51.{#SNMPINDEX} |10256 |{#DISK_LOCATION}: Physical disk serial number |system.hw.physicaldisk.serialnumber[cpqDaPhyDrvSerialNum.{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Physical Drive Serial Number.&eol;This is the serial number assigned to the physical drive.&eol;This value is based upon the serial number as returned by the SCSI inquiry command&eol;but may have been modified due to space limitations. This can be used for identification purposes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28420 |20 |1.3.6.1.4.1.232.3.2.5.1.1.3.{#SNMPINDEX} |10256 |{#DISK_LOCATION}: Physical disk model name |system.hw.physicaldisk.model[cpqDaPhyDrvModel.{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Physical Drive Model.This is a text description of the physical drive.&eol;The text that appears depends upon who manufactured the drive and the drive type.&eol;If a drive fails, note the model to identify the type of drive necessary for replacement.&eol;If a model number is not present, you may not have properly initialized the drive array to which the physical drive is attached for monitoring. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28421 |20 |1.3.6.1.4.1.232.3.2.5.1.1.69.{#SNMPINDEX} |10256 |{#DISK_LOCATION}: Physical disk media type |system.hw.physicaldisk.media_type[cpqDaPhyDrvMediaType.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |73 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Drive Array Physical Drive Media Type.The following values are defined:&eol;other(1) The instrument agent is unable to determine the physical drive’s media type.&eol;rotatingPlatters(2) The physical drive media is composed of rotating platters.&eol;solidState(3) The physical drive media is composed of solid state electronics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28422 |20 |1.3.6.1.4.1.232.3.2.5.1.1.45.{#SNMPINDEX} |10256 |{#DISK_LOCATION}: Disk size |system.hw.physicaldisk.size[cpqDaPhyDrvMediaType.{#SNMPINDEX}] |1m |7d |0d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Physical Drive Size in MB.&eol;This is the size of the physical drive in megabytes.&eol;This value is calculated using the value 1,048,576 (2^20) as a megabyte.&eol;Drive manufacturers sometimes use the number 1,000,000 as a megabyte when giving drive capacities so this value may differ&eol;from the advertised size of a drive. This field is only applicable for controllers which support SCSI drives,&eol;and therefore is not supported by the IDA or IDA-2 controllers. The field will contain 0xFFFFFFFF if the drive capacity cannot be calculated&eol;or if the controller does not support SCSI drives. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28423 |20 |1.3.6.1.4.1.232.3.2.3.1.1.4.{#SNMPINDEX} |10256 |Disk {#SNMPINDEX}({#DISK_NAME}): Status |system.hw.virtualdisk.status[cpqDaLogDrvStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |75 | | |0 | | | | |2 |NULL |Logical Drive Status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28424 |20 |1.3.6.1.4.1.232.3.2.3.1.1.3.{#SNMPINDEX} |10256 |Disk {#SNMPINDEX}({#DISK_NAME}): Layout type |system.hw.virtualdisk.layout[cpqDaLogDrvFaultTol.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |74 | | |0 | | | | |2 |NULL |Logical Drive Fault Tolerance.&eol;This shows the fault tolerance mode of the logical drive. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28425 |20 |1.3.6.1.4.1.232.3.2.3.1.1.9.{#SNMPINDEX} |10256 |Disk {#SNMPINDEX}({#DISK_NAME}): Disk size |system.hw.virtualdisk.size[cpqDaLogDrvSize.{#SNMPINDEX}] |1m |7d |0d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Logical Drive Size.&eol;This is the size of the logical drive in megabytes. This value&eol;is calculated using the value 1,048,576 (2^20) as a megabyte.&eol;Drive manufacturers sometimes use the number 1,000,000 as a&eol;megabyte when giving drive capacities so this value may&eol;differ from the advertised size of a drive. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28465 |20 |1.3.6.1.4.1.2.3.51.3.1.4.1.0 |10258 |Overall system health status |system.status[systemHealthStat.0] |30s |2w |0d |0 |3 | | | | |NULL |58 | | |0 | | | | |0 |NULL |MIB: IMM-MIB&eol;Indicates status of system health for the system in which the IMM resides. Value of 'nonRecoverable' indicates a severe error has occurred and the system may not be functioning. A value of 'critical' indicates that a error has occurred but the system is currently functioning properly. A value of 'nonCritical' indicates that a condition has occurred that may change the state of the system in the future but currently the system is working properly. A value of 'normal' indicates that the system is operating normally. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28466 |20 |1.3.6.1.4.1.2.3.51.3.1.5.2.1.5.0 |10258 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IMM-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28467 |20 |1.3.6.1.4.1.2.3.51.3.1.5.2.1.3.0 |10258 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IMM-MIB&eol;Machine serial number VPD information |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28468 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.1.2.1.2] |10258 |Temperature Discovery |tempDescr.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning IMM-MIB::tempTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28469 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.1.2.1.2] |10258 |Temperature Discovery Ambient |tempDescr.discovery.ambient |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning IMM-MIB::tempTable with Ambient filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28470 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.1.2.1.2] |10258 |Temperature Discovery CPU |tempDescr.discovery.cpu |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning IMM-MIB::tempTable with CPU filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28471 |20 |discovery[{#PSU_DESCR},1.3.6.1.4.1.2.3.51.3.1.11.2.1.2] |10258 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IMM-MIB::powerFruName |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28472 |20 |discovery[{#FAN_DESCR},1.3.6.1.4.1.2.3.51.3.1.3.2.1.2] |10258 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IMM-MIB::fanDescr |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28473 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.12.2.1.1] |10258 |Physical Disk Discovery |physicalDisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28474 |20 |1.3.6.1.4.1.2.3.51.3.1.1.2.1.3.{#SNMPINDEX} |10258 |{#SNMPVALUE}: Temperature |sensor.temp.value[tempReading.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;Temperature readings of testpoint: {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28475 |20 |1.3.6.1.4.1.2.3.51.3.1.1.2.1.3.{#SNMPINDEX} |10258 |Ambient: Temperature |sensor.temp.value[tempReading.Ambient.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;Temperature readings of testpoint: Ambient |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28476 |20 |1.3.6.1.4.1.2.3.51.3.1.1.2.1.3.{#SNMPINDEX} |10258 |CPU: Temperature |sensor.temp.value[tempReading.CPU.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;Temperature readings of testpoint: CPU |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28477 |20 |1.3.6.1.4.1.2.3.51.3.1.11.2.1.6.{#SNMPINDEX} |10258 |{#PSU_DESCR}: Power supply status |sensor.psu.status[powerHealthStatus.{#SNMPINDEX}] |3m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;A description of the power module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28478 |20 |1.3.6.1.4.1.2.3.51.3.1.3.2.1.10.{#SNMPINDEX} |10258 |{#FAN_DESCR}: Fan status |sensor.fan.status[fanHealthStatus.{#SNMPINDEX}] |3m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;A description of the fan component status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28479 |20 |1.3.6.1.4.1.2.3.51.3.1.3.2.1.3.{#SNMPINDEX} |10258 |{#FAN_DESCR}: Fan speed, % |sensor.fan.speed.percentage[fanSpeed.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;Fan speed expressed in percent(%) of maximum RPM.&eol;An octet string expressed as 'ddd% of maximum' where:d is a decimal digit or blank space for a leading zero.&eol;If the fan is determined not to be running or the fan speed cannot be determined, the string will indicate 'Offline'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28480 |20 |1.3.6.1.4.1.2.3.51.3.1.12.2.1.3.{#SNMPINDEX} |10258 |{#SNMPINDEX}: Physical disk status |system.hw.physicaldisk.status[diskHealthStatus.{#SNMPINDEX}] |3m |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28481 |20 |1.3.6.1.4.1.2.3.51.3.1.12.2.1.2.{#SNMPINDEX} |10258 |{#SNMPINDEX}: Physical disk part number |system.hw.physicaldisk.part_number[diskFruName.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;disk module FRU name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28493 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.21317.1.3.1.2,{#SENSOR_DESCR},1.3.6.1.4.1.21317.1.3.1.13] |10259 |Temperature Discovery |tempDescr.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning ATEN-IPMI-MIB::sensorTable with filter: not connected temp sensors (Value = 0) |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28494 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.21317.1.3.1.2,{#SENSOR_DESCR},1.3.6.1.4.1.21317.1.3.1.13] |10259 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning ATEN-IPMI-MIB::sensorTable with filter: not connected FAN sensors (Value = 0) |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28495 |20 |1.3.6.1.4.1.21317.1.3.1.2.{#SNMPINDEX} |10259 |{#SENSOR_DESCR}: Temperature |sensor.temp.value[sensorReading.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ATEN-IPMI-MIB&eol;A textual string containing information about the interface.&eol;This string should include the name of the manufacturer, the product name and the version of the interface hardware/software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28496 |20 |1.3.6.1.4.1.21317.1.3.1.2.{#SNMPINDEX} |10259 |{#SENSOR_DESCR}: Fan speed, % |sensor.fan.speed.percentage[sensorReading.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ATEN-IPMI-MIB&eol;A textual string containing information about the interface.&eol;This string should include the name of the manufacturer, the product name and the version of the interface hardware/software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28511 |16 | |10260 |Tomcat: Version |jmx["Catalina:type=Server",serverInfo] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |0 |NULL |The version of the Tomcat. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28533 |5 | |10047 |Zabbix LLD queue |zabbix[lld_queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28535 |5 | |10047 |Utilization of LLD manager internal processes, in % |zabbix[process,lld manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28537 |5 | |10047 |Utilization of LLD worker internal processes, in % |zabbix[process,lld worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28539 |5 | |10261 |Zabbix stats |zabbix[stats,{$ADDRESS},{$PORT}] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Zabbix server statistics master item. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28540 |5 | |10261 |Zabbix stats queue |zabbix[stats,{$ADDRESS},{$PORT},queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28541 |5 | |10261 |Zabbix stats queue over $5 |zabbix[stats,{$ADDRESS},{$PORT},queue,10m] |10m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28585 |5 | |10262 |Zabbix stats |zabbix[stats,{$ADDRESS},{$PORT}] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Zabbix proxy statistics master item. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28586 |5 | |10262 |Zabbix stats queue |zabbix[stats,{$ADDRESS},{$PORT},queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28587 |5 | |10262 |Zabbix stats queue over $5 |zabbix[stats,{$ADDRESS},{$PORT},queue,10m] |10m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28617 |5 | |10048 |Zabbix preprocessing queue |zabbix[preprocessing_queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28618 |5 | |10048 |Utilization of preprocessing manager internal processes, in % |zabbix[process,preprocessing manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28619 |5 | |10048 |Utilization of preprocessing worker internal processes, in % |zabbix[process,preprocessing worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28671 |0 | |10263 |PostgreSQL: Get connections sum |pgsql.connections.sum["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_activity&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ACTIVITY-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28672 |0 | |10263 |PostgreSQL: Get locks |pgsql.locks["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_locks per database&eol;https://www.postgresql.org/docs/current/explicit-locking.html#LOCKING-TABLES |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28673 |0 | |10263 |Status: Ping time |pgsql.ping.time["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28674 |0 | |10263 |Status: Ping |pgsql.ping["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28675 |0 | |10263 |PostgreSQL: Get queries |pgsql.queries["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}","{$PG.QUERY_ETIME.MAX.WARN}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics by query execution time |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28676 |0 | |10263 |Replication: standby count |pgsql.replication.count["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of standby servers |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28677 |0 | |10263 |Replication: lag in seconds |pgsql.replication.lag.sec["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Replication lag with Master in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28678 |0 | |10263 |Replication: recovery role |pgsql.replication.recovery_role["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |76 | | |0 | | | | |0 |NULL |Replication role: 1 — recovery is still in progress (standby mode), 0 — master mode. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28679 |0 | |10263 |Replication: status |pgsql.replication.status["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |77 | | |0 | | | | |0 |NULL |Replication status: 0 — streaming is down, 1 — streaming is up, 2 — master mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28680 |0 | |10263 |Status: Config hash |pgsql.config.hash["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |15m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |PostgreSQL configuration hash |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28681 |0 | |10263 |Status: Cache hit ratio % |pgsql.cache.hit["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache hit ratio |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28682 |0 | |10263 |PostgreSQL: Get bgwriter |pgsql.bgwriter["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics about the background writer process's activity |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28683 |0 | |10263 |PostgreSQL: Get transactions |pgsql.transactions["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect metrics by transaction execution time |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28684 |0 | |10263 |Status: Uptime |pgsql.uptime["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28685 |0 | |10263 |Status: Version |pgsql.version["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |PostgreSQL version |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28686 |0 | |10263 |PostgreSQL: Get WAL |pgsql.wal.stat["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |5m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Master item to collect WAL metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28687 |0 | |10263 |PostgreSQL: Get dbstat |pgsql.dbstat["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_database per database&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-DATABASE-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28711 |0 | |10263 |Database discovery |pgsql.discovery.db["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28712 |0 | |10263 |DB {#DBNAME}: Database size |pgsql.db.size["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}","{#DBNAME}"] |15m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Database size |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28713 |0 | |10263 |DB {#DBNAME}: Get frozen XID |pgsql.frozenxid["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{#DBNAME}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28714 |0 | |10263 |DB {#DBNAME}: Get scans |pgsql.scans["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{#DBNAME}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of scans done for table/index in the database |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28743 |0 | |10264 |Apache: Service ping |net.tcp.service[http,"{$APACHE.STATUS.HOST}","{$APACHE.STATUS.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28744 |0 | |10264 |Apache: Memory usage (vsize) |proc.mem["{$APACHE.PROCESS_NAME}",,,,vsize] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Virtual memory size used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28745 |0 | |10264 |Apache: Memory usage (rss) |proc.mem["{$APACHE.PROCESS_NAME}",,,,rss] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Resident set size memory used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28746 |0 | |10264 |Apache: Number of processes running |proc.num["{$APACHE.PROCESS_NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28747 |0 | |10264 |Apache: CPU utilization |proc.cpu.util["{$APACHE.PROCESS_NAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Process CPU utilization percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28748 |0 | |10264 |Apache: Service response time |net.tcp.service.perf[http,"{$APACHE.STATUS.HOST}","{$APACHE.STATUS.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28775 |19 | |10265 |Apache: Get status |apache.get_status |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Getting data from a machine-readable version of the Apache status page.&eol;https://httpd.apache.org/docs/current/mod/mod_status.html |0 |30d |0 | |NULL |3s |{$APACHE.STATUS.SCHEME}://{HOST.CONN}:{$APACHE.STATUS.PORT}/{$APACHE.STATUS.PATH} | | |200 |1 |0 | |2 |0 |0 |0 |0 |0 |0 |
+ROW |28776 |3 | |10265 |Apache: Service ping |net.tcp.service[http,"{HOST.CONN}","{$APACHE.STATUS.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28777 |3 | |10265 |Apache: Service response time |net.tcp.service.perf[http,"{HOST.CONN}","{$APACHE.STATUS.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28804 |0 | |10266 |Nginx: Get stub status page |web.page.get["{$NGINX.STUB_STATUS.HOST}","{$NGINX.STUB_STATUS.PATH}","{$NGINX.STUB_STATUS.PORT}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The following status information is provided:&eol;Active connections - the current number of active client connections including Waiting connections.&eol;Accepts - the total number of accepted client connections.&eol;Handled - the total number of handled connections. Generally, the parameter value is the same as accepts unless some resource limits have been reached (for example, the worker_connections limit).&eol;Requests - the total number of client requests.&eol;Reading - the current number of connections where nginx is reading the request header.&eol;Writing - the current number of connections where nginx is writing the response back to the client.&eol;Waiting - the current number of idle client connections waiting for a request.&eol;https://nginx.org/en/docs/http/ngx_http_stub_status_module.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28805 |0 | |10266 |Nginx: Service response time |net.tcp.service.perf[http,"{$NGINX.STUB_STATUS.HOST}","{$NGINX.STUB_STATUS.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28806 |0 | |10266 |Nginx: CPU utilization |proc.cpu.util[nginx] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Process CPU utilization percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28807 |0 | |10266 |Nginx: Memory usage (rss) |proc.mem[nginx,,,,rss] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Resident set size memory used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28808 |0 | |10266 |Nginx: Memory usage (vsize) |proc.mem[nginx,,,,vsize] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Virtual memory size used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28809 |0 | |10266 |Nginx: Number of processes running |proc.num[nginx] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of the Nginx processes running. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28810 |0 | |10266 |Nginx: Service status |net.tcp.service[http,"{$NGINX.STUB_STATUS.HOST}","{$NGINX.STUB_STATUS.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28821 |19 | |10267 |Nginx: Get stub status page |nginx.get_stub_status |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The following status information is provided:&eol;Active connections - the current number of active client connections including Waiting connections.&eol;Accepts - the total number of accepted client connections.&eol;Handled - the total number of handled connections. Generally, the parameter value is the same as accepts unless some resource limits have been reached (for example, the worker_connections limit).&eol;Requests - the total number of client requests.&eol;Reading - the current number of connections where nginx is reading the request header.&eol;Writing - the current number of connections where nginx is writing the response back to the client.&eol;Waiting - the current number of idle client connections waiting for a request.&eol;https://nginx.org/en/docs/http/ngx_http_stub_status_module.html |0 |30d |0 | |NULL |3s |{$NGINX.STUB_STATUS.SCHEME}://{HOST.CONN}:{$NGINX.STUB_STATUS.PORT}/{$NGINX.STUB_STATUS.PATH} | | |200 |1 |0 | |2 |0 |0 |0 |0 |0 |0 |
+ROW |28822 |3 | |10267 |Nginx: Service status |net.tcp.service[http,"{HOST.CONN}","{$NGINX.STUB_STATUS.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28823 |3 | |10267 |Nginx: Service response time |net.tcp.service.perf[http,"{HOST.CONN}","{$NGINX.STUB_STATUS.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28894 |20 |1.3.6.1.4.1.2636.3.1.13.1.8.{#SNMPINDEX} |10231 |{#SNMPVALUE}: CPU utilization |system.cpu.util[jnxOperatingCPU.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB&eol;The CPU utilization in percentage of this subject. Zero if unavailable or inapplicable.&eol;Reference: http://kb.juniper.net/library/CUSTOMERSERVICE/GLOBAL_JTAC/BK26199/SRX%20SNMP%20Monitoring%20Guide_v1.1.pdf |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28909 |0 | |10170 |Info: MySQL version |mysql.version["{$MYSQL.HOST}","{$MYSQL.PORT}"] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28910 |0 | |10170 |Availability: MySQL status |mysql.ping["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28911 |15 | |10170 |Performance: Buffer pool efficiency |mysql.buffer_pool_efficiency |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(mysql.innodb_buffer_pool_reads) / &eol;( last(mysql.innodb_buffer_pool_read_requests) + &eol;( last(mysql.innodb_buffer_pool_read_requests) = 0 ) ) * 100 * &eol;( last(mysql.innodb_buffer_pool_read_requests) > 0 ) | |0 | | | | |0 |NULL |The item shows how effectively the buffer pool is serving reads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28912 |15 | |10170 |Performance: Buffer pool utilization |mysql.buffer_pool_utilization |1m |7d |365d |0 |0 | |% | | |NULL |NULL |( last(mysql.innodb_buffer_pool_pages_total) - &eol;last(mysql.innodb_buffer_pool_pages_free) ) / &eol;( last(mysql.innodb_buffer_pool_pages_total) + &eol;( last(mysql.innodb_buffer_pool_pages_total) = 0 ) ) * 100 *&eol;( last(mysql.innodb_buffer_pool_pages_total) > 0 ) | |0 | | | | |0 |NULL |Ratio of used to total pages in the buffer pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28913 |0 | |10170 |Availability: Get status variables |mysql.get_status_variables["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The item gets server global status information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28948 |0 | |10170 |Databases discovery |mysql.db.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning databases in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28949 |0 | |10170 |Replication discovery |mysql.replication.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If 'show slave status' returns Master_Host, "Replication: *" items are created. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28950 |0 | |10170 |Info: Size of database {#DBNAME} |mysql.dbsize["{$MYSQL.HOST}","{$MYSQL.PORT}","{#DBNAME}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28951 |0 | |10170 |Replication: Slave status {#MASTERHOST} |mysql.slave_status["{$MYSQL.HOST}","{$MYSQL.PORT}","{#MASTERHOST}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The item gets status information on essential parameters of the slave threads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28978 |15 | |10268 |Memory utilization |vm.memory.util[snmp] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vm.memory.total[memTotalReal.0]")-(last("vm.memory.free[memAvailReal.0]")+last("vm.memory.buffers[memBuffer.0]")+last("vm.memory.cached[memCached.0]")))/last("vm.memory.total[memTotalReal.0]")*100 | |0 | | | | |0 |NULL |Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28979 |20 |1.3.6.1.4.1.2021.4.6.0 |10268 |Free memory |vm.memory.free[memAvailReal.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28980 |20 |1.3.6.1.4.1.2021.4.14.0 |10268 |Memory (buffers) |vm.memory.buffers[memBuffer.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Memory used by kernel buffers (Buffers in /proc/meminfo) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28981 |20 |1.3.6.1.4.1.2021.4.15.0 |10268 |Memory (cached) |vm.memory.cached[memCached.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Memory used by the page cache and slabs (Cached and Slab in /proc/meminfo) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28982 |20 |1.3.6.1.4.1.2021.4.5.0 |10268 |Total memory |vm.memory.total[memTotalReal.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28983 |15 | |10268 |Available memory |vm.memory.available[snmp] |1m |7d |365d |0 |3 | |B | | |NULL |NULL |last("vm.memory.free[memAvailReal.0]")+last("vm.memory.buffers[memBuffer.0]")+last("vm.memory.cached[memCached.0]") | |0 | | | | |0 |NULL |Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28984 |20 |1.3.6.1.4.1.2021.4.3.0 |10268 |Total swap space |system.swap.total[memTotalSwap.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The total amount of swap space configured for this host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28985 |20 |1.3.6.1.4.1.2021.4.4.0 |10268 |Free swap space |system.swap.free[memAvailSwap.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of swap space currently unused or available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28986 |15 | |10268 |Free swap space in % |system.swap.pfree[snmp] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("system.swap.free[memAvailSwap.0]")/last("system.swap.total[memTotalSwap.0]")*100 | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28987 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-1"] |10270 |Load average (1m avg) |system.cpu.load.avg1[laLoad.1] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28988 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-5"] |10270 |Load average (5m avg) |system.cpu.load.avg5[laLoad.2] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28989 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-15"] |10270 |Load average (15m avg) |system.cpu.load.avg15[laLoad.3] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28990 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1] |10270 |Number of CPUs |system.cpu.num[snmp] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;Count the number of CPU cores by counting number of cores discovered in hrProcessorTable using LLD |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28991 |20 |1.3.6.1.4.1.2021.11.59.0 |10270 |Interrupts per second |system.cpu.intr[ssRawInterrupts.0] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28992 |20 |1.3.6.1.4.1.2021.11.60.0 |10270 |Context switches per second |system.cpu.switches[ssRawContexts.0] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29008 |20 |discovery[{#DEVNAME},1.3.6.1.4.1.2021.13.15.1.1.2] |10269 |Block devices discovery |vfs.dev.discovery[snmp] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Block devices are discovered from UCD-DISKIO-MIB::diskIOTable (http://net-snmp.sourceforge.net/docs/mibs/ucdDiskIOMIB.html#diskIOTable) |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29010 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10271 |Mounted filesystem discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29014 |20 |1.3.6.1.4.1.2021.13.15.1.1.5.{#SNMPINDEX} |10269 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[diskIOReads.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-DISKIO-MIB&eol;The number of read accesses from this device since boot. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29015 |20 |1.3.6.1.4.1.2021.13.15.1.1.6.{#SNMPINDEX} |10269 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[diskIOWrites.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-DISKIO-MIB&eol;The number of write accesses from this device since boot. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29016 |20 |1.3.6.1.4.1.2021.13.15.1.1.9.{#SNMPINDEX} |10269 |{#DEVNAME}: Disk utilization |vfs.dev.util[diskIOLA1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-DISKIO-MIB&eol;The 1 minute average load of disk (%) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29017 |20 |1.3.6.1.4.1.2021.11.53.0 |10270 |CPU idle time |system.cpu.idle[ssCpuRawIdle.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29018 |20 |1.3.6.1.4.1.2021.11.52.0 |10270 |CPU system time |system.cpu.system[ssCpuRawSystem.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29019 |20 |1.3.6.1.4.1.2021.11.50.0 |10270 |CPU user time |system.cpu.user[ssCpuRawUser.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29020 |20 |1.3.6.1.4.1.2021.11.64.0 |10270 |CPU steal time |system.cpu.steal[ssCpuRawSteal.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29021 |20 |1.3.6.1.4.1.2021.11.61.0 |10270 |CPU softirq time |system.cpu.softirq[ssCpuRawSoftIRQ.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of time the CPU has been servicing software interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29022 |20 |1.3.6.1.4.1.2021.11.51.0 |10270 |CPU nice time |system.cpu.nice[ssCpuRawNice.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29023 |20 |1.3.6.1.4.1.2021.11.54.0 |10270 |CPU iowait time |system.cpu.iowait[ssCpuRawWait.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29024 |20 |1.3.6.1.4.1.2021.11.56.0 |10270 |CPU interrupt time |system.cpu.interrupt[ssCpuRawInterrupt.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29025 |20 |1.3.6.1.4.1.2021.11.65.0 |10270 |CPU guest time |system.cpu.guest[ssCpuRawGuest.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;Guest time (time spent running a virtual CPU for a guest operating system) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29026 |20 |1.3.6.1.4.1.2021.11.66.0 |10270 |CPU guest nice time |system.cpu.guest_nice[ssCpuRawGuestNice.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29027 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10271 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29028 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10271 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29029 |15 | |10271 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29030 |20 |1.3.6.1.4.1.2021.9.1.10["index","1.3.6.1.4.1.2021.9.1.2", "{#FSNAME}"] |10271 |{#FSNAME}: Free inodes in % |vfs.fs.inode.pfree[dskPercentNode.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;If having problems collecting this item make sure access to UCD-SNMP-MIB is allowed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29087 |0 | |10272 |Number of CPUs |system.cpu.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29088 |0 | |10272 |CPU iowait time |system.cpu.util[,iowait] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29089 |0 | |10272 |Context switches per second |system.cpu.switches |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29090 |0 | |10272 |CPU guest nice time |system.cpu.util[,guest_nice] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29091 |0 | |10272 |CPU guest time |system.cpu.util[,guest] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Guest time (time spent running a virtual CPU for a guest operating system) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29092 |0 | |10272 |CPU softirq time |system.cpu.util[,softirq] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing software interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29093 |0 | |10272 |CPU interrupt time |system.cpu.util[,interrupt] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29094 |0 | |10272 |CPU steal time |system.cpu.util[,steal] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29095 |0 | |10272 |CPU nice time |system.cpu.util[,nice] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29096 |0 | |10272 |Load average (1m avg) |system.cpu.load[all,avg1] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29097 |0 | |10272 |CPU user time |system.cpu.util[,user] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29098 |0 | |10272 |CPU system time |system.cpu.util[,system] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29099 |0 | |10272 |CPU idle time |system.cpu.util[,idle] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29100 |0 | |10272 |Load average (15m avg) |system.cpu.load[all,avg15] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29101 |0 | |10272 |Load average (5m avg) |system.cpu.load[all,avg5] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29102 |0 | |10272 |Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29103 |0 | |10274 |Available memory in % |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory as percentage of total. See also: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29104 |0 | |10274 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29105 |0 | |10274 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29106 |0 | |10274 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29107 |0 | |10274 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29108 |0 | |10274 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29110 |0 | |10277 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29111 |0 | |10277 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29112 |0 | |10277 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29113 |0 | |10277 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29114 |0 | |10277 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29115 |0 | |10277 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29116 |0 | |10277 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29117 |0 | |10277 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29118 |0 | |10277 |Number of processes |proc.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29119 |0 | |10277 |Number of running processes |proc.num[,,run] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29120 |0 | |10277 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29121 |0 | |10277 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29122 |0 | |10277 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29123 |0 | |10277 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29201 |0 | |10273 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29203 |0 | |10276 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29210 |0 | |10273 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29211 |0 | |10273 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29212 |0 | |10273 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29213 |0 | |10273 |{#FSNAME}: Free inodes in % |vfs.fs.inode[{#FSNAME},pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29216 |0 | |10276 |Interface {#IFNAME}: Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29217 |0 | |10276 |Interface {#IFNAME}: Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29218 |0 | |10276 |Interface {#IFNAME}: Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29219 |0 | |10276 |Interface {#IFNAME}: Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29220 |0 | |10276 |Interface {#IFNAME}: Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29221 |0 | |10276 |Interface {#IFNAME}: Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29222 |0 | |10276 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29223 |0 | |10276 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |NULL |78 | | |0 | | | | |2 |NULL |Indicates the interface protocol type as a decimal value.&eol;See include/uapi/linux/if_arp.h for all possible values.&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29273 |7 | |10278 |Number of CPUs |system.cpu.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29274 |7 | |10278 |CPU iowait time |system.cpu.util[,iowait] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29275 |7 | |10278 |Context switches per second |system.cpu.switches |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29276 |7 | |10278 |CPU guest nice time |system.cpu.util[,guest_nice] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29277 |7 | |10278 |CPU guest time |system.cpu.util[,guest] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Guest time (time spent running a virtual CPU for a guest operating system) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29278 |7 | |10278 |CPU softirq time |system.cpu.util[,softirq] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing software interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29279 |7 | |10278 |CPU interrupt time |system.cpu.util[,interrupt] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29280 |7 | |10278 |CPU steal time |system.cpu.util[,steal] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29281 |7 | |10278 |CPU nice time |system.cpu.util[,nice] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29282 |7 | |10278 |Load average (1m avg) |system.cpu.load[all,avg1] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29283 |7 | |10278 |CPU user time |system.cpu.util[,user] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29284 |7 | |10278 |CPU system time |system.cpu.util[,system] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29285 |7 | |10278 |CPU idle time |system.cpu.util[,idle] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29286 |7 | |10278 |Load average (15m avg) |system.cpu.load[all,avg15] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29287 |7 | |10278 |Load average (5m avg) |system.cpu.load[all,avg5] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29288 |7 | |10278 |Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29289 |7 | |10280 |Available memory in % |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory as percentage of total. See also: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29290 |7 | |10280 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29291 |7 | |10280 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29292 |7 | |10280 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29293 |7 | |10280 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29294 |7 | |10280 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29296 |7 | |10283 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29297 |7 | |10283 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29298 |0 | |10283 |System local time |system.localtime |1m |7d |365d |1 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29299 |7 | |10283 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29300 |7 | |10283 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29301 |7 | |10283 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29302 |7 | |10283 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29303 |7 | |10283 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29304 |7 | |10283 |Number of processes |proc.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29305 |7 | |10283 |Number of running processes |proc.num[,,run] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29306 |7 | |10283 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29307 |7 | |10283 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29308 |7 | |10283 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29309 |7 | |10283 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29349 |7 | |10279 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29351 |7 | |10282 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29355 |7 | |10279 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29356 |7 | |10279 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29357 |7 | |10279 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29358 |7 | |10279 |{#FSNAME}: Free inodes in % |vfs.fs.inode[{#FSNAME},pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29361 |7 | |10282 |Interface {#IFNAME}: Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29362 |7 | |10282 |Interface {#IFNAME}: Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29363 |7 | |10282 |Interface {#IFNAME}: Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29364 |7 | |10282 |Interface {#IFNAME}: Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29365 |7 | |10282 |Interface {#IFNAME}: Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29366 |7 | |10282 |Interface {#IFNAME}: Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29367 |7 | |10282 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29368 |7 | |10282 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |NULL |78 | | |0 | | | | |2 |NULL |Indicates the interface protocol type as a decimal value.&eol;See include/uapi/linux/if_arp.h for all possible values.&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29395 |19 | |10285 |Get node_exporter metrics |node_exporter.get |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |http://{HOST.CONN}:{$NODE_EXPORTER_PORT}/metrics | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29396 |15 | |10285 |Memory utilization |vm.memory.util[node_exporter] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vm.memory.total[node_exporter]")-last("vm.memory.available[node_exporter]"))/last("vm.memory.total[node_exporter]")*100 | |0 | | | | |0 |NULL |Memory used percentage is calculated as (total-available)/total*100 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29397 |15 | |10285 |Free swap space in % |system.swap.pfree[node_exporter] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("system.swap.free[node_exporter]")/last("system.swap.total[node_exporter]")*100 | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29432 |15 | |10285 |{#FSNAME}: Used space |vfs.fs.used[node_exporter,"{#FSNAME}"] |1m |7d |365d |0 |0 | |B | | |NULL |NULL |(last("vfs.fs.total[node_exporter,\"{#FSNAME}\"]")-last("vfs.fs.free[node_exporter,\"{#FSNAME}\"]")) | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29433 |15 | |10285 |{#FSNAME}: Space utilization |vfs.fs.pused[node_exporter,"{#FSNAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vfs.fs.used[node_exporter,\"{#FSNAME}\"]")/last("vfs.fs.total[node_exporter,\"{#FSNAME}\"]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29434 |15 | |10285 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[node_exporter,"{#DEVNAME}"] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last("vfs.dev.read.time.rate[node_exporter,\"{#DEVNAME}\"]")/(last("vfs.dev.read.rate[node_exporter,\"{#DEVNAME}\"]")+(last("vfs.dev.read.rate[node_exporter,\"{#DEVNAME}\"]")=0)))*1000*(last("vfs.dev.read.rate[node_exporter,\"{#DEVNAME}\"]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29435 |15 | |10285 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[node_exporter,"{#DEVNAME}"] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last("vfs.dev.write.time.rate[node_exporter,\"{#DEVNAME}\"]")/(last("vfs.dev.write.rate[node_exporter,\"{#DEVNAME}\"]")+(last("vfs.dev.write.rate[node_exporter,\"{#DEVNAME}\"]")=0)))*1000*(last("vfs.dev.write.rate[node_exporter,\"{#DEVNAME}\"]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29454 |0 | |10286 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29455 |0 | |10286 |CPU interrupt time |perf_counter_en["\Processor Information(_total)\% Interrupt Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Information\% Interrupt Time is the time the processor spends receiving and servicing &eol;hardware interrupts during sample intervals. This value is an indirect indicator of the activity of &eol;devices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication &eol;lines, network interface cards and other peripheral devices. This is an easy way to identify a potential &eol;hardware failure. This should never be higher than 20%. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29456 |0 | |10286 |Context switches per second |perf_counter_en["\System\Context Switches/sec"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Context Switches/sec is the combined rate at which all processors on the computer are switched from one thread to another.&eol;Context switches occur when a running thread voluntarily relinquishes the processor, is preempted by a higher priority ready thread, or switches between user-mode and privileged (kernel) mode to use an Executive or subsystem service.&eol;It is the sum of Thread\\Context Switches/sec for all threads running on all processors in the computer and is measured in numbers of switches.&eol;There are context switch counters on the System and Thread objects. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29457 |0 | |10286 |CPU privileged time |perf_counter_en["\Processor Information(_total)\% Privileged Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Information\% Privileged Time counter shows the percent of time that the processor is spent &eol;executing in Kernel (or Privileged) mode. Privileged mode includes services interrupts inside Interrupt &eol;Service Routines (ISRs), executing Deferred Procedure Calls (DPCs), Device Driver calls and other kernel-mode &eol;functions of the Windows® Operating System. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29458 |0 | |10286 |CPU user time |perf_counter_en["\Processor Information(_total)\% User Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Information\% User Time counter shows the percent of time that the processor(s) is spent executing &eol;in User mode. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29459 |0 | |10286 |CPU queue length |perf_counter_en["\System\Processor Queue Length"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Queue Length shows the number of threads that are observed as delayed in the processor Ready Queue &eol;and are waiting to be executed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29460 |0 | |10287 |Used memory |vm.memory.size[used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Used memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29461 |0 | |10287 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29462 |15 | |10287 |Memory utilization |vm.memory.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.size[used]") / last("vm.memory.size[total]") * 100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29463 |0 | |10287 |Cache bytes |perf_counter_en["\Memory\Cache Bytes"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache Bytes is the sum of the Memory\\System Cache Resident Bytes, Memory\\System Driver Resident Bytes, &eol;Memory\\System Code Resident Bytes, and Memory\\Pool Paged Resident Bytes counters. This counter displays &eol;the last observed value only; it is not an average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29466 |0 | |10287 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29467 |0 | |10287 |Free system page table entries |perf_counter_en["\Memory\Free System Page Table Entries"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This indicates the number of page table entries not currently in use by the system. If the number is less &eol;than 5,000, there may well be a memory leak or you running out of memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29468 |0 | |10287 |Memory page faults per second |perf_counter_en["\Memory\Page Faults/sec"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Page Faults/sec is the average number of pages faulted per second. It is measured in number of pages &eol;faulted per second because only one page is faulted in each fault operation, hence this is also equal &eol;to the number of page fault operations. This counter includes both hard faults (those that require &eol;disk access) and soft faults (where the faulted page is found elsewhere in physical memory.) Most &eol;processors can handle large numbers of soft faults without significant consequence. However, hard faults, &eol;which require disk access, can cause significant delays. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29469 |0 | |10287 |Memory pages per second |perf_counter_en["\Memory\Pages/sec"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This measures the rate at which pages are read from or written to disk to resolve hard page faults. &eol;If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29470 |0 | |10287 |Memory pool non-paged |perf_counter_en["\Memory\Pool Nonpaged Bytes"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |This measures the size, in bytes, of the non-paged pool. This is an area of system memory for objects &eol;that cannot be written to disk but instead must remain in physical memory as long as they are allocated. &eol;There is a possible memory leak if the value is greater than 175MB (or 100MB with the /3GB switch). &eol;A typical Event ID 2019 is recorded in the system event log. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29472 |0 | |10290 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29473 |0 | |10290 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29474 |0 | |10290 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29475 |0 | |10290 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29476 |0 | |10290 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29477 |0 | |10290 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads used by all running processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29478 |0 | |10290 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29506 |0 | |10288 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29512 |0 | |10288 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29513 |0 | |10288 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29514 |0 | |10288 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29544 |5 | |10050 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29545 |7 | |10292 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29546 |7 | |10292 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29547 |7 | |10292 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |NULL |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29561 |7 | |10293 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29562 |7 | |10293 |CPU interrupt time |perf_counter_en["\Processor Information(_total)\% Interrupt Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Information\% Interrupt Time is the time the processor spends receiving and servicing &eol;hardware interrupts during sample intervals. This value is an indirect indicator of the activity of &eol;devices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication &eol;lines, network interface cards and other peripheral devices. This is an easy way to identify a potential &eol;hardware failure. This should never be higher than 20%. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29563 |7 | |10293 |Context switches per second |perf_counter_en["\System\Context Switches/sec"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Context Switches/sec is the combined rate at which all processors on the computer are switched from one thread to another.&eol;Context switches occur when a running thread voluntarily relinquishes the processor, is preempted by a higher priority ready thread, or switches between user-mode and privileged (kernel) mode to use an Executive or subsystem service.&eol;It is the sum of Thread\\Context Switches/sec for all threads running on all processors in the computer and is measured in numbers of switches.&eol;There are context switch counters on the System and Thread objects. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29564 |7 | |10293 |CPU privileged time |perf_counter_en["\Processor Information(_total)\% Privileged Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Information\% Privileged Time counter shows the percent of time that the processor is spent &eol;executing in Kernel (or Privileged) mode. Privileged mode includes services interrupts inside Interrupt &eol;Service Routines (ISRs), executing Deferred Procedure Calls (DPCs), Device Driver calls and other kernel-mode &eol;functions of the Windows® Operating System. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29565 |7 | |10293 |CPU user time |perf_counter_en["\Processor Information(_total)\% User Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Information\% User Time counter shows the percent of time that the processor(s) is spent executing &eol;in User mode. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29566 |7 | |10293 |CPU queue length |perf_counter_en["\System\Processor Queue Length"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Queue Length shows the number of threads that are observed as delayed in the processor Ready Queue &eol;and are waiting to be executed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29567 |7 | |10294 |Used memory |vm.memory.size[used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Used memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29568 |7 | |10294 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29569 |15 | |10294 |Memory utilization |vm.memory.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.size[used]") / last("vm.memory.size[total]") * 100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29570 |7 | |10294 |Cache bytes |perf_counter_en["\Memory\Cache Bytes"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache Bytes is the sum of the Memory\\System Cache Resident Bytes, Memory\\System Driver Resident Bytes, &eol;Memory\\System Code Resident Bytes, and Memory\\Pool Paged Resident Bytes counters. This counter displays &eol;the last observed value only; it is not an average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29573 |7 | |10294 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29574 |7 | |10294 |Free system page table entries |perf_counter_en["\Memory\Free System Page Table Entries"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This indicates the number of page table entries not currently in use by the system. If the number is less &eol;than 5,000, there may well be a memory leak or you running out of memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29575 |7 | |10294 |Memory page faults per second |perf_counter_en["\Memory\Page Faults/sec"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Page Faults/sec is the average number of pages faulted per second. It is measured in number of pages &eol;faulted per second because only one page is faulted in each fault operation, hence this is also equal &eol;to the number of page fault operations. This counter includes both hard faults (those that require &eol;disk access) and soft faults (where the faulted page is found elsewhere in physical memory.) Most &eol;processors can handle large numbers of soft faults without significant consequence. However, hard faults, &eol;which require disk access, can cause significant delays. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29576 |7 | |10294 |Memory pages per second |perf_counter_en["\Memory\Pages/sec"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This measures the rate at which pages are read from or written to disk to resolve hard page faults. &eol;If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29577 |7 | |10294 |Memory pool non-paged |perf_counter_en["\Memory\Pool Nonpaged Bytes"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |This measures the size, in bytes, of the non-paged pool. This is an area of system memory for objects &eol;that cannot be written to disk but instead must remain in physical memory as long as they are allocated. &eol;There is a possible memory leak if the value is greater than 175MB (or 100MB with the /3GB switch). &eol;A typical Event ID 2019 is recorded in the system event log. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29579 |7 | |10297 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29580 |0 | |10297 |System local time |system.localtime |1m |7d |365d |1 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29581 |7 | |10297 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29582 |7 | |10297 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29583 |7 | |10297 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29584 |7 | |10297 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads used by all running processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29585 |7 | |10297 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29613 |7 | |10295 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29619 |7 | |10295 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29620 |7 | |10295 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29621 |7 | |10295 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29653 |0 | |10301 |RabbitMQ: Get node overview |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/overview"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29654 |0 | |10301 |RabbitMQ: Get nodes |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/nodes/{$RABBITMQ.CLUSTER.NAME}@{HOST.NAME}?memory=true"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns nodes metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29655 |0 | |10301 |RabbitMQ: Service ping |net.tcp.service[http,"{$RABBITMQ.API.HOST}","{$RABBITMQ.API.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29656 |0 | |10301 |RabbitMQ: CPU utilization |proc.cpu.util["{$RABBITMQ.PROCESS_NAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Process CPU utilization percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29657 |0 | |10301 |RabbitMQ: Memory usage (vsize) |proc.mem["{$RABBITMQ.PROCESS_NAME}",,,,vsize] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Virtual memory size used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29658 |0 | |10301 |RabbitMQ: Memory usage (rss) |proc.mem["{$RABBITMQ.PROCESS_NAME}",,,,rss] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Resident set size memory used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29659 |0 | |10301 |RabbitMQ: Number of processes running |proc.num["{$RABBITMQ.PROCESS_NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29660 |0 | |10301 |RabbitMQ: Service response time |net.tcp.service.perf[http,"{$RABBITMQ.API.HOST}","{$RABBITMQ.API.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29661 |0 | |10301 |RabbitMQ: Get queues |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/queues"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns queues metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29662 |0 | |10301 |RabbitMQ: Healthcheck |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/healthchecks/node"] |1m |7h |365d |0 |3 | | | | |NULL |82 | | |0 | | | | |0 |NULL |Runs basic healthchecks in the current node. Checks that the rabbit application is running, channels and queues can be listed successfully, and that no alarms are in effect. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29738 |19 | |10302 |RabbitMQ: Get overview |rabbitmq.get_overview |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/overview | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29739 |19 | |10302 |RabbitMQ: Get exchanges |rabbitmq.get_exchanges |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns exchanges metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/exchanges | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29741 |19 | |10303 |RabbitMQ: Get nodes |rabbitmq.get_nodes |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns nodes metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/nodes/{$RABBITMQ.CLUSTER.NAME}@{HOST.NAME}?memory=true| | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29742 |3 | |10303 |RabbitMQ: Service ping |net.tcp.service[http,"{HOST.CONN}","{$RABBITMQ.API.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29743 |3 | |10303 |RabbitMQ: Service response time |net.tcp.service.perf[http,"{HOST.CONN}","{$RABBITMQ.API.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29744 |19 | |10303 |RabbitMQ: Healthcheck |rabbitmq.healthcheck |1m |7h |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |Runs basic healthchecks in the current node. Checks that the rabbit application is running, channels and queues can be listed successfully, and that no alarms are in effect. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/healthchecks/node | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29745 |19 | |10303 |RabbitMQ: Get queues |rabbitmq.get_queues |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns queues metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/queues | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29822 |5 | |10047 |Utilization of alert syncer internal processes, in % |zabbix[process,alert syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29844 |20 |1.3.6.1.2.1.1.3.0 |10204 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29845 |20 |1.3.6.1.2.1.1.6.0 |10204 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29846 |20 |1.3.6.1.2.1.1.4.0 |10204 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29847 |20 |1.3.6.1.2.1.1.2.0 |10204 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29848 |20 |1.3.6.1.2.1.1.1.0 |10204 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29994 |20 |1.3.6.1.4.1.232.6.1.3.0 |10256 |Overall system health status |system.status[cpqHeMibCondition.0] |1m |7d |0d |0 |3 | | | | |NULL |54 | | |0 | | | | |0 |NULL |MIB: CPQHLTH-MIB&eol;The overall condition. This object represents the overall status of the server information represented by this MIB. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29998 |0 | |10300 |RabbitMQ: Get overview |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/overview"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29999 |0 | |10300 |RabbitMQ: Get exchanges |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/exchanges"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns exchanges metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30043 |19 | |10303 |RabbitMQ: Get node overview |rabbitmq.get_node_overview |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/overview | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30057 |20 |discovery[{#SENSOR_LOCATION},1.3.6.1.4.1.9.9.719.1.9.44.1.2] |10304 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30058 |20 |discovery[{#SENSOR_LOCATION},1.3.6.1.4.1.9.9.719.1.41.2.1.2] |10304 |Temperature CPU Discovery |temp.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30059 |20 |discovery[{#PSU_LOCATION},1.3.6.1.4.1.9.9.719.1.15.56.1.2] |10304 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30060 |20 |discovery[{#UNIT_LOCATION},1.3.6.1.4.1.9.9.719.1.9.35.1.2] |10304 |Unit Discovery |unit.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30061 |20 |discovery[{#FAN_LOCATION},1.3.6.1.4.1.9.9.719.1.15.12.1.2] |10304 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30062 |20 |discovery[{#DISK_LOCATION},1.3.6.1.4.1.9.9.719.1.45.4.1.2] |10304 |Physical Disk Discovery |physicalDisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of physical drive entries CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageLocalDiskTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30063 |20 |discovery[{#VDISK_LOCATION},1.3.6.1.4.1.9.9.719.1.45.8.1.2] |10304 |Virtual Disk Discovery |virtualdisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageLocalLunTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30064 |20 |discovery[{#DISKARRAY_LOCATION},1.3.6.1.4.1.9.9.719.1.45.1.1.2] |10304 |Array Controller Discovery |array.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30065 |20 |discovery[{#DISKARRAY_CACHE_LOCATION},1.3.6.1.4.1.9.9.719.1.45.11.1.2] |10304 |Array Controller Cache Discovery |array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30066 |20 |1.3.6.1.4.1.9.9.719.1.9.44.1.4.{#SNMPINDEX} |10304 |{#SENSOR_LOCATION}.Ambient: Temperature |sensor.temp.value[cucsComputeRackUnitMbTempStatsAmbientTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Temperature readings of testpoint: {#SENSOR_LOCATION}.Ambient |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30067 |20 |1.3.6.1.4.1.9.9.719.1.9.44.1.8.{#SNMPINDEX} |10304 |{#SENSOR_LOCATION}.Front: Temperature |sensor.temp.value[cucsComputeRackUnitMbTempStatsFrontTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Cisco UCS compute:RackUnitMbTempStats:frontTemp managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30068 |20 |1.3.6.1.4.1.9.9.719.1.9.44.1.21.{#SNMPINDEX} |10304 |{#SENSOR_LOCATION}.Rear: Temperature |sensor.temp.value[cucsComputeRackUnitMbTempStatsRearTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Cisco UCS compute:RackUnitMbTempStats:rearTemp managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30069 |20 |1.3.6.1.4.1.9.9.719.1.9.44.1.13.{#SNMPINDEX} |10304 |{#SENSOR_LOCATION}.IOH: Temperature |sensor.temp.value[cucsComputeRackUnitMbTempSltatsIoh1Temp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Cisco UCS compute:RackUnitMbTempStats:ioh1Temp managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30070 |20 |1.3.6.1.4.1.9.9.719.1.41.2.1.10.{#SNMPINDEX} |10304 |{#SENSOR_LOCATION}: Temperature |sensor.temp.value[cucsProcessorEnvStatsTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-PROCESSOR-MIB&eol;Cisco UCS processor:EnvStats:temperature managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30071 |20 |1.3.6.1.4.1.9.9.719.1.15.56.1.7.{#SNMPINDEX} |10304 |{#PSU_LOCATION}: Power supply status |sensor.psu.status[cucsEquipmentPsuOperState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |84 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB&eol;Cisco UCS equipment:Psu:operState managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30072 |20 |1.3.6.1.4.1.9.9.719.1.9.35.1.42.{#SNMPINDEX} |10304 |{#UNIT_LOCATION}: Overall system health status |system.status[cucsComputeRackUnitOperState.{#SNMPINDEX}] |30s |2w |0d |0 |3 | | | | |NULL |85 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Cisco UCS compute:RackUnit:operState managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30073 |20 |1.3.6.1.4.1.9.9.719.1.9.35.1.32.{#SNMPINDEX} |10304 |{#UNIT_LOCATION}: Hardware model name |system.hw.model[cucsComputeRackUnitModel.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Cisco UCS compute:RackUnit:model managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30074 |20 |1.3.6.1.4.1.9.9.719.1.9.35.1.47.{#SNMPINDEX} |10304 |{#UNIT_LOCATION}: Hardware serial number |system.hw.serialnumber[cucsComputeRackUnitSerial.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Cisco UCS compute:RackUnit:serial managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30075 |20 |1.3.6.1.4.1.9.9.719.1.15.12.1.9.{#SNMPINDEX} |10304 |{#FAN_LOCATION}: Fan status |sensor.fan.status[cucsEquipmentFanOperState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |84 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB&eol;Cisco UCS equipment:Fan:operState managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30076 |20 |1.3.6.1.4.1.9.9.719.1.45.4.1.18.{#SNMPINDEX} |10304 |{#DISK_LOCATION}: Physical disk status |system.hw.physicaldisk.status[cucsStorageLocalDiskDiskState.{#SNMPINDEX}] |3m |90d |0d |0 |3 | | | | |NULL |86 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalDisk:diskState managed object property. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30077 |20 |1.3.6.1.4.1.9.9.719.1.45.4.1.12.{#SNMPINDEX} |10304 |{#DISK_LOCATION}: Physical disk model name |system.hw.physicaldisk.model[cucsStorageLocalDiskSerial.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalDisk:serial managed object property. Actually returns part number code |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30078 |20 |1.3.6.1.4.1.9.9.719.1.45.4.1.7.{#SNMPINDEX} |10304 |{#DISK_LOCATION}: Physical disk media type |system.hw.physicaldisk.media_type[cucsStorageLocalDiskModel.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalDisk:model managed object property. Actually returns 'HDD' or 'SSD' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30079 |20 |1.3.6.1.4.1.9.9.719.1.45.4.1.13.{#SNMPINDEX} |10304 |{#DISK_LOCATION}: Disk size |system.hw.physicaldisk.size[cucsStorageLocalDiskSize.{#SNMPINDEX}] |1h |2w |0d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalDisk:size managed object property. In MB. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30080 |20 |1.3.6.1.4.1.9.9.719.1.45.8.1.10.{#SNMPINDEX} |10304 |{#VDISK_LOCATION}: Status |system.hw.virtualdisk.status[cucsStorageLocalLunPresence.{#SNMPINDEX}] |3m |2w |365d |0 |3 | | | | |NULL |88 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalLun:presence managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30081 |20 |1.3.6.1.4.1.9.9.719.1.45.8.1.14.{#SNMPINDEX} |10304 |{#VDISK_LOCATION}: Layout type |system.hw.virtualdisk.layout[cucsStorageLocalLunType.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |87 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalLun:type managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30082 |20 |1.3.6.1.4.1.9.9.719.1.45.8.1.13.{#SNMPINDEX} |10304 |{#VDISK_LOCATION}: Disk size |system.hw.virtualdisk.size[cucsStorageLocalLunSize.{#SNMPINDEX}] |1h |2w |0d |0 |3 | |B | | |NULL |87 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalLun:size managed object property in MB. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30083 |20 |1.3.6.1.4.1.9.9.719.1.45.1.1.6.{#SNMPINDEX} |10304 |{#DISKARRAY_LOCATION}: Disk array controller status |system.hw.diskarray.status[cucsStorageControllerOperState.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |84 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30084 |20 |1.3.6.1.4.1.9.9.719.1.45.1.1.5.{#SNMPINDEX} |10304 |{#DISKARRAY_LOCATION}: Disk array controller model |system.hw.diskarray.model[cucsStorageControllerModel.{#SNMPINDEX}] |1d |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30085 |20 |1.3.6.1.4.1.9.9.719.1.45.11.1.9.{#SNMPINDEX} |10304 |{#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery status |system.hw.diskarray.cache.battery.status[cucsStorageRaidBatteryOperability.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |84 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30086 |20 |1.3.6.1.2.1.1.1.0 |10207 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30087 |20 |1.3.6.1.4.1.6527.3.1.2.1.1.10.0 |10207 |Available memory |vm.memory.available[sgiKbMemoryAvailable.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The value of sgiKbMemoryAvailable indicates the amount of free memory, in kilobytes, in the overall system that is not allocated to memory pools, but is available in case a memory pool needs to grow. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30088 |15 | |10207 |Total memory |vm.memory.total[snmp] |1m |7d |365d |0 |3 | |B | | |NULL |NULL |last("vm.memory.available[sgiKbMemoryAvailable.0]")+last("vm.memory.used[sgiKbMemoryUsed.0]") | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30089 |15 | |10207 |Memory utilization |vm.memory.util[vm.memory.util.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[sgiKbMemoryUsed.0]")/(last("vm.memory.available[sgiKbMemoryAvailable.0]")+last("vm.memory.used[sgiKbMemoryUsed.0]"))*100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30090 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6527.3.1.2.2.1.5.1.6] |10207 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30091 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.5.1.6.{#SNMPINDEX} |10207 |#{#SNMPINDEX}: Power supply status |sensor.psu.status[tmnxChassisPowerSupply1Status.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |23 | | |0 | | | | |2 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The overall status of an equipped power supply. &eol;For AC multiple powersupplies, this represents the overall status of the first power supplyin the tray (or shelf).&eol;For any other type, this represents the overall status of the power supply.&eol;If tmnxChassisPowerSupply1Status is'deviceStateOk', then all monitored statuses are 'deviceStateOk'.&eol;A value of 'deviceStateFailed' represents a condition where at least one monitored status is in a failed state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30092 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.5.1.7.{#SNMPINDEX} |10207 |#{#SNMPINDEX}: Power supply status |sensor.psu.status[tmnxChassisPowerSupply2Status.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |23 | | |0 | | | | |2 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The overall status of an equipped power supply.&eol;For AC multiple powersupplies, this represents the overall status of the second power supplyin the tray (or shelf).&eol;For any other type, this field is unused and set to 'deviceNotEquipped'.&eol;If tmnxChassisPowerSupply2Status is 'deviceStateOk', then all monitored statuses are 'deviceStateOk'.&eol;A value of 'deviceStateFailed' represents a condition where at least one monitored status is in a failed state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30093 |20 |1.3.6.1.4.1.1588.2.1.1.1.26.6.0 |10208 |Memory utilization |vm.memory.util[swMemUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB&eol;Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30094 |20 |1.3.6.1.4.1.1991.1.1.2.1.53.0 |10209 |Memory utilization |vm.memory.util[snAgGblDynMemUtil.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The system dynamic memory utilization, in unit of percentage.&eol;Deprecated: Refer to snAgSystemDRAMUtil.&eol;For NI platforms, refer to snAgentBrdMemoryUtil100thPercent |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30097 |20 |1.3.6.1.2.1.1.1.0 |10216 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30101 |15 | |10212 |{#SNMPVALUE}: Memory utilization |vm.memory.util[vm.memory.util.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]")/(last("vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}]")+last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30105 |20 |1.3.6.1.4.1.6027.3.10.1.2.9.1.5.{#SNMPINDEX} |10221 |#{#SNMPINDEX}: Memory utilization |vm.memory.util[chStackUnitMemUsageUtil.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;Total memory usage in percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30106 |20 |1.3.6.1.4.1.171.10.97.2.1.1.2.0 |10222 |Operating system |system.sw.os[mySystemSwVersion.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MY-SYSTEM-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30107 |20 |1.3.6.1.4.1.171.10.97.2.35.1.1.1.3.{#SNMPINDEX} |10222 |{#SNMPINDEX}: Memory utilization |vm.memory.util[myMemoryPoolCurrentUtilization.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MY-MEMORY-MIB&eol;This is the memory pool utilization currently. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30108 |20 |1.3.6.1.4.1.171.12.1.1.9.1.4.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Memory utilization |vm.memory.util[agentDRAMutilization.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: DLINK-AGENT-MIB&eol;The percentage of used DRAM memory of the total DRAM memory available.The value will be between 0%(idle) and 100%(very busy) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30109 |20 |1.3.6.1.4.1.1916.1.1.1.13.0 |10224 |Operating system |system.sw.os[extremePrimarySoftwareRev.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;The software revision of the primary image stored in this device.&eol;This string will have a zero length if the revision is unknown, invalid or not present.&eol;This will also be reported in RMON2 probeSoftwareRev if this is the software image currently running in the device. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30110 |20 |1.3.6.1.4.1.1916.1.32.2.2.1.3.{#SNMPINDEX} |10224 |#{#SNMPVALUE}: Available memory |vm.memory.available[extremeMemoryMonitorSystemFree.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EXTREME-SOFTWARE-MONITOR-MIB&eol;Total amount of free memory in Kbytes in the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30111 |15 | |10224 |#{#SNMPVALUE}: Memory utilization |vm.memory.util[{#SNMPVALUE}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vm.memory.total[extremeMemoryMonitorSystemTotal.{#SNMPINDEX}]") - last("vm.memory.available[extremeMemoryMonitorSystemFree.{#SNMPINDEX}]")) / last("vm.memory.total[extremeMemoryMonitorSystemTotal.{#SNMPINDEX}]") * 100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30112 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.8.{#SNMPINDEX} |10227 |{#MODULE_NAME}: Memory utilization |vm.memory.util[hh3cEntityExtMemUsage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;The memory usage for the entity. This object indicates what&eol;percent of memory are used. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30113 |20 |1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.6.{#SNMPINDEX} |10250 |#{#SNMPVALUE}: Available memory |vm.memory.available[hpLocalMemFreeBytes.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: NETSWITCH-MIB&eol;The number of available (unallocated) bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30114 |20 |1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.5.{#SNMPINDEX} |10250 |#{#SNMPVALUE}: Total memory |vm.memory.total[hpLocalMemTotalBytes.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: NETSWITCH-MIB&eol;The number of currently installed bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30115 |15 | |10250 |#{#SNMPVALUE}: Memory utilization |vm.memory.util[snmp.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[hpLocalMemAllocBytes.{#SNMPINDEX}]")/last("vm.memory.total[hpLocalMemTotalBytes.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30116 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.{#SNMPINDEX} |10229 |{#ENT_NAME}: Memory utilization |vm.memory.util[hwEntityMemUsage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB&eol;The memory usage for the entity. This object indicates what percent of memory are used.&eol;Reference: http://support.huawei.com/enterprise/KnowledgebaseReadAction.action?contentId=KB1000090234 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30117 |20 |1.3.6.1.2.1.1.1.0 |10231 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30118 |20 |1.3.6.1.4.1.2636.3.1.13.1.11.{#SNMPINDEX} |10231 |{#SNMPVALUE}: Memory utilization |vm.memory.util[jnxOperatingBuffer.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB&eol;The buffer pool utilization in percentage of this subject. Zero if unavailable or inapplicable.&eol;Reference: http://kb.juniper.net/library/CUSTOMERSERVICE/GLOBAL_JTAC/BK26199/SRX%20SNMP%20Monitoring%20Guide_v1.1.pdf |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30119 |20 |1.3.6.1.4.1.14988.1.1.4.4.0 |10233 |Operating system |system.sw.os[mtxrLicVersion.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MIKROTIK-MIB&eol;Software version. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30120 |15 | |10233 |Memory utilization |vm.memory.util[memoryUsedPercentage.Memory] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[hrStorageUsed.Memory]")/last("vm.memory.total[hrStorageSize.Memory]")*100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30121 |20 |1.3.6.1.4.1.4526.10.1.1.1.10.0 |10234 |Operating system |system.sw.os[agentInventoryOperatingSystem.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB&eol;Operating System running on this unit |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30122 |20 |1.3.6.1.4.1.4526.10.1.1.5.1.0 |10234 |Available memory |vm.memory.available[agentSwitchCpuProcessMemFree.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB&eol;The total memory freed for utilization. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30123 |15 | |10234 |Memory utilization |vm.memory.util[memoryUsedPercentage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vm.memory.total[agentSwitchCpuProcessMemAvailable.0]")-last("vm.memory.available[agentSwitchCpuProcessMemFree.0]"))/last("vm.memory.total[agentSwitchCpuProcessMemAvailable.0]")*100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30124 |20 |1.3.6.1.4.1.27514.100.1.11.9.0 |10235 |Temperature |sensor.temp.value[switchTemperature.0] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: QTECH-MIB&eol;Temperature readings of testpoint: __RESOURCE__ |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30125 |20 |1.3.6.1.4.1.27514.100.1.3.0 |10235 |Operating system |system.sw.os[sysSoftwareVersion.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: QTECH-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30126 |15 | |10235 |Memory utilization |vm.memory.util[vm.memory.util.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[switchMemoryBusy.0]")/last("vm.memory.total[switchMemorySize.0]")*100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30127 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.27514.100.1.12.1.3] |10235 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30128 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.27514.100.1.7.1.5] |10235 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30129 |20 |1.3.6.1.4.1.27514.100.1.12.1.3.{#SNMPINDEX} |10235 |{#SNMPINDEX}: Fan status |sensor.fan.status[sysFanStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |52 | | |0 | | | | |2 |NULL |MIB: QTECH-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30130 |20 |1.3.6.1.4.1.27514.100.1.7.1.5.{#SNMPINDEX} |10235 |{#SNMPINDEX}: Power supply status |sensor.psu.status[sysPowerStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |53 | | |0 | | | | |2 |NULL |MIB: QTECH-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30131 |20 |1.3.6.1.4.1.11863.6.4.1.2.1.1.2.{#SNMPINDEX} |10236 |#{#SNMPVALUE}: Memory utilization |vm.memory.util[tpSysMonitorMemoryUtilization.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TPLINK-SYSMONITOR-MIB&eol;Displays the memory utilization.&eol;Reference: http://www.tp-link.com/faq-1330.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30132 |20 |1.3.6.1.4.1.10002.1.1.1.1.3.0 |10237 |Memory (buffers) |vm.memory.buffers[memBuffer.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FROGFOOT-RESOURCES-MIB&eol;Memory used by kernel buffers (Buffers in /proc/meminfo) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30133 |20 |1.3.6.1.4.1.10002.1.1.1.1.4.0 |10237 |Memory (cached) |vm.memory.cached[memCache.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FROGFOOT-RESOURCES-MIB&eol;Memory used by the page cache and slabs (Cached and Slab in /proc/meminfo) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30134 |20 |1.3.6.1.4.1.10002.1.1.1.1.2.0 |10237 |Free memory |vm.memory.free[memFree.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FROGFOOT-RESOURCES-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30135 |20 |1.3.6.1.4.1.10002.1.1.1.1.1.0 |10237 |Total memory |vm.memory.total[memTotal.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FROGFOOT-RESOURCES-MIB&eol;Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30136 |15 | |10237 |Memory utilization |vm.memory.util[memoryUsedPercentage] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vm.memory.total[memTotal.0]")-(last("vm.memory.free[memFree.0]")+last("vm.memory.buffers[memBuffer.0]")+last("vm.memory.cached[memCache.0]")))/last("vm.memory.total[memTotal.0]")*100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30137 |0 | |10286 |CPU DPC time |perf_counter_en["\Processor Information(_total)\% DPC Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Processor DPC time is the time that a single processor spent receiving and servicing deferred procedure &eol;calls (DPCs). DPCs are interrupts that run at a lower priority than standard interrupts. % DPC Time is a &eol;component of % Privileged Time because DPCs are executed in privileged mode. If a high % DPC Time is &eol;sustained, there may be a processor bottleneck or an application or hardware related issue that can &eol;significantly diminish overall system performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30139 |7 | |10293 |CPU DPC time |perf_counter_en["\Processor Information(_total)\% DPC Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Processor DPC time is the time that a single processor spent receiving and servicing deferred procedure &eol;calls (DPCs). DPCs are interrupts that run at a lower priority than standard interrupts. % DPC Time is a &eol;component of % Privileged Time because DPCs are executed in privileged mode. If a high % DPC Time is &eol;sustained, there may be a processor bottleneck or an application or hardware related issue that can &eol;significantly diminish overall system performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30141 |20 |1.3.6.1.4.1.674.10892.5.1.3.6.0 |10255 |Operating system |system.sw.os[systemOSName] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the name of the operating system that the hostis running. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30142 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10305 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30147 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10306 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30148 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10307 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30157 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10306 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30158 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10306 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30159 |15 | |10306 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30160 |15 | |10307 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30161 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10307 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30162 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10307 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30187 |0 | |10308 |HAProxy: Service response time |net.tcp.service.perf["{$HAPROXY.STATS.SCHEME}","{HOST.CONN}","{$HAPROXY.STATS.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30188 |0 | |10308 |HAProxy: Service status |net.tcp.service["{$HAPROXY.STATS.SCHEME}","{HOST.CONN}","{$HAPROXY.STATS.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30189 |0 | |10308 |HAProxy: Get stats |web.page.get["{$HAPROXY.STATS.SCHEME}://{HOST.CONN}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH};csv"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |HAProxy Statistics Report in CSV format |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30190 |0 | |10308 |HAProxy: Get stats page |web.page.get["{$HAPROXY.STATS.SCHEME}://{HOST.CONN}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |HAProxy Statistics Report HTML |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30196 |15 | |10308 |HAProxy Frontend {#PXNAME}: Session utilization |haproxy.frontend.sutil[{#PXNAME}:{#SVNAME}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(haproxy.frontend.scur[{#PXNAME}:{#SVNAME}]) / last(haproxy.frontend.slim[{#PXNAME}:{#SVNAME}]) * 100 | |0 | | | | |2 |NULL |Percentage of sessions used (scur / slim * 100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30230 |19 | |10309 |HAProxy: Get stats |haproxy.get |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$HAPROXY.USERNAME} |{$HAPROXY.PASSWORD} | | |0 |NULL |HAProxy Statistics Report in CSV format |0 |30d |0 | |NULL |3s |{$HAPROXY.STATS.SCHEME}://{HOST.CONN}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH};csv | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30231 |19 | |10309 |HAProxy: Get stats page |haproxy.get_html |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$HAPROXY.USERNAME} |{$HAPROXY.PASSWORD} | | |0 |NULL |HAProxy Statistics Report HTML |0 |30d |0 | |NULL |3s |{$HAPROXY.STATS.SCHEME}://{HOST.CONN}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH} | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30239 |15 | |10309 |HAProxy Frontend {#PXNAME}: Session utilization |haproxy.frontend.sutil[{#PXNAME}:{#SVNAME}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(haproxy.frontend.scur[{#PXNAME}:{#SVNAME}]) / last(haproxy.frontend.slim[{#PXNAME}:{#SVNAME}]) * 100 | |0 | | | | |2 |NULL |Percentage of sessions used (scur / slim * 100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30273 |0 | |10310 |Redis: Ping |redis.ping["{$REDIS.CONN.URI}"] |1m |7h |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30274 |0 | |10310 |Redis: Slowlog entries per second |redis.slowlog.count["{$REDIS.CONN.URI}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30275 |0 | |10310 |Redis: Get config |redis.config["{$REDIS.CONN.URI}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30276 |0 | |10310 |Redis: Get info |redis.info["{$REDIS.CONN.URI}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30337 |0 | |10310 |Process metrics discovery |proc.num["{$REDIS.LLD.PROCESS_NAME}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Collect metrics by Zabbix agent if it exists |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30344 |0 | |10310 |Redis: CPU utilization |proc.cpu.util["{$REDIS.PROCESS_NAME}{#SINGLETON}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Process CPU utilization percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30345 |0 | |10310 |Redis: Memory usage (rss) |proc.mem["{$REDIS.PROCESS_NAME}{#SINGLETON}",,,,rss] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Resident set size memory used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30346 |0 | |10310 |Redis: Memory usage (vsize) |proc.mem["{$REDIS.PROCESS_NAME}{#SINGLETON}",,,,vsize] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Virtual memory size used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30347 |0 | |10310 |Redis: Number of processes running |proc.num["{$REDIS.PROCESS_NAME}{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30423 |0 | |10314 |Windows services discovery |service.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Windows services of different types as defined in template's macros. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30425 |0 | |10314 |State of service "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) |service.info["{#SERVICE.NAME}",state] |1m |7d |365d |0 |3 | | | | |NULL |3 | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30427 |7 | |10315 |Windows services discovery |service.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Windows services of different types as defined in template's macros. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30429 |7 | |10315 |State of service "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) |service.info["{#SERVICE.NAME}",state] |1m |7d |365d |0 |3 | | | | |NULL |3 | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30431 |0 | |10316 |MySQL: Version |mysql.version["{$MYSQL.HOST}","{$MYSQL.PORT}"] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30432 |0 | |10316 |MySQL: Status |mysql.ping["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30433 |0 | |10316 |MySQL: Get status variables |mysql.get_status_variables["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The item gets server global status information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30434 |15 | |10316 |MySQL: Buffer pool utilization |mysql.buffer_pool_utilization |1m |7d |365d |0 |0 | |% | | |NULL |NULL |( last(mysql.innodb_buffer_pool_pages_total) - &bsn;last(mysql.innodb_buffer_pool_pages_free) ) / &bsn;( last(mysql.innodb_buffer_pool_pages_total) + &bsn;( last(mysql.innodb_buffer_pool_pages_total) = 0 ) ) * 100 * &bsn;( last(mysql.innodb_buffer_pool_pages_total) > 0 ) | |0 | | | | |0 |NULL |Ratio of used to total pages in the buffer pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30435 |15 | |10316 |MySQL: Buffer pool efficiency |mysql.buffer_pool_efficiency |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(mysql.innodb_buffer_pool_reads) / &bsn;( last(mysql.innodb_buffer_pool_read_requests) + &bsn;( last(mysql.innodb_buffer_pool_read_requests) = 0 ) ) * 100 * &bsn;( last(mysql.innodb_buffer_pool_read_requests) > 0 ) | |0 | | | | |0 |NULL |The item shows how effectively the buffer pool is serving reads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30472 |0 | |10316 |Database discovery |mysql.db.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning databases in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30473 |0 | |10316 |Replication discovery |mysql.replication.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If "show slave status" returns Master_Host, "Replication: *" items are created. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30474 |0 | |10316 |MySQL: Size of database {#DBNAME} |mysql.dbsize["{$MYSQL.HOST}","{$MYSQL.PORT}","{#DBNAME}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30475 |0 | |10316 |MySQL: Replication Slave status {#MASTERHOST} |mysql.slave_status["{$MYSQL.HOST}","{$MYSQL.PORT}","{#MASTERHOST}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The item gets status information on the essential parameters of the slave threads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30479 |11 | |10317 |MySQL: Get status variables |db.odbc.get[get_status_variables,"{$MYSQL.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |show global status | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |0 |NULL |The item gets server global status information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30480 |11 | |10317 |MySQL: Version |db.odbc.select[version,"{$MYSQL.DSN}"] |15m |7d |0 |0 |1 | | | | |NULL |NULL |select version() | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30481 |11 | |10317 |MySQL: Status |db.odbc.select[ping,"{$MYSQL.DSN}"] |1m |7d |365d |0 |3 | | | | |NULL |1 |select "1" | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30482 |15 | |10317 |MySQL: Buffer pool efficiency |mysql.buffer_pool_efficiency |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(mysql.innodb_buffer_pool_reads) / &bsn;( last(mysql.innodb_buffer_pool_read_requests) + &bsn;( last(mysql.innodb_buffer_pool_read_requests) = 0 ) ) * 100 * &bsn;( last(mysql.innodb_buffer_pool_read_requests) > 0 ) | |0 | | | | |0 |NULL |The item shows how effectively the buffer pool is serving reads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30483 |15 | |10317 |MySQL: Buffer pool utilization |mysql.buffer_pool_utilization |1m |7d |365d |0 |0 | |% | | |NULL |NULL |( last(mysql.innodb_buffer_pool_pages_total) - &bsn;last(mysql.innodb_buffer_pool_pages_free) ) / &bsn;( last(mysql.innodb_buffer_pool_pages_total) + &bsn;( last(mysql.innodb_buffer_pool_pages_total) = 0 ) ) * 100 * &bsn;( last(mysql.innodb_buffer_pool_pages_total) > 0 ) | |0 | | | | |0 |NULL |Ratio of used to total pages in the buffer pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30520 |11 | |10317 |Database discovery |db.odbc.discovery[databases,"{$MYSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |show databases | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |1 |NULL |Scanning databases in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30521 |11 | |10317 |Replication discovery |db.odbc.discovery[replication,"{$MYSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |show slave status | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |1 |NULL |If "show slave status" returns Master_Host, "Replication: *" items are created. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30522 |11 | |10317 |MySQL: Size of database {#DATABASE} |db.odbc.select[{#DATABASE}_size,"{$MYSQL.DSN}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL |SELECT COALESCE(SUM(DATA_LENGTH + INDEX_LENGTH),0) FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA="{#DATABASE}" | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30523 |11 | |10317 |MySQL: Replication Slave status {#MASTER_HOST} |db.odbc.get["{#MASTER_HOST}","{$MYSQL.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |show slave status | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |2 |NULL |The item gets status information on the essential parameters of the slave threads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30527 |0 | |10318 |Docker: Get data_usage |docker.data_usage |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30528 |0 | |10318 |Docker: Get containers |docker.containers |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30529 |0 | |10318 |Docker: Get info |docker.info |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30530 |0 | |10318 |Docker: Ping |docker.ping |1m |7h |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30531 |0 | |10318 |Docker: Get images |docker.images |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30571 |0 | |10318 |Containers discovery |docker.containers.discovery[false] |15m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for containers metrics&eol;&eol;Parameter:&eol;true - Returns all containers&eol;false - Returns only running containers |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30572 |0 | |10318 |Images discovery |docker.images.discovery |15m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for images metrics |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30573 |0 | |10318 |Container {#NAME}: Get stats |docker.container_stats["{#NAME}"] |1m |0 |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Get container stats based on resource usage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30574 |0 | |10318 |Container {#NAME}: Get info |docker.container_info["{#NAME}"] |1m |0 |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Return low-level information about a container |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30611 |0 | |10319 |Memcached: Ping |memcached.ping["{$MEMCACHED.CONN.URI}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30612 |0 | |10319 |Memcached: Get status |memcached.stats["{$MEMCACHED.CONN.URI}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30637 |0 | |10320 |MySQL: Version |mysql.version["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30638 |0 | |10320 |MySQL: Status |mysql.ping["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30639 |0 | |10320 |MySQL: Get status variables |mysql.get_status_variables["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The item gets server global status information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30640 |15 | |10320 |MySQL: Buffer pool utilization |mysql.buffer_pool_utilization |1m |7d |365d |0 |0 | |% | | |NULL |NULL |( last(mysql.innodb_buffer_pool_pages_total) - &bsn;last(mysql.innodb_buffer_pool_pages_free) ) / &bsn;( last(mysql.innodb_buffer_pool_pages_total) + &bsn;( last(mysql.innodb_buffer_pool_pages_total) = 0 ) ) * 100 * &bsn;( last(mysql.innodb_buffer_pool_pages_total) > 0 ) | |0 | | | | |0 |NULL |Ratio of used to total pages in the buffer pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30641 |15 | |10320 |MySQL: Buffer pool efficiency |mysql.buffer_pool_efficiency |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(mysql.innodb_buffer_pool_reads) / &bsn;( last(mysql.innodb_buffer_pool_read_requests) + &bsn;( last(mysql.innodb_buffer_pool_read_requests) = 0 ) ) * 100 * &bsn;( last(mysql.innodb_buffer_pool_read_requests) > 0 ) | |0 | | | | |0 |NULL |The item shows how effectively the buffer pool is serving reads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30678 |0 | |10320 |Database discovery |mysql.db.discovery["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning databases in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30679 |0 | |10320 |Replication discovery |mysql.replication.discovery["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If "show slave status" returns Master_Host, "Replication: *" items are created. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30680 |0 | |10320 |MySQL: Size of database {#DATABASE} |mysql.db.size["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}","{#DATABASE}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30681 |0 | |10320 |MySQL: Replication Slave status {#MASTER_HOST} |mysql.replication.get_slave_status["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}","{#MASTER_HOST}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The item gets status information on the essential parameters of the slave threads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30685 |12 | |10321 |Get IPMI sensors |ipmi.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The master item that receives all sensors with values for LLD and dependent elements from BMC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30690 |3 | |10322 |ES: Service status |net.tcp.service["{$ELASTICSEARCH.SCHEME}","{HOST.CONN}","{$ELASTICSEARCH.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Checks if the service is running and accepting TCP connections. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30691 |19 | |10322 |ES: Get cluster stats |es.cluster.get_stats |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$ELASTICSEARCH.USERNAME}|{$ELASTICSEARCH.PASSWORD}| | |0 |NULL |Returns cluster statistics. |0 |30d |0 | |NULL |15s |{$ELASTICSEARCH.SCHEME}://{HOST.CONN}:{$ELASTICSEARCH.PORT}/_cluster/stats | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30692 |3 | |10322 |ES: Service response time |net.tcp.service.perf["{$ELASTICSEARCH.SCHEME}","{HOST.CONN}","{$ELASTICSEARCH.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Checks performance of the TCP service. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30693 |19 | |10322 |ES: Get nodes stats |es.nodes.get_stats |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$ELASTICSEARCH.USERNAME}|{$ELASTICSEARCH.PASSWORD}| | |0 |NULL |Returns cluster nodes statistics. |0 |30d |0 | |NULL |30s |{$ELASTICSEARCH.SCHEME}://{HOST.CONN}:{$ELASTICSEARCH.PORT}/_nodes/stats | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30694 |19 | |10322 |ES: Get cluster health |es.cluster.get_health |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$ELASTICSEARCH.USERNAME}|{$ELASTICSEARCH.PASSWORD}| | |0 |NULL |Returns the health status of a cluster. |0 |30d |0 | |NULL |15s |{$ELASTICSEARCH.SCHEME}://{HOST.CONN}:{$ELASTICSEARCH.PORT}/_cluster/health?timeout=5s | | | |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30713 |19 | |10322 |Cluster nodes discovery |es.nodes.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$ELASTICSEARCH.USERNAME}|{$ELASTICSEARCH.PASSWORD}| | |1 |NULL |Discovery ES cluster nodes. |0 |30d |0 | |NULL |15s |{$ELASTICSEARCH.SCHEME}://{HOST.CONN}:{$ELASTICSEARCH.PORT}/_nodes/_all/nodes | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30714 |15 | |10322 |ES {#ES.NODE}: Query latency |es.node.indices.search.query_latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |change(es.node.indices.search.query_time_in_millis[{#ES.NODE}]) / &bsn;( change(es.node.indices.search.query_total[{#ES.NODE}]) + (change(es.node.indices.search.query_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average query latency calculated by sampling the total number of queries and the total elapsed time at regular intervals. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30715 |15 | |10322 |ES {#ES.NODE}: Flush latency |es.node.indices.flush.latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |change(es.node.indices.flush.total_time_in_millis[{#ES.NODE}]) / ( change(es.node.indices.flush.total[{#ES.NODE}]) + (change(es.node.indices.flush.total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average flush latency calculated from the available flush.total and flush.total_time_in_millis metrics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30716 |15 | |10322 |ES {#ES.NODE}: Indexing latency |es.node.indices.indexing.index_latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |change(es.node.indices.indexing.index_time_in_millis[{#ES.NODE}]) / ( change(es.node.indices.indexing.index_total[{#ES.NODE}]) + (change(es.node.indices.indexing.index_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average indexing latency calculated from the available index_total and index_time_in_millis metrics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30717 |15 | |10322 |ES {#ES.NODE}: Fetch latency |es.node.indices.search.fetch_latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |change(es.node.indices.search.fetch_time_in_millis[{#ES.NODE}]) / ( change(es.node.indices.search.fetch_total[{#ES.NODE}]) + (change(es.node.indices.search.fetch_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average fetch latency calculated by sampling the total number of fetches and the total elapsed time at regular intervals. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30762 |15 | |10308 |HAProxy TCP Frontend {#PXNAME}: Session utilization |haproxy.frontend_tcp.sutil[{#PXNAME}:{#SVNAME}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(haproxy.frontend_tcp.scur[{#PXNAME}:{#SVNAME}]) / last(haproxy.frontend_tcp.slim[{#PXNAME}:{#SVNAME}]) * 100 | |0 | | | | |2 |NULL |Percentage of sessions used (scur / slim * 100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30789 |3 | |10309 |HAProxy: Service response time |net.tcp.service.perf["{$HAPROXY.STATS.SCHEME}","{HOST.CONN}","{$HAPROXY.STATS.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30790 |3 | |10309 |HAProxy: Service status |net.tcp.service["{$HAPROXY.STATS.SCHEME}","{HOST.CONN}","{$HAPROXY.STATS.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30794 |15 | |10309 |HAProxy TCP Frontend {#PXNAME}: Session utilization |haproxy.frontend_tcp.sutil[{#PXNAME}:{#SVNAME}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(haproxy.frontend_tcp.scur[{#PXNAME}:{#SVNAME}]) / last(haproxy.frontend_tcp.slim[{#PXNAME}:{#SVNAME}]) * 100 | |0 | | | | |2 |NULL |Percentage of sessions used (scur / slim * 100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30821 |19 | |10323 |ClickHouse: Ping |clickhouse.ping |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ping | | | |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30822 |19 | |10323 |ClickHouse: Version |clickhouse.version |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the server |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"SELECT version()"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
+ROW |30823 |19 | |10323 |ClickHouse: Get replicas info |clickhouse.replicas |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"SELECT database, table, is_readonly, is_session_expired, future_parts, parts_to_check, queue_size, inserts_in_queue, merges_in_queue, log_max_index, log_pointer, total_replicas, active_replicas, log_max_index - log_pointer as replica_lag FROM system.replicas format JSON"}]| |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
+ROW |30824 |19 | |10323 |ClickHouse: Get system.asynchronous_metrics |clickhouse.system.asynchronous_metrics |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get metrics that are calculated periodically in the background |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"select metric, value from system.asynchronous_metrics format JSON"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
+ROW |30825 |19 | |10323 |ClickHouse: Get system.events |clickhouse.system.events |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get information about the number of events that have occurred in the system. |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"select event, value from system.events format JSON"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
+ROW |30826 |19 | |10323 |ClickHouse: Get system.metrics |clickhouse.system.metrics |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get metrics which can be calculated instantly, or have a current value format JSONEachRow |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"select metric, value from system.metrics format JSON"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
+ROW |30827 |19 | |10323 |ClickHouse: Longest currently running query time |clickhouse.process.elapsed |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Get longest running query. |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"SELECT max(elapsed) FROM system.processes"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
+ROW |30828 |19 | |10323 |ClickHouse: Get tables info |clickhouse.tables |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"select database, table, sum(bytes) as bytes, count() as parts, sum(rows) as rows from system.parts where active = 1 group by database, table format JSON"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
+ROW |30829 |19 | |10323 |ClickHouse: Get system.settings |clickhouse.system.settings |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get information about settings that are currently in use. |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"select name, value from system.settings format JSON"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
+ROW |30830 |19 | |10323 |ClickHouse: Get dictionaries info |clickhouse.dictionaries |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"SELECT * FROM system.dictionaries format JSON"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
+ROW |30896 |0 | |10264 |Apache: Get status |web.page.get["{$APACHE.STATUS.SCHEME}://{$APACHE.STATUS.HOST}:{$APACHE.STATUS.PORT}/{$APACHE.STATUS.PATH}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Getting data from a machine-readable version of the Apache status page.&eol;https://httpd.apache.org/docs/current/mod/mod_status.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30923 |3 | |10324 |Etcd: Service's TCP port state |net.tcp.service["{$ETCD.SCHEME}","{HOST.CONN}","{$ETCD.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30924 |19 | |10324 |Etcd: Node health |etcd.health |1m |7d |365d |0 |3 | | | | |NULL |96 | | |1 |{$ETCD.USER} |{$ETCD.PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$ETCD.SCHEME}://{HOST.CONN}:{$ETCD.PORT}/health | | | |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30925 |19 | |10324 |Etcd: Get node metrics |etcd.get_metrics |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$ETCD.USER} |{$ETCD.PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$ETCD.SCHEME}://{HOST.CONN}:{$ETCD.PORT}/metrics | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30926 |19 | |10324 |Etcd: Get version |etcd.get_version |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$ETCD.SCHEME}://{HOST.CONN}:{$ETCD.PORT}/version | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30968 |3 | |10325 |IIS: {$IIS.PORT} port ping |net.tcp.service[{$IIS.SERVICE},,{$IIS.PORT}] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30969 |0 | |10325 |IIS: Total connection attempts |perf_counter_en["\Web Service(_Total)\Total Connection Attempts (all instances)"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of connections to the Web or FTP service that have been attempted since service startup. The count is the total for all Web sites or FTP sites combined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30970 |0 | |10325 |IIS: Method POST requests per second |perf_counter_en["\Web Service(_Total)\Post Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of HTTP requests using POST method. Generally used for forms or gateway requests. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30971 |0 | |10325 |IIS: Method PROPFIND requests per second |perf_counter_en["\Web Service(_Total)\Propfind Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the PROPFIND method made. Propfind requests retrieve property values on files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30972 |0 | |10325 |IIS: Method PROPPATCH requests per second |perf_counter_en["\Web Service(_Total)\Proppatch Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the PROPPATCH method made. Proppatch requests set property values on files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30973 |0 | |10325 |IIS: Method PUT requests per second |perf_counter_en["\Web Service(_Total)\Put Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the PUT method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30974 |0 | |10325 |IIS: Method MS-SEARCH requests per second |perf_counter_en["\Web Service(_Total)\Search Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the MS-SEARCH method made. Search requests are used to query the server to find resources that match a set of conditions provided by the client. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30975 |0 | |10325 |IIS: Uptime |perf_counter_en["\Web Service(_Total)\Service Uptime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Service uptime in seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30976 |0 | |10325 |IIS: Method Total requests per second |perf_counter_en["\Web Service(_Total)\Total Method Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of all HTTP requests received. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30977 |0 | |10325 |IIS: Method OPTIONS requests per second |perf_counter_en["\Web Service(_Total)\Options Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the OPTIONS method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30978 |0 | |10325 |IIS: Method TRACE requests per second |perf_counter_en["\Web Service(_Total)\Trace Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the TRACE method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30979 |0 | |10325 |IIS: Method TRACE requests per second |perf_counter_en["\Web Service(_Total)\Unlock Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the UNLOCK method made. Unlock requests are used to remove locks from files. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30980 |0 | |10325 |IIS: Files cache hits percentage |perf_counter_en["\Web Service Cache\File Cache Hits %"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The ratio of user-mode file cache hits to total cache requests (since service startup). Note: This value might be low if the Kernel URI cache hits percentage is high. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30981 |0 | |10325 |IIS: File cache misses |perf_counter_en["\Web Service Cache\File Cache Misses"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of unsuccessful lookups in the user-mode file cache since service startup. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30982 |0 | |10325 |IIS: URIs cache hits percentage |perf_counter_en["\Web Service Cache\URI Cache Hits %"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The ratio of user-mode URI Cache Hits to total cache requests (since service startup) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30983 |0 | |10325 |IIS: URI cache misses |perf_counter_en["\Web Service Cache\URI Cache Misses"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of unsuccessful lookups in the user-mode URI cache since service startup. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30984 |0 | |10325 |IIS: World Wide Web Publishing Service (W3SVC) state |service_state[W3SVC] |1m |7d |365d |0 |3 | | | | |NULL |3 | | |0 | | | | |0 |NULL |The World Wide Web Publishing Service (W3SVC) provides web connectivity and administration of websites through the IIS snap-in. If the World Wide Web Publishing Service stops, the operating system cannot serve any form of web request. This service was dependent on "Windows Process Activation Service". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30985 |0 | |10325 |IIS: Method Total Other requests per second |perf_counter_en["\Web Service(_Total)\Other Request Methods/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total Other Request Methods is the number of HTTP requests that are not OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, MOVE, COPY, MKCOL, PROPFIND, PROPPATCH, SEARCH, LOCK or UNLOCK methods (since service startup). Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30986 |0 | |10325 |IIS: Not Found errors per second |perf_counter_en["\Web Service(_Total)\Not Found Errors/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of errors due to requests that couldn't be satisfied by the server because the requested document could not be found. These are generally reported to the client with HTTP error code 404. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30987 |0 | |10325 |IIS: Anonymous users per second |perf_counter_en["\Web Service(_Total)\Anonymous Users/sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of requests from users over an anonymous connection per second. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30988 |0 | |10325 |IIS: Current connections |perf_counter_en["\Web Service(_Total)\Current Connections"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active connections. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30989 |0 | |10325 |IIS: Bytes Received per second |perf_counter_en["\Web Service(_Total)\Bytes Received/sec", 60] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute at which data bytes are received by the service at the Application Layer. Does not include protocol headers or control bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30990 |0 | |10325 |IIS: Bytes Sent per second |perf_counter_en["\Web Service(_Total)\Bytes Sent/sec", 60] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute at which data bytes are sent by the service. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30991 |0 | |10325 |IIS: Bytes Total per second |perf_counter_en["\Web Service(_Total)\Bytes Total/Sec", 60] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute of total bytes/sec transferred by the Web service (sum of bytes sent/sec and bytes received/sec). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30992 |0 | |10325 |IIS: Method CGI requests per second |perf_counter_en["\Web Service(_Total)\CGI Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of CGI requests that are simultaneously being processed by the Web service. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30993 |0 | |10325 |IIS: Connection attempts per second |perf_counter_en["\Web Service(_Total)\Connection Attempts/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute that connections using the Web service are being attempted. The count is the average for all Web sites combined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30994 |0 | |10325 |IIS: Method COPY requests per second |perf_counter_en["\Web Service(_Total)\Copy Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests made using the COPY method. Copy requests are used for copying files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30995 |0 | |10325 |IIS: Method DELETE requests per second |perf_counter_en["\Web Service(_Total)\Delete Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the DELETE method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30996 |0 | |10325 |IIS: NonAnonymous users per second |perf_counter_en["\Web Service(_Total)\NonAnonymous Users/sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of requests from users over a non-anonymous connection per second. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30997 |0 | |10325 |IIS: Method Method GET requests per second |perf_counter_en["\Web Service(_Total)\Get Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests made using the GET method. GET requests are generally used for basic file retrievals or image maps, though they can be used with forms. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30998 |0 | |10325 |IIS: Method HEAD requests per second |perf_counter_en["\Web Service(_Total)\Head Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the HEAD method made. HEAD requests generally indicate a client is querying the state of a document they already have to see if it needs to be refreshed. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30999 |0 | |10325 |IIS: Method ISAPI requests per second |perf_counter_en["\Web Service(_Total)\ISAPI Extension Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of ISAPI Extension requests that are simultaneously being processed by the Web service. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31000 |0 | |10325 |IIS: Locked errors per second |perf_counter_en["\Web Service(_Total)\Locked Errors/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of errors due to requests that couldn't be satisfied by the server because the requested document was locked. These are generally reported as an HTTP 423 error code to the client. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31001 |0 | |10325 |IIS: Method LOCK requests per second |perf_counter_en["\Web Service(_Total)\Lock Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests made using the LOCK method. Lock requests are used to lock a file for one user so that only that user can modify the file. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31002 |0 | |10325 |IIS: Method MKCOL requests per second |perf_counter_en["\Web Service(_Total)\Mkcol Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the MKCOL method made. Mkcol requests are used to create directories on the server. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31003 |0 | |10325 |IIS: Method MOVE requests per second |perf_counter_en["\Web Service(_Total)\Move Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the MOVE method made. Move requests are used for moving files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31004 |0 | |10325 |IIS: Windows Process Activation Service (WAS) state |service_state[WAS] |1m |7d |365d |0 |3 | | | | |NULL |3 | | |0 | | | | |0 |NULL |Windows Process Activation Service (WAS) is a tool for managing worker processes that contain applications that host Windows Communication Foundation (WCF) services. Worker processes handle requests that are sent to a Web Server for specific application pools. Each application pool sets boundaries for the applications it contains. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31005 |0 | |10325 |Application pools discovery |wmi.getall[root\webAdministration, select Name from ApplicationPool] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31006 |0 | |10325 |IIS: AppPool {#APPPOOL} state |perf_counter_en["\APP_POOL_WAS({#APPPOOL})\Current Application Pool State"] |1m |7d |365d |0 |3 | | | | |NULL |98 | | |0 | | | | |2 |NULL |The state of the application pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31007 |0 | |10325 |IIS: {#APPPOOL} Uptime |perf_counter_en["\APP_POOL_WAS({#APPPOOL})\Current Application Pool Uptime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The web application uptime period since the last restart. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31008 |0 | |10325 |IIS: AppPool {#APPPOOL} recycles |perf_counter_en["\APP_POOL_WAS({#APPPOOL})\Total Application Pool Recycles"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times the application pool has been recycled since Windows Process Activation Service (WAS) started. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31009 |0 | |10325 |IIS: AppPool {#APPPOOL} current queue size |perf_counter_en["\HTTP Service Request Queues({#APPPOOL})\CurrentQueueSize"] |30s |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of requests in the queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31010 |3 | |10326 |IIS: {$IIS.PORT} port ping |net.tcp.service[{$IIS.SERVICE},,{$IIS.PORT}] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31011 |7 | |10326 |IIS: Total connection attempts |perf_counter_en["\Web Service(_Total)\Total Connection Attempts (all instances)"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of connections to the Web or FTP service that have been attempted since service startup. The count is the total for all Web sites or FTP sites combined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31012 |7 | |10326 |IIS: Method POST requests per second |perf_counter_en["\Web Service(_Total)\Post Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of HTTP requests using POST method. Generally used for forms or gateway requests. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31013 |7 | |10326 |IIS: Method PROPFIND requests per second |perf_counter_en["\Web Service(_Total)\Propfind Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the PROPFIND method made. Propfind requests retrieve property values on files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31014 |7 | |10326 |IIS: Method PROPPATCH requests per second |perf_counter_en["\Web Service(_Total)\Proppatch Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the PROPPATCH method made. Proppatch requests set property values on files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31015 |7 | |10326 |IIS: Method PUT requests per second |perf_counter_en["\Web Service(_Total)\Put Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the PUT method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31016 |7 | |10326 |IIS: Method MS-SEARCH requests per second |perf_counter_en["\Web Service(_Total)\Search Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the MS-SEARCH method made. Search requests are used to query the server to find resources that match a set of conditions provided by the client. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31017 |7 | |10326 |IIS: Uptime |perf_counter_en["\Web Service(_Total)\Service Uptime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Service uptime in seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31018 |7 | |10326 |IIS: Method Total requests per second |perf_counter_en["\Web Service(_Total)\Total Method Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of all HTTP requests received. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31019 |7 | |10326 |IIS: Method OPTIONS requests per second |perf_counter_en["\Web Service(_Total)\Options Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the OPTIONS method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31020 |7 | |10326 |IIS: Method TRACE requests per second |perf_counter_en["\Web Service(_Total)\Trace Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the TRACE method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31021 |7 | |10326 |IIS: Method TRACE requests per second |perf_counter_en["\Web Service(_Total)\Unlock Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the UNLOCK method made. Unlock requests are used to remove locks from files. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31022 |7 | |10326 |IIS: Files cache hits percentage |perf_counter_en["\Web Service Cache\File Cache Hits %"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The ratio of user-mode file cache hits to total cache requests (since service startup). Note: This value might be low if the Kernel URI cache hits percentage is high. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31023 |7 | |10326 |IIS: File cache misses |perf_counter_en["\Web Service Cache\File Cache Misses"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of unsuccessful lookups in the user-mode file cache since service startup. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31024 |7 | |10326 |IIS: URIs cache hits percentage |perf_counter_en["\Web Service Cache\URI Cache Hits %"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The ratio of user-mode URI Cache Hits to total cache requests (since service startup) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31025 |7 | |10326 |IIS: URI cache misses |perf_counter_en["\Web Service Cache\URI Cache Misses"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of unsuccessful lookups in the user-mode URI cache since service startup. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31026 |7 | |10326 |IIS: World Wide Web Publishing Service (W3SVC) state |service_state[W3SVC] |1m |7d |365d |0 |3 | | | | |NULL |3 | | |0 | | | | |0 |NULL |The World Wide Web Publishing Service (W3SVC) provides web connectivity and administration of websites through the IIS snap-in. If the World Wide Web Publishing Service stops, the operating system cannot serve any form of web request. This service was dependent on "Windows Process Activation Service". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31027 |7 | |10326 |IIS: Method Total Other requests per second |perf_counter_en["\Web Service(_Total)\Other Request Methods/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total Other Request Methods is the number of HTTP requests that are not OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, MOVE, COPY, MKCOL, PROPFIND, PROPPATCH, SEARCH, LOCK or UNLOCK methods (since service startup). Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31028 |7 | |10326 |IIS: Not Found errors per second |perf_counter_en["\Web Service(_Total)\Not Found Errors/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of errors due to requests that couldn't be satisfied by the server because the requested document could not be found. These are generally reported to the client with HTTP error code 404. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31029 |7 | |10326 |IIS: Anonymous users per second |perf_counter_en["\Web Service(_Total)\Anonymous Users/sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of requests from users over an anonymous connection per second. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31030 |7 | |10326 |IIS: Current connections |perf_counter_en["\Web Service(_Total)\Current Connections"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active connections. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31031 |7 | |10326 |IIS: Bytes Received per second |perf_counter_en["\Web Service(_Total)\Bytes Received/sec", 60] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute at which data bytes are received by the service at the Application Layer. Does not include protocol headers or control bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31032 |7 | |10326 |IIS: Bytes Sent per second |perf_counter_en["\Web Service(_Total)\Bytes Sent/sec", 60] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute at which data bytes are sent by the service. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31033 |7 | |10326 |IIS: Bytes Total per second |perf_counter_en["\Web Service(_Total)\Bytes Total/Sec", 60] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute of total bytes/sec transferred by the Web service (sum of bytes sent/sec and bytes received/sec). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31034 |7 | |10326 |IIS: Method CGI requests per second |perf_counter_en["\Web Service(_Total)\CGI Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of CGI requests that are simultaneously being processed by the Web service. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31035 |7 | |10326 |IIS: Connection attempts per second |perf_counter_en["\Web Service(_Total)\Connection Attempts/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute that connections using the Web service are being attempted. The count is the average for all Web sites combined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31036 |7 | |10326 |IIS: Method COPY requests per second |perf_counter_en["\Web Service(_Total)\Copy Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests made using the COPY method. Copy requests are used for copying files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31037 |7 | |10326 |IIS: Method DELETE requests per second |perf_counter_en["\Web Service(_Total)\Delete Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the DELETE method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31038 |7 | |10326 |IIS: NonAnonymous users per second |perf_counter_en["\Web Service(_Total)\NonAnonymous Users/sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of requests from users over a non-anonymous connection per second. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31039 |7 | |10326 |IIS: Method Method GET requests per second |perf_counter_en["\Web Service(_Total)\Get Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests made using the GET method. GET requests are generally used for basic file retrievals or image maps, though they can be used with forms. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31040 |7 | |10326 |IIS: Method HEAD requests per second |perf_counter_en["\Web Service(_Total)\Head Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the HEAD method made. HEAD requests generally indicate a client is querying the state of a document they already have to see if it needs to be refreshed. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31041 |7 | |10326 |IIS: Method ISAPI requests per second |perf_counter_en["\Web Service(_Total)\ISAPI Extension Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of ISAPI Extension requests that are simultaneously being processed by the Web service. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31042 |7 | |10326 |IIS: Locked errors per second |perf_counter_en["\Web Service(_Total)\Locked Errors/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of errors due to requests that couldn't be satisfied by the server because the requested document was locked. These are generally reported as an HTTP 423 error code to the client. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31043 |7 | |10326 |IIS: Method LOCK requests per second |perf_counter_en["\Web Service(_Total)\Lock Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests made using the LOCK method. Lock requests are used to lock a file for one user so that only that user can modify the file. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31044 |7 | |10326 |IIS: Method MKCOL requests per second |perf_counter_en["\Web Service(_Total)\Mkcol Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the MKCOL method made. Mkcol requests are used to create directories on the server. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31045 |7 | |10326 |IIS: Method MOVE requests per second |perf_counter_en["\Web Service(_Total)\Move Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the MOVE method made. Move requests are used for moving files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31046 |7 | |10326 |IIS: Windows Process Activation Service (WAS) state |service_state[WAS] |1m |7d |365d |0 |3 | | | | |NULL |3 | | |0 | | | | |0 |NULL |Windows Process Activation Service (WAS) is a tool for managing worker processes that contain applications that host Windows Communication Foundation (WCF) services. Worker processes handle requests that are sent to a Web Server for specific application pools. Each application pool sets boundaries for the applications it contains. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31047 |7 | |10326 |Application pools discovery |wmi.getall[root\webAdministration, select Name from ApplicationPool] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31048 |7 | |10326 |IIS: AppPool {#APPPOOL} state |perf_counter_en["\APP_POOL_WAS({#APPPOOL})\Current Application Pool State"] |1m |7d |365d |0 |3 | | | | |NULL |98 | | |0 | | | | |2 |NULL |The state of the application pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31049 |7 | |10326 |IIS: {#APPPOOL} Uptime |perf_counter_en["\APP_POOL_WAS({#APPPOOL})\Current Application Pool Uptime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The web application uptime period since the last restart. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31050 |7 | |10326 |IIS: AppPool {#APPPOOL} recycles |perf_counter_en["\APP_POOL_WAS({#APPPOOL})\Total Application Pool Recycles"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times the application pool has been recycled since Windows Process Activation Service (WAS) started. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31051 |7 | |10326 |IIS: AppPool {#APPPOOL} current queue size |perf_counter_en["\HTTP Service Request Queues({#APPPOOL})\CurrentQueueSize"] |30s |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of requests in the queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31054 |3 | |10323 |ClickHouse: Check port availability |net.tcp.service[{$CLICKHOUSE.SCHEME},"{HOST.CONN}","{$CLICKHOUSE.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31055 |11 | |10327 |MSSQL: Get performance counters |db.odbc.get[get_status_variables,"{$MSSQL.DSN}"] |0;m0-59 |0 |0 |0 |4 | | | | |NULL |NULL |SELECT object_name,counter_name,instance_name,cntr_value&bsn;FROM sys.dm_os_performance_counters&bsn;UNION&bsn;SELECT '{$MSSQL.INSTANCE}' as object_name,'Version' as counter_name,@@version as instance_name,0 as cntr_value&bsn;UNION&bsn;SELECT '{$MSSQL.INSTANCE}' as object_name,'Uptime' as counter_name,'' as instance_name,DATEDIFF(second,sqlserver_start_time,GETDATE()) as cntr_value&bsn;FROM sys.dm_os_sys_info&bsn;UNION&bsn;SELECT '{$MSSQL.INSTANCE}:Databases' as object_name,'State' as counter_name,name as instance_name,state as cntr_value&bsn;FROM sys.databases&bsn;UNION&bsn;SELECT a.object_name,'BufferCacheHitRatio' as counter_name,'' as instance_name,cast(a.cntr_value*100.0/b.cntr_value as dec(3,0)) as cntr_value&bsn;FROM sys.dm_os_performance_counters a&bsn;JOIN (SELECT cntr_value,OBJECT_NAME&bsn;FROM sys.dm_os_performance_counters&bsn;WHERE counter_name='Buffer cache hit ratio base' AND OBJECT_NAME='{$MSSQL.INSTANCE}:Buffer Manager') b&bsn;ON a.OBJECT_NAME=b.OBJECT_NAME&bsn;WHERE a.counter_name='Buffer cache hit ratio' AND a.OBJECT_NAME='{$MSSQL.INSTANCE}:Buffer Manager'&bsn;UNION&bsn;SELECT a.object_name,'WorktablesFromCacheRatio' as counter_name,'' as instance_name,cast(a.cntr_value*100.0/b.cntr_value as dec(3,0)) as cntr_value&bsn;FROM sys.dm_os_performance_counters a&bsn;JOIN (SELECT cntr_value,OBJECT_NAME&bsn;FROM sys.dm_os_performance_counters&bsn;WHERE counter_name='Worktables From Cache Base' AND OBJECT_NAME='{$MSSQL.INSTANCE}:Access Methods') b&bsn;ON a.OBJECT_NAME=b.OBJECT_NAME&bsn;WHERE a.counter_name='Worktables From Cache Ratio' AND a.OBJECT_NAME='{$MSSQL.INSTANCE}:Access Methods'&bsn;UNION&bsn;SELECT a.object_name,'CacheHitRatio' as counter_name,'_Total' as instance_name,cast(a.cntr_value*100.0/b.cntr_value as dec(3,0)) as cntr_value&bsn;FROM sys.dm_os_performance_counters a&bsn;JOIN (SELECT cntr_value,OBJECT_NAME&bsn;FROM sys.dm_os_performance_counters&bsn;WHERE counter_name='Cache Hit Ratio base' AND OBJECT_NAME='{$MSSQL.INSTANCE}:Plan Cache' AND instance_name='_Total') b&bsn;ON a.OBJECT_NAME=b.OBJECT_NAME&bsn;WHERE a.counter_name='Cache Hit Ratio' AND a.OBJECT_NAME='{$MSSQL.INSTANCE}:Plan Cache' AND instance_name='_Total'| |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |0 |NULL |The item gets server global status information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31056 |15 | |10327 |MSSQL: Total average wait time |mssql.average_wait_time |0;m0-59s3 |7d |365d |0 |0 | |ms | | |NULL |NULL |(last(mssql.average_wait_time_raw) - prev(mssql.average_wait_time_raw)) /&bsn;(last(mssql.average_wait_time_base) - prev(mssql.average_wait_time_base) + &bsn;(last(mssql.average_wait_time_base) - prev(mssql.average_wait_time_base)=0)) | |0 | | | | |0 |NULL |The average wait time, in milliseconds, for each lock request that had to wait. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31057 |3 | |10327 |MSSQL: Service's TCP port state |net.tcp.service[tcp,{HOST.CONN},{$MSSQL.PORT}] |30s |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Test the availability of MS SQL Server on a TCP port. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31058 |15 | |10327 |MSSQL: Average latch wait time |mssql.average_latch_wait_time |0;m0-59s3 |7d |365d |0 |0 | |ms | | |NULL |NULL |(last(mssql.average_latch_wait_time_raw) - prev(mssql.average_latch_wait_time_raw)) /&bsn;(last(mssql.average_latch_wait_time_base) - prev(mssql.average_latch_wait_time_base) + &bsn;(last(mssql.average_latch_wait_time_base) - prev(mssql.average_latch_wait_time_base)=0)) | |0 | | | | |0 |NULL |Average latch wait time (in milliseconds) for latch requests that had to wait. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31122 |11 | |10327 |Availability groups discovery |db.odbc.discovery[availability_groups,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name as group_name &bsn;FROM sys.availability_groups | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Discovery of the existing availability groups. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31123 |11 | |10327 |Database discovery |db.odbc.discovery[dbname,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name as dbname &bsn;FROM sys.databases | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Scanning databases in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31124 |11 | |10327 |Local database discovery |db.odbc.discovery[local_db,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT ag.name AS group_name, arcs.replica_server_name AS replica_name,&bsn;db_name(drs.database_id) AS dbname, drs.is_local&bsn;FROM sys.dm_hadr_database_replica_states drs JOIN sys.dm_hadr_availability_replica_cluster_states arcs&bsn;ON arcs.replica_id = drs.replica_id&bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id&bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id&bsn;WHERE drs.is_local = 1 | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Discovery of the local availability databases. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31125 |11 | |10327 |Mirroring discovery |db.odbc.discovery[mirrors,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT db_name(database_id) as dbname&bsn;FROM sys.database_mirroring&bsn;WHERE mirroring_state_desc IS NOT NULL | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |To see the row for a database other than master or tempdb, you must&eol;either be the database owner or have at least ALTER ANY DATABASE or VIEW ANY&eol;DATABASE server-level permission or CREATE DATABASE permission in the master&eol;database. To see non-NULL values on a mirror database, you must be a member&eol;of the sysadmin fixed server role. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31126 |11 | |10327 |Non-local database discovery |db.odbc.discovery[non-local_db,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT ag.name AS group_name, arcs.replica_server_name AS replica_name,&bsn;db_name(drs.database_id) AS dbname, drs.is_local&bsn;FROM sys.dm_hadr_database_replica_states drs JOIN sys.dm_hadr_availability_replica_cluster_states arcs &bsn;ON arcs.replica_id = drs.replica_id &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id&bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id&bsn;WHERE drs.is_local = 0 | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Discovery of the non-local (not local to the SQL Server instance) availability databases. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31127 |11 | |10327 |Replication discovery |db.odbc.discovery[replicas,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT ag.name as group_name, &bsn;arcs.replica_server_name as replica_name&bsn;FROM sys.dm_hadr_availability_replica_cluster_states as arcs &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id&bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Discovery of the database replicas. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31128 |11 | |10327 |MSSQL AG '{#GROUP_NAME}': Get replica states |db.odbc.get[{#GROUP_NAME}_replica_states,"{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT ag.name as group_name,&bsn;ISNULL(ags.primary_recovery_health, 2) as primary_recovery_health,&bsn;ISNULL(ags.primary_replica, 'Unknown') as primary_replica,&bsn;ISNULL(ags.secondary_recovery_health, 2) as secondary_recovery_health,&bsn;ags.synchronization_health as synchronization_health&bsn;FROM sys.dm_hadr_availability_group_states ags JOIN sys.availability_groups ag ON ag.group_id = ags.group_id | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting replica states - name, primary and secondary health, synchronization health. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31129 |11 | |10327 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}': Get local DB states |db.odbc.get["{#GROUP_NAME}_{#DBNAME}_local_db.states","{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT drs.database_state as database_state, &bsn;drs.is_suspended as is_suspended, &bsn;drs.synchronization_health as synchronization_health, &bsn;ag.name as group_name,&bsn;arcs.replica_server_name as replica_name,&bsn;db_name(drs.database_id) as dbname&bsn;FROM sys.dm_hadr_database_replica_states drs &bsn;JOIN sys.dm_hadr_availability_replica_cluster_states arcs ON arcs.replica_id = drs.replica_id &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id &bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting the states of the local availability database. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31130 |11 | |10327 |MSSQL Mirroring '{#DBNAME}': Get the mirror state |db.odbc.get["{#DBNAME}_mirroring_state","{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT ISNULL(m.mirroring_role,0) as mirroring_role,&bsn;ISNULL(m.mirroring_role_sequence,0) as mirroring_role_sequence,&bsn;ISNULL(m.mirroring_state,7) as mirroring_state,&bsn;ISNULL(m.mirroring_witness_state,3) as mirroring_witness_state,&bsn;ISNULL(m.mirroring_safety_level,3) as mirroring_safety_level,&bsn;db_name(m.database_id) as dbname &bsn;FROM sys.database_mirroring as m&bsn;WHERE m.mirroring_state_desc IS NOT NULL | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting mirrors state |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31132 |11 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Get the replica state |db.odbc.get["{#GROUP_NAME}_{#REPLICA_NAME}_replica.state","{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT ars.connected_state as connected_state,&bsn;ars.is_local as is_local,&bsn;arcs.join_state as join_state,&bsn;ISNULL(ars.operational_state,6) as operational_state,&bsn;ISNULL(ars.recovery_health,2) as recovery_health,&bsn;ars.role as role,&bsn;ars.synchronization_health as synchronization_health,&bsn;ag.name as group_name, &bsn;arcs.replica_server_name as replica_name&bsn;FROM sys.dm_hadr_availability_replica_cluster_states as arcs &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id&bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id&bsn;WHERE ag.name = '{#GROUP_NAME}' AND arcs.replica_server_name = '{#REPLICA_NAME}' | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting the database replica states. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31180 |0 | |10328 |PostgreSQL: Get bgwriter |pgsql.bgwriter["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |https://www.postgresql.org/docs/12/monitoring-stats.html#PG-STAT-BGWRITER-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31181 |0 | |10328 |Replication: Lag in bytes |pgsql.replication.lag.b["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Replication lag with Master in byte. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31182 |0 | |10328 |PostgreSQL: Get connections |pgsql.connections["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_activity&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ACTIVITY-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31183 |0 | |10328 |PostgreSQL: Get dbstat sum |pgsql.dbstat.sum["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_database per database&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-DATABASE-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31185 |0 | |10328 |PostgreSQL: Get dbstat |pgsql.dbstat["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_database per database&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-DATABASE-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31186 |0 | |10328 |PostgreSQL: Get locks |pgsql.locks["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_locks per database&eol;https://www.postgresql.org/docs/current/explicit-locking.html#LOCKING-TABLES |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31188 |0 | |10328 |PostgreSQL: Ping |pgsql.ping["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31189 |0 | |10328 |Replication: Standby count |pgsql.replication.count["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of standby servers |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31190 |0 | |10328 |Replication: Lag in seconds |pgsql.replication.lag.sec["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Replication lag with Master in seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31191 |0 | |10328 |Replication: Recovery role |pgsql.replication.recovery_role["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |3 | | | | |NULL |76 | | |0 | | | | |0 |NULL |Replication role: 1 — recovery is still in progress (standby mode), 0 — master mode. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31192 |0 | |10328 |Replication: Status |pgsql.replication.status["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |3 | | | | |NULL |77 | | |0 | | | | |0 |NULL |Replication status: 0 — streaming is down, 1 — streaming is up, 2 — master mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31193 |0 | |10328 |PostgreSQL: Uptime |pgsql.uptime["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31194 |0 | |10328 |Autovacuum: Count of autovacuum workers |pgsql.autovacuum.count["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of autovacuum workers. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31195 |0 | |10328 |PostgreSQL: Get archive |pgsql.archive["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect archive status metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31196 |0 | |10328 |PostgreSQL: Get WAL |pgsql.wal.stat["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |5m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect WAL metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31240 |0 | |10328 |Database discovery |pgsql.db.discovery["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31241 |0 | |10328 |DB {#DBNAME}: Database age |pgsql.db.age["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"] |10m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Database age |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31242 |0 | |10328 |DB {#DBNAME}: Database size |pgsql.db.size["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Database size |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31243 |0 | |10328 |DB {#DBNAME}: Get bloating tables |pgsql.db.bloating_tables["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bloating tables |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31273 |0 | |10275 |Block devices discovery |vfs.dev.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31276 |15 | |10275 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last("vfs.dev.read.time.rate[{#DEVNAME}]")/(last("vfs.dev.read.rate[{#DEVNAME}]")+(last("vfs.dev.read.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.read.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31277 |15 | |10275 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last("vfs.dev.write.time.rate[{#DEVNAME}]")/(last("vfs.dev.write.rate[{#DEVNAME}]")+(last("vfs.dev.write.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.write.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31278 |0 | |10275 |{#DEVNAME}: Get stats |vfs.file.contents[/sys/block/{#DEVNAME}/stat] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Get contents of /sys/block/{#DEVNAME}/stat for disk stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31305 |7 | |10281 |Block devices discovery |vfs.dev.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31307 |15 | |10281 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last("vfs.dev.read.time.rate[{#DEVNAME}]")/(last("vfs.dev.read.rate[{#DEVNAME}]")+(last("vfs.dev.read.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.read.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31308 |15 | |10281 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last("vfs.dev.write.time.rate[{#DEVNAME}]")/(last("vfs.dev.write.rate[{#DEVNAME}]")+(last("vfs.dev.write.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.write.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31309 |7 | |10281 |{#DEVNAME}: Get stats |vfs.file.contents[/sys/block/{#DEVNAME}/stat] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Get contents of /sys/block/{#DEVNAME}/stat for disk stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31325 |0 | |10286 |Number of cores |wmi.get[root/cimv2,"Select NumberOfLogicalProcessors from Win32_ComputerSystem"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical processors available on the computer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31326 |0 | |10287 |Used swap space in % |perf_counter_en["\Paging file(_Total)\% Usage"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The used space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31327 |15 | |10287 |Free swap space |system.swap.free |1m |7d |365d |0 |3 | |B | | |NULL |NULL |last("system.swap.size[,total]") - last("system.swap.size[,total]") / 100 * last("perf_counter_en[\"\Paging file(_Total)\% Usage\"]") | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31333 |0 | |10289 |Physical disks discovery |perf_instance_en.discovery[PhysicalDisk] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of installed physical disks. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31335 |0 | |10289 |{#DEVNAME}: Disk utilization |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Disk Time",60] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31336 |0 | |10289 |{#DEVNAME}: Disk average queue size (avgqu-sz) |perf_counter_en["\PhysicalDisk({#DEVNAME})\Current Disk Queue Length",60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31337 |0 | |10289 |{#DEVNAME}: Disk read rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Reads/sec",60] |1m |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of read operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31338 |0 | |10289 |{#DEVNAME}: Disk write rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Writes/sec",60] |1m |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of write operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31343 |7 | |10293 |Number of cores |wmi.get[root/cimv2,"Select NumberOfLogicalProcessors from Win32_ComputerSystem"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical processors available on the computer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31344 |7 | |10294 |Used swap space in % |perf_counter_en["\Paging file(_Total)\% Usage"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The used space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31345 |15 | |10294 |Free swap space |system.swap.free |1m |7d |365d |0 |3 | |B | | |NULL |NULL |last("system.swap.size[,total]") - last("system.swap.size[,total]") / 100 * last("perf_counter_en[\"\Paging file(_Total)\% Usage\"]") | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31351 |7 | |10296 |Physical disks discovery |perf_instance_en.discovery[PhysicalDisk] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of installed physical disks. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31353 |7 | |10296 |{#DEVNAME}: Disk utilization |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Disk Time",60] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31354 |7 | |10296 |{#DEVNAME}: Disk average queue size (avgqu-sz) |perf_counter_en["\PhysicalDisk({#DEVNAME})\Current Disk Queue Length",60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31355 |7 | |10296 |{#DEVNAME}: Disk read rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Reads/sec",60] |1m |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of read operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31356 |7 | |10296 |{#DEVNAME}: Disk write rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Writes/sec",60] |1m |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of write operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31361 |11 | |10329 |Oracle: Get archive log info |db.odbc.get[get_archivelog_stat,"{$ORACLE.DSN}"] |5m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT&bsn;d.dest_name, DECODE (d.status, 'VALID',3, 'DEFERRED', 2, 'ERROR', 1, 0) AS status,&bsn;d.log_sequence,&bsn;d.error&bsn;FROM v$archive_dest d , v$database db&bsn;WHERE d.status != 'INACTIVE' AND db.log_mode = 'ARCHIVELOG'; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31362 |11 | |10329 |Oracle: Get tablespaces stats |db.odbc.get[tablespace_stats,"{$ORACLE.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT df.tablespace_name AS TABLESPACE, df.type AS TYPE, NVL(SUM(df.BYTES), 0) AS FILE_BYTES, NVL(SUM(df.MAX_BYTES), 0) AS MAX_BYTES, NVL(SUM(f.FREE), 0) AS FREE_BYTES, SUM(df.BYTES)-SUM(f.FREE) AS USED_BYTES, ROUND(DECODE(SUM(df.MAX_BYTES), 0, 0, (SUM(df.BYTES) / SUM(df.MAX_BYTES) * 100)), 2) AS USED_PCT_MAX, ROUND(DECODE(SUM(df.BYTES), 0, 0,(SUM(df.BYTES)-SUM(f.FREE))/ SUM(df.BYTES)* 100), 2) AS USED_FILE_PCT, DECODE(df.STATUS, 'ONLINE', 1, 'OFFLINE', 2, 'READ ONLY', 3, 0) AS STATUS FROM ( SELECT ddf.file_id, dt.contents AS TYPE, dt.STATUS , ddf.file_name, ddf.tablespace_name, TRUNC(ddf.bytes) AS bytes, TRUNC(GREATEST(ddf.bytes, ddf.maxbytes)) AS max_bytes FROM dba_data_files ddf, dba_tablespaces dt WHERE ddf.tablespace_name = dt.tablespace_name ) df, ( SELECT TRUNC(SUM(bytes)) AS FREE, file_id FROM dba_free_space GROUP BY file_id ) f WHERE df.file_id = f.file_id (+) GROUP BY df.tablespace_name, df.TYPE, df.status UNION ALL SELECT Y.name AS TABLESPACE, Y.type AS TYPE, NVL(SUM(Y.BYTES), 0) AS FILE_BYTES, NVL(SUM(Y.MAX_BYTES), 0) AS MAX_BYTES, NVL(MAX(NVL(Y.FREE_BYTES, 0)), 0) AS FREE, SUM(Y.BYTES)-SUM(Y.FREE_BYTES) AS USED_BYTES, ROUND(DECODE(SUM(Y.MAX_BYTES), 0, 0, (SUM(Y.BYTES) / SUM(Y.MAX_BYTES) * 100)), 2) AS USED_PCT_MAX, ROUND(DECODE(SUM(Y.BYTES), 0, 0,(SUM(Y.BYTES)-SUM(Y.FREE_BYTES))/ SUM(Y.BYTES)* 100), 2) AS USED_FILE_PCT, DECODE(Y.TBS_STATUS, 'ONLINE', 1, 'OFFLINE', 2, 'READ ONLY', 3, 0) AS STATUS FROM ( SELECT dtf.tablespace_name AS name, dt.contents AS TYPE, dt.STATUS AS tbs_status, dtf.status AS status, dtf.bytes AS bytes, (SELECT ((f.total_blocks - s.tot_used_blocks)* vp.value) FROM ( SELECT tablespace_name, SUM(used_blocks) tot_used_blocks FROM gv$sort_segment WHERE tablespace_name != 'DUMMY' GROUP BY tablespace_name) s, ( SELECT tablespace_name, SUM(blocks) total_blocks FROM dba_temp_files WHERE tablespace_name != 'DUMMY' GROUP BY tablespace_name) f, ( SELECT value FROM v$parameter WHERE name = 'db_block_size') vp WHERE f.tablespace_name = s.tablespace_name AND f.tablespace_name = dtf.tablespace_name ) AS free_bytes, CASE WHEN dtf.maxbytes = 0 THEN dtf.bytes ELSE dtf.maxbytes END AS max_bytes FROM sys.dba_temp_files dtf, sys.dba_tablespaces dt WHERE dtf.tablespace_name = dt.tablespace_name ) Y GROUP BY Y.name, Y.TYPE, Y.tbs_status;| |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL |Get tablespaces stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31363 |11 | |10329 |Oracle: Get ASM stats |db.odbc.get[get_asm_stat,"{$ORACLE.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT&bsn;name AS dg_name,&bsn;ROUND(total_mb / DECODE(TYPE, 'NORMAL', 2, 'HIGH', 3, 'EXTERN', 1)*1024*1024) AS size_byte,&bsn;ROUND(usable_file_mb*1024*1024 ) AS free_size_byte,&bsn;ROUND(100-(usable_file_mb /(total_mb / DECODE(TYPE, 'NORMAL', 2, 'HIGH', 3, 'EXTERN', 1)))* 100, 2) AS used_percent&bsn;FROM v$asm_diskgroup ; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL |Get ASM disk groups stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31364 |0 | |10329 |Oracle: Service's TCP port state |net.tcp.service[tcp,{HOST.CONN},{$ORACLE.PORT}] |30s |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Test the availability of Oracle on TCP port. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31365 |0 | |10329 |Oracle: Number of LISTENER processes |proc.num[,,,"tnslsnr LISTENER"] |30s |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of LISTENER processes running |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31367 |11 | |10329 |Oracle: Get CDB and No-CDB info |db.odbc.get[get_cdb_info,"{$ORACLE.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT name as DBNAME,&bsn;DECODE(open_mode, 'MOUNTED', 1, 'READ ONLY', 2, 'READ WRITE', 3, 'READ ONLY WITH APPLY', 4, 'MIGRATE', 5, 0) AS open_mode,&bsn;DECODE(database_role, 'SNAPSHOT STANDBY', 1, 'LOGICAL STANDBY', 2, 'PHYSICAL STANDBY', 3, 'PRIMARY', 4, 'FAR SYNC', 5, 0) AS ROLE,&bsn;DECODE(force_logging, 'YES',1,'NO',0,0) AS force_logging,&bsn;DECODE(log_mode, 'MANUAL',2 ,'ARCHIVELOG',1,'NOARCHIVELOG',0,0) AS log_mode&bsn;FROM v$database | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL |Get info about CDB and No-CDB databases on instansce. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31368 |11 | |10329 |Oracle: Get PDB info |db.odbc.get[get_pdb_info,"{$ORACLE.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT&bsn;name as DBNAME,&bsn;DECODE(open_mode, 'MOUNTED', 1, 'READ ONLY', 2, 'READ WRITE', 3, 'READ ONLY WITH APPLY', 4, 'MIGRATE', 5, 0) AS open_mode&bsn;FROM v$pdbs; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL |Get info about PDB databases on instansce. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31369 |11 | |10329 |Oracle: Get instance state |db.odbc.get[get_instance_state,"{$ORACLE.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT&bsn;INSTANCE_NAME,&bsn;HOST_NAME,&bsn;VERSION &pipe;&pipe; '-' &pipe;&pipe; EDITION AS VERSION,&bsn;floor((SYSDATE - startup_time)*60*60*24) AS UPTIME,&bsn;decode(status,'STARTED',1,'MOUNTED',2,'OPEN',3,'OPEN MIGRATE',4, 0) AS STATUS,&bsn;decode(archiver,'STOPPED',1,'STARTED',2,'FAILED',3, 0) AS ARCHIVER,&bsn;decode(instance_role,'PRIMARY_INSTANCE',1,'SECONDARY_INSTANCE',2, 0) AS INSTANCE_ROLE&bsn;FROM v$instance; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL |The item gets state of the current instance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31434 |11 | |10329 |Archive log discovery |db.odbc.discovery[archivelog,"{$ORACLE.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT d.dest_name&bsn;FROM v$archive_dest d , v$database db WHERE d.status != 'INACTIVE' AND db.log_mode = 'ARCHIVELOG'; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |1 |NULL |Log archive destinations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31435 |11 | |10329 |ASM disk groups discovery |db.odbc.discovery[asm,"{$ORACLE.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name AS dg_name FROM v$asm_diskgroup; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |1 |NULL |ASM disk groups |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31436 |11 | |10329 |Database discovery |db.odbc.discovery[db_list,"{$ORACLE.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name as DBNAME, DECODE(CDB, 'YES', 'CDB', 'No-CDB') AS TYPE FROM V$DATABASE; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |1 |NULL |Scanning databases in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31437 |11 | |10329 |PDB discovery |db.odbc.discovery[pdb_list,"{$ORACLE.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name as DBNAME FROM V$PDBS; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |1 |NULL |Scanning PDB in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31438 |11 | |10329 |Tablespace discovery |db.odbc.discovery[tbsname,"{$ORACLE.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT&bsn;tablespace_name AS tablespace,&bsn;contents FROM DBA_TABLESPACES; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |1 |NULL |Scanning tablespaces in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31455 |0 | |10291 |Network interfaces WMI get |wmi.getall[root\cimv2,"select Name,Description,NetConnectionID,Speed,AdapterTypeId,NetConnectionStatus from win32_networkadapter where PhysicalAdapter=True and NetConnectionStatus>0"]|1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Raw data of win32_networkadapter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31459 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of incoming packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31460 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of incoming packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31461 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Incoming traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31462 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31463 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31464 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Outgoing traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31477 |7 | |10298 |Network interfaces WMI get |wmi.getall[root\cimv2,"select Name,Description,NetConnectionID,Speed,AdapterTypeId,NetConnectionStatus from win32_networkadapter where PhysicalAdapter=True and NetConnectionStatus>0"]|1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Raw data of win32_networkadapter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31481 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of incoming packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31482 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of incoming packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31483 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Incoming traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31484 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31485 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31486 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Outgoing traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31499 |16 | |10169 |ClassLoading: Loaded class count |jmx["java.lang:type=ClassLoading","LoadedClassCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays number of classes that are currently loaded in the Java virtual machine. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31500 |16 | |10169 |MemoryPool: PS Perm Gen used |jmx["java.lang:type=MemoryPool,name=PS Perm Gen","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31501 |16 | |10169 |MemoryPool: Code Cache committed |jmx["java.lang:type=MemoryPool,name=Code Cache","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31502 |16 | |10169 |MemoryPool: CodeCache maximum size |jmx["java.lang:type=MemoryPool,name=Code Cache","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31503 |16 | |10169 |MemoryPool: Code Cache used |jmx["java.lang:type=MemoryPool,name=Code Cache","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31504 |16 | |10169 |MemoryPool: Perm Gen committed |jmx["java.lang:type=MemoryPool,name=Perm Gen","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31505 |16 | |10169 |MemoryPool: Perm Gen maximum size |jmx["java.lang:type=MemoryPool,name=Perm Gen","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31506 |16 | |10169 |MemoryPool: Perm Gen used |jmx["java.lang:type=MemoryPool,name=Perm Gen","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31507 |16 | |10169 |MemoryPool: PS Old Gen |jmx["java.lang:type=MemoryPool,name=PS Old Gen","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31508 |16 | |10169 |MemoryPool: PS Old Gen maximum size |jmx["java.lang:type=MemoryPool,name=PS Old Gen","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31509 |16 | |10169 |MemoryPool: PS Old Gen used |jmx["java.lang:type=MemoryPool,name=PS Old Gen","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31510 |16 | |10169 |MemoryPool: PS Perm Gen committed |jmx["java.lang:type=MemoryPool,name=PS Perm Gen","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31511 |16 | |10169 |MemoryPool: PS Perm Gen maximum size |jmx["java.lang:type=MemoryPool,name=PS Perm Gen","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31512 |16 | |10169 |MemoryPool: Tenured Gen committed |jmx["java.lang:type=MemoryPool,name=Tenured Gen","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31513 |16 | |10169 |MemoryPool: CMS Perm Gen maximum size |jmx["java.lang:type=MemoryPool,name=CMS Perm Gen","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31514 |16 | |10169 |MemoryPool: Tenured Gen maximum size |jmx["java.lang:type=MemoryPool,name=Tenured Gen","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31515 |16 | |10169 |MemoryPool: Tenured Gen used |jmx["java.lang:type=MemoryPool,name=Tenured Gen","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31516 |16 | |10169 |OperatingSystem: File descriptors maximum count |jmx["java.lang:type=OperatingSystem","MaxFileDescriptorCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This is the number of file descriptors we can have opened in the same process, as determined by the operating system. You can never have more file descriptors than this number. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31517 |16 | |10169 |OperatingSystem: File descriptors opened |jmx["java.lang:type=OperatingSystem","OpenFileDescriptorCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This is the number of opened file descriptors at the moment, if this reaches the MaxFileDescriptorCount, the application will throw an IOException: Too many open files. This could mean you’re are opening file descriptors and never closing them. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31518 |16 | |10169 |OperatingSystem: Process CPU Load |jmx["java.lang:type=OperatingSystem","ProcessCpuLoad"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |ProcessCpuLoad represents the CPU load in this process. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31519 |16 | |10169 |Runtime: JVM uptime |jmx["java.lang:type=Runtime","Uptime"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31520 |16 | |10169 |Runtime: JVM name |jmx["java.lang:type=Runtime","VmName"] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31521 |16 | |10169 |Runtime: JVM version |jmx["java.lang:type=Runtime","VmVersion"] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31522 |16 | |10169 |Threading: Daemon thread count |jmx["java.lang:type=Threading","DaemonThreadCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of daemon threads running. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31523 |16 | |10169 |Threading: Peak thread count |jmx["java.lang:type=Threading","PeakThreadCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum number of threads being executed at the same time since the JVM was started or the peak was reset. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31524 |16 | |10169 |Threading: Thread count |jmx["java.lang:type=Threading","ThreadCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads running at the current moment. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31525 |16 | |10169 |MemoryPool: CMS Perm Gen used |jmx["java.lang:type=MemoryPool,name=CMS Perm Gen","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31526 |16 | |10169 |MemoryPool: CMS Perm Gen committed |jmx["java.lang:type=MemoryPool,name=CMS Perm Gen","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31527 |16 | |10169 |ClassLoading: Total loaded class count |jmx["java.lang:type=ClassLoading","TotalLoadedClassCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of classes that have been loaded since the Java virtual machine has started execution. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31528 |16 | |10169 |GarbageCollector: PS MarkSweep number of collections per second |jmx["java.lang:type=GarbageCollector,name=PS MarkSweep","CollectionCount"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of collections that have occurred per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31529 |16 | |10169 |ClassLoading: Unloaded class count |jmx["java.lang:type=ClassLoading","UnloadedClassCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of classes that have been loaded since the Java virtual machine has started execution. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31530 |16 | |10169 |Compilation: Name of the current JIT compiler |jmx["java.lang:type=Compilation","Name"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of classes unloaded since the Java virtual machine has started execution. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31531 |16 | |10169 |Compilation: Accumulated time spent |jmx["java.lang:type=Compilation","TotalCompilationTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated elapsed time spent in compilation, in seconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31532 |16 | |10169 |GarbageCollector: ConcurrentMarkSweep number of collections per second |jmx["java.lang:type=GarbageCollector,name=ConcurrentMarkSweep","CollectionCount"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of collections that have occurred per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31533 |16 | |10169 |GarbageCollector: ConcurrentMarkSweep accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=ConcurrentMarkSweep","CollectionTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated collection elapsed time, in seconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31534 |16 | |10169 |GarbageCollector: Copy number of collections per second |jmx["java.lang:type=GarbageCollector,name=Copy","CollectionCount"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of collections that have occurred per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31535 |16 | |10169 |GarbageCollector: Copy accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=Copy","CollectionTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated collection elapsed time, in seconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31536 |16 | |10169 |GarbageCollector: MarkSweepCompact number of collections per second |jmx["java.lang:type=GarbageCollector,name=MarkSweepCompact","CollectionCount"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of collections that have occurred per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31537 |16 | |10169 |GarbageCollector: MarkSweepCompact accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=MarkSweepCompact","CollectionTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated collection elapsed time, in seconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31538 |16 | |10169 |GarbageCollector: ParNew number of collections per second |jmx["java.lang:type=GarbageCollector,name=ParNew","CollectionCount"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of collections that have occurred per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31539 |16 | |10169 |GarbageCollector: ParNew accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=ParNew","CollectionTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated collection elapsed time, in seconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31540 |16 | |10169 |GarbageCollector: PS MarkSweep accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=PS MarkSweep","CollectionTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated collection elapsed time, in seconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31541 |16 | |10169 |MemoryPool: CMS Old Gen used |jmx["java.lang:type=MemoryPool,name=CMS Old Gen","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31542 |16 | |10169 |GarbageCollector: PS Scavenge number of collections per second |jmx["java.lang:type=GarbageCollector,name=PS Scavenge","CollectionCount"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of collections that have occurred per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31543 |16 | |10169 |GarbageCollector: PS Scavenge accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=PS Scavenge","CollectionTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated collection elapsed time, in seconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31544 |16 | |10169 |Memory: Heap memory committed |jmx["java.lang:type=Memory","HeapMemoryUsage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current heap memory allocated. This amount of memory is guaranteed for the Java virtual machine to use. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31545 |16 | |10169 |Memory: Heap memory maximum size |jmx["java.lang:type=Memory","HeapMemoryUsage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of heap that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31546 |16 | |10169 |Memory: Heap memory used |jmx["java.lang:type=Memory","HeapMemoryUsage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage outside the heap. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31547 |16 | |10169 |Memory: Non-Heap memory committed |jmx["java.lang:type=Memory","NonHeapMemoryUsage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated outside the heap. This amount of memory is guaranteed for the Java virtual machine to use. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31548 |16 | |10169 |Memory: Non-Heap memory maximum size |jmx["java.lang:type=Memory","NonHeapMemoryUsage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of non-heap memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31549 |16 | |10169 |Memory: Non-Heap memory used |jmx["java.lang:type=Memory","NonHeapMemoryUsage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage outside the heap |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31550 |16 | |10169 |Memory: Object pending finalization count |jmx["java.lang:type=Memory","ObjectPendingFinalizationCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The approximate number of objects for which finalization is pending. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31551 |16 | |10169 |MemoryPool: CMS Old Gen committed |jmx["java.lang:type=MemoryPool,name=CMS Old Gen","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31552 |16 | |10169 |MemoryPool: CMS Old Gen maximum size |jmx["java.lang:type=MemoryPool,name=CMS Old Gen","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31553 |16 | |10169 |Threading: Total started thread count |jmx["java.lang:type=Threading","TotalStartedThreadCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads started since the JVM was launched. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31554 |3 | |10173 |VMware: Event log |vmware.eventlog[{$VMWARE.URL},skip] |1m |7d |0 |0 |2 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Collect VMware event log. See also: https://www.zabbix.com/documentation/5.0/manual/config/items/preprocessing/examples#filtering_vmware_event_log_records |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31555 |3 | |10173 |VMware: Full name |vmware.fullname[{$VMWARE.URL}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |VMware service full name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31556 |3 | |10173 |VMware: Version |vmware.version[{$VMWARE.URL}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |VMware service version. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31557 |3 | |10174 |VMware: Cluster name |vmware.vm.cluster.name[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Cluster name of the guest VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31558 |3 | |10174 |VMware: Swapped memory |vmware.vm.memory.size.swapped[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of guest physical memory swapped out to the VM's swap device by ESX. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31559 |3 | |10174 |VMware: Unshared storage space |vmware.vm.storage.unshared[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Total storage space, in bytes, occupied by the virtual machine across all datastores, that is not shared with any other virtual machine. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31560 |3 | |10174 |VMware: Uncommitted storage space |vmware.vm.storage.uncommitted[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Additional storage space, in bytes, potentially used by this virtual machine on all datastores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31561 |3 | |10174 |VMware: Committed storage space |vmware.vm.storage.committed[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Total storage space, in bytes, committed to this virtual machine across all datastores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31562 |3 | |10174 |VMware: Power state |vmware.vm.powerstate[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | | | | |NULL |12 | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The current power state of the virtual machine. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31563 |3 | |10174 |VMware: Memory size |vmware.vm.memory.size[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Total size of configured memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31564 |3 | |10174 |VMware: Host memory usage |vmware.vm.memory.size.usage.host[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of host physical memory allocated to the VM, accounting for saving from memory sharing with other VMs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31565 |3 | |10174 |VMware: Guest memory usage |vmware.vm.memory.size.usage.guest[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of guest physical memory that is being used by the VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31566 |3 | |10174 |VMware: Shared memory |vmware.vm.memory.size.shared[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of guest physical memory shared through transparent page sharing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31567 |3 | |10174 |VMware: Number of virtual CPUs |vmware.vm.cpu.num[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Number of virtual CPUs assigned to the guest. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31568 |3 | |10174 |VMware: Private memory |vmware.vm.memory.size.private[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Amount of memory backed by host memory and not being shared. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31569 |3 | |10174 |VMware: Compressed memory |vmware.vm.memory.size.compressed[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of memory currently in the compression cache for this VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31570 |3 | |10174 |VMware: Ballooned memory |vmware.vm.memory.size.ballooned[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of guest physical memory that is currently reclaimed through the balloon driver. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31571 |3 | |10174 |VMware: Hypervisor name |vmware.vm.hv.name[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Hypervisor name of the guest VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31572 |3 | |10174 |VMware: Datacenter name |vmware.vm.datacenter.name[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Datacenter name of the guest VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31573 |3 | |10174 |VMware: CPU usage |vmware.vm.cpu.usage[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |Hz | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Current upper-bound on CPU usage. The upper-bound is based on the host the virtual machine is current running on, as well as limits configured on the virtual machine itself or any parent resource pool. Valid while the virtual machine is running. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31574 |3 | |10174 |VMware: CPU ready |vmware.vm.cpu.ready[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Time that the virtual machine was ready, but could not get scheduled to run on the physical CPU during last measurement interval (VMware vCenter/ESXi Server performance counter sampling interval - 20 seconds) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31575 |3 | |10174 |VMware: Uptime |vmware.vm.uptime[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |System uptime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31576 |3 | |10175 |VMware: Cluster name |vmware.hv.cluster.name[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Cluster name of the guest VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31577 |3 | |10175 |VMware: Vendor |vmware.hv.hw.vendor[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The hardware vendor identification. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31578 |3 | |10175 |VMware: Version |vmware.hv.version[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Dot-separated version string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31579 |3 | |10175 |VMware: Uptime |vmware.hv.uptime[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |System uptime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31580 |3 | |10175 |VMware: Overall status |vmware.hv.status[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | | | | |NULL |13 | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The overall alarm status of the host: gray - unknown, green - ok, red - it has a problem, yellow - it might have a problem. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31581 |3 | |10175 |VMware: Health state rollup |vmware.hv.sensor.health.state[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | | | | |NULL |13 | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The host health state rollup sensor value: gray - unknown, green - ok, red - it has a problem, yellow - it might have a problem. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31582 |3 | |10175 |VMware: Number of bytes transmitted |vmware.hv.network.out[{$VMWARE.URL},{HOST.HOST},bps] |{$VMWARE_PERF_INTERVAL} |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |VMware hypervisor network output statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31583 |3 | |10175 |VMware: Number of bytes received |vmware.hv.network.in[{$VMWARE.URL},{HOST.HOST},bps] |{$VMWARE_PERF_INTERVAL} |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |VMware hypervisor network input statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31584 |3 | |10175 |VMware: Used memory |vmware.hv.memory.used[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Physical memory usage on the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31585 |3 | |10175 |VMware: Ballooned memory |vmware.hv.memory.size.ballooned[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of guest physical memory that is currently reclaimed through the balloon driver. Sum of all guest VMs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31586 |3 | |10175 |VMware: Bios UUID |vmware.hv.hw.uuid[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The hardware BIOS identification. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31587 |3 | |10175 |VMware: CPU usage |vmware.hv.cpu.usage[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |Hz | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Aggregated CPU usage across all cores on the host in Hz. This is only available if the host is connected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31588 |3 | |10175 |VMware: Model |vmware.hv.hw.model[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The system model identification. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31589 |3 | |10175 |VMware: Total memory |vmware.hv.hw.memory[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The physical memory size. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31590 |3 | |10175 |VMware: CPU threads |vmware.hv.hw.cpu.threads[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Number of physical CPU threads on the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31591 |3 | |10175 |VMware: CPU cores |vmware.hv.hw.cpu.num[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Number of physical CPU cores on the host. Physical CPU cores are the processors contained by a CPU package. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31592 |3 | |10175 |VMware: CPU model |vmware.hv.hw.cpu.model[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The CPU model. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31593 |3 | |10175 |VMware: CPU frequency |vmware.hv.hw.cpu.freq[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | |Hz | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The speed of the CPU cores. This is an average value if there are multiple speeds. The product of CPU frequency and number of cores is approximately equal to the sum of the MHz for all the individual cores on the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31594 |3 | |10175 |VMware: Full name |vmware.hv.fullname[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The complete product name, including the version information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31595 |3 | |10175 |VMware: Datacenter name |vmware.hv.datacenter.name[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Datacenter name of the hypervisor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31596 |3 | |10175 |VMware: Number of guest VMs |vmware.hv.vm.num[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Number of guest virtual machines. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31597 |3 | |10173 |Discover VMware clusters |vmware.cluster.discovery[{$VMWARE.URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL |Discovery of clusters |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31598 |3 | |10173 |Discover VMware datastores |vmware.datastore.discovery[{$VMWARE.URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31599 |3 | |10173 |Discover VMware hypervisors |vmware.hv.discovery[{$VMWARE.URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL |Discovery of hypervisors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31600 |3 | |10173 |Discover VMware VMs |vmware.vm.discovery[{$VMWARE.URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL |Discovery of guest virtual machines. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31601 |3 | |10174 |Network device discovery |vmware.vm.net.if.discovery[{$VMWARE.URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL |Discovery of all network devices. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31602 |3 | |10174 |Disk device discovery |vmware.vm.vfs.dev.discovery[{$VMWARE.URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL |Discovery of all disk devices. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31603 |3 | |10174 |Mounted filesystem discovery |vmware.vm.vfs.fs.discovery[{$VMWARE.URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL |Discovery of all guest file systems. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31604 |3 | |10175 |Datastore discovery |vmware.hv.datastore.discovery[{$VMWARE.URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31605 |3 | |10173 |VMware: Status of "{#CLUSTER.NAME}" cluster |vmware.cluster.status[{$VMWARE.URL},{#CLUSTER.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |13 | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware cluster status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31606 |3 | |10173 |VMware: Average read latency of the datastore {#DATASTORE} |vmware.datastore.read[{$VMWARE.URL},{#DATASTORE},latency] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |Amount of time for a read operation from the datastore (milliseconds). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31607 |3 | |10173 |VMware: Free space on datastore {#DATASTORE} (percentage) |vmware.datastore.size[{$VMWARE.URL},{#DATASTORE},pfree] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware datastore space in percentage from total. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31608 |3 | |10173 |VMware: Total size of datastore {#DATASTORE} |vmware.datastore.size[{$VMWARE.URL},{#DATASTORE}] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware datastore space in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31609 |3 | |10173 |VMware: Average write latency of the datastore {#DATASTORE} |vmware.datastore.write[{$VMWARE.URL},{#DATASTORE},latency] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |Amount of time for a write operation to the datastore (milliseconds). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31610 |3 | |10174 |VMware: Number of bytes received on interface {#IFDESC} |vmware.vm.net.if.in[{$VMWARE.URL},{HOST.HOST},{#IFNAME},bps] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine network interface input statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31611 |3 | |10174 |VMware: Number of packets received on interface {#IFDESC} |vmware.vm.net.if.in[{$VMWARE.URL},{HOST.HOST},{#IFNAME},pps] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine network interface input statistics (packets per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31612 |3 | |10174 |VMware: Number of bytes transmitted on interface {#IFDESC} |vmware.vm.net.if.out[{$VMWARE.URL},{HOST.HOST},{#IFNAME},bps] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine network interface output statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31613 |3 | |10174 |VMware: Number of packets transmitted on interface {#IFDESC} |vmware.vm.net.if.out[{$VMWARE.URL},{HOST.HOST},{#IFNAME},pps] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine network interface output statistics (packets per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31614 |3 | |10174 |VMware: Average number of bytes read from the disk {#DISKDESC} |vmware.vm.vfs.dev.read[{$VMWARE.URL},{HOST.HOST},{#DISKNAME},bps] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine disk device read statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31615 |3 | |10174 |VMware: Average number of reads from the disk {#DISKDESC} |vmware.vm.vfs.dev.read[{$VMWARE.URL},{HOST.HOST},{#DISKNAME},ops] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine disk device read statistics (operations per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31616 |3 | |10174 |VMware: Average number of bytes written to the disk {#DISKDESC} |vmware.vm.vfs.dev.write[{$VMWARE.URL},{HOST.HOST},{#DISKNAME},bps] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine disk device write statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31617 |3 | |10174 |VMware: Average number of writes to the disk {#DISKDESC} |vmware.vm.vfs.dev.write[{$VMWARE.URL},{HOST.HOST},{#DISKNAME},ops] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine disk device write statistics (operations per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31618 |3 | |10174 |VMware: Free disk space on {#FSNAME} |vmware.vm.vfs.fs.size[{$VMWARE.URL},{HOST.HOST},{#FSNAME},free] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine file system statistics (bytes). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31619 |3 | |10174 |VMware: Free disk space on {#FSNAME} (percentage) |vmware.vm.vfs.fs.size[{$VMWARE.URL},{HOST.HOST},{#FSNAME},pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine file system statistics (percentages). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31620 |3 | |10174 |VMware: Total disk space on {#FSNAME} |vmware.vm.vfs.fs.size[{$VMWARE.URL},{HOST.HOST},{#FSNAME},total] |1h |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine total disk space (bytes). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31621 |3 | |10174 |VMware: Used disk space on {#FSNAME} |vmware.vm.vfs.fs.size[{$VMWARE.URL},{HOST.HOST},{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine used disk space (bytes). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31622 |3 | |10175 |VMware: Average read latency of the datastore {#DATASTORE} |vmware.hv.datastore.read[{$VMWARE.URL},{HOST.HOST},{#DATASTORE},latency] |{$VMWARE_PERF_INTERVAL} |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |Average amount of time for a read operation from the datastore (milliseconds). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31623 |3 | |10175 |VMware: Free space on datastore {#DATASTORE} (percentage) |vmware.hv.datastore.size[{$VMWARE.URL},{HOST.HOST},{#DATASTORE},pfree] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware datastore space in percentage from total. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31624 |3 | |10175 |VMware: Total size of datastore {#DATASTORE} |vmware.hv.datastore.size[{$VMWARE.URL},{HOST.HOST},{#DATASTORE}] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware datastore space in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31625 |3 | |10175 |VMware: Average write latency of the datastore {#DATASTORE} |vmware.hv.datastore.write[{$VMWARE.URL},{HOST.HOST},{#DATASTORE},latency] |{$VMWARE_PERF_INTERVAL} |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |Average amount of time for a write operation to the datastore (milliseconds). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31626 |15 | |10327 |MSSQL: Percent of Adhoc queries running |mssql.percent_of_adhoc_queries |0;m0-59s3 |7d |365d |0 |0 | |% | | |NULL |NULL |last(mssql.sql_compilations_sec.rate) * 100 /&bsn;(last(mssql.batch_requests_sec.rate) + (last(mssql.batch_requests_sec.rate)=0)) | |0 | | | | |0 |NULL |The ratio of SQL compilations per second to Batch requests per second in percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31627 |15 | |10327 |MSSQL: Full scans to Index searches ratio |mssql.scan_to_search |0;m0-59s3 |7d |365d |0 |0 | | | | |NULL |NULL |last(mssql.full_scans_sec.rate) / (last(mssql.index_searches_sec.rate) + (last(mssql.index_searches_sec.rate)=0)) | |0 | | | | |0 |NULL |The ratio of Full scans per second to Index searches per second. The threshold recommendation is strictly for OLTP workloads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31628 |15 | |10327 |MSSQL: Percent of Recompiled Transact-SQL Objects |mssql.percent_recompilations_to_compilations |0;m0-59s3 |7d |365d |0 |0 | |% | | |NULL |NULL |last(mssql.sql_recompilations_sec.rate) * 100 /&bsn;(last(mssql.sql_compilations_sec.rate) + (last(mssql.sql_compilations_sec.rate)=0)) | |0 | | | | |0 |NULL |The ratio of SQL re-compilations per second to SQL compilations per second in percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31629 |0 | |10333 |Oracle: Ping |oracle.ping["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |30s |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Test the connection to Oracle Database state |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31630 |0 | |10333 |Oracle: Datafiles count |oracle.datafiles.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Current number of datafile. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31631 |0 | |10333 |Oracle: Get FRA stats |oracle.fra.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get FRA statistics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31632 |0 | |10333 |Oracle: Number of processes |oracle.proc.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31633 |0 | |10333 |Oracle: Get SGA stats |oracle.sga.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get SGA statistics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31634 |0 | |10333 |Oracle: Get PDB info |oracle.pdb.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get info about PDB databases on instansce. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31635 |0 | |10333 |Oracle: Get ASM stats |oracle.diskgroups.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get ASM disk groups stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31636 |0 | |10333 |Oracle: Get system metrics |oracle.sys.metrics["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |0;m0-59 |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The item gets system metric values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31637 |0 | |10333 |Oracle: Get instance state |oracle.instance.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The item gets state of the current instance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31638 |0 | |10333 |Oracle: Get system parameters |oracle.sys.params["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get a set of system parameter values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31639 |0 | |10333 |Oracle: Get PGA stats |oracle.pga.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get PGA statistics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31640 |0 | |10333 |Oracle: Redo logs available to switch |oracle.redolog.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of available for log switching inactive/unused REDO logs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31641 |0 | |10333 |Oracle: User's expire password |oracle.user.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |7d |365d |0 |0 | |days | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of days before zabbix account password expired. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31642 |0 | |10333 |Oracle: Get archive log info |oracle.archive.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |5m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31643 |0 | |10333 |Oracle: Get sessions stats |oracle.sessions.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}","{$ORACLE.SESSION.LOCK.MAX.TIME}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get sessions statistics. {$ORACLE.SESSION.LOCK.MAX.TIME} -- maximum seconds in the current wait condition for counting long time locked sessions. Default: 600 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31644 |0 | |10333 |Oracle: Get CDB and No-CDB info |oracle.cdb.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get info about CDB and No-CDB databases on instansce. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31645 |0 | |10333 |Oracle: Get tablespaces stats |oracle.ts.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get tablespaces stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31706 |0 | |10333 |Archive log discovery |oracle.archive.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Log archive destinations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31707 |0 | |10333 |Database discovery |oracle.db.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning databases in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31708 |0 | |10333 |ASM disk groups discovery |oracle.diskgroups.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ASM disk groups |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31709 |0 | |10333 |PDB discovery |oracle.pdb.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning PDB in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31710 |0 | |10333 |Tablespace discovery |oracle.ts.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning tablespaces in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31727 |11 | |10329 |Oracle: Get system metrics (2) |db.odbc.get[get_system_metrics_2,"{$ORACLE.DSN}"] |0;m0-59 |0 |0 |0 |4 | | | | |NULL |NULL |SELECT 'SGA::' &pipe;&pipe; INITCAP(pool) AS METRIC , SUM(bytes) AS VALUE FROM V$SGASTAT&bsn;WHERE pool IN ( 'java pool', 'large pool' ) GROUP BY pool&bsn;UNION&bsn;SELECT 'SGA::Shared Pool', SUM(bytes) FROM V$SGASTAT&bsn;WHERE pool = 'shared pool' AND name NOT IN ('library cache', 'dictionary cache', 'free memory', 'sql area')&bsn;UNION&bsn;SELECT 'SGA::' &pipe;&pipe; INITCAP(name), bytes FROM V$SGASTAT&bsn;WHERE pool IS NULL AND name IN ('log_buffer', 'fixed_sga')&bsn;UNION&bsn;SELECT 'SGA::Buffer_Cache', SUM(bytes) FROM V$SGASTAT&bsn;WHERE pool IS NULL AND name IN ('buffer_cache', 'db_block_buffers')&bsn;UNION&bsn;SELECT 'REDO::Available', count(*) from v$log t where t.status in ('INACTIVE', 'UNUSED')&bsn;UNION&bsn;SELECT 'USER::Expire password', ROUND(DECODE(SIGN(NVL(u.expiry_date, SYSDATE + 999) - SYSDATE),-1, 0, NVL(u.expiry_date, SYSDATE + 999) - SYSDATE)) exp_passwd_days_before&bsn;FROM dba_users u WHERE username = UPPER('{$ORACLE.USER}')&bsn;UNION&bsn; SELECT 'FRA::Space Limit', space_limit FROM V$RECOVERY_FILE_DEST&bsn;UNION&bsn; SELECT 'FRA::Space Used', space_used FROM V$RECOVERY_FILE_DEST&bsn;UNION&bsn; SELECT 'FRA::Space Reclaimable', space_reclaimable FROM V$RECOVERY_FILE_DEST&bsn;UNION&bsn; SELECT 'FRA::Number Of Files', number_of_files FROM V$RECOVERY_FILE_DEST&bsn;UNION&bsn; SELECT 'FRA::Usable Pct', DECODE(space_limit, 0, 0,(100-(100 *(space_used-space_reclaimable)/ space_limit))) AS VALUE FROM V$RECOVERY_FILE_DEST&bsn;UNION&bsn; SELECT 'FRA::Restore Point', COUNT(*) FROM V$RESTORE_POINT;| |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL |The item gets system metric values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31728 |11 | |10329 |Oracle: Get system metrics (1) |db.odbc.get[get_system_metrics_1,"{$ORACLE.DSN}"] |0;m0-59 |0 |0 |0 |4 | | | | |NULL |NULL |SELECT 'SYS::' &pipe;&pipe; METRIC_NAME AS METRIC, ROUND(VALUE,3) AS VALUE&bsn; FROM V$SYSMETRIC WHERE GROUP_ID = 2&bsn;UNION&bsn; SELECT 'SYSPARAM::' &pipe;&pipe; INITCAP(NAME), to_number(VALUE)&bsn; FROM V$SYSTEM_PARAMETER WHERE NAME IN ('sessions', 'processes', 'db_files')&bsn;UNION&bsn; SELECT 'SESSION::Long time locked' ,count(*) FROM V$SESSION s WHERE s.BLOCKING_SESSION IS NOT NULL AND s.BLOCKING_SESSION_STATUS='VALID' AND s.SECONDS_IN_WAIT > {$ORACLE.SESSION.LOCK.MAX.TIME}&bsn;UNION&bsn;SELECT 'SESSION::Lock rate' ,(cnt_block / cnt_all)* 100 pct&bsn;FROM ( SELECT COUNT(*) cnt_block FROM v$session WHERE blocking_session IS NOT NULL), ( SELECT COUNT(*) cnt_all FROM v$session)&bsn;UNION&bsn; SELECT 'SESSION::Total', COUNT(*) FROM V$SESSION&bsn;UNION&bsn;SELECT 'SESSION::' &pipe;&pipe; INITCAP(STATUS)&pipe;&pipe; ' ' &pipe;&pipe; INITCAP(TYPE), COUNT(*) FROM V$SESSION GROUP BY STATUS, TYPE&bsn;UNION&bsn;SELECT 'SESSION::Concurrency rate', NVL(ROUND(SUM(duty_act.cnt*100 / num_cores.val)), 0)&bsn;FROM&bsn;( SELECT DECODE(session_state, 'ON CPU', 'CPU', wait_class) wait_class, ROUND(COUNT(*)/(60 * 15), 1) cnt&bsn;FROM v$active_session_history sh&bsn;WHERE sh.sample_time >= SYSDATE - 15 / 1440 AND DECODE(session_state, 'ON CPU', 'CPU', wait_class) IN('Concurrency')&bsn;GROUP BY DECODE(session_state, 'ON CPU', 'CPU', wait_class)) duty_act,&bsn;( SELECT SUM(value) val FROM v$osstat WHERE stat_name = 'NUM_CPU_CORES') num_cores&bsn;UNION&bsn; SELECT 'PGA::' &pipe;&pipe; INITCAP(NAME), VALUE FROM V$PGASTAT&bsn; UNION&bsn;SELECT 'PROC::Procnum', COUNT(*) FROM v$process&bsn;UNION&bsn;SELECT 'DATAFILE::Count', COUNT(*) FROM v$datafile;| |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL |The item gets system metric values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31787 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10] |10233 |Temperature sensor discovery |mtxrHlTemperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |MIKROTIK-MIB::mtxrHlTemperature&eol;Since temperature sensor is not available on all Mikrotik hardware,&eol;this is done to avoid unsupported items. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31788 |20 |discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7] |10233 |AP channel discovery |mtxrWlAp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |MIKROTIK-MIB::mtxrWlAp |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31789 |20 |discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10233 |CAPsMAN AP channel discovery |mtxrWlCMChannel.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |MIKROTIK-MIB::mtxrWlCMChannel |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31790 |20 |1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX} |10233 |Device: Temperature |sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrHlTemperature Device temperature in Celsius (degrees C).&eol;Might be missing in entry models (RB750, RB450G..).&eol;&eol;Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31791 |20 |1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP authenticated clients |ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlApAuthClientCount Number of authentication clients. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31792 |20 |1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP band |ssid.band[mtxrWlApBand.{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlApBand |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31793 |20 |1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): SSID |ssid.name[mtxrWlApSsid.{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlApSsid Service Set Identifier. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31794 |20 |1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP noise floor |ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlApNoiseFloor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31795 |20 |1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP registered clients |ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlApClientCount Client established connection to AP, but didn't finish all authetncation procedures for full connection. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31796 |20 |1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP authenticated clients |ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlCMAuthClientCount Number of authentication clients. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31797 |20 |1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP channel |ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlCMChannel |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31798 |20 |1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP registered clients |ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlCMRegClientCount Client established connection to AP, but didn't finish all authetncation procedures for full connection. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31799 |20 |1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP state |ssid.state[mtxrWlCMState.{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlCMState Wireless interface state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31800 |0 | |10334 |Ceph: Get df |ceph.df.details["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31801 |0 | |10334 |Ceph: Get OSD dump |ceph.osd.dump["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31802 |0 | |10334 |Ceph: Get overall cluster status |ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31803 |0 | |10334 |Ceph: Ping |ceph.ping["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31804 |0 | |10334 |Ceph: Get OSD stats |ceph.osd.stats["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31851 |0 | |10334 |OSD |ceph.osd.discovery["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31852 |0 | |10334 |Pool |ceph.pool.discovery["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31868 |0 | |10335 |PHP-FPM: Get status page |web.page.get["{$PHP_FPM.HOST}","{$PHP_FPM.STATUS.PAGE}?json","{$PHP_FPM.PORT}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31869 |0 | |10335 |PHP-FPM: php-fpm_ping |web.page.get["{$PHP_FPM.HOST}","{$PHP_FPM.PING.PAGE}","{$PHP_FPM.PORT}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31870 |0 | |10335 |PHP-FPM: Number of processes running |proc.num["{$PHP_FPM.PROCESS_NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31871 |15 | |10335 |PHP-FPM: Queue usage |php-fpm.listen_queue_usage |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(php-fpm.listen_queue)/(last(php-fpm.listen_queue_len)+last(php-fpm.listen_queue_len)=0)*100 | |0 | | | | |0 |NULL |Queue utilization |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31872 |0 | |10335 |PHP-FPM: Memory usage (rss) |proc.mem["{$PHP_FPM.PROCESS_NAME}",,,,rss] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Resident set size memory used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31873 |0 | |10335 |PHP-FPM: Memory usage, % |proc.mem["{$PHP_FPM.PROCESS_NAME}",,,,pmem] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory used percentage relative to total memory available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31874 |0 | |10335 |PHP-FPM: CPU utilization |proc.cpu.util["{$PHP_FPM.PROCESS_NAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Process CPU utilization percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31891 |15 | |10336 |PHP-FPM: Queue usage |php-fpm.listen_queue_usage |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(php-fpm.listen_queue)/(last(php-fpm.listen_queue_len)+last(php-fpm.listen_queue_len)=0)*100 | |0 | | | | |0 |NULL |Queue utilization |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31892 |19 | |10336 |PHP-FPM: Get status page |php-fpm.get_status |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$PHP_FPM.SCHEME}://{$PHP_FPM.HOST}:{$PHP_FPM.PORT}/{$PHP_FPM.STATUS.PAGE}?json | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31893 |19 | |10336 |PHP-FPM: Get ping page |php-fpm.get_ping |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$PHP_FPM.SCHEME}://{$PHP_FPM.HOST}:{$PHP_FPM.PORT}/{$PHP_FPM.PING.PAGE} | | |200 |1 |0 | |2 |0 |0 |0 |0 |0 |0 |
+ROW |31910 |3 | |10337 |Squid: Service ping |net.tcp.service[tcp,,{$SQUID.HTTP.PORT}] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31911 |20 |1.3.6.1.4.1.3495.1.3.1.7.0 |10337 |Squid: Objects count |squid[cacheNumObjCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of objects stored by the cache |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31912 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.6.5 |10337 |Squid: ICP query service time per 5 minutes |squid[cacheIcpQuerySvcTime.5] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |ICP query service time per 5 minutes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31913 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.6.60 |10337 |Squid: ICP query service time per hour |squid[cacheIcpQuerySvcTime.60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |ICP query service time per hour |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31914 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.7.5 |10337 |Squid: ICP reply service time per 5 minutes |squid[cacheIcpReplySvcTime.5] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |ICP reply service time per 5 minutes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31915 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.7.60 |10337 |Squid: ICP reply service time per hour |squid[cacheIcpReplySvcTime.60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |ICP reply service time per hour |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31916 |20 |1.3.6.1.4.1.3495.1.4.1.3.0 |10337 |Squid: IP cache hits per second |squid[cacheIpHits] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of IP Cache hits |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31917 |20 |1.3.6.1.4.1.3495.1.4.1.6.0 |10337 |Squid: IP cache misses per second |squid[cacheIpMisses] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of IP Cache misses |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31918 |20 |1.3.6.1.4.1.3495.1.4.1.2.0 |10337 |Squid: IP cache requests per second |squid[cacheIpRequests] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of IP Cache requests |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31919 |20 |1.3.6.1.4.1.3495.1.3.1.6.0 |10337 |Squid: Memory maximum resident size |squid[cacheMaxResSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum Resident Size |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31920 |20 |1.3.6.1.4.1.3495.1.2.5.1.0 |10337 |Squid: Memory maximum cache size |squid[cacheMemMaxSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The value of the cache_mem parameter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31921 |20 |1.3.6.1.4.1.3495.1.3.1.3.0 |10337 |Squid: Memory cache usage |squid[cacheMemUsage] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total accounted memory |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31922 |20 |1.3.6.1.4.1.3495.1.3.2.1.1.0 |10337 |Squid: HTTP requests received per second |squid[cacheProtoClientHttpRequests] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of HTTP requests received |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31923 |20 |1.3.6.1.4.1.3495.1.3.2.1.7.0 |10337 |Squid: ICP messages received per second |squid[cacheIcpPktsRecv] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of ICP messages received |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31924 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.10.1 |10337 |Squid: Byte hit ratio per 1 minute |squid[cacheRequestByteRatio.1] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Byte Hit Ratios |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31925 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.10.5 |10337 |Squid: Byte hit ratio per 5 minutes |squid[cacheRequestByteRatio.5] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Byte Hit Ratios |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31926 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.10.60 |10337 |Squid: Byte hit ratio per 1 hour |squid[cacheRequestByteRatio.60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Byte Hit Ratios |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31927 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.9.1 |10337 |Squid: Request hit ratio per 1 minute |squid[cacheRequestHitRatio.1] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Byte Hit Ratios |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31928 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.9.5 |10337 |Squid: Request hit ratio per 5 minutes |squid[cacheRequestHitRatio.5] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Byte Hit Ratios |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31929 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.9.60 |10337 |Squid: Request hit ratio per 1 hour |squid[cacheRequestHitRatio.60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Byte Hit Ratios |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31930 |20 |1.3.6.1.4.1.3495.1.2.5.3.0 |10337 |Squid: Cache swap high water mark |squid[cacheSwapHighWM] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache Swap High Water Mark |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31931 |20 |1.3.6.1.4.1.3495.1.2.5.4.0 |10337 |Squid: Cache swap low water mark |squid[cacheSwapLowWM] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache Swap Low Water Mark |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31932 |20 |1.3.6.1.4.1.3495.1.2.5.2.0 |10337 |Squid: Cache swap directory size |squid[cacheSwapMaxSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total of the cache_dir space allocated |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31933 |20 |1.3.6.1.4.1.3495.1.3.1.1.0 |10337 |Squid: Sys page faults per second |squid[cacheSysPageFaults] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Page faults with physical I/O |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31934 |20 |1.3.6.1.4.1.3495.1.1.3.0 |10337 |Squid: Uptime |squid[cacheUptime] |5m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The Uptime of the cache in timeticks (in hundredths of a second) with preprocessing |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31935 |20 |1.3.6.1.4.1.3495.1.3.2.1.6.0 |10337 |Squid: ICP messages sent per second |squid[cacheIcpPktsSent] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of ICP messages sent |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31936 |20 |1.3.6.1.4.1.3495.1.3.2.1.8.0 |10337 |Squid: ICP traffic transmitted per second |squid[cacheIcpKbSent] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of ICP traffic transmitted |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31937 |20 |1.3.6.1.4.1.3495.1.3.1.5.0 |10337 |Squid: CPU usage |squid[cacheCpuUsage] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The percentage use of the CPU |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31938 |20 |1.3.6.1.4.1.3495.1.4.2.3.0 |10337 |Squid: FQDN cache hits per second |squid[cacheFqdnHits] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of FQDN Cache hits |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31939 |20 |1.3.6.1.4.1.3495.1.3.1.12.0 |10337 |Squid: File descriptor count - current used |squid[cacheCurrentFileDescrCnt] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of file descriptors in use |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31940 |20 |1.3.6.1.4.1.3495.1.3.1.13.0 |10337 |Squid: File descriptor count - current maximum |squid[cacheCurrentFileDescrMax] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Highest number of file descriptors in use |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31941 |20 |1.3.6.1.4.1.3495.1.3.1.8.0 |10337 |Squid: Objects LRU expiration age |squid[cacheCurrentLRUExpiration] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Storage LRU Expiration Age |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31942 |20 |1.3.6.1.4.1.3495.1.3.1.11.0 |10337 |Squid: File descriptor count - current reserved |squid[cacheCurrentResFileDescrCnt] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Reserved number of file descriptors |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31943 |20 |1.3.6.1.4.1.3495.1.3.2.1.14.0 |10337 |Squid: Cache swap current size |squid[cacheCurrentSwapSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Storage Swap Size |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31944 |20 |1.3.6.1.4.1.3495.1.3.1.9.0 |10337 |Squid: Objects unlinkd requests |squid[cacheCurrentUnlinkRequests] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Requests given to unlinkd |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31945 |20 |1.3.6.1.4.1.3495.1.3.1.10.0 |10337 |Squid: File descriptor count - current available |squid[cacheCurrentUnusedFDescrCnt] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Available number of file descriptors |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31946 |20 |1.3.6.1.4.1.3495.1.4.3.2.0 |10337 |Squid: DNS server replies per second |squid[cacheDnsReplies] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of external dns server replies |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31947 |20 |1.3.6.1.4.1.3495.1.4.3.1.0 |10337 |Squid: DNS server requests per second |squid[cacheDnsRequests] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of external dns server requests |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31948 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.8.5 |10337 |Squid: DNS service time per 5 minutes |squid[cacheDnsSvcTime.5] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |DNS service time per 5 minutes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31949 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.8.60 |10337 |Squid: DNS service time per hour |squid[cacheDnsSvcTime.60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |DNS service time per hour |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31950 |20 |1.3.6.1.4.1.3495.1.4.2.6.0 |10337 |Squid: FQDN cache misses per second |squid[cacheFqdnMisses] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of FQDN Cache misses |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31951 |20 |1.3.6.1.4.1.3495.1.3.2.1.9.0 |10337 |Squid: ICP traffic received per second |squid[cacheIcpKbRecv] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of ICP traffic received |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31952 |20 |1.3.6.1.4.1.3495.1.4.2.2.0 |10337 |Squid: FQDN cache requests per second |squid[cacheFqdnRequests] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of FQDN Cache requests |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31953 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.2.5 |10337 |Squid: HTTP all service time per 5 minutes |squid[cacheHttpAllSvcTime.5] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |HTTP all service time per 5 minutes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31954 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.2.60 |10337 |Squid: HTTP all service time per hour |squid[cacheHttpAllSvcTime.60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |HTTP all service time per hour |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31955 |20 |1.3.6.1.4.1.3495.1.3.2.1.3.0 |10337 |Squid: HTTP Errors sent per second |squid[cacheHttpErrors] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of HTTP Errors sent to clients |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31956 |20 |1.3.6.1.4.1.3495.1.3.2.1.2.0 |10337 |Squid: HTTP Hits sent from cache per second |squid[cacheHttpHits] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of HTTP Hits sent to clients from cache |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31957 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.5.5 |10337 |Squid: HTTP miss service time per 5 minutes |squid[cacheHttpHitSvcTime.5] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |HTTP hit service time per 5 minutes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31958 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.5.60 |10337 |Squid: HTTP hit service time per hour |squid[cacheHttpHitSvcTime.60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |HTTP hit service time per hour |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31959 |20 |1.3.6.1.4.1.3495.1.3.2.1.4.0 |10337 |Squid: HTTP traffic received per second |squid[cacheHttpInKb] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of HTTP traffic received from clients |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31960 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.3.5 |10337 |Squid: HTTP miss service time per 5 minutes |squid[cacheHttpMissSvcTime.5] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |HTTP miss service time per 5 minutes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31961 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.3.60 |10337 |Squid: HTTP miss service time per hour |squid[cacheHttpMissSvcTime.60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |HTTP miss service time per hour |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31962 |20 |1.3.6.1.4.1.3495.1.3.2.1.5.0 |10337 |Squid: HTTP traffic sent per second |squid[cacheHttpOutKb] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of HTTP traffic sent to clients |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31963 |20 |1.3.6.1.4.1.3495.1.2.3.0 |10337 |Squid: Version |squid[cacheVersionId] |1m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache Software Version |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31964 |20 |discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10233 |LTE modem discovery |mtxrLTEModem.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |MIKROTIK-MIB::mtxrLTEModemInterfaceIndex |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31965 |20 |1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP |lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dbm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrLTEModemSignalRSRP Reference Signal Received Power. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31966 |20 |1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ |lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |db | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrLTEModemSignalRSRQ Reference Signal Received Quality. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31967 |20 |1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI |lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dbm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrLTEModemSignalRSSI Received Signal Strength Indicator. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31968 |20 |1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): LTE modem SINR |lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |db | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31969 |3 | |10338 |Asterisk: Service status |net.tcp.service["tcp","{HOST.CONN}","{$AMI.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Asterisk Manager API port avalability. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31970 |3 | |10338 |Asterisk: Service response time |net.tcp.service.perf["tcp","{HOST.CONN}","{$AMI.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Asterisk Manager API performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31971 |19 | |10338 |Asterisk: Get stats |asterisk.get_stats |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Asterisk system information in JSON format. |0 |30d |0 | |NULL |3s |{$AMI.URL} |[{"action":"login"},{"username":"{$AMI.USERNAME}"},{"secret":"{$AMI.SECRET}"}] | |200 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
+ROW |32012 |19 | |10339 |Get DataNodes states |hadoop.datanodes.get |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$HADOOP.NAMENODE.HOST}:{$HADOOP.NAMENODE.PORT}/jmx?qry=Hadoop:service=NameNode,name=NameNodeInfo | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32013 |19 | |10339 |Get NodeManagers states |hadoop.nodemanagers.get |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$HADOOP.RESOURCEMANAGER.HOST}:{$HADOOP.RESOURCEMANAGER.PORT}/jmx?qry=Hadoop:service=ResourceManager,name=RMNMInfo | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32014 |3 | |10339 |NameNode: Service status |net.tcp.service["tcp","{$HADOOP.NAMENODE.HOST}","{$HADOOP.NAMENODE.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Hadoop NameNode API port availability. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32015 |3 | |10339 |ResourceManager: Service response time |net.tcp.service.perf["tcp","{$HADOOP.RESOURCEMANAGER.HOST}","{$HADOOP.RESOURCEMANAGER.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Hadoop ResourceManager API performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32016 |3 | |10339 |NameNode: Service response time |net.tcp.service.perf["tcp","{$HADOOP.NAMENODE.HOST}","{$HADOOP.NAMENODE.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Hadoop NameNode API performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32017 |19 | |10339 |Get ResourceManager stats |hadoop.resourcemanager.get |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$HADOOP.RESOURCEMANAGER.HOST}:{$HADOOP.RESOURCEMANAGER.PORT}/jmx | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32018 |3 | |10339 |ResourceManager: Service status |net.tcp.service["tcp","{$HADOOP.RESOURCEMANAGER.HOST}","{$HADOOP.RESOURCEMANAGER.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Hadoop ResourceManager API port availability. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32019 |19 | |10339 |Get NameNode stats |hadoop.namenode.get |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$HADOOP.NAMENODE.HOST}:{$HADOOP.NAMENODE.PORT}/jmx | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32046 |19 | |10339 |Data node discovery |hadoop.datanode.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s |{$HADOOP.NAMENODE.HOST}:{$HADOOP.NAMENODE.PORT}/jmx?qry=Hadoop:service=NameNode,name=NameNodeInfo | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32047 |19 | |10339 |Node manager discovery |hadoop.nodemanager.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s |{$HADOOP.RESOURCEMANAGER.HOST}:{$HADOOP.RESOURCEMANAGER.PORT}/jmx?qry=Hadoop:service=ResourceManager,name=RMNMInfo | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32048 |19 | |10339 |Hadoop DataNode {#HOSTNAME}: Get stats |hadoop.datanode.get[{#HOSTNAME}] |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s |{#INFOADDR}/jmx | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32049 |19 | |10339 |Hadoop NodeManager {#HOSTNAME}: Get stats |hadoop.nodemanager.get[{#HOSTNAME}] |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s |{#NODEHTTPADDRESS}/jmx | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32071 |16 | |10340 |Kafka: Leader election per second |jmx["kafka.controller:type=ControllerStats,name=LeaderElectionRateAndTimeMs","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of leader elections per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32072 |16 | |10340 |Kafka: Request handler average idle percent |jmx["kafka.server:type=KafkaRequestHandlerPool,name=RequestHandlerAvgIdlePercent","OneMinuteRate"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Indicates the percentage of time that the request handler (IO) threads are not in use. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32073 |16 | |10340 |Kafka: Fetch-Consumer request total time, mean |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=UpdateMetadata","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time for a request to update metadata. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32074 |16 | |10340 |Kafka: Network processor average idle percent |jmx["kafka.network:type=SocketServer,name=NetworkProcessorAvgIdlePercent","Value"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The average percentage of time that the network processors are idle. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32075 |16 | |10340 |Kafka: Uptime |jmx["kafka.server:type=app-info","start-time-ms"] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Service uptime in seconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32076 |16 | |10340 |Kafka: Version |jmx["kafka.server:type=app-info","version"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Current version of brocker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32077 |16 | |10340 |Kafka: Bytes in per second |jmx["kafka.server:type=BrokerTopicMetrics,name=BytesInPerSec","Count"] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The rate at which data sent from producers is consumed by the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32078 |16 | |10340 |Kafka: Bytes out per second |jmx["kafka.server:type=BrokerTopicMetrics,name=BytesOutPerSec","Count"] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The rate at which data is fetched and read from the broker by consumers. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32079 |16 | |10340 |Kafka: Bytes rejected per second |jmx["kafka.server:type=BrokerTopicMetrics,name=BytesRejectedPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The rate at which bytes rejected per second by the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32080 |16 | |10340 |Kafka: Client fetch request failed per second |jmx["kafka.server:type=BrokerTopicMetrics,name=FailedFetchRequestsPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of client fetch request failures per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32081 |16 | |10340 |Kafka: Produce requests failed per second |jmx["kafka.server:type=BrokerTopicMetrics,name=FailedProduceRequestsPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of failed produce requests per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32082 |16 | |10340 |Kafka: Messages in per second |jmx["kafka.server:type=BrokerTopicMetrics,name=MessagesInPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The rate at which individual messages are consumed by the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32083 |16 | |10340 |Kafka: Requests in producer purgatory |jmx["kafka.server:type=DelayedOperationPurgatory,name=PurgatorySize,delayedOperation=Fetch","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of requests waiting in producer purgatory. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32084 |16 | |10340 |Kafka: Requests in fetch purgatory |jmx["kafka.server:type=DelayedOperationPurgatory,name=PurgatorySize,delayedOperation=Produce","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of requests waiting in fetch purgatory. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32085 |16 | |10340 |Kafka: Replication maximum lag |jmx["kafka.server:type=ReplicaFetcherManager,name=MaxLag,clientId=Replica","Value"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The maximum lag between the time that messages are received by the leader replica and by the follower replicas. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32086 |16 | |10340 |Kafka: UpdateMetadata request total time, p95 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=UpdateMetadata","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time for update metadata requests for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32087 |16 | |10340 |Kafka: ISR expands per second |jmx["kafka.server:type=ReplicaManager,name=IsrExpandsPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The rate at which the number of ISRs in the broker increases. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32088 |16 | |10340 |Kafka: ISR shrink per second |jmx["kafka.server:type=ReplicaManager,name=IsrShrinksPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Rate of replicas leaving the ISR pool. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32089 |16 | |10340 |Kafka: Leader count |jmx["kafka.server:type=ReplicaManager,name=LeaderCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of replicas for which this broker is the leader. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32090 |16 | |10340 |Kafka: Partition count |jmx["kafka.server:type=ReplicaManager,name=PartitionCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of partitions in the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32091 |16 | |10340 |Kafka: Number of reassigning partitions |jmx["kafka.server:type=ReplicaManager,name=ReassigningPartitions","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of reassigning leader partitions on a broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32092 |16 | |10340 |Kafka: Under minimum ISR partition count |jmx["kafka.server:type=ReplicaManager,name=UnderMinIsrPartitionCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of partitions under the minimum In-Sync Replica (ISR) count. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32093 |16 | |10340 |Kafka: Under replicated partitions |jmx["kafka.server:type=ReplicaManager,name=UnderReplicatedPartitions","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of partitions that have not been fully replicated in the follower replicas (the number of non-reassigning replicas - the number of ISR > 0). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32094 |16 | |10340 |Kafka: Request queue size |jmx["kafka.server:type=Request","queue-size"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The size of the delay queue. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32095 |16 | |10340 |Kafka: ZooKeeper connection status |jmx["kafka.server:type=SessionExpireListener,name=SessionState","Value"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Connection status of broker's ZooKeeper session. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32096 |16 | |10340 |Kafka: ZooKeeper disconnect rate |jmx["kafka.server:type=SessionExpireListener,name=ZooKeeperDisconnectsPerSec","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |ZooKeeper client disconnect per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32097 |16 | |10340 |Kafka: ZooKeeper session expiration rate |jmx["kafka.server:type=SessionExpireListener,name=ZooKeeperExpiresPerSec","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |ZooKeeper client session expiration per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32098 |16 | |10340 |Kafka: ZooKeeper readonly rate |jmx["kafka.server:type=SessionExpireListener,name=ZooKeeperReadOnlyConnectsPerSec","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |ZooKeeper client readonly per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32099 |16 | |10340 |Kafka: ZooKeeper sync rate |jmx["kafka.server:type=SessionExpireListener,name=ZooKeeperSyncConnectsPerSec","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |ZooKeeper client sync per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32100 |16 | |10340 |Kafka: UpdateMetadata request total time, p99 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=UpdateMetadata","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time for update metadata requests for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32101 |16 | |10340 |Kafka: Produce request total time, mean |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=Produce","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time in ms to serve the Produce request. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32102 |16 | |10340 |Kafka: Unclean leader election per second |jmx["kafka.controller:type=ControllerStats,name=UncleanLeaderElectionsPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of “unclean” elections per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32103 |16 | |10340 |Kafka: Produce response send time, p95 |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=Produce","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The time taken, in milliseconds, to send the response for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32104 |16 | |10340 |Kafka: Controller state on broker |jmx["kafka.controller:type=KafkaController,name=ActiveControllerCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |122 | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |One indicates that the broker is the controller for the cluster. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32105 |16 | |10340 |Kafka: Offline partitions count |jmx["kafka.controller:type=KafkaController,name=OfflinePartitionsCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of partitions that don't have an active leader. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32106 |16 | |10340 |Kafka: Ineligible pending replica deletes |jmx["kafka.controller:type=KafkaController,name=ReplicasIneligibleToDeleteCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of ineligible pending replica deletes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32107 |16 | |10340 |Kafka: Pending replica deletes |jmx["kafka.controller:type=KafkaController,name=ReplicasToDeleteCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of pending replica deletes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32108 |16 | |10340 |Kafka: Ineligible pending topic deletes |jmx["kafka.controller:type=KafkaController,name=TopicsIneligibleToDeleteCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of ineligible pending topic deletes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32109 |16 | |10340 |Kafka: Pending topic deletes |jmx["kafka.controller:type=KafkaController,name=TopicsToDeleteCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of pending topic deletes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32110 |16 | |10340 |Kafka: Offline log directory count |jmx["kafka.log:type=LogManager,name=OfflineLogDirectoryCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of offline log directories (for example, after a hardware failure). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32111 |16 | |10340 |Kafka: Fetch-Consumer response send time, p95 |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchConsumer","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The time taken, in milliseconds, to send the response for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32112 |16 | |10340 |Kafka: Fetch-Consumer response send time, p99 |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchConsumer","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The time taken, in milliseconds, to send the response for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32113 |16 | |10340 |Kafka: Fetch-Consumer response send time, mean |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchConsumer","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time taken, in milliseconds, to send the response. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32114 |16 | |10340 |Kafka: Fetch-Follower response send time, p95 |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchFollower","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The time taken, in milliseconds, to send the response for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32115 |16 | |10340 |Kafka: Fetch-Follower response send time, p99 |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchFollower","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The time taken, in milliseconds, to send the response for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32116 |16 | |10340 |Kafka: Fetch-Follower response send time, mean |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchFollower","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time taken, in milliseconds, to send the response. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32117 |16 | |10340 |Kafka: Produce response send time, p99 |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=Produce","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The time taken, in milliseconds, to send the response for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32118 |16 | |10340 |Kafka: Produce request total time, p99 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=Produce","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time in ms to serve the Produce requests for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32119 |16 | |10340 |Kafka: Produce response send time, mean |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=Produce","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time taken, in milliseconds, to send the response. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32120 |16 | |10340 |Kafka: Temporary memory size in bytes (Fetch), max |jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Fetch","Max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The maximum of temporary memory used for converting message formats and decompressing messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32121 |16 | |10340 |Kafka: Temporary memory size in bytes (Fetch), min |jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Fetch","Mean"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The minimum of temporary memory used for converting message formats and decompressing messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32122 |16 | |10340 |Kafka: Temporary memory size in bytes (Produce), max |jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Produce","Max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The maximum of temporary memory used for converting message formats and decompressing messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32123 |16 | |10340 |Kafka: Temporary memory size in bytes (Produce), avg |jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Produce","Mean"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The amount of temporary memory used for converting message formats and decompressing messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32124 |16 | |10340 |Kafka: Temporary memory size in bytes (Produce), min |jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Produce","Min"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The minimum of temporary memory used for converting message formats and decompressing messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32125 |16 | |10340 |Kafka: Fetch-Consumer request total time, p95 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchConsumer","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time in ms to serve the Fetch-Consumer request for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32126 |16 | |10340 |Kafka: Fetch-Consumer request total time, p99 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchConsumer","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time in ms to serve the specified Fetch-Consumer for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32127 |16 | |10340 |Kafka: Fetch-Consumer request total time, mean |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchConsumer","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time in ms to serve the Fetch-Consumer request. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32128 |16 | |10340 |Kafka: Fetch-Follower request total time, p95 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchFollower","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time in ms to serve the Fetch-Follower request for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32129 |16 | |10340 |Kafka: Fetch-Follower request total time, p99 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchFollower","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time in ms to serve the Fetch-Follower request for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32130 |16 | |10340 |Kafka: Fetch-Follower request total time, mean |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchFollower","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time in ms to serve the Fetch-Follower request. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32131 |16 | |10340 |Kafka: Produce request total time, p95 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=Produce","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time in ms to serve the Produce requests for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32132 |16 | |10340 |Kafka: ZooKeeper client request latency |jmx["kafka.server:type=ZooKeeperClientMetrics,name=ZooKeeperRequestLatencyMs","Count"] |1m |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Latency in millseconds for ZooKeeper requests from broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32133 |16 | |10340 |Topic Metrics (read) |jmx.discovery[beans,"kafka.server:type=BrokerTopicMetrics,name=BytesOutPerSec,topic=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32134 |16 | |10340 |Topic Metrics (errors) |jmx.discovery[beans,"kafka.server:type=BrokerTopicMetrics,name=BytesRejectedPerSec,topic=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32135 |16 | |10340 |Topic Metrics (write) |jmx.discovery[beans,"kafka.server:type=BrokerTopicMetrics,name=MessagesInPerSec,topic=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32136 |16 | |10340 |Kafka {#JMXTOPIC}: Bytes out per second |jmx["kafka.server:type=BrokerTopicMetrics,name=BytesOutPerSec,topic={#JMXTOPIC}","Count"] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |2 |NULL |The rate at which data is fetched and read from the broker by consumers (by topic). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32137 |16 | |10340 |Kafka {#JMXTOPIC}: Bytes rejected per second |jmx["kafka.server:type=BrokerTopicMetrics,name=BytesRejectedPerSec,topic={#JMXTOPIC}","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |2 |NULL |Rejected bytes rate by topic. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32138 |16 | |10340 |Kafka {#JMXTOPIC}: Bytes in per second |jmx["kafka.server:type=BrokerTopicMetrics,name=BytesInPerSec,topic={#JMXTOPIC}","Count"] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |2 |NULL |The rate at which data sent from producers is consumed by topic. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32139 |16 | |10340 |Kafka {#JMXTOPIC}: Messages in per second |jmx["kafka.server:type=BrokerTopicMetrics,name=MessagesInPerSec,topic={#JMXTOPIC}","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |2 |NULL |The rate at which individual messages are consumed by topic. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32140 |16 | |10260 |Protocol handlers discovery |jmx.discovery[attributes,"Catalina:type=ProtocolHandler,port=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |1 |NULL |Discovery for ProtocolHandler |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32141 |16 | |10260 |Global request processors discovery |jmx.discovery[beans,"Catalina:type=GlobalRequestProcessor,name=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |1 |NULL |Discovery for GlobalRequesProcessor |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32142 |16 | |10260 |Contexts discovery |jmx.discovery[beans,"Catalina:type=Manager,host=*,context=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |1 |NULL |Discovery for contexts |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32143 |16 | |10260 |Thread pools discovery |jmx.discovery[beans,"Catalina:type=ThreadPool,name=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |1 |NULL |Discovery for ThreadPool |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32144 |16 | |10260 |{#JMXVALUE}: Gzip compression status |jmx[{#JMXOBJ},compression] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Gzip compression status on {#JMXNAME}. Enabling gzip compression may save server bandwidth. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32145 |16 | |10260 |{#JMXNAME}: Bytes received per second |jmx[{#JMXOBJ},bytesReceived] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Bytes received rate by processor {#JMXNAME} |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32146 |16 | |10260 |{#JMXNAME}: Bytes sent per second |jmx[{#JMXOBJ},bytesSent] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Bytes sent rate by processor {#JMXNAME} |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32147 |16 | |10260 |{#JMXNAME}: Errors per second |jmx[{#JMXOBJ},errorCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Error rate of request processor {#JMXNAME} |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32148 |16 | |10260 |{#JMXNAME}: Requests processing time |jmx[{#JMXOBJ},processingTime] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |The total time to process all incoming requests of request processor {#JMXNAME} |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32149 |16 | |10260 |{#JMXNAME}: Requests per second |jmx[{#JMXOBJ},requestCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Rate of requests served by request processor {#JMXNAME} |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32150 |16 | |10260 |{#JMXHOST}{#JMXCONTEXT}: Sessions active |jmx[{#JMXOBJ},activeSessions] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Active sessions of the application. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32151 |16 | |10260 |{#JMXHOST}{#JMXCONTEXT}: Sessions active maximum so far |jmx[{#JMXOBJ},maxActive] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Maximum number of active sessions so far. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32152 |16 | |10260 |{#JMXHOST}{#JMXCONTEXT}: Sessions allowed maximum |jmx[{#JMXOBJ},maxActiveSessions] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |The maximum number of active Sessions allowed, or -1 for no limit. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32153 |16 | |10260 |{#JMXHOST}{#JMXCONTEXT}: Sessions rejected per second |jmx[{#JMXOBJ},rejectedSessions] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Rate of sessions we rejected due to maxActive being reached. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32154 |16 | |10260 |{#JMXHOST}{#JMXCONTEXT}: Sessions created per second |jmx[{#JMXOBJ},sessionCounter] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Rate of sessions created by this application per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32155 |16 | |10260 |{#JMXNAME}: Threads count |jmx[{#JMXOBJ},currentThreadCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Amount of threads the thread pool has right now, both busy and free. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32156 |16 | |10260 |{#JMXNAME}: Threads busy |jmx[{#JMXOBJ},currentThreadsBusy] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Number of the requests that are being currently handled. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32157 |16 | |10260 |{#JMXNAME}: Threads limit |jmx[{#JMXOBJ},maxThreads] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Limit of the threads count. When currentThreadsBusy counter reaches the maxThreads limit, no more requests could be handled, and the application chokes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32158 |19 | |10341 |Zookeeper: Get server metrics |zookeeper.get_metrics |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$ZOOKEEPER.SCHEME}://{HOST.CONN}:{$ZOOKEEPER.PORT}/{$ZOOKEEPER.COMMAND_URL}/monitor | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32159 |19 | |10341 |Zookeeper: Get connections stats |zookeeper.get_connections_stats |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get information on client connections to server. Note, depending on the number of client connections this operation may be expensive (i.e. impact server performance). |0 |30d |0 | |NULL |3s |{$ZOOKEEPER.SCHEME}://{HOST.CONN}:{$ZOOKEEPER.PORT}/{$ZOOKEEPER.COMMAND_URL}/connections | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32193 |19 | |10341 |Clients discovery |zookeeper.clients |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Get list of client connections.&eol;Note, depending on the number of client connections this operation may be expensive (i.e. impact server performance). |0 |30d |0 | |NULL |3s |{$ZOOKEEPER.SCHEME}://{HOST.CONN}:{$ZOOKEEPER.PORT}/{$ZOOKEEPER.COMMAND_URL}/connections | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32207 |16 | |10342 |Cluster: Name |jmx["org.apache.cassandra.db:type=StorageService","ClusterName"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32208 |16 | |10342 |Thread pool SecondaryIndexManagement: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=SecondaryIndexManagement,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;SecondaryIndexManagement: Performs updates to secondary indexes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32209 |16 | |10342 |Thread pool HintsDispatcher: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=HintsDispatcher,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;HintsDispatcher: Performs hinted handoff. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32210 |16 | |10342 |Thread pool HintsDispatcher: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=HintsDispatcher,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;HintsDispatcher: Performs hinted handoff. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32211 |16 | |10342 |Thread pool MemtableFlushWriter: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtableFlushWriter,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;MemtableFlushWriter: Writes memtables to disk. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32212 |16 | |10342 |Thread pool MemtableFlushWriter: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtableFlushWriter,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;MemtableFlushWriter: Writes memtables to disk. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32213 |16 | |10342 |Thread pool MemtableFlushWriter: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtableFlushWriter,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;MemtableFlushWriter: Writes memtables to disk. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32214 |16 | |10342 |Thread pool MemtablePostFlush: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtablePostFlush,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;MemtablePostFlush: Cleans up commit log after memtable is written to disk. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32215 |16 | |10342 |Thread pool MemtablePostFlush: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtablePostFlush,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;MemtablePostFlush: Cleans up commit log after memtable is written to disk. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32216 |16 | |10342 |Thread pool MemtablePostFlush: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtablePostFlush,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;MemtablePostFlush: Cleans up commit log after memtable is written to disk. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32217 |16 | |10342 |Thread pool MigrationStage: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MigrationStage,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;MigrationStage: Runs schema migrations. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32218 |16 | |10342 |Thread pool MigrationStage: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MigrationStage,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;MigrationStage: Runs schema migrations. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32219 |16 | |10342 |Thread pool MigrationStage: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MigrationStage,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;MigrationStage: Runs schema migrations. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32220 |16 | |10342 |Thread pool MiscStage: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MiscStage,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;MiscStage: Misceleneous tasks run here. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32221 |16 | |10342 |Thread pool MiscStage: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MiscStage,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;MiscStage: Misceleneous tasks run here. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32222 |16 | |10342 |Thread pool MiscStage: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MiscStage,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;MiscStage: Misceleneous tasks run here. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32223 |16 | |10342 |Thread pool SecondaryIndexManagement: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=SecondaryIndexManagement,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;SecondaryIndexManagement: Performs updates to secondary indexes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32224 |16 | |10342 |Storage: Hints |jmx["org.apache.cassandra.metrics:type=Storage,name=TotalHints","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of hint messages written to this node since [re]start. Includes one entry for each host to be hinted per hint. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32225 |16 | |10342 |Thread pool SecondaryIndexManagement: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=SecondaryIndexManagement,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;SecondaryIndexManagement: Performs updates to secondary indexes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32226 |16 | |10342 |Thread pool CounterMutationStage: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=CounterMutationStage,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;CounterMutationStage: Responsible for counter writes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32227 |16 | |10342 |Thread pool CounterMutationStage: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=CounterMutationStage,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;CounterMutationStage: Responsible for counter writes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32228 |16 | |10342 |Thread pool CounterMutationStage: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=CounterMutationStage,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;CounterMutationStage: Responsible for counter writes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32229 |16 | |10342 |Thread pool MutationStage: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=MutationStage,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;MutationStage: Responsible for writes (exclude materialized and counter writes). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32230 |16 | |10342 |Thread pool.MutationStage: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=MutationStage,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;MutationStage: Responsible for writes (exclude materialized and counter writes). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32231 |16 | |10342 |Thread pool MutationStage: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=MutationStage,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;MutationStage: Responsible for writes (exclude materialized and counter writes). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32232 |16 | |10342 |Thread pool ReadStage: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ReadStage,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;ReadStage: Local reads run on this thread pool. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32233 |16 | |10342 |Thread pool ReadStage: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ReadStage,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;ReadStage: Local reads run on this thread pool. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32234 |16 | |10342 |Thread pool ReadStage: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ReadStage,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;ReadStage: Local reads run on this thread pool. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32235 |16 | |10342 |Thread pool ViewMutationStage: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ViewMutationStage,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;ViewMutationStage: Responsible for materialized view writes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32236 |16 | |10342 |Thread pool ViewMutationStage: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ViewMutationStage,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;ViewMutationStage: Responsible for materialized view writes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32237 |16 | |10342 |Thread pool ViewMutationStage: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ViewMutationStage,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;ViewMutationStage: Responsible for materialized view writes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32238 |16 | |10342 |Cluster: Nodes down |jmx["org.apache.cassandra.net:type=FailureDetector","DownEndpointCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32239 |16 | |10342 |Thread pool HintsDispatcher: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=HintsDispatcher,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;HintsDispatcher: Performs hinted handoff. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32240 |16 | |10342 |Storage: Used (bytes) |jmx["org.apache.cassandra.metrics:type=Storage,name=Load","Count"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Size, in bytes, of the on disk data size this node manages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32241 |16 | |10342 |Version |jmx["org.apache.cassandra.db:type=StorageService","ReleaseVersion"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32242 |16 | |10342 |KeyCache: requests per second |jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Requests","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Rate of cache requests. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32243 |16 | |10342 |Compaction: Number of completed tasks |jmx["org.apache.cassandra.metrics:name=CompletedTasks,type=Compaction","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of completed compactions since server [re]start. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32244 |16 | |10342 |Commitlog: Pending tasks |jmx["org.apache.cassandra.metrics:name=PendingTasks,type=CommitLog","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of commit log messages written but yet to be fsync’d. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32245 |16 | |10342 |Latency: Read median |jmx["org.apache.cassandra.metrics:name=ReadLatency,type=Table","50thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Latency read from disk in milliseconds - median. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32246 |16 | |10342 |Latency: Read 75 percentile |jmx["org.apache.cassandra.metrics:name=ReadLatency,type=Table","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Latency read from disk in milliseconds - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32247 |16 | |10342 |Latency: Read 95 percentile |jmx["org.apache.cassandra.metrics:name=ReadLatency,type=Table","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Latency read from disk in milliseconds - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32248 |16 | |10342 |Commitlog: Total size |jmx["org.apache.cassandra.metrics:name=TotalCommitLogSize,type=CommitLog","Value"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Current size, in bytes, used by all the commit log segments. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32249 |16 | |10342 |Compaction: Total compactions completed |jmx["org.apache.cassandra.metrics:name=TotalCompactionsCompleted,type=Compaction","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Throughput of completed compactions since server [re]start. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32250 |16 | |10342 |Latency: Write median |jmx["org.apache.cassandra.metrics:name=WriteLatency,type=Table","50thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Latency write to disk in milliseconds - median. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32251 |16 | |10342 |Latency: Write 75 percentile |jmx["org.apache.cassandra.metrics:name=WriteLatency,type=Table","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Latency write to disk in milliseconds - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32252 |16 | |10342 |Latency: Write 95 percentile |jmx["org.apache.cassandra.metrics:name=WriteLatency,type=Table","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Latency write to disk in milliseconds - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32253 |16 | |10342 |KeyCache: Capacity |jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Capacity","Value"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Cache capacity in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32254 |16 | |10342 |KeyCache: Entries |jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Entries","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total number of cache entries. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32255 |16 | |10342 |KeyCache: HitRate |jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=HitRate","Value"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |All time cache hit rate. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32256 |16 | |10342 |KeyCache: Hits per second |jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Hits","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Rate of cache hits. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32257 |16 | |10342 |KeyCache: Size |jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Size","Value"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total size of occupied cache, in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32258 |16 | |10342 |Storage: Errors |jmx["org.apache.cassandra.metrics:type=Storage,name=Exceptions","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of internal exceptions caught. Under normal exceptions this should be zero. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32259 |16 | |10342 |Client connections: Native |jmx["org.apache.cassandra.metrics:type=Client,name=connectedNativeClients","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of clients connected to this nodes native protocol server. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32260 |16 | |10342 |Client connections: Trifts |jmx["org.apache.cassandra.metrics:type=Client,name=connectedThriftClients","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of connected to this nodes thrift clients. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32261 |16 | |10342 |Latency: Client request read median |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Read,name=Latency","50thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total latency serving data to clients in milliseconds - median. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32262 |16 | |10342 |Latency: Client request read 75 percentile |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Read,name=Latency","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total latency serving data to clients in milliseconds - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32263 |16 | |10342 |Latency: Client request read 95 percentile |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Read,name=Latency","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total latency serving data to clients in milliseconds - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32264 |16 | |10342 |Client request: Read per second |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Read,name=Latency","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |The number of client requests per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32265 |16 | |10342 |Latency: Client request write median |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Latency","50thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total latency serving write requests from clients in milliseconds - median. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32266 |16 | |10342 |Latency: Client request write 75 percentile |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Latency","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total latency serving write requests from clients in milliseconds - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32267 |16 | |10342 |Latency: Client request write 95 percentile |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Latency","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total latency serving write requests from clients in milliseconds - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32268 |16 | |10342 |Client request: Write per second |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Latency","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |The number of local write requests per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32269 |16 | |10342 |Client request: Write Timeouts |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Timeouts","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of write requests timeouts encountered. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32270 |16 | |10342 |Compaction: Pending tasks |jmx["org.apache.cassandra.metrics:type=Compaction,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Estimated number of compactions remaining to perform. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32271 |16 | |10342 |Dropped messages: Write (Mutation) |jmx["org.apache.cassandra.metrics:type=DroppedMessage,scope=MUTATION,name=Dropped","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of dropped regular writes messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32272 |16 | |10342 |Dropped messages: Read |jmx["org.apache.cassandra.metrics:type=DroppedMessage,scope=READ,name=Dropped","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of dropped regular reads messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32273 |16 | |10342 |Cluster: Nodes up |jmx["org.apache.cassandra.net:type=FailureDetector","UpEndpointCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32274 |16 | |10342 |Tables |jmx.discovery[beans,"org.apache.cassandra.metrics:type=Table,keyspace=*,scope=*,name=ReadLatency"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |1 |NULL |Info about keyspaces and tables |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32275 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Bloom filter false ratio |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=BloomFilterFalseRatio","Value"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The ratio of Bloom filter false positives to total checks. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32276 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Row cache hits |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=RowCacheHit","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of row cache hits. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32277 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Write latency 95 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WriteLatency","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Latency write to disk in milliseconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32278 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Write latency 75 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WriteLatency","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Latency write to disk in milliseconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32279 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Waiting on free memtable space95 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WaitingOnFreeMemtableSpace","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The time spent waiting for free memtable space either on- or off-heap - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32280 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Waiting on free memtable space 75 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WaitingOnFreeMemtableSpace","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The time spent waiting for free memtable space either on- or off-heap - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32281 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Disk space used |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=TotalDiskSpaceUsed","Count"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Disk space used. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32282 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Tombstone scanned 95 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=TombstoneScannedHistogram","95thPercentile"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Number of tombstones scanned per read - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32283 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Tombstone scanned 75 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=TombstoneScannedHistogram","75thPercentile"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Number of tombstones scanned per read - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32284 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: SS Tables per read 95 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=SSTablesPerReadHistogram","95thPercentile"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of SSTable data files accessed per read - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32285 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: SS Tables per read 75 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=SSTablesPerReadHistogram","75thPercentile"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of SSTable data files accessed per read - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32286 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Snapshots size |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=SnapshotsSize","Value"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The disk space truly used by snapshots. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32287 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Row cache misses |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=RowCacheMiss","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of table row cache misses. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32288 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Out of row cache hits |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=RowCacheHitOutOfRange","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of row cache hits that do not satisfy the query filter and went to disk. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32289 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Read per second |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ReadLatency","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of client requests per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32290 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Bytes flushed |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=BytesFlushed","Count"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The amount of data that was flushed since (re)start. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32291 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Read latency 95 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ReadLatency","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Latency read from disk in milliseconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32292 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Read latency 75 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ReadLatency","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Latency read from disk in milliseconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32293 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Pending flushes |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=PendingFlushes","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of pending flushes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32294 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Pending compactions |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=PendingCompactions","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of pending compactions. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32295 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Mean partition size |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=MeanPartitionSize","Value"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The average size of compacted partition. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32296 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Max sartition size |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=MaxPartitionSize","Value"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The size of the largest compacted partition. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32297 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Live SS Table |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=LiveSSTableCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Number of "live" (in use) SSTables. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32298 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Live disk space used |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=LiveDiskSpaceUsed","Count"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The disk space used by "live" SSTables (only counts in use files). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32299 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: KeyCache hit rate |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=KeyCacheHitRate","Value"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The key cache hit rate. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32300 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Compression ratio |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=CompressionRatio","Value"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The compression ratio for all SSTables. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32301 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Compaction bytes written |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=CompactionBytesWritten","Count"] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The amount of data that was compacted since (re)start. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32302 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Col update time delta 95 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ColUpdateTimeDeltaHistogram","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The column update time delta - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32303 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Col update time delta75 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ColUpdateTimeDeltaHistogram","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The column update time delta - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32304 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Write per second |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WriteLatency","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of local write requests per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32307 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Voltage |sensor.voltage.value[entPhySensorValue.{#SNMPINDEX}] |1m |90d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32308 |20 |1.3.6.1.4.1.33333.5.64.0 |10343 |Array: Sweep Pmax |array.sweep_pmax[arrayMaxPowerSweep.0] |1m |7d |365d |0 |0 | |W | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Array Max. Power (sweep)&eol; Description:Array Max. Power (last sweep)&eol; Scaling Factor:1.0&eol; Units:W&eol; Range:[0.0, 500]&eol; Modbus address:0x003E |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32309 |20 |1.3.6.1.4.1.33333.5.53.0 |10343 |Load: State |load.state[loadState.0] |1m |7d |365d |0 |0 | | | | |NULL |124 | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Load State&eol; Description:Load State&eol; Modbus address:0x002E&eol;&eol; 0: Start&eol;1: Normal&eol;2: LvdWarning&eol;3: Lvd&eol;4: Fault&eol;5: Disconnect&eol;6: NormalOff&eol;7: Override&eol;8: NotUsed |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32310 |20 |1.3.6.1.4.1.33333.5.39.0 |10343 |Temperature: Battery |temp.battery[batteryTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Battery Temperature&eol; Description:Battery Temperature&eol; Scaling Factor:1.0&eol; Units:deg C&eol; Range:[-128, 127]&eol; Modbus address:0x001B |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32311 |20 |1.3.6.1.4.1.33333.5.40.0 |10343 |Temperature: Ambient |temp.ambient[ambientTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Ambient Temperature&eol; Description:Ambient Temperature&eol; Scaling Factor:1.0&eol; Units:deg C&eol; Range:[-128, 127]&eol; Modbus address:0x001C |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32312 |20 |1.3.6.1.4.1.33333.5.48.0 |10343 |Battery: Target Voltage |target.voltage[targetVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Target Voltage&eol; Description:Target Regulation Voltage&eol; Scaling Factor:1.0&eol; Units:V&eol; Range:[0.0, 80.0]&eol; Modbus address:0x0024 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32313 |20 |1.3.6.1.2.1.1.3.0 |10343 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32314 |20 |1.3.6.1.4.1.33333.5.54.0 |10343 |Status: Load Faults |status.load_faults[loadFaults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Description:Array Faults&eol;Modbus address:0x0022 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32315 |20 |1.3.6.1.4.1.33333.5.46.0 |10343 |Status: Array Faults |status.array_faults[arrayFaults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Description:Array Faults&eol;Modbus address:0x0022 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32316 |20 |1.3.6.1.4.1.33333.5.59.0 |10343 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Description:Alarms&eol;Modbus addresses:H=0x0038 L=0x0039 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32317 |20 |1.3.6.1.4.1.33333.5.32.0 |10343 |Load: Voltage |load.voltage[loadVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Load Voltage&eol; Description:Load Voltage&eol; Scaling Factor:1.0&eol; Units:V&eol; Range:[0, 80]&eol; Modbus address:0x0014 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32318 |20 |1.3.6.1.4.1.33333.5.34.0 |10343 |Load: Current |load.current[loadCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Load Current&eol; Description:Load Current&eol; Scaling Factor:1.0&eol; Units:A&eol; Range:[0, 60]&eol; Modbus address:0x0016 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32319 |20 |1.3.6.1.4.1.33333.5.63.0 |10343 |Array: Sweep Vmp |array.sweep_vmp[arrayVmp.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Array Vmp&eol; Description:Array Max. Power Point Voltage&eol; Scaling Factor:1.0&eol; Units:V&eol; Range:[0.0, 5000.0]&eol; Modbus address:0x003D |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32320 |20 |1.3.6.1.4.1.33333.5.56.0 |10343 |Counter: Load Amp-hours |counter.load_amp_hours[ahLoadResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Description:Ah Load (Resettable)&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 4294967294]&eol;Modbus addresses:H=0x0032 L=0x0033 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32321 |20 |1.3.6.1.4.1.33333.5.51.0 |10343 |Counter: Charge KW-hours |counter.charge_kw_hours[kwhChargeResettable.0] |1m |7d |365d |0 |0 | |!kWh | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;kWh Charge (Resettable)&eol;Description:Kilowatt Hours Charge (Resettable)&eol;Scaling Factor:1.0&eol;Units:kWh&eol;Range:[0.0, 65535]&eol;Modbus address:0x002A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32322 |20 |1.3.6.1.4.1.33333.5.49.0 |10343 |Counter: Charge Amp-hours |counter.charge_amp_hours[ahChargeResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Ah Charge (Resettable)&eol; Description:Ah Charge (Resettable)&eol; Scaling Factor:0.1&eol; Units:Ah&eol; Range:[0.0, 4294967294]&eol; Modbus addresses:H=0x0026 L=0x0027 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32323 |20 |1.3.6.1.4.1.33333.5.45.0 |10343 |Battery: Charge State |charge.state[chargeState.0] |1m |7d |365d |0 |0 | | | | |NULL |123 | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Charge State&eol; Description:Control State&eol; Modbus address:0x0021&eol;&eol; 0: Start&eol; 1: NightCheck&eol; 2: Disconnect&eol; 3: Night&eol; 4: Fault&eol; 5: BulkMppt&eol; 6: Absorption&eol; 7: Float&eol; 8: Equalize&eol; 9: Slave&eol; 10: Fixed |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32324 |20 |1.3.6.1.4.1.33333.5.33.0 |10343 |Battery: Charge Current |charge.current[chargeCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Charge Current&eol; Description:Charge Current&eol; Scaling Factor:1.0&eol; Units:A&eol; Range:[0, 40]&eol; Modbus address:0x0010 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32325 |20 |1.3.6.1.4.1.33333.5.30.0 |10343 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryTerminalVoltage.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32326 |20 |1.3.6.1.4.1.33333.5.31.0 |10343 |Array: Voltage |array.voltage[arrayVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Array Voltage&eol; Description:Array Voltage&eol; Scaling Factor:1.0&eol; Units:V&eol; Range:[0, 80]&eol; Modbus address:0x0013 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32327 |20 |1.3.6.1.4.1.33333.5.65.0 |10343 |Array: Sweep Voc |array.sweep_voc[arrayVoc.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Array Voc&eol; Description:Array Open Circuit Voltage&eol; Scaling Factor:1.0&eol; Units:V&eol; Range:[0.0, 80.0]&eol; Modbus address:0x003F |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32328 |20 |1.3.6.1.4.1.33333.5.38.0 |10343 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Heatsink Temperature&eol; Description:Heatsink Temperature&eol; Scaling Factor:1.0&eol; Units:deg C&eol; Range:[-128, 127]&eol; Modbus address:0x001A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32330 |20 |1.3.6.1.4.1.33333.5.30.0 |10343 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryTerminalVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PROSTAR-MPPT&eol;Battery Terminal Voltage&eol;Description:Battery Terminal Voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0012 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32331 |20 |1.3.6.1.4.1.33333.6.31.0 |10344 |Array: Voltage |array.voltage[arrayVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Array Voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[0, 80]&eol;Modbus address:0x0013 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32332 |20 |1.3.6.1.4.1.33333.6.59.0 |10344 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Alarms&eol;Modbus addresses:H=0x0038 L=0x0039 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32333 |20 |1.3.6.1.4.1.33333.6.39.0 |10344 |Temperature: Battery |temp.battery[batteryTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Battery Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-128, 127]&eol;Modbus address:0x001B |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32334 |20 |1.3.6.1.4.1.33333.6.40.0 |10344 |Temperature: Ambient |temp.ambient[ambientTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Ambient Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-128, 127]&eol;Modbus address:0x001C |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32335 |20 |1.3.6.1.4.1.33333.6.48.0 |10344 |Battery: Target Voltage |target.voltage[targetVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Target Regulation Voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0024 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32336 |20 |1.3.6.1.2.1.1.3.0 |10344 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32337 |20 |1.3.6.1.4.1.33333.6.54.0 |10344 |Status: Load Faults |status.load_faults[loadFaults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Load Faults&eol;Modbus address:0x002F |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32338 |20 |1.3.6.1.4.1.33333.6.46.0 |10344 |Status: Array Faults |status.array_faults[arrayFaults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Array Faults&eol;Modbus address:0x0022 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32339 |20 |1.3.6.1.4.1.33333.6.32.0 |10344 |Load: Voltage |load.voltage[loadVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Load Voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[0, 80]&eol;Modbus address:0x0014 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32340 |20 |1.3.6.1.4.1.33333.6.30.0 |10344 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryTerminalVoltage.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32341 |20 |1.3.6.1.4.1.33333.6.53.0 |10344 |Load: State |load.state[loadState.0] |1m |7d |365d |0 |0 | | | | |NULL |126 | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Load State&eol;Modbus address:0x002E&eol;&eol;0: Start&eol;1: Normal&eol;2: LvdWarning&eol;3: Lvd&eol;4: Fault&eol;5: Disconnect&eol;6: NormalOff&eol;7: Override&eol;8: NotUsed |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32342 |20 |1.3.6.1.4.1.33333.6.34.0 |10344 |Load: Current |load.current[loadCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Load Current&eol;Scaling Factor:1.0&eol;Units:A&eol;Range:[0, 60]&eol;Modbus address:0x0016 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32343 |20 |1.3.6.1.4.1.33333.6.56.0 |10344 |Counter: Load Amp-hours |counter.load_amp_hours[ahLoadResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Ah Load (Resettable)&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 4294967294]&eol;Modbus addresses:H=0x0032 L=0x0033 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32344 |20 |1.3.6.1.4.1.33333.6.51.0 |10344 |Counter: Charge KW-hours |counter.charge_kw_hours[kwhChargeResettable.0] |1m |7d |365d |0 |0 | |!kWh | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Kilowatt Hours Charge (Resettable)&eol;Scaling Factor:1.0&eol;Units:kWh&eol;Range:[0.0, 65535]&eol;Modbus address:0x002A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32345 |20 |1.3.6.1.4.1.33333.6.49.0 |10344 |Counter: Charge Amp-hours |counter.charge_amp_hours[ahChargeResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Ah Charge (Resettable)&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 4294967294]&eol;Modbus addresses:H=0x0026 L=0x0027 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32346 |20 |1.3.6.1.4.1.33333.6.45.0 |10344 |Battery: Charge State |charge.state[chargeState.0] |1m |7d |365d |0 |0 | | | | |NULL |125 | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Control State&eol;Modbus address:0x0021&eol;&eol;0: Start&eol;1: NightCheck&eol;2: Disconnect&eol;3: Night&eol;4: Fault&eol;5: Bulk&eol;6: Pwm&eol;7: Float&eol;8: Equalize |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32347 |20 |1.3.6.1.4.1.33333.6.33.0 |10344 |Battery: Charge Current |charge.current[chargeCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Charge Current&eol;Scaling Factor:1.0&eol;Units:A&eol;Range:[0, 40]&eol;Modbus address:0x0011 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32348 |20 |1.3.6.1.4.1.33333.6.38.0 |10344 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Heatsink Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-128, 127]&eol;Modbus address:0x001A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32350 |20 |1.3.6.1.4.1.33333.6.30.0 |10344 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryTerminalVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PROSTAR-PWM&eol;Description:Control State&eol;Modbus address:0x0021 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32351 |20 |1.3.6.1.4.1.33333.3.57.0 |10345 |Array: Sweep Pmax |array.sweep_pmax[arrayMaxPowerSweep.0] |1m |7d |365d |0 |0 | |W | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Array Open Circuit Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x002A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32352 |20 |1.3.6.1.4.1.33333.3.46.0 |10345 |Load: State |load.state[loadState.0] |1m |7d |365d |0 |0 | | | | |NULL |129 | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Load State&eol;Modbus address:0x001A&eol;&eol;0: Start&eol;1: Normal&eol;2: LvdWarning&eol;3: Lvd&eol;4: Fault&eol;5: Disconnect&eol;6: NormalOff&eol;7: Override&eol;8: NotUsed |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32353 |20 |1.3.6.1.4.1.33333.3.36.0 |10345 |Temperature: Battery |temp.battery[batteryTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Heatsink Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-128, 127]&eol;Modbus address:0x000D |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32354 |20 |1.3.6.1.4.1.33333.3.37.0 |10345 |Temperature: Ambient |temp.ambient[ambientTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Ambient Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-128, 127]&eol;Modbus address:0x000F |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32355 |20 |1.3.6.1.4.1.33333.3.42.0 |10345 |Battery: Target Voltage |target.voltage[targetVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Target Regulation Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0014 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32356 |20 |1.3.6.1.2.1.1.3.0 |10345 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32357 |20 |1.3.6.1.4.1.33333.3.47.0 |10345 |Status: Load Faults |status.load_faults[loadFaults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Array Faults&eol;Modbus address:0x0012 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32358 |20 |1.3.6.1.4.1.33333.3.40.0 |10345 |Status: Array Faults |status.array_faults[arrayFaults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Array Faults&eol;Modbus address:0x0012 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32359 |20 |1.3.6.1.4.1.33333.3.52.0 |10345 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Alarms&eol;Modbus addresses:H=0x0023 L=0x0024 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32360 |20 |1.3.6.1.4.1.33333.3.32.0 |10345 |Load: Voltage |load.voltage[loadVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Load Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0, 80]&eol;Modbus address:0x000A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32361 |20 |1.3.6.1.4.1.33333.3.34.0 |10345 |Load: Current |load.current[loadCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Load Current&eol;Scaling Factor:0.002415771484375&eol;Units:A&eol;Range:[0, 60]&eol;Modbus address:0x000C |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32362 |20 |1.3.6.1.4.1.33333.3.56.0 |10345 |Array: Sweep Vmp |array.sweep_vmp[arrayVmp.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Array Max. Power Point Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0.0, 5000.0]&eol;Modbus address:0x0028 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32363 |20 |1.3.6.1.4.1.33333.3.49.0 |10345 |Counter: Load Amp-hours |counter.load_amp_hours[ahLoadResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Ah Load(Resettable)&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 4294967294]&eol;Modbus addresses:H=0x001D L=0x001E |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32364 |20 |1.3.6.1.4.1.33333.3.45.0 |10345 |Counter: Charge KW-hours |counter.charge_kw_hours[kwhCharge.0] |1m |7d |365d |0 |3 | |!kWh | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32365 |20 |1.3.6.1.4.1.33333.3.43.0 |10345 |Counter: Charge Amp-hours |counter.charge_amp_hours[ahChargeResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Ah Charge(Resettable)&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 4294967294]&eol;Modbus addresses:H=0x0015 L=0x0016 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32366 |20 |1.3.6.1.4.1.33333.3.39.0 |10345 |Battery: Charge State |charge.state[chargeState.0] |1m |7d |365d |0 |0 | | | | |NULL |128 | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Control State&eol;Modbus address:0x0011&eol;&eol;0: Start&eol;1: NightCheck&eol;2: Disconnect&eol;3: Night&eol;4: Fault&eol;5: BulkMppt&eol;6: Pwm&eol;7: Float&eol;8: Equalize |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32367 |20 |1.3.6.1.4.1.33333.3.33.0 |10345 |Battery: Charge Current |charge.current[chargeCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Target Regulation Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0014 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32368 |20 |1.3.6.1.4.1.33333.3.30.0 |10345 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryVoltage.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32369 |20 |1.3.6.1.4.1.33333.3.31.0 |10345 |Array: Voltage |array.voltage[arrayVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Array Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0, 80]&eol;Modbus address:0x0009 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32370 |20 |1.3.6.1.4.1.33333.3.58.0 |10345 |Array: Sweep Voc |array.sweep_voc[arrayVoc.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Array Open Circuit Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x002A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32371 |20 |1.3.6.1.4.1.33333.3.35.0 |10345 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Battery Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-128, 127]&eol;Modbus address:0x000E |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32373 |20 |1.3.6.1.4.1.33333.3.30.0 |10345 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Control State&eol;Modbus address:0x0011 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32374 |20 |1.3.6.1.4.1.33333.9.30.0 |10346 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryVoltageSlow.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SURESINE |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32375 |20 |1.3.6.1.4.1.33333.9.31.0 |10346 |Load: A/C Current |load.ac_current[acCurrent.0] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SURESINE&eol;Description:AC Output Current&eol;Scaling Factor:0.0001953125&eol;Units:A&eol;Range:[0.0, 17]&eol;Modbus address:0x0005 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32376 |20 |1.3.6.1.4.1.33333.9.33.0 |10346 |Load: State |load.state[loadState.0] |1m |7d |365d |0 |0 | | | | |NULL |130 | | |0 | | | | |0 |NULL |MIB: SURESINE&eol;Description:Load State&eol;Modbus address:0x000B&eol;&eol; 0: Start&eol;1: LoadOn&eol;2: LvdWarning&eol;3: LowVoltageDisconnect&eol;4: Fault&eol;5: Disconnect&eol;6: NormalOff&eol;7: UnknownState&eol;8: Standby |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32377 |20 |1.3.6.1.4.1.33333.9.34.0 |10346 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SURESINE&eol;Description:Faults&eol;Modbus address:0x0007 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32378 |20 |1.3.6.1.4.1.33333.9.35.0 |10346 |Status: Faults |status.faults[faults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SURESINE&eol;Description:Faults&eol;Modbus address:0x0007 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32379 |20 |1.3.6.1.2.1.1.3.0 |10346 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32380 |20 |1.3.6.1.4.1.33333.9.32.0 |10346 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SURESINE&eol;Description:Heatsink Temperature&eol;Scaling Factor:1&eol;Units:C&eol;Range:[-128, 127]&eol;Modbus address:0x0006 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32382 |20 |1.3.6.1.4.1.33333.9.30.0 |10346 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryVoltageSlow.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: SURESINE&eol;Description:Battery Voltage(slow)&eol;Scaling Factor:0.0002581787109375&eol;Units:V&eol;Range:[0.0, 17.0]&eol;Modbus address:0x0004 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32383 |20 |1.3.6.1.4.1.33333.7.31.0 |10347 |Array: Array Current |array.current[arrayCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Array Current&eol;Scaling Factor:1.0&eol;Units:A&eol;Range:[-10, 80]&eol;Modbus address:0x001d |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32384 |20 |1.3.6.1.4.1.33333.7.50.0 |10347 |Counter: Charge Amp-hours |counter.charge_amp_hours[ahChargeResetable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Ah Charge Resettable&eol;Scaling Factor:1.0&eol;Units:Ah&eol;Range:[0.0, 5000]&eol;Modbus addresses:H=0x0034 L=0x0035 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32385 |20 |1.3.6.1.4.1.33333.7.48.0 |10347 |Temperature: Battery |temp.battery[batteryTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Batt. Temp&eol;Scaling Factor:1.0&eol;Units:C&eol;Range:[-40, 80]&eol;Modbus address:0x0025 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32386 |20 |1.3.6.1.4.1.33333.7.45.0 |10347 |Battery: Target Voltage |target.voltage[targetRegulationVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Target Voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[-10, 650.0]&eol;Modbus address:0x0033 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32387 |20 |1.3.6.1.2.1.1.3.0 |10347 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32388 |20 |1.3.6.1.4.1.33333.7.55.0 |10347 |Status: Faults |status.faults[faults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Faults&eol;Modbus addresses:H=0x002c L=0x002d |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32389 |20 |1.3.6.1.4.1.33333.7.57.0 |10347 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Alarms&eol;Modbus addresses:H=0x002e L=0x002f |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32390 |20 |1.3.6.1.4.1.33333.7.52.0 |10347 |Counter: Charge KW-hours |counter.charge_kw_hours[kwhChargeResetable.0] |1m |7d |365d |0 |0 | |!kWh | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:kWh Charge Resettable&eol;Scaling Factor:1.0&eol;Units:kWh&eol;Range:[0.0, 65535.0]&eol;Modbus address:0x0038 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32391 |20 |1.3.6.1.4.1.33333.7.46.0 |10347 |Battery: Charge State |charge.state[chargeState.0] |1m |7d |365d |0 |0 | | | | |NULL |131 | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Charge State&eol;Modbus address:0x0032&eol;&eol;0: Start&eol;1: NightCheck&eol;2: Disconnect&eol;3: Night&eol;4: Fault&eol;5: Mppt&eol;6: Absorption&eol;7: Float&eol;8: Equalize&eol;9: Slave&eol;10: Fixed |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32392 |20 |1.3.6.1.4.1.33333.7.33.0 |10347 |Array: Sweep Pmax |array.sweep_pmax[arrayPmaxLastSweep.0] |1m |7d |365d |0 |0 | |W | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Pmax (last sweep)&eol;Scaling Factor:1.0&eol;Units:W&eol;Range:[-10, 5000]&eol;Modbus address:0x003c |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32393 |20 |1.3.6.1.4.1.33333.7.44.0 |10347 |Battery: Output Power |charge.output_power[ outputPower.0] |1m |7d |365d |0 |0 | |W | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Output Power&eol;Scaling Factor:1.0&eol;Units:W&eol;Range:[-10, 4000]&eol;Modbus address:0x003a |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32394 |20 |1.3.6.1.4.1.33333.7.42.0 |10347 |Battery: Charge Current |charge.current[batteryCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Battery Current&eol;Scaling Factor:1.0&eol;Units:A&eol;Range:[-10, 80]&eol;Modbus address:0x001c |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32395 |20 |1.3.6.1.4.1.33333.7.36.0 |10347 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryVoltage.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Battery voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[-10, 80]&eol;Modbus address:0x0018 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32396 |20 |1.3.6.1.4.1.33333.7.30.0 |10347 |Array: Voltage |array.voltage[arrayVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Array Voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[-10, 650]&eol;Modbus address:0x001b |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32397 |20 |1.3.6.1.4.1.33333.7.35.0 |10347 |Array: Sweep Voc |array.sweep_voc[arrayVocLastSweep.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Voc (last sweep)&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[-10, 650.0]&eol;Modbus address:0x003e |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32398 |20 |1.3.6.1.4.1.33333.7.34.0 |10347 |Array: Sweep Vmp |array.sweep_vmp[arrayVmpLastSweep.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Vmp (last sweep)&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[-10, 650.0]&eol;Modbus address:0x003d |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32399 |20 |1.3.6.1.4.1.33333.7.49.0 |10347 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:HS Temp&eol;Scaling Factor:1.0&eol;Units:C&eol;Range:[-40, 80]&eol;Modbus address:0x0023 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32401 |20 |1.3.6.1.4.1.33333.7.36.0 |10347 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR-MPPT&eol;Description:Battery voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[-10, 80]&eol;Modbus address:0x0018 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32402 |20 |1.3.6.1.4.1.33333.2.31.0 |10348 |Array: Array Current |array.current[arrayCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Array Current&eol;Scaling Factor:0.00244140625&eol;Units:A&eol;Range:[-10, 80]&eol;Modbus address:0x001d |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32403 |20 |1.3.6.1.4.1.33333.2.50.0 |10348 |Counter: Charge Amp-hours |counter.charge_amp_hours[ahChargeResetable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Ah Charge Resettable&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 5000]&eol;Modbus addresses:H=0x0034 L=0x0035 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32404 |20 |1.3.6.1.4.1.33333.2.48.0 |10348 |Temperature: Battery |temp.battery[batteryTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Batt. Temp&eol;Scaling Factor:1.0&eol;Units:C&eol;Range:[-40, 80]&eol;Modbus address:0x0025 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32405 |20 |1.3.6.1.4.1.33333.2.45.0 |10348 |Battery: Target Voltage |target.voltage[targetRegulationVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Target Voltage&eol;Scaling Factor:0.0054931640625&eol;Units:V&eol;Range:[-10, 180.0]&eol;Modbus address:0x0033 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32406 |20 |1.3.6.1.2.1.1.3.0 |10348 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32407 |20 |1.3.6.1.4.1.33333.2.55.0 |10348 |Status: Faults |status.faults[faults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Faults&eol;Modbus address:0x002c |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32408 |20 |1.3.6.1.4.1.33333.2.57.0 |10348 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Faults&eol;Modbus address:0x002c |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32409 |20 |1.3.6.1.4.1.33333.2.52.0 |10348 |Counter: Charge KW-hours |counter.charge_kw_hours[kwhChargeResetable.0] |1m |7d |365d |0 |3 | |!kWh | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:kWh Charge Resettable&eol;Scaling Factor:0.1&eol;Units:kWh&eol;Range:[0.0, 65535.0]&eol;Modbus address:0x0038 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32410 |20 |1.3.6.1.4.1.33333.2.46.0 |10348 |Battery: Charge State |charge.state[chargeState.0] |1m |7d |365d |0 |0 | | | | |NULL |132 | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Charge State&eol;Modbus address:0x0032&eol;&eol;0: Start&eol;1: NightCheck&eol;2: Disconnect&eol;3: Night&eol;4: Fault&eol;5: Mppt&eol;6: Absorption&eol;7: Float&eol;8: Equalize&eol;9: Slave |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32411 |20 |1.3.6.1.4.1.33333.2.33.0 |10348 |Array: Sweep Pmax |array.sweep_pmax[arrayPmaxLastSweep.0] |1m |7d |365d |0 |0 | |W | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Pmax (last sweep)&eol;Scaling Factor:0.10986328125&eol;Units:W&eol;Range:[-10, 5000]&eol;Modbus address:0x003c |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32412 |20 |1.3.6.1.4.1.33333.2.44.0 |10348 |Battery: Output Power |charge.output_power[ outputPower.0] |1m |7d |365d |0 |0 | |W | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Output Power&eol;Scaling Factor:0.10986328125&eol;Units:W&eol;Range:[-10, 5000]&eol;Modbus address:0x003a |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32413 |20 |1.3.6.1.4.1.33333.2.42.0 |10348 |Battery: Charge Current |charge.current[batteryCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Battery Current&eol;Scaling Factor:0.00244140625&eol;Units:A&eol;Range:[-10, 80]&eol;Modbus address:0x001c |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32414 |20 |1.3.6.1.4.1.33333.2.36.0 |10348 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryVoltage.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32415 |20 |1.3.6.1.4.1.33333.2.30.0 |10348 |Array: Voltage |array.voltage[arrayVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Array Voltage&eol;Scaling Factor:0.0054931640625&eol;Units:V&eol;Range:[-10, 180]&eol;Modbus address:0x001b |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32416 |20 |1.3.6.1.4.1.33333.2.35.0 |10348 |Array: Sweep Voc |array.sweep_voc[arrayVocLastSweep.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Voc (last sweep)&eol;Scaling Factor:0.0054931640625&eol;Units:V&eol;Range:[-10, 180.0]&eol;Modbus address:0x003e |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32417 |20 |1.3.6.1.4.1.33333.2.34.0 |10348 |Array: Sweep Vmp |array.sweep_vmp[arrayVmpLastSweep.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Vmp (last sweep)&eol;Scaling Factor:0.0054931640625&eol;Units:V&eol;Range:[-10, 180.0]&eol;Modbus address:0x003d |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32418 |20 |1.3.6.1.4.1.33333.2.49.0 |10348 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:HS Temp&eol;Scaling Factor:1.0&eol;Units:C&eol;Range:[-40, 80]&eol;Modbus address:0x0023 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32420 |20 |1.3.6.1.4.1.33333.2.36.0 |10348 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR-MPPT&eol;Description:Battery voltage&eol;Scaling Factor:0.0054931640625&eol;Units:V&eol;Range:[-10, 180.0]&eol;Modbus address:0x0018 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32421 |20 |1.3.6.1.4.1.33333.8.30.0 |10349 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryVoltage.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Battery voltage&eol;Scaling Factor:0.002950042724609375&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0008 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32422 |20 |1.3.6.1.4.1.33333.8.45.0 |10349 |Status: Control Mode |control.mode[controlMode.0] |1m |7d |365d |0 |0 | | | | |NULL |135 | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Control Mode&eol;Modbus address:0x001A&eol;&eol;0: charge&eol;1: loadControl&eol;2: diversion&eol;3: lighting |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32423 |20 |1.3.6.1.4.1.33333.8.39.0 |10349 |Counter: Amp-hours |counter.charge_amp_hours[ahResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Ah (Resettable)&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 50000.0]&eol;Modbus addresses:H=0x0011 L=0x0012 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32424 |20 |1.3.6.1.4.1.33333.8.49.0 |10349 |Counter: KW-hours |counter.charge_kw_hours[kilowattHours.0] |1m |7d |365d |0 |0 | |!kWh | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Kilowatt Hours&eol;Scaling Factor:1.0&eol;Units:kWh&eol;Range:[0.0, 5000.0]&eol;Modbus address:0x001E |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32425 |20 |1.3.6.1.4.1.33333.8.42.0 |10349 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Alarms&eol;Modbus addresses:H=0x001D L=0x0017 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32426 |20 |1.3.6.1.4.1.33333.8.43.0 |10349 |Status: Faults |status.faults[faults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Battery voltage&eol;Scaling Factor:0.002950042724609375&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0008 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32427 |20 |1.3.6.1.2.1.1.3.0 |10349 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32428 |20 |1.3.6.1.4.1.33333.8.37.0 |10349 |Temperature: Battery |temp.battery[batteryTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Battery Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-40, 120]&eol;Modbus address:0x000F |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32429 |20 |1.3.6.1.4.1.33333.8.36.0 |10349 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Heatsink Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-40, 120]&eol;Modbus address:0x000E |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32436 |20 |1.3.6.1.4.1.33333.8.30.0 |10349 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Battery voltage&eol;Scaling Factor:0.002950042724609375&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0008 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32437 |20 |1.3.6.1.4.1.33333.8.46.0 |10349 |Battery: Charge State{#SINGLETON} |charge.state[controlState.0{#SINGLETON}] |1m |7d |365d |0 |0 | | | | |NULL |133 | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Control State&eol;Modbus address:0x001B |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32438 |20 |1.3.6.1.4.1.33333.8.38.0 |10349 |Battery: Target Voltage{#SINGLETON} |target.voltage[targetVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Target Regulation Voltage&eol;Scaling Factor:0.002950042724609375&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0010 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32439 |20 |1.3.6.1.4.1.33333.8.32.0 |10349 |Array: Voltage{#SINGLETON} |array.voltage[arrayloadVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Array/Load Voltage&eol;Scaling Factor:0.00424652099609375&eol;Units:V&eol;Range:[0, 80]&eol;Modbus address:0x000A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32440 |20 |1.3.6.1.4.1.33333.8.33.0 |10349 |Battery: Charge Current{#SINGLETON} |charge.current[chargeCurrent.0{#SINGLETON}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Charge Current&eol;Scaling Factor:0.002034515380859375&eol;Units:A&eol;Range:[0, 60]&eol;Modbus address:0x000B |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32441 |20 |1.3.6.1.4.1.33333.8.48.0 |10349 |Load: PWM Duty Cycle{#SINGLETON} |diversion.pwm_duty_cycle[pwmDutyCycle.0{#SINGLETON}] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:PWM Duty Cycle&eol;Scaling Factor:0.392156862745098&eol;Units:%&eol;Range:[0.0, 100.0]&eol;Modbus address:0x001C |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32442 |20 |1.3.6.1.4.1.33333.8.34.0 |10349 |Load: Current{#SINGLETON} |load.current[loadCurrent.0{#SINGLETON}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Load Current&eol;Scaling Factor:0.00966400146484375&eol;Units:A&eol;Range:[0, 60]&eol;Modbus address:0x000C |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32443 |20 |1.3.6.1.4.1.33333.8.32.0 |10349 |Load: Voltage{#SINGLETON} |load.voltage[arrayloadVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Array/Load Voltage&eol;Scaling Factor:0.00424652099609375&eol;Units:V&eol;Range:[0, 80]&eol;Modbus address:0x000A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32444 |20 |1.3.6.1.4.1.33333.8.47.0 |10349 |Load: State{#SINGLETON} |load.state[loadState.0{#SINGLETON}] |1m |7d |365d |0 |0 | | | | |NULL |134 | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Load State&eol;Modbus address:0x001B&eol;&eol;0: Start&eol;1: Normal&eol;2: LvdWarning&eol;3: Lvd&eol;4: Fault&eol;5: Disconnect&eol;6: LvdWarning1&eol;7: OverrideLvd&eol;8: Equalize |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32445 |0 | |10289 |{#DEVNAME}: Average disk read queue length |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk Read Queue Length",60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Average disk read queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32446 |0 | |10289 |{#DEVNAME}: Disk read request avg waiting time |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk sec/Read",60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The average time for read requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32447 |0 | |10289 |{#DEVNAME}: Disk write request avg waiting time |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk sec/Write",60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The average time for write requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32448 |0 | |10289 |{#DEVNAME}: Average disk write queue length |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk Write Queue Length",60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Average disk write queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32453 |7 | |10296 |{#DEVNAME}: Average disk read queue length |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk Read Queue Length",60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Average disk read queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32454 |7 | |10296 |{#DEVNAME}: Disk read request avg waiting time |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk sec/Read",60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The average time for read requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32455 |7 | |10296 |{#DEVNAME}: Disk write request avg waiting time |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk sec/Write",60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The average time for write requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32456 |7 | |10296 |{#DEVNAME}: Average disk write queue length |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk Write Queue Length",60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Average disk write queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32463 |16 | |10350 |Destinations discovery |jmx.discovery[beans,"org.apache.activemq:type=Broker,brokerName=*,destinationType=*,destinationName=*"] |1h |90d |0 |0 |4 | | |{1112} and {1113}| |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |1 |NULL |Discovery of destinations |0 |30d |3 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32464 |16 | |10350 |Brokers discovery |jmx.discovery[beans,"org.apache.activemq:type=Broker,brokerName=*"] |1h |90d |0 |0 |4 | | |{1114} and {1115}| |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |1 |NULL |Discovery of brokers |0 |30d |3 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32465 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Consumers count total on {#JMXBROKERNAME}|jmx["org.apache.activemq:type=Broker,brokerName={#JMXBROKERNAME}",{$ACTIVEMQ.TOTAL.CONSUMERS.COUNT: "{#JMXDESTINATIONNAME}"}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of consumers attached to the broker of this destination. Used to suppress destination's triggers when the count of consumers on the broker is lower than threshold. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32466 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Producers count total on {#JMXBROKERNAME}|jmx["org.apache.activemq:type=Broker,brokerName={#JMXBROKERNAME}",{$ACTIVEMQ.TOTAL.PRODUCERS.COUNT: "{#JMXDESTINATIONNAME}"}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of producers attached to the broker of this destination. Used to suppress destination's triggers when the count of producers on the broker is lower than threshold. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32467 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Consumers count |jmx[{#JMXOBJ},ConsumerCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of consumers attached to this destination. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32468 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Messages dequeue rate |jmx[{#JMXOBJ},DequeueCount] |1m |7d |365d |0 |3 | |messages/sec| | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Rate of messages that has been acknowledged (and removed) from the destination. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32469 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Messages enqueue rate |jmx[{#JMXOBJ},EnqueueCount] |1m |7d |365d |0 |3 | |messages/sec| | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Rate of messages that have been sent to the destination. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32470 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Expired messages count |jmx[{#JMXOBJ},ExpiredCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of messages that have been expired. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32471 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Memory usage in percents |jmx[{#JMXOBJ},MemoryPercentUsage] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |The percentage of the memory limit used. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32472 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Producers count |jmx[{#JMXOBJ},ProducerCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of producers attached to this destination. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32473 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Queue size |jmx[{#JMXOBJ},QueueSize] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of messages on this destination, including any that have been dispatched but not acknowledged. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32474 |16 | |10350 |Broker {#JMXBROKERNAME}: Version |jmx[{#JMXOBJ},BrokerVersion] |1m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |The version of the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32475 |16 | |10350 |Broker {#JMXBROKERNAME}: Memory limit |jmx[{#JMXOBJ},MemoryLimit] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Memory limit, in bytes, used for holding undelivered messages before paging to temporary storage. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32476 |16 | |10350 |Broker {#JMXBROKERNAME}: Memory usage in percents |jmx[{#JMXOBJ}, MemoryPercentUsage] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Percent of memory limit used. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32477 |16 | |10350 |Broker {#JMXBROKERNAME}: Storage limit |jmx[{#JMXOBJ},StoreLimit] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Disk limit, in bytes, used for persistent messages before producers are blocked. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32478 |16 | |10350 |Broker {#JMXBROKERNAME}: Storage usage in percents |jmx[{#JMXOBJ},StorePercentUsage] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Percent of store limit used. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32479 |16 | |10350 |Broker {#JMXBROKERNAME}: Temp limit |jmx[{#JMXOBJ},TempLimit] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Disk limit, in bytes, used for non-persistent messages and temporary data before producers are blocked. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32480 |16 | |10350 |Broker {#JMXBROKERNAME}: Temp usage in percents |jmx[{#JMXOBJ},TempPercentUsage] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Percent of temp limit used. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32481 |16 | |10350 |Broker {#JMXBROKERNAME}: Consumers count total |jmx[{#JMXOBJ},TotalConsumerCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of consumers attached to this broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32482 |16 | |10350 |Broker {#JMXBROKERNAME}: Messages dequeue rate |jmx[{#JMXOBJ},TotalDequeueCount] |1m |7d |365d |0 |3 | |messages/sec| | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Rate of messages that have been delivered by the broker and acknowledged by consumers. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32483 |16 | |10350 |Broker {#JMXBROKERNAME}: Messages enqueue rate |jmx[{#JMXOBJ},TotalEnqueueCount] |1m |7d |365d |0 |3 | |messages/sec| | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Rate of messages that have been sent to the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32484 |16 | |10350 |Broker {#JMXBROKERNAME}: Producers count total |jmx[{#JMXOBJ},TotalProducerCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of producers attached to this broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32485 |16 | |10350 |Broker {#JMXBROKERNAME}: Uptime |jmx[{#JMXOBJ},UptimeMillis] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |The uptime of the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32486 |0 | |10351 |MS Exchange: Databases total mounted |perf_counter_en["\MSExchange Active Manager(_total)\Database Mounted"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of active database copies on the server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32487 |0 | |10351 |MS Exchange [Client Access Server]: ActiveSync: ping command pending |perf_counter_en["\MSExchange ActiveSync\Ping Commands Pending", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of ping commands currently pending in the queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32488 |0 | |10351 |MS Exchange [Client Access Server]: ActiveSync: requests per second |perf_counter_en["\MSExchange ActiveSync\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of HTTP requests received from the client via ASP.NET per second. Determines the current Exchange ActiveSync request rate. Used only to determine current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32489 |0 | |10351 |MS Exchange [Client Access Server]: ActiveSync: sync commands per second |perf_counter_en["\MSExchange ActiveSync\Sync Commands/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of sync commands processed per second. Clients use this command to synchronize items within a folder. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32490 |0 | |10351 |MS Exchange [Client Access Server]: Autodiscover: requests per second |perf_counter_en["\MSExchangeAutodiscover\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of Autodiscover service requests processed each second. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32491 |0 | |10351 |MS Exchange [Client Access Server]: Availability Service: availability requests per second |perf_counter_en["\MSExchange Availability Service\Availability Requests (sec)", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of requests serviced per second. The request can be only for free/ busy information or include suggestions. One request may contain multiple mailboxes. Determines the rate at which Availability service requests are occurring. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32492 |0 | |10351 |MS Exchange [Client Access Server]: Outlook Web App: current unique users |perf_counter_en["\MSExchange OWA\Current Unique Users", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of unique users currently logged on to Outlook Web App. This value monitors the number of unique active user sessions, so that users are only removed from this counter after they log off or their session times out. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32493 |0 | |10351 |MS Exchange [Client Access Server]: Outlook Web App: requests per second |perf_counter_en["\MSExchange OWA\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of requests handled by Outlook Web App per second. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32494 |0 | |10351 |MS Exchange [Client Access Server]: MSExchangeWS: requests per second |perf_counter_en["\MSExchangeWS\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of requests processed each second. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32495 |0 | |10351 |LDAP discovery |perf_instance_en.discovery["MSExchange ADAccess Domain Controllers"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of domain controller. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32496 |0 | |10351 |Web services discovery |perf_instance_en.discovery["Web Service"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Exchange web services. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32497 |0 | |10351 |Databases discovery |perf_instance.discovery["MSExchange Active Manager"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Exchange databases. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32498 |0 | |10351 |Domain Controller [{#INSTANCE}]: Read time |perf_counter_en["\MSExchange ADAccess Domain Controllers({#INSTANCE})\LDAP Read Time", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time that it takes to send an LDAP read request to the domain controller in question and get a response. Should ideally be below 50 ms; spikes below 100 ms are acceptable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32499 |0 | |10351 |Domain Controller [{#INSTANCE}]: Search time |perf_counter_en["\MSExchange ADAccess Domain Controllers({#INSTANCE})\LDAP Search Time", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time that it takes to send an LDAP search request and get a response. Should ideally be below 50 ms; spikes below 100 ms are acceptable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32500 |0 | |10351 |Web Service [{#INSTANCE}]: Current connections |perf_counter_en["\Web Service({#INSTANCE})\Current Connections", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the current number of connections established to the each Web Service. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32501 |0 | |10351 |Active Manager [{#INSTANCE}]: Database copy role |perf_counter_en["\MSExchange Active Manager({#INSTANCE})\Database Copy Role Active"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |136 | | |0 | | | | |2 |NULL |Database copy active or passive role. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32502 |0 | |10351 |Information Store [{#INSTANCE}]: Page faults per second |perf_counter_en["\MSExchange Database({#INF.STORE})\Database Page Fault Stalls/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the rate of page faults that can't be serviced because there are no pages available for allocation from the database cache. If this counter is above 0, it's an indication that the MSExchange Database\I/O Database Writes (Attached) Average Latency is too high. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32503 |0 | |10351 |Information Store [{#INSTANCE}]: Log records stalled |perf_counter_en["\MSExchange Database({#INF.STORE})\Log Record Stalls/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the number of log records that can't be added to the log buffers per second because the log buffers are full. The average value should be below 10 per second. Spikes (maximum values) shouldn't be higher than 100 per second. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32504 |0 | |10351 |Information Store [{#INSTANCE}]: Log threads waiting |perf_counter_en["\MSExchange Database({#INF.STORE})\Log Threads Waiting", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the number of threads waiting to complete an update of the database by writing their data to the log. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32505 |0 | |10351 |Database Counters [{#INSTANCE}]: Active database read operations per second |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Attached)/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the number of database read operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32506 |0 | |10351 |Database Counters [{#INSTANCE}]: Active database read operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Attached) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time per database read operation. Should be less than 20 ms on average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32507 |0 | |10351 |Database Counters [{#INSTANCE}]: Passive database read operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Recovery) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time per passive database read operation. Should be less than 200ms on average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32508 |0 | |10351 |Database Counters [{#INSTANCE}]: Active database write operations per second |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Writes (Attached)/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the number of database write operations per second for each attached database instance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32509 |0 | |10351 |Database Counters [{#INSTANCE}]: Active database write operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Writes (Attached) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time per database write operation. Should be less than 50ms on average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32510 |0 | |10351 |Database Counters [{#INSTANCE}]: Passive database write operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Writes (Recovery) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time, in ms, per passive database write operation. Should be less than the read latency for the same instance, as measured by the MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Recovery) Average Latency counter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32511 |0 | |10351 |Information Store [{#INSTANCE}]: Active mailboxes count |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\Active mailboxes"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of active mailboxes in this database. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32512 |0 | |10351 |Information Store [{#INSTANCE}]: Database state |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\Database State"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |137 | | |0 | | | | |2 |NULL |Database state. Possible values:&eol;0: Database without any copy and dismounted.&eol;1: Database is a primary database and mounted.&eol;2: Database is a passive copy and the state is healthy. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32513 |0 | |10351 |Information Store [{#INSTANCE}]: RPC requests latency |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\RPC Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |RPC Latency average is the average latency of RPC requests per database. Average is calculated over all RPCs since exrpc32 was loaded. Should be less than 50ms at all times, with spikes less than 100ms. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32514 |0 | |10351 |Information Store [{#INSTANCE}]: RPC requests per second |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\RPC Operations/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the number of RPC operations per second for each database instance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32515 |0 | |10351 |Information Store [{#INSTANCE}]: RPC requests total |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\RPC requests", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the overall RPC requests currently executing within the information store process. Should be below 70 at all times. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32516 |7 | |10352 |MS Exchange: Databases total mounted |perf_counter_en["\MSExchange Active Manager(_total)\Database Mounted"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of active database copies on the server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32517 |7 | |10352 |MS Exchange [Client Access Server]: ActiveSync: ping command pending |perf_counter_en["\MSExchange ActiveSync\Ping Commands Pending", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of ping commands currently pending in the queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32518 |7 | |10352 |MS Exchange [Client Access Server]: ActiveSync: requests per second |perf_counter_en["\MSExchange ActiveSync\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of HTTP requests received from the client via ASP.NET per second. Determines the current Exchange ActiveSync request rate. Used only to determine current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32519 |7 | |10352 |MS Exchange [Client Access Server]: ActiveSync: sync commands per second |perf_counter_en["\MSExchange ActiveSync\Sync Commands/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of sync commands processed per second. Clients use this command to synchronize items within a folder. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32520 |7 | |10352 |MS Exchange [Client Access Server]: Autodiscover: requests per second |perf_counter_en["\MSExchangeAutodiscover\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of Autodiscover service requests processed each second. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32521 |7 | |10352 |MS Exchange [Client Access Server]: Availability Service: availability requests per second |perf_counter_en["\MSExchange Availability Service\Availability Requests (sec)", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of requests serviced per second. The request can be only for free/ busy information or include suggestions. One request may contain multiple mailboxes. Determines the rate at which Availability service requests are occurring. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32522 |7 | |10352 |MS Exchange [Client Access Server]: Outlook Web App: current unique users |perf_counter_en["\MSExchange OWA\Current Unique Users", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of unique users currently logged on to Outlook Web App. This value monitors the number of unique active user sessions, so that users are only removed from this counter after they log off or their session times out. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32523 |7 | |10352 |MS Exchange [Client Access Server]: Outlook Web App: requests per second |perf_counter_en["\MSExchange OWA\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of requests handled by Outlook Web App per second. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32524 |7 | |10352 |MS Exchange [Client Access Server]: MSExchangeWS: requests per second |perf_counter_en["\MSExchangeWS\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of requests processed each second. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32525 |7 | |10352 |LDAP discovery |perf_instance_en.discovery["MSExchange ADAccess Domain Controllers"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of domain controller. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32526 |7 | |10352 |Web services discovery |perf_instance_en.discovery["Web Service"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Exchange web services. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32527 |7 | |10352 |Databases discovery |perf_instance.discovery["MSExchange Active Manager"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Exchange databases. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32528 |7 | |10352 |Domain Controller [{#INSTANCE}]: Read time |perf_counter_en["\MSExchange ADAccess Domain Controllers({#INSTANCE})\LDAP Read Time", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time that it takes to send an LDAP read request to the domain controller in question and get a response. Should ideally be below 50 ms; spikes below 100 ms are acceptable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32529 |7 | |10352 |Domain Controller [{#INSTANCE}]: Search time |perf_counter_en["\MSExchange ADAccess Domain Controllers({#INSTANCE})\LDAP Search Time", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time that it takes to send an LDAP search request and get a response. Should ideally be below 50 ms; spikes below 100 ms are acceptable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32530 |7 | |10352 |Web Service [{#INSTANCE}]: Current connections |perf_counter_en["\Web Service({#INSTANCE})\Current Connections", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the current number of connections established to the each Web Service. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32531 |7 | |10352 |Active Manager [{#INSTANCE}]: Database copy role |perf_counter_en["\MSExchange Active Manager({#INSTANCE})\Database Copy Role Active"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |136 | | |0 | | | | |2 |NULL |Database copy active or passive role. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32532 |7 | |10352 |Information Store [{#INSTANCE}]: Page faults per second |perf_counter_en["\MSExchange Database({#INF.STORE})\Database Page Fault Stalls/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the rate of page faults that can't be serviced because there are no pages available for allocation from the database cache. If this counter is above 0, it's an indication that the MSExchange Database\I/O Database Writes (Attached) Average Latency is too high. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32533 |7 | |10352 |Information Store [{#INSTANCE}]: Log records stalled |perf_counter_en["\MSExchange Database({#INF.STORE})\Log Record Stalls/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the number of log records that can't be added to the log buffers per second because the log buffers are full. The average value should be below 10 per second. Spikes (maximum values) shouldn't be higher than 100 per second. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32534 |7 | |10352 |Information Store [{#INSTANCE}]: Log threads waiting |perf_counter_en["\MSExchange Database({#INF.STORE})\Log Threads Waiting", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the number of threads waiting to complete an update of the database by writing their data to the log. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32535 |7 | |10352 |Database Counters [{#INSTANCE}]: Active database read operations per second |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Attached)/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the number of database read operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32536 |7 | |10352 |Database Counters [{#INSTANCE}]: Active database read operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Attached) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time per database read operation. Should be less than 20 ms on average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32537 |7 | |10352 |Database Counters [{#INSTANCE}]: Passive database read operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Recovery) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time per passive database read operation. Should be less than 200ms on average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32538 |7 | |10352 |Database Counters [{#INSTANCE}]: Active database write operations per second |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Writes (Attached)/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the number of database write operations per second for each attached database instance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32539 |7 | |10352 |Database Counters [{#INSTANCE}]: Active database write operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Writes (Attached) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time per database write operation. Should be less than 50ms on average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32540 |7 | |10352 |Database Counters [{#INSTANCE}]: Passive database write operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Writes (Recovery) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time, in ms, per passive database write operation. Should be less than the read latency for the same instance, as measured by the MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Recovery) Average Latency counter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32541 |7 | |10352 |Information Store [{#INSTANCE}]: Active mailboxes count |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\Active mailboxes"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of active mailboxes in this database. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32542 |7 | |10352 |Information Store [{#INSTANCE}]: Database state |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\Database State"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |137 | | |0 | | | | |2 |NULL |Database state. Possible values:&eol;0: Database without any copy and dismounted.&eol;1: Database is a primary database and mounted.&eol;2: Database is a passive copy and the state is healthy. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32543 |7 | |10352 |Information Store [{#INSTANCE}]: RPC requests latency |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\RPC Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |RPC Latency average is the average latency of RPC requests per database. Average is calculated over all RPCs since exrpc32 was loaded. Should be less than 50ms at all times, with spikes less than 100ms. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32544 |7 | |10352 |Information Store [{#INSTANCE}]: RPC requests per second |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\RPC Operations/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the number of RPC operations per second for each database instance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32545 |7 | |10352 |Information Store [{#INSTANCE}]: RPC requests total |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\RPC requests", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the overall RPC requests currently executing within the information store process. Should be below 70 at all times. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32546 |15 | |10316 |MySQL: Calculated value of innodb_log_file_size |mysql.innodb_log_file_size |1m |7d |365d |0 |0 | | | | |NULL |NULL |(last(mysql.innodb_os_log_written) - last(mysql.innodb_os_log_written,1h)) / {$MYSQL.INNODB_LOG_FILES} | |0 | | | | |0 |NULL |Calculated by (innodb_os_log_written-innodb_os_log_written(time shift -1h))/{$MYSQL.INNODB_LOG_FILES} value of the innodb_log_file_size. Innodb_log_file_size is the size in bytes of the each InnoDB redo log file in the log group. The combined size can be no more than 512GB. Larger values mean less disk I/O due to less flushing checkpoint activity, but also slower recovery from a crash. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32560 |15 | |10320 |MySQL: Calculated value of innodb_log_file_size |mysql.innodb_log_file_size |1m |7d |365d |0 |0 | | | | |NULL |NULL |(last(mysql.innodb_os_log_written) - last(mysql.innodb_os_log_written,1h)) / {$MYSQL.INNODB_LOG_FILES} | |0 | | | | |0 |NULL |Calculated by (innodb_os_log_written-innodb_os_log_written(time shift -1h))/{$MYSQL.INNODB_LOG_FILES} value of the innodb_log_file_size. Innodb_log_file_size is the size in bytes of the each InnoDB redo log file in the log group. The combined size can be no more than 512GB. Larger values mean less disk I/O due to less flushing checkpoint activity, but also slower recovery from a crash. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32574 |15 | |10317 |MySQL: Calculated value of innodb_log_file_size |mysql.innodb_log_file_size |1m |7d |365d |0 |0 | | | | |NULL |NULL |(last(mysql.innodb_os_log_written) - last(mysql.innodb_os_log_written,1h)) / {$MYSQL.INNODB_LOG_FILES} | |0 | | | | |0 |NULL |Calculated by (innodb_os_log_written-innodb_os_log_written(time shift -1h))/{$MYSQL.INNODB_LOG_FILES} value of the innodb_log_file_size. Innodb_log_file_size is the size in bytes of the each InnoDB redo log file in the log group. The combined size can be no more than 512GB. Larger values mean less disk I/O due to less flushing checkpoint activity, but also slower recovery from a crash. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32592 |0 | |10328 |PostgreSQL: Custom queries |pgsql.custom.query["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}",""] |1m |1h |0 |1 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Execute custom queries from file *.sql |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32593 |0 | |10328 |PostgreSQL: Cache hit |pgsql.cache.hit["{$PG.URI}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32594 |0 | |10328 |PostgreSQL: Age of oldest xid |pgsql.oldest.xid["{$PG.URI}","{$PG.USER}"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Age of oldest xid. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32595 |0 | |10328 |PostgreSQL: Get replication |pgsql.replication.process["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect metrics from the pg_stat_replication, which contains information about the WAL sender process, showing statistics about replication to that sender's connected standby server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32597 |0 | |10328 |Replication Discovery |pgsql.replication.process.discovery["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |15m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32612 |20 |1.3.6.1.4.1.789.1.6.4.7.0 |10353 |NetApp FAS3220: Failed disks count |fas3220.disk[diskFailedCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of disks that are currently broken. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32613 |20 |1.3.6.1.4.1.789.1.6.4.10.0 |10353 |NetApp FAS3220: Failed disks message |fas3220.disk[diskFailedMessage] |1m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |If diskFailedCount is non-zero, this is a string describing the failed disk or disks. Each failed disk is described. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32614 |20 |1.3.6.1.4.1.789.1.1.6.0 |10353 |NetApp FAS3220: Product firmware version |fas3220.inventory[productFirmwareVersion] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version string for the firmware running on this platform. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32615 |20 |1.3.6.1.4.1.789.1.1.2.0 |10353 |NetApp FAS3220: Product version |fas3220.inventory[productVersion] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version string for the software running on this platform. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32616 |20 |discovery[{#NODE.NAME},1.3.6.1.4.1.789.1.25.2.1.1] |10353 |Cluster metrics discovery |fas3220.cluster.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Cluster metrics per node |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32617 |20 |discovery[{#NODE.NAME},1.3.6.1.4.1.789.1.2.1.14.1.1] |10353 |CPU discovery |fas3220.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of CPU metrics per node |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32618 |20 |discovery[{#FSNAME},1.3.6.1.4.1.789.1.5.4.1.2,{#FSTYPE},1.3.6.1.4.1.789.1.5.4.1.23,{#VSERVER},1.3.6.1.4.1.789.1.5.4.1.34] |10353 |Filesystems discovery |fas3220.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Filesystems discovery with filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32619 |20 |discovery[{#NODE.NAME},1.3.6.1.4.1.789.1.21.2.1.1,{#PARTNER.NAME},1.3.6.1.4.1.789.1.21.2.1.8] |10353 |HA discovery |fas3220.ha.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of high availability metrics per node |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32620 |20 |discovery[{#IFNAME},1.3.6.1.4.1.789.1.22.2.1.2,{#NODE},1.3.6.1.4.1.789.1.22.2.1.1,{#TYPE},1.3.6.1.4.1.789.1.22.2.1.15,{#ROLE},1.3.6.1.4.1.789.1.22.2.1.3,{#IFDESCR},1.3.6.1.4.1.789.1.22.1.2.1.2] |10353 |Network ports discovery |fas3220.net.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Network interfaces discovery with filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32621 |20 |1.3.6.1.4.1.789.1.25.2.1.19.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Failed FAN count |fas3220.cluster[nodeEnvFailedFanCount, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of the number of chassis fans that are not operating within the recommended RPM range. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32622 |20 |1.3.6.1.4.1.789.1.25.2.1.20.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Failed FAN messgae |fas3220.cluster[nodeEnvFailedFanMessage, "{#NODE.NAME}"] |1m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Text message describing current condition of chassis fans. This is useful only if envFailedFanCount is not zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32623 |20 |1.3.6.1.4.1.789.1.25.2.1.21.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Degraded power supplies count |fas3220.cluster[nodeEnvFailedPowerSupplyCount, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of the number of power supplies that are in degraded mode. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32624 |20 |1.3.6.1.4.1.789.1.25.2.1.22.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Degraded power supplies message |fas3220.cluster[nodeEnvFailedPowerSupplyMessage, "{#NODE.NAME}"] |1m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Text message describing the state of any power supplies that are currently degraded. This is useful only if envFailedPowerSupplyCount is not zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32625 |20 |1.3.6.1.4.1.789.1.25.2.1.18.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Over-temperature |fas3220.cluster[nodeEnvOverTemperature, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |An indication of whether the hardware is currently operating outside of its recommended temperature range. The hardware will shutdown if the temperature exceeds critical thresholds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32626 |20 |1.3.6.1.4.1.789.1.25.2.1.11.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Health |fas3220.cluster[nodeHealth, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL |Whether or not the node can communicate with the cluster. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32627 |20 |1.3.6.1.4.1.789.1.25.2.1.3.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Location |fas3220.cluster[nodeLocation, "{#NODE.NAME}"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Node Location. Same as sysLocation for a specific node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32628 |20 |1.3.6.1.4.1.789.1.25.2.1.4.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Model |fas3220.cluster[nodeModel, "{#NODE.NAME}"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Node Model. Same as productModel for a specific node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32629 |20 |1.3.6.1.4.1.789.1.25.2.1.17.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: NVRAM battery status |fas3220.cluster[nodeNvramBatteryStatus, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |139 | | |0 | | | | |2 |NULL |An indication of the current status of the NVRAM battery or batteries.&eol;Batteries which are fully or partially discharged may not fully protect the system during a crash. The end-of-life status values are based on the manufacturer's recommended life for the batteries.&eol;Possible values:&eol;ok(1),&eol;partiallyDischarged(2),&eol;fullyDischarged(3),&eol;notPresent(4),&eol;nearEndOfLife(5),&eol;atEndOfLife(6),&eol;unknown(7),&eol;overCharged(8),&eol;fullyCharged(9). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32630 |20 |1.3.6.1.4.1.789.1.25.2.1.5.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Serial number |fas3220.cluster[nodeSerialNumber, "{#NODE.NAME}"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Node Serial Number. Same as productSerialNum for a specific node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32631 |20 |1.3.6.1.4.1.789.1.25.2.1.7.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Uptime |fas3220.cluster[nodeUptime, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Node uptime. Same as sysUpTime for a specific node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32632 |20 |1.3.6.1.4.1.789.1.2.1.14.1.4.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: CPU utilization |fas3220.cpu[cDOTCpuBusyTimePerCent, "{#NODE.NAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |The average, over the last minute, of the percentage of time that this processor was not idle. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32633 |20 |1.3.6.1.4.1.789.1.5.4.1.31.{#SNMPINDEX} |10353 |{#VSERVER}{#FSNAME}: Total space available |fas3220.fs[df64AvailKBytes, "{#VSERVER}{#FSNAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total disk space that is free for use on {#FSNAME}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32634 |20 |1.3.6.1.4.1.789.1.5.4.1.29.{#SNMPINDEX} |10353 |{#VSERVER}{#FSNAME}: Total space |fas3220.fs[df64TotalKBytes, "{#VSERVER}{#FSNAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total capacity in Bytes for {#FSNAME}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32635 |20 |1.3.6.1.4.1.789.1.5.4.1.30.{#SNMPINDEX} |10353 |{#VSERVER}{#FSNAME}: Total space used |fas3220.fs[df64UsedKBytes, "{#VSERVER}{#FSNAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total disk space that is in use on {#FSNAME}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32636 |20 |1.3.6.1.4.1.789.1.5.4.1.38.{#SNMPINDEX} |10353 |{#VSERVER}{#FSNAME}: Saved by compression percents |fas3220.fs[dfCompressSavedPercent, "{#VSERVER}{#FSNAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Provides the percentage of compression savings in a volume, which is ((compr_saved/used)) * 10(compr_saved + 0). This is only returned for volumes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32637 |20 |1.3.6.1.4.1.789.1.5.4.1.40.{#SNMPINDEX} |10353 |{#VSERVER}{#FSNAME}: Saved by deduplication percents |fas3220.fs[dfDedupeSavedPercent, "{#VSERVER}{#FSNAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Provides the percentage of deduplication savings in a volume, which is ((dedup_saved/(dedup_saved + used)) * 100). This is only returned for volumes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32638 |20 |1.3.6.1.4.1.789.1.5.4.1.6.{#SNMPINDEX} |10353 |{#VSERVER}{#FSNAME}: Used space percents |fas3220.fs[dfPerCentKBytesCapacity, "{#VSERVER}{#FSNAME}"] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |The percentage of disk space currently in use on {#FSNAME}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32639 |20 |1.3.6.1.4.1.789.1.21.2.1.5.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Cannot takeover cause |fas3220.ha[haCannotTakeoverCause, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |140 | | |0 | | | | |2 |NULL |The reason node cannot take over it's HA partner {#PARTNER.NAME}.&eol;Possible states:&eol; ok(1),&eol; unknownReason(2),&eol; disabledByOperator(3),&eol; interconnectOffline(4),&eol; disabledByPartner(5),&eol; takeoverFailed(6),&eol; mailboxIsInDegradedState(7),&eol; partnermailboxIsInUninitialisedState(8),&eol; mailboxVersionMismatch(9),&eol; nvramSizeMismatch(10),&eol; kernelVersionMismatch(11),&eol; partnerIsInBootingStage(12),&eol; diskshelfIsTooHot(13),&eol; partnerIsPerformingRevert(14),&eol; nodeIsPerformingRevert(15),&eol; sametimePartnerIsAlsoTryingToTakeUsOver(16),&eol; alreadyInTakenoverMode(17),&eol; nvramLogUnsynchronized(18),&eol; stateofBackupMailboxIsDoubtful(19). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32640 |20 |1.3.6.1.4.1.789.1.21.2.1.3.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: HA settings |fas3220.ha[haSettings, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |141 | | |0 | | | | |2 |NULL |High Availability configuration settings. The value notConfigured(1) indicates that the HA is not licensed. The thisNodeDead(5) setting indicates that this node has been takenover. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32641 |20 |1.3.6.1.4.1.789.1.22.1.2.1.28.{#IFSNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Inbound packets discarded |fas3220.net.if[if64InDiscards, "{#NODE}", "{#IFNAME}"] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of inbound packets that were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32642 |20 |1.3.6.1.4.1.789.1.22.1.2.1.29.{#IFSNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Inbound packets with errors |fas3220.net.if[if64InErrors, "{#NODE}", "{#IFNAME}"] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32643 |20 |1.3.6.1.4.1.789.1.22.1.2.1.25.{#IFSNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Bits received |fas3220.net.if[if64InOctets, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of octets received on the interface, including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32644 |20 |1.3.6.1.4.1.789.1.22.1.2.1.34.{#IFSNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Outbound packets discarded |fas3220.net.if[if64OutDiscards, "{#NODE}", "{#IFNAME}"] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outbound packets that were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32645 |20 |1.3.6.1.4.1.789.1.22.1.2.1.35.{#IFSNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Outbound packets with errors |fas3220.net.if[if64OutErrors, "{#NODE}", "{#IFNAME}"] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outbound packets that could not be transmitted because of errors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32646 |20 |1.3.6.1.4.1.789.1.22.1.2.1.31.{#IFSNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Bits sent |fas3220.net.if[if64OutOctets, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of octets transmitted out of the interface, including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32647 |20 |1.3.6.1.4.1.789.1.22.2.1.32.{#SNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Health degraded reason |fas3220.net.port[netportDegradedReason, "{#NODE}", "{#IFNAME}"] |1m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The list of reasons why the port is marked as degraded. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32648 |20 |1.3.6.1.4.1.789.1.22.2.1.30.{#SNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Health |fas3220.net.port[netportHealthStatus, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |0 | | | | |NULL |143 | | |0 | | | | |2 |NULL |The health status of the port. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32649 |20 |1.3.6.1.4.1.789.1.22.2.1.4.{#SNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): State |fas3220.net.port[netportLinkState, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |3 | | | | |NULL |142 | | |0 | | | | |2 |NULL |The link-state of the port. Normally it is either UP(2) or DOWN(3). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32650 |20 |1.3.6.1.4.1.789.1.22.2.1.3.{#SNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Role |fas3220.net.port[netportRole, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |3 | | | | |NULL |145 | | |0 | | | | |2 |NULL |Role of the port. A port must have one of the following roles: cluster(1), data(2), mgmt(3), intercluster(4), cluster-mgmt(5) or undef(0). The cluster port is used to communicate to other node(s) in the cluster. The data port services clients' requests. It is where all the file requests come in. The management port is used by administrator to manage resources within a node. The intercluster port is used to communicate to other cluster. The cluster-mgmt port is used to manage resources within the cluster. The undef role is for the port that has not yet been assigned a role. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32651 |20 |1.3.6.1.4.1.789.1.22.2.1.11.{#SNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Speed |fas3220.net.port[netportSpeedOper, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |3 | | | | |NULL |147 | | |0 | | | | |2 |NULL |The speed that appears on the port. It can be either undef(0), auto(1), ten Mb/s(2), hundred Mb/s(3), one Gb/s(4), or ten Gb/s(5). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32652 |20 |1.3.6.1.4.1.789.1.22.2.1.14.{#SNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Up by an administrator |fas3220.net.port[netportUpAdmin, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |3 | | | | |NULL |144 | | |0 | | | | |2 |NULL |Indicates whether the port status is set 'UP' by an administrator. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32653 |16 | |10354 |Cache groups |jmx.discovery[beans,"org.apache:group=\"Cache groups\",*"] |10m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32654 |16 | |10354 |Thread pool metrics |jmx.discovery[beans,"org.apache:group=\"Thread Pools\",*"] |10m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32655 |16 | |10354 |Data region metrics |jmx.discovery[beans,"org.apache:group=DataRegionMetrics,*"] |10m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32656 |16 | |10354 |Local node metrics |jmx.discovery[beans,"org.apache:group=Kernal,name=ClusterLocalNodeMetricsMXBeanImpl,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32657 |16 | |10354 |Cluster metrics |jmx.discovery[beans,"org.apache:group=Kernal,name=ClusterMetricsMXBeanImpl,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32658 |16 | |10354 |Ignite kernal metrics |jmx.discovery[beans,"org.apache:group=Kernal,name=IgniteKernal,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32659 |16 | |10354 |TCP Ccmmunication SPI metrics |jmx.discovery[beans,"org.apache:group=SPIs,name=TcpCommunicationSpi,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32660 |16 | |10354 |TCP discovery SPI |jmx.discovery[beans,"org.apache:group=SPIs,name=TcpDiscoverySpi,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32661 |16 | |10354 |Transaction metrics |jmx.discovery[beans,"org.apache:group=TransactionMetrics,name=TransactionMetricsMxBeanImpl,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32662 |16 | |10354 |Cache metrics |jmx.discovery[beans,"org.apache:name=\"org.apache.ignite.internal.processors.cache.CacheLocalMetricsMXBeanImpl\",*"] |10m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32663 |16 | |10354 |Cache group [{#JMXNAME}]: Backups |jmx["{#JMXOBJ}",Backups] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Count of backups configured for cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32664 |16 | |10354 |Cache group [{#JMXNAME}]: Caches |jmx["{#JMXOBJ}",Caches] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |List of caches. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32665 |16 | |10354 |Cache group [{#JMXNAME}]: Local node partitions, moving |jmx["{#JMXOBJ}",LocalNodeMovingPartitionsCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Count of partitions with state MOVING for this cache group located on this node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32666 |16 | |10354 |Cache group [{#JMXNAME}]: Local node partitions, owning |jmx["{#JMXOBJ}",LocalNodeOwningPartitionsCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Count of partitions with state OWNING for this cache group located on this node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32667 |16 | |10354 |Cache group [{#JMXNAME}]: Local node entries, renting |jmx["{#JMXOBJ}",LocalNodeRentingEntriesCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Count of entries remains to evict in RENTING partitions located on this node for this cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32668 |16 | |10354 |Cache group [{#JMXNAME}]: Local node partitions, renting |jmx["{#JMXOBJ}",LocalNodeRentingPartitionsCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Count of partitions with state RENTING for this cache group located on this node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32669 |16 | |10354 |Cache group [{#JMXNAME}]: Partition copies, max |jmx["{#JMXOBJ}",MaximumNumberOfPartitionCopies] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Maximum number of partition copies for all partitions of this cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32670 |16 | |10354 |Cache group [{#JMXNAME}]: Partition copies, min |jmx["{#JMXOBJ}",MinimumNumberOfPartitionCopies] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Minimum number of partition copies for all partitions of this cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32671 |16 | |10354 |Cache group [{#JMXNAME}]: Partitions |jmx["{#JMXOBJ}",Partitions] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Count of partitions for cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32672 |16 | |10354 |Thread pool [{#JMXNAME}]: Pool size, core |jmx["{#JMXOBJ}",CorePoolSize] |1m |7d |365d |0 |3 | |!msg | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The core number of threads. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32673 |16 | |10354 |Thread pool [{#JMXNAME}]: Pool size, max |jmx["{#JMXOBJ}",MaximumPoolSize] |1m |7d |365d |0 |3 | |!msg | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The maximum allowed number of threads. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32674 |16 | |10354 |Thread pool [{#JMXNAME}]: Pool size |jmx["{#JMXOBJ}",PoolSize] |1m |7d |365d |0 |3 | |!msg | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Current number of threads in the pool. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32675 |16 | |10354 |Thread pool [{#JMXNAME}]: Queue size |jmx["{#JMXOBJ}",QueueSize] |1m |7d |365d |0 |3 | |!msg | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Current size of the execution queue. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32676 |16 | |10354 |Data region {#JMXNAME}: Allocation, rate |jmx["{#JMXOBJ}",AllocationRate] |1m |7d |365d |0 |0 | |!pps | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Allocation rate (pages per second) averaged across rateTimeInternal. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32677 |16 | |10354 |Data region {#JMXNAME}: Checkpoint buffer size |jmx["{#JMXOBJ}",CheckpointBufferSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total size in bytes for checkpoint buffer. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32678 |16 | |10354 |Data region {#JMXNAME}: Dirty pages |jmx["{#JMXOBJ}",DirtyPages] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Number of pages in memory not yet synchronized with persistent storage. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32679 |16 | |10354 |Data region {#JMXNAME}: Eviction, rate |jmx["{#JMXOBJ}",EvictionRate] |1m |7d |365d |0 |0 | |!pps | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Eviction rate (pages per second). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32680 |16 | |10354 |Data region {#JMXNAME}: Size, max |jmx["{#JMXOBJ}",MaxSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Maximum memory region size defined by its data region. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32681 |16 | |10354 |Data region {#JMXNAME}: Offheap size |jmx["{#JMXOBJ}",OffHeapSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Offheap size in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32682 |16 | |10354 |Data region {#JMXNAME}: Offheap used size |jmx["{#JMXOBJ}",OffheapUsedSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total used offheap size in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32683 |16 | |10354 |Data region {#JMXNAME}: Pages fill factor |jmx["{#JMXOBJ}",PagesFillFactor] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The percentage of the used space. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32684 |16 | |10354 |Data region {#JMXNAME}: Pages replace, rate |jmx["{#JMXOBJ}",PagesReplaceRate] |1m |7d |365d |0 |0 | |!pps | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Rate at which pages in memory are replaced with pages from persistent storage (pages per second). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32685 |16 | |10354 |Data region {#JMXNAME}: Allocated, bytes |jmx["{#JMXOBJ}",TotalAllocatedSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total size of memory allocated in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32686 |16 | |10354 |Data region {#JMXNAME}: Used checkpoint buffer size |jmx["{#JMXOBJ}",UsedCheckpointBufferSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Used checkpoint buffer size in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32687 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs active, current |jmx["{#JMXOBJ}",CurrentActiveJobs] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Number of currently active jobs concurrently executing on the node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32688 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, current |jmx["{#JMXOBJ}",CurrentCancelledJobs] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Number of cancelled jobs that are still running. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32689 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: PME duration, current |jmx["{#JMXOBJ}",CurrentPmeDuration] |1m |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Current PME duration in milliseconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32690 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs rejected, current |jmx["{#JMXOBJ}",CurrentRejectedJobs] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Number of jobs rejected after more recent collision resolution operation. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32691 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Threads count, current |jmx["{#JMXOBJ}",CurrentThreadCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Current number of live threads. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32692 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs waiting, current |jmx["{#JMXOBJ}",CurrentWaitingJobs] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Number of queued jobs currently waiting to be executed. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32693 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Heap memory used |jmx["{#JMXOBJ}",HeapMemoryUsed] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Current heap size that is used for object allocation. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32694 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, rate |jmx["{#JMXOBJ}",TotalCancelledJobs] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total number of jobs cancelled by the node per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32695 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs executed, rate |jmx["{#JMXOBJ}",TotalExecutedJobs] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total number of jobs handled by the node per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32696 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs rejects, rate |jmx["{#JMXOBJ}",TotalRejectedJobs] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total number of jobs this node rejects during collision resolution operations since node startup per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32697 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Active baseline |jmx["{#JMXOBJ}",ActiveBaselineNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of nodes that are currently active in the baseline topology. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32698 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Baseline |jmx["{#JMXOBJ}",TotalBaselineNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total baseline nodes that are registered in the baseline topology. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32699 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Client |jmx["{#JMXOBJ}",TotalClientNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of client nodes in the cluster. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32700 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, total |jmx["{#JMXOBJ}",TotalNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total number of nodes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32701 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Server |jmx["{#JMXOBJ}",TotalServerNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of server nodes in the cluster. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32702 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Version |jmx["{#JMXOBJ}",FullVersion] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Version of Ignite instance. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32703 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Local node ID |jmx["{#JMXOBJ}",LocalNodeId] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Unique identifier for this node within grid. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32704 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Uptime |jmx["{#JMXOBJ}",UpTime] |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Uptime of Ignite instance. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32705 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Communication outbound messages queue |jmx["{#JMXOBJ}",OutboundMessagesQueueSize] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Outbound messages queue size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32706 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Communication messages received, rate |jmx["{#JMXOBJ}",ReceivedMessagesCount] |1m |7d |365d |0 |0 | |!msg/s | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of messages received per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32708 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Communication messages sent, rate |jmx["{#JMXOBJ}",SentMessagesCount] |1m |7d |365d |0 |0 | |!msg/s | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of messages sent per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32709 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Coordinator |jmx["{#JMXOBJ}",Coordinator] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Current coordinator UUID. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32710 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Discovery message worker queue |jmx["{#JMXOBJ}",MessageWorkerQueueSize] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Message worker queue current size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32711 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes failed |jmx["{#JMXOBJ}",NodesFailed] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Nodes failed count. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32712 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes joined |jmx["{#JMXOBJ}",NodesJoined] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Nodes join count. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32713 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes left |jmx["{#JMXOBJ}",NodesLeft] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Nodes left count. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32714 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Discovery reconnect, rate |jmx["{#JMXOBJ}",ReconnectCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Number of times node tries to (re)establish connection to another node per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32715 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: TotalProcessedMessages |jmx["{#JMXOBJ}",TotalProcessedMessages] |1m |7d |365d |0 |0 | |!msg/s | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of messages received per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32716 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Discovery messages received, rate |jmx["{#JMXOBJ}",TotalReceivedMessages] |1m |7d |365d |0 |0 | |!msg/s | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of messages processed per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32717 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Locked keys |jmx["{#JMXOBJ}",LockedKeysNumber] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of keys locked on the node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32718 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions owner, current |jmx["{#JMXOBJ}",OwnerTransactionsNumber] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of active transactions for which this node is the initiator. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32719 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions committed, rate |jmx["{#JMXOBJ}",TransactionsCommittedNumber] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of transactions which were committed per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32720 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions holding lock, current |jmx["{#JMXOBJ}",TransactionsHoldingLockNumber] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of active transactions holding at least one key lock. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32721 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions rolledback, rate |jmx["{#JMXOBJ}",TransactionsRolledBackNumber] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of transactions which were rollback per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32722 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache gets, rate |jmx["{#JMXOBJ}",CacheGets] |1m |7d |365d |0 |0 | |ops | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of gets to the cache per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32723 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache hits, pct |jmx["{#JMXOBJ}",CacheHitPercentage] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Percentage of successful hits. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32724 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache misses, pct |jmx["{#JMXOBJ}",CacheMissPercentage] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Percentage of accesses that failed to find anything. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32725 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache puts, rate |jmx["{#JMXOBJ}",CachePuts] |1m |7d |365d |0 |0 | |ops | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of puts to the cache per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32726 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache removals, rate |jmx["{#JMXOBJ}",CacheRemovals] |1m |7d |365d |0 |0 | |ops | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of removals from the cache per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32727 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache size |jmx["{#JMXOBJ}",CacheSize] |1m |7d |365d |0 |3 | |!keys | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of non-null values in the cache as a long value. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32728 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache transaction commits, rate |jmx["{#JMXOBJ}",CacheTxCommits] |1m |7d |365d |0 |0 | |!tps | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of transaction commits per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32729 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache transaction rollbacks, rate |jmx["{#JMXOBJ}",CacheTxRollbacks] |1m |7d |365d |0 |0 | |!tps | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of transaction rollback per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32730 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache heap entries |jmx["{#JMXOBJ}",HeapEntriesCount] |1m |7d |365d |0 |3 | |!keys | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of entries in heap memory. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32731 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery System |tempDescr.discovery.system |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with system(3) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32732 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |{#SNMPINDEX}: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32733 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |Ambient: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition.Ambient.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32734 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |CPU-{#SNMPINDEX}: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition.CPU.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32735 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |I/O-{#SNMPINDEX}: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition."I/O.{#SNMPINDEX}"] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32736 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |I/O-{#SNMPINDEX}: Temperature |sensor.temp.value[cpqHeTemperatureCelsius."I/O.{#SNMPINDEX}"] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: I/O-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32737 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |Memory-{#SNMPINDEX}: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition.Memory.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32738 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |PSU-{#SNMPINDEX}: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition.PSU.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32739 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |System-{#SNMPINDEX}: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition.System.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32740 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |System-{#SNMPINDEX}: Temperature |sensor.temp.value[cpqHeTemperatureCelsius.System.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: System-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32741 |0 | |10355 |SMART: Get attributes |smart.disk.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32742 |0 | |10355 |Attribute discovery |smart.attribute.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery SMART Vendor Specific Attributes of disks. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32743 |0 | |10355 |Disk discovery |smart.disk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery SMART disks. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32753 |7 | |10356 |SMART: Get attributes |smart.disk.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32754 |7 | |10356 |Attribute discovery |smart.attribute.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery SMART Vendor Specific Attributes of disks. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32755 |7 | |10356 |Disk discovery |smart.disk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery SMART disks. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32776 |20 |1.3.6.1.4.1.34774.4.1.1.3.0 |10357 |OceanStor 5300 V5: Status |huawei.5300.v5[status] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System running status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32777 |20 |1.3.6.1.4.1.34774.4.1.1.5.0 |10357 |OceanStor 5300 V5: Capacity total |huawei.5300.v5[totalCapacity] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total capacity of a device. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32778 |20 |1.3.6.1.4.1.34774.4.1.1.4.0 |10357 |OceanStor 5300 V5: Capacity used |huawei.5300.v5[usedCapacity] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Used capacity of a device. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32779 |20 |1.3.6.1.4.1.34774.4.1.1.6.0 |10357 |OceanStor 5300 V5: Version |huawei.5300.v5[version] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The device version. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32780 |20 |discovery[{#ID},1.3.6.1.4.1.34774.4.1.23.5.5.1.1,{#LOCATION},1.3.6.1.4.1.34774.4.1.23.5.5.1.2] |10357 |BBU discovery |huawei.5300.bbu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of BBU |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32781 |20 |discovery[{#ID},1.3.6.1.4.1.34774.4.1.23.5.2.1.1] |10357 |Controllers discovery |huawei.5300.controllers.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of controllers |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32782 |20 |discovery[{#ID},1.3.6.1.4.1.34774.4.1.23.5.1.1.1,{#MODEL},1.3.6.1.4.1.34774.4.1.23.5.1.1.12,{#LOCATION},1.3.6.1.4.1.34774.4.1.23.5.1.1.4] |10357 |Disks discovery |huawei.5300.disks.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of disks |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32783 |20 |discovery[{#NAME},1.3.6.1.4.1.34774.4.1.23.5.6.1.2] |10357 |Enclosure discovery |huawei.5300.enclosure.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of enclosures |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32784 |20 |discovery[{#ID},1.3.6.1.4.1.34774.4.1.23.5.4.1.1,{#LOCATION},1.3.6.1.4.1.34774.4.1.23.5.4.1.2] |10357 |FANs discovery |huawei.5300.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of FANs |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32785 |20 |discovery[{#NAME},1.3.6.1.4.1.34774.4.1.19.9.4.1.2] |10357 |LUNs discovery |huawei.5300.lun.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of LUNs |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32786 |20 |discovery[{#NODE},1.3.6.1.4.1.34774.4.1.21.3.1.1] |10357 |Nodes performance discovery |huawei.5300.nodes.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of nodes performance counters |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32787 |20 |discovery[{#NAME},1.3.6.1.4.1.34774.4.1.23.4.2.1.2,{#THRESHOLD},1.3.6.1.4.1.34774.4.1.23.4.2.1.14] |10357 |Storage pools discovery |huawei.5300.pool.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of storage pools |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32788 |20 |1.3.6.1.4.1.34774.4.1.23.5.5.1.3.{#SNMPINDEX} |10357 |BBU {#ID} on {#LOCATION}: Health status |huawei.5300.v5[hwInfoBBUHealthStatus, "{#ID}:{#LOCATION}"] |1m |7d |365d |0 |3 | | | | |NULL |150 | | |0 | | | | |2 |NULL |Health status of a BBU. For details, see definition of Enum Values (HEALTH_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32789 |20 |1.3.6.1.4.1.34774.4.1.23.5.5.1.4.{#SNMPINDEX} |10357 |BBU {#ID} on {#LOCATION}: Running status |huawei.5300.v5[hwInfoBBURunningStatus, "{#ID}:{#LOCATION}"] |1m |7d |365d |0 |3 | | | | |NULL |152 | | |0 | | | | |2 |NULL |Running status of a BBU. For details, see definition of Enum Values (RUNNING_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32790 |20 |1.3.6.1.4.1.34774.4.1.23.5.2.1.8.{#SNMPINDEX} |10357 |Controller {#ID}: CPU utilization |huawei.5300.v5[hwInfoControllerCPUUsage, "{#ID}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |CPU usage of a controller {#ID}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32791 |20 |1.3.6.1.4.1.34774.4.1.23.5.2.1.2.{#SNMPINDEX} |10357 |Controller {#ID}: Health status |huawei.5300.v5[hwInfoControllerHealthStatus, "{#ID}"] |1m |7d |365d |0 |3 | | | | |NULL |150 | | |0 | | | | |2 |NULL |Controller health status. For details, see definition of Enum Values (HEALTH_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32792 |20 |1.3.6.1.4.1.34774.4.1.23.5.2.1.9.{#SNMPINDEX} |10357 |Controller {#ID}: Memory utilization |huawei.5300.v5[hwInfoControllerMemoryUsage, "{#ID}"] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Memory usage of a controller {#ID}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32793 |20 |1.3.6.1.4.1.34774.4.1.23.5.2.1.6.{#SNMPINDEX} |10357 |Controller {#ID}: Role |huawei.5300.v5[hwInfoControllerRole, "{#ID}"] |1m |7d |365d |0 |3 | | | | |NULL |149 | | |0 | | | | |2 |NULL |Controller role.. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32794 |20 |1.3.6.1.4.1.34774.4.1.23.5.2.1.3.{#SNMPINDEX} |10357 |Controller {#ID}: Running status |huawei.5300.v5[hwInfoControllerRunningStatus, "{#ID}"] |1m |7d |365d |0 |3 | | | | |NULL |152 | | |0 | | | | |2 |NULL |Controller running status. For details, see definition of Enum Values (RUNNING_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32795 |20 |1.3.6.1.4.1.34774.4.1.23.5.1.1.25.{#SNMPINDEX} |10357 |Disk {#MODEL} on {#LOCATION}: Health score |huawei.5300.v5[hwInfoDiskHealthMark, "{#ID}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Health score of a disk. If the value is 255, indicating invalid. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32796 |20 |1.3.6.1.4.1.34774.4.1.23.5.1.1.2.{#SNMPINDEX} |10357 |Disk {#MODEL} on {#LOCATION}: Health status |huawei.5300.v5[hwInfoDiskHealthStatus, "{#ID}"] |1m |7d |365d |0 |3 | | | | |NULL |150 | | |0 | | | | |2 |NULL |Disk health status. For details, see definition of Enum Values (HEALTH_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32797 |20 |1.3.6.1.4.1.34774.4.1.23.5.1.1.3.{#SNMPINDEX} |10357 |Disk {#MODEL} on {#LOCATION}: Running status |huawei.5300.v5[hwInfoDiskRunningStatus, "{#ID}"] |1m |7d |365d |0 |3 | | | | |NULL |152 | | |0 | | | | |2 |NULL |Disk running status. For details, see definition of Enum Values (RUNNING_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32798 |20 |1.3.6.1.4.1.34774.4.1.23.5.1.1.11.{#SNMPINDEX} |10357 |Disk {#MODEL} on {#LOCATION}: Temperature |huawei.5300.v5[hwInfoDiskTemperature, "{#ID}"] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |Disk temperature. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32799 |20 |1.3.6.1.4.1.34774.4.1.23.5.6.1.4.{#SNMPINDEX} |10357 |Enclosure {#NAME}: Health status |huawei.5300.v5[hwInfoEnclosureHealthStatus, "{#NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |150 | | |0 | | | | |2 |NULL |Enclosure health status. For details, see definition of Enum Values (HEALTH_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32800 |20 |1.3.6.1.4.1.34774.4.1.23.5.6.1.5.{#SNMPINDEX} |10357 |Enclosure {#NAME}: Running status |huawei.5300.v5[hwInfoEnclosureRunningStatus, "{#NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |152 | | |0 | | | | |2 |NULL |Enclosure running status. For details, see definition of Enum Values (RUNNING_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32801 |20 |1.3.6.1.4.1.34774.4.1.23.5.6.1.8.{#SNMPINDEX} |10357 |Enclosure {#NAME}: Temperature |huawei.5300.v5[hwInfoEnclosureTemperature, "{#NAME}"] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |Enclosure temperature. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32802 |20 |1.3.6.1.4.1.34774.4.1.23.5.4.1.3.{#SNMPINDEX} |10357 |FAN {#ID} on {#LOCATION}: Health status |huawei.5300.v5[hwInfoFanHealthStatus, "{#ID}:{#LOCATION}"] |1m |7d |365d |0 |3 | | | | |NULL |150 | | |0 | | | | |2 |NULL |Health status of a fan. For details, see definition of Enum Values (HEALTH_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32803 |20 |1.3.6.1.4.1.34774.4.1.23.5.4.1.4.{#SNMPINDEX} |10357 |FAN {#ID} on {#LOCATION}: Running status |huawei.5300.v5[hwInfoFanRunningStatus, "{#ID}:{#LOCATION}"] |1m |7d |365d |0 |3 | | | | |NULL |152 | | |0 | | | | |2 |NULL |Operating status of a fan. For details, see definition of Enum Values (RUNNING_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32804 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.13.{#SNMPINDEX} |10357 |LUN {#NAME}: Average total I/O latency |huawei.5300.v5[hwPerfLunAverageIOResponseTime, "{#NAME}"] |1m |7d |365d |0 |3 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Average I/O latency of the node in milliseconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32805 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.15.{#SNMPINDEX} |10357 |LUN {#NAME}: Average read I/O latency |huawei.5300.v5[hwPerfLunAverageReadIOLatency, "{#NAME}"] |1m |7d |365d |0 |3 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Average read I/O response time in milliseconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32806 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.16.{#SNMPINDEX} |10357 |LUN {#NAME}: Average write I/O latency |huawei.5300.v5[hwPerfLunAverageWriteIOLatency, "{#NAME}"] |1m |7d |365d |0 |3 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Average write I/O response time in milliseconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32807 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.4.{#SNMPINDEX} |10357 |LUN {#NAME}: Read operations per second |huawei.5300.v5[hwPerfLunReadIOPS, "{#NAME}"] |1m |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |Read IOPS of the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32808 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.7.{#SNMPINDEX} |10357 |LUN {#NAME}: Read traffic per second |huawei.5300.v5[hwPerfLunReadTraffic, "{#NAME}"] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Current read bandwidth for the LUN. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32809 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.3.{#SNMPINDEX} |10357 |LUN {#NAME}: Total I/O per second |huawei.5300.v5[hwPerfLunTotalIOPS, "{#NAME}"] |1m |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |Current IOPS of the LUN. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32810 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.6.{#SNMPINDEX} |10357 |LUN {#NAME}: Total traffic per second |huawei.5300.v5[hwPerfLunTotalTraffic, "{#NAME}"] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Current total bandwidth for the LUN. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32811 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.5.{#SNMPINDEX} |10357 |LUN {#NAME}: Write operations per second |huawei.5300.v5[hwPerfLunWriteIOPS, "{#NAME}"] |1m |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |Write IOPS of the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32812 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.8.{#SNMPINDEX} |10357 |LUN {#NAME}: Write traffic per second |huawei.5300.v5[hwPerfLunWriteTraffic, "{#NAME}"] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Current write bandwidth for the LUN. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32813 |20 |1.3.6.1.4.1.34774.4.1.19.9.4.1.5.{#SNMPINDEX} |10357 |LUN {#NAME}: Capacity |huawei.5300.v5[hwStorageLunCapacity, "{#NAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Capacity of the LUN. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32814 |20 |1.3.6.1.4.1.34774.4.1.19.9.4.1.11.{#SNMPINDEX} |10357 |LUN {#NAME}: Status |huawei.5300.v5[hwStorageLunStatus, "{#NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |151 | | |0 | | | | |2 |NULL |Status of the LUN. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32815 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.2.{#SNMPINDEX} |10357 |Node {#NODE}: CPU utilization |huawei.5300.v5[hwPerfNodeCPUUsage, "{#NODE}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |CPU usage of the node {#NODE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32816 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.4.{#SNMPINDEX} |10357 |Node {#NODE}: Average I/O latency |huawei.5300.v5[hwPerfNodeDelay, "{#NODE}"] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Average I/O latency of the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32817 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.6.{#SNMPINDEX} |10357 |Node {#NODE}: Read operations per second |huawei.5300.v5[hwPerfNodeReadIOPS, "{#NODE}"] |1m |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |Read IOPS of the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32818 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.9.{#SNMPINDEX} |10357 |Node {#NODE}: Read traffic per second |huawei.5300.v5[hwPerfNodeReadTraffic, "{#NODE}"] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Read bandwidth for the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32819 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.5.{#SNMPINDEX} |10357 |Node {#NODE}: Total I/O per second |huawei.5300.v5[hwPerfNodeTotalIOPS, "{#NODE}"] |1m |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |Total IOPS of the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32820 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.8.{#SNMPINDEX} |10357 |Node {#NODE}: Total traffic per second |huawei.5300.v5[hwPerfNodeTotalTraffic, "{#NODE}"] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Total bandwidth for the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32821 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.7.{#SNMPINDEX} |10357 |Node {#NODE}: Write operations per second |huawei.5300.v5[hwPerfNodeWriteIOPS, "{#NODE}"] |1m |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |Write IOPS of the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32822 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.7.{#SNMPINDEX} |10357 |Node {#NODE}: Write traffic per second |huawei.5300.v5[hwPerfNodeWriteTraffic, "{#NODE}"] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Write bandwidth for the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32823 |20 |1.3.6.1.4.1.34774.4.1.23.4.2.1.9.{#SNMPINDEX} |10357 |Pool {#NAME}: Capacity free |huawei.5300.v5[hwInfoStoragePoolFreeCapacity, "{#NAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Available capacity of a storage pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32824 |15 | |10357 |Pool {#NAME}: Capacity used percentage |huawei.5300.v5[hwInfoStoragePoolFreeCapacityPct, "{#NAME}"] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last("huawei.5300.v5[hwInfoStoragePoolSubscribedCapacity, \"{#NAME}\"]")/last("huawei.5300.v5[hwInfoStoragePoolTotalCapacity, \"{#NAME}\"]")*100 | |0 | | | | |2 |NULL |Used capacity of a storage pool in percents. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32825 |20 |1.3.6.1.4.1.34774.4.1.23.4.2.1.5.{#SNMPINDEX} |10357 |Pool {#NAME}: Health status |huawei.5300.v5[hwInfoStoragePoolHealthStatus, "{#NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |150 | | |0 | | | | |2 |NULL |Health status of a storage pool. For details, see definition of Enum Values (HEALTH_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32826 |20 |1.3.6.1.4.1.34774.4.1.23.4.2.1.6.{#SNMPINDEX} |10357 |Pool {#NAME}: Running status |huawei.5300.v5[hwInfoStoragePoolRunningStatus, "{#NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |152 | | |0 | | | | |2 |NULL |Operating status of a storage pool. For details, see definition of Enum Values (RUNNING_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32827 |20 |1.3.6.1.4.1.34774.4.1.23.4.2.1.8.{#SNMPINDEX} |10357 |Pool {#NAME}: Capacity used |huawei.5300.v5[hwInfoStoragePoolSubscribedCapacity, "{#NAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Used capacity of a storage pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32828 |20 |1.3.6.1.4.1.34774.4.1.23.4.2.1.7.{#SNMPINDEX} |10357 |Pool {#NAME}: Capacity total |huawei.5300.v5[hwInfoStoragePoolTotalCapacity, "{#NAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total capacity of a storage pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32829 |0 | |10358 |RabbitMQ: Get overview |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/overview"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32830 |0 | |10358 |RabbitMQ: Get exchanges |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/exchanges"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns exchanges metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32831 |0 | |10359 |RabbitMQ: Service response time |net.tcp.service.perf[http,"{$RABBITMQ.API.HOST}","{$RABBITMQ.API.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32832 |0 | |10359 |RabbitMQ: Service ping |net.tcp.service[http,"{$RABBITMQ.API.HOST}","{$RABBITMQ.API.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32833 |0 | |10359 |RabbitMQ: Get node overview |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/overview"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32834 |0 | |10359 |RabbitMQ: Get nodes |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/nodes/{$RABBITMQ.CLUSTER.NAME}@{HOST.NAME}?memory=true"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns nodes metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32835 |0 | |10359 |RabbitMQ: Get queues |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/queues"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns queues metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32836 |0 | |10359 |RabbitMQ: Number of processes running |proc.num["{$RABBITMQ.PROCESS_NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32837 |0 | |10359 |RabbitMQ: CPU utilization |proc.cpu.util["{$RABBITMQ.PROCESS_NAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Process CPU utilization percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32838 |0 | |10359 |RabbitMQ: Memory usage (rss) |proc.mem["{$RABBITMQ.PROCESS_NAME}",,,,rss] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Resident set size memory used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32839 |0 | |10359 |RabbitMQ: Memory usage (vsize) |proc.mem["{$RABBITMQ.PROCESS_NAME}",,,,vsize] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Virtual memory size used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32884 |0 | |10358 |RabbitMQ: Healthcheck: alarms in effect in the cluster{#SINGLETON} |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/health/checks/alarms{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |0 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Responds a 200 OK if there are no alarms in effect in the cluster, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/alarms | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
+ROW |32885 |0 | |10359 |RabbitMQ: Healthcheck{#SINGLETON} |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/healthchecks/node{#SINGLETON}"] |1m |7h |365d |0 |3 | | | | |NULL |82 | | |0 | | | | |2 |NULL |Runs basic healthchecks in the current node. Checks that the rabbit application is running, channels and queues can be listed successfully, and that no alarms are in effect. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32886 |0 | |10359 |RabbitMQ: Healthcheck: expiration date on the certificates{#SINGLETON} |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/certificate-expiration/1/months{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |0 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Checks the expiration date on the certificates for every listener configured to use TLS. Responds a 200 OK if all certificates are valid (have not expired), otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s | | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
+ROW |32887 |0 | |10359 |RabbitMQ: Healthcheck: local alarms in effect on the this node{#SINGLETON} |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/local-alarms{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |0 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Responds a 200 OK if there are no local alarms in effect on the target node, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s | | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
+ROW |32888 |0 | |10359 |RabbitMQ: Healthcheck: classic mirrored queues without synchronised mirrors online{#SINGLETON} |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/node-is-mirror-sync-critical{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |0 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Checks if there are classic mirrored queues without synchronised mirrors online (queues that would potentially lose data if the target node is shut down). Responds a 200 OK if there are no such classic mirrored queues, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s | | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
+ROW |32889 |0 | |10359 |RabbitMQ: Healthcheck: queues with minimum online quorum{#SINGLETON} |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/node-is-quorum-critical{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |0 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Checks if there are quorum queues with minimum online quorum (queues that would lose their quorum and availability if the target node is shut down). Responds a 200 OK if there are no such quorum queues, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s | | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
+ROW |32890 |0 | |10359 |RabbitMQ: Healthcheck: virtual hosts on the this node{#SINGLETON} |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/virtual-hosts{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |0 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Responds a 200 OK if all virtual hosts and running on the target node, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s | | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
+ROW |32925 |19 | |10360 |RabbitMQ: Get exchanges |rabbitmq.get_exchanges |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns exchanges metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/exchanges | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32926 |19 | |10360 |RabbitMQ: Get overview |rabbitmq.get_overview |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/overview | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32927 |3 | |10361 |RabbitMQ: Service response time |net.tcp.service.perf[http,"{HOST.CONN}","{$RABBITMQ.API.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32928 |19 | |10361 |RabbitMQ: Get nodes |rabbitmq.get_nodes |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns nodes metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/nodes/{$RABBITMQ.CLUSTER.NAME}@{HOST.NAME}?memory=true| | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32929 |19 | |10361 |RabbitMQ: Get node overview |rabbitmq.get_node_overview |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/overview | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32930 |19 | |10361 |RabbitMQ: Get queues |rabbitmq.get_queues |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns queues metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/queues | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32931 |3 | |10361 |RabbitMQ: Service ping |net.tcp.service[http,"{HOST.CONN}","{$RABBITMQ.API.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32976 |19 | |10360 |RabbitMQ: Healthcheck: alarms in effect in the cluster{#SINGLETON} |rabbitmq.healthcheck.alarms[{#SINGLETON}] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Responds a 200 OK if there are no alarms in effect in the cluster, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/alarms | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
+ROW |32977 |19 | |10361 |RabbitMQ: Healthcheck{#SINGLETON} |rabbitmq.healthcheck[{#SINGLETON}] |1m |7h |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Runs basic healthchecks in the current node. Checks that the rabbit application is running, channels and queues can be listed successfully, and that no alarms are in effect. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/healthchecks/node | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32978 |19 | |10361 |RabbitMQ: Healthcheck: expiration date on the certificates{#SINGLETON} |rabbitmq.healthcheck.certificate_expiration[{#SINGLETON}] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Checks the expiration date on the certificates for every listener configured to use TLS. Responds a 200 OK if all certificates are valid (have not expired), otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/certificate-expiration/1/months | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
+ROW |32979 |19 | |10361 |RabbitMQ: Healthcheck: local alarms in effect on the this node{#SINGLETON} |rabbitmq.healthcheck.local_alarms[{#SINGLETON}] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Responds a 200 OK if there are no local alarms in effect on the target node, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/local-alarms | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
+ROW |32980 |19 | |10361 |RabbitMQ: Healthcheck: classic mirrored queues without synchronised mirrors online{#SINGLETON} |rabbitmq.healthcheck.mirror_sync[{#SINGLETON}] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Checks if there are classic mirrored queues without synchronised mirrors online (queues that would potentially lose data if the target node is shut down). Responds a 200 OK if there are no such classic mirrored queues, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/node-is-mirror-sync-critical | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
+ROW |32981 |19 | |10361 |RabbitMQ: Healthcheck: queues with minimum online quorum{#SINGLETON} |rabbitmq.healthcheck.quorum[{#SINGLETON}] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Checks if there are quorum queues with minimum online quorum (queues that would lose their quorum and availability if the target node is shut down). Responds a 200 OK if there are no such quorum queues, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/node-is-quorum-critical | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
+ROW |32982 |19 | |10361 |RabbitMQ: Healthcheck: virtual hosts on the this node{#SINGLETON} |rabbitmq.healthcheck.virtual_hosts[{#SINGLETON}] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Responds a 200 OK if all virtual hosts and running on the target node, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/virtual-hosts | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
+ROW |33017 |0 | |10362 |MongoDB: Get server status |mongodb.server.status["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns a database’s state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33018 |0 | |10362 |MongoDB: Get Replica Set status |mongodb.rs.status["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns the replica set status from the point of view of the member where the method is run. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33019 |0 | |10362 |MongoDB: Ping |mongodb.ping["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30s |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Test if a connection is alive or not. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33020 |0 | |10362 |MongoDB: Get oplog stats |mongodb.oplog.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns status of the replica set, using data polled from the oplog. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33021 |0 | |10362 |MongoDB: Get collections usage stats |mongodb.collections.usage["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns usage statistics for each collection. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33061 |0 | |10362 |Collection discovery |mongodb.collections.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Collect collections metrics.&eol;Note, depending on the number of DBs and collections this discovery operation may be expensive. Use filters with macros {$MONGODB.LLD.FILTER.DB.MATCHES}, {$MONGODB.LLD.FILTER.DB.NOT_MATCHES}, {$MONGODB.LLD.FILTER.COLLECTION.MATCHES}, {$MONGODB.LLD.FILTER.COLLECTION.NOT_MATCHES}. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33062 |0 | |10362 |Database discovery |mongodb.db.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Collect database metrics.&eol;Note, depending on the number of DBs this discovery operation may be expensive. Use filters with macros {$MONGODB.LLD.FILTER.DB.MATCHES}, {$MONGODB.LLD.FILTER.DB.NOT_MATCHES}. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33065 |0 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Get collection stats {#DBNAME}.{#COLLECTION} |mongodb.collection.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}","{#DBNAME}","{#COLLECTION}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Returns a variety of storage statistics for a given collection. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33066 |0 | |10362 |MongoDB {#DBNAME}: Get db stats {#DBNAME} |mongodb.db.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}","{#DBNAME}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Returns statistics reflecting the database system’s state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33139 |0 | |10363 |MongoDB cluster: Jumbo chunks |mongodb.jumbo_chunks.count["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of 'jumbo' chunks in the mongo cluster. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33140 |0 | |10363 |MongoDB cluster: Get server status |mongodb.server.status["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The mongos statistic |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33141 |0 | |10363 |MongoDB cluster: Ping |mongodb.ping["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30s |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Test if a connection is alive or not. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33142 |0 | |10363 |MongoDB cluster: Get mongodb.connpool.stats |mongodb.connpool.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns current info about connpool.stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33173 |0 | |10363 |Config servers discovery |mongodb.cfg.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery shared cluster config servers. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33174 |0 | |10363 |Collection discovery |mongodb.collections.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Collect collections metrics.&eol;Note, depending on the number of DBs and collections this discovery operation may be expensive. Use filters with macros {$MONGODB.LLD.FILTER.DB.MATCHES}, {$MONGODB.LLD.FILTER.DB.NOT_MATCHES}, {$MONGODB.LLD.FILTER.COLLECTION.MATCHES}, {$MONGODB.LLD.FILTER.COLLECTION.NOT_MATCHES}. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33175 |0 | |10363 |Database discovery |mongodb.db.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Collect database metrics.&eol;Note, depending on the number of DBs this discovery operation may be expensive. Use filters with macros {$MONGODB.LLD.FILTER.DB.MATCHES}, {$MONGODB.LLD.FILTER.DB.NOT_MATCHES}. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33176 |0 | |10363 |Shards discovery |mongodb.sh.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery shared cluster hosts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33177 |0 | |10363 |MongoDB {#DBNAME}.{#COLLECTION}: Get collection stats {#DBNAME}.{#COLLECTION} |mongodb.collection.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}","{#DBNAME}","{#COLLECTION}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Returns a variety of storage statistics for a given collection. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33178 |0 | |10363 |MongoDB {#DBNAME}: Get db stats {#DBNAME} |mongodb.db.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}","{#DBNAME}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Returns statistics reflecting the database system’s state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33194 |11 | |10327 |MSSQL AG '{#GROUP_NAME}' Non-Local DB '*{#REPLICA_NAME}*{#DBNAME}': Get non-local DB states |db.odbc.get["{#GROUP_NAME}*{#REPLICA_NAME}*{#DBNAME}_non-local_db.states","{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT drs.log_send_queue_size as log_send_queue_size,&bsn;drs.redo_queue_size as redo_queue_size,&bsn;ag.name as group_name,&bsn;arcs.replica_server_name as replica_name,&bsn;db_name(drs.database_id) as dbname&bsn;FROM sys.dm_hadr_database_replica_states drs &bsn;JOIN sys.dm_hadr_availability_replica_cluster_states arcs ON arcs.replica_id = drs.replica_id &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id &bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting the states of the non-local availability database. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33197 |3 | |10366 |ICMP ping |icmpping |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33198 |3 | |10366 |ICMP loss |icmppingloss |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33199 |3 | |10366 |ICMP response time |icmppingsec |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33200 |17 | |10366 |SNMP traps (fallback) |snmptrap.fallback |1m |7d |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33201 |20 |1.3.6.1.2.1.1.4.0 |10366 |System contact details |system.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33202 |20 |1.3.6.1.2.1.1.1.0 |10366 |System description |system.descr |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;A textual description of the entity. This value should&bsn;include the full name and version identification of the system's hardware type, software operating-system, and&bsn;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33203 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10366 |Hardware model name |system.hw.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33204 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10366 |Hardware serial number |system.hw.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33205 |20 |1.3.6.1.2.1.1.6.0 |10366 |System location |system.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33206 |20 |1.3.6.1.2.1.1.5.0 |10366 |System name |system.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33207 |20 |1.3.6.1.2.1.1.2.0 |10366 |System object ID |system.objectid |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33208 |20 |1.3.6.1.2.1.1.1.0 |10366 |Operating system |system.sw.os |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33209 |20 |1.3.6.1.2.1.1.3.0 |10366 |Uptime |system.uptime |1m |7d |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33210 |5 | |10366 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33211 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10366 |CPU discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&bsn;indexed with cpmCPUTotalIndex .&bsn;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&bsn;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&bsn;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33212 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10366 |Entity Serial Numbers discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33213 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2] |10366 |FAN discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of fan status maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33214 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10366 |Memory discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.&bsn;http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33215 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10366 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33216 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10366 |EtherLike discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33217 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2] |10366 |PSU discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of power supply status maintained by the environmental monitor card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33218 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10366 |Temperature discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status&bsn;maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33219 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10366 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&bsn;Object name: cpmCPUTotal5minRev&bsn;The cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33220 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10366 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&bsn;Object name: entPhysicalSerialNum |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33221 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10366 |{#SNMPVALUE}: Fan status |sensor.fan.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonFanState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33222 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10366 |{#SNMPVALUE}: Free memory |vm.memory.free[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&bsn;Object name: ciscoMemoryPoolFree&bsn;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33223 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10366 |{#SNMPVALUE}: Used memory |vm.memory.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&bsn;Object name: ciscoMemoryPoolUsed&bsn;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33224 |15 | |10366 |{#SNMPVALUE}: Memory utilization |vm.memory.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[{#SNMPINDEX}]")/(last("vm.memory.free[{#SNMPINDEX}]")+last("vm.memory.used[{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33225 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The number of inbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33226 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33227 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33228 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The number of outbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33229 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33230 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33231 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33232 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The current operational state of the interface.&bsn;- The testing(3) state indicates that no operational packet scan be passed&bsn;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&bsn;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&bsn;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&bsn;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&bsn;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33233 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The type of interface.&bsn;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&bsn;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33234 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&bsn;Object name: dot3StatsDuplexStatus&bsn;The current mode of operation of the MAC&bsn;entity. 'unknown' indicates that the current&bsn;duplex mode could not be determined.&bsn;&bsn;Management control of the duplex mode is&bsn;accomplished through the MAU MIB. When&bsn;an interface does not support autonegotiation,&bsn;or when autonegotiation is not enabled, the&bsn;duplex mode is controlled using&bsn;ifMauDefaultType. When autonegotiation is&bsn;supported and enabled, duplex mode is controlled&bsn;using ifMauAutoNegAdvertisedBits. In either&bsn;case, the currently operating duplex mode is&bsn;reflected both in this object and in ifMauType.&bsn;&bsn;Note that this object provides redundant&bsn;information with ifMauType. Normally, redundant&bsn;objects are discouraged. However, in this&bsn;instance, it allows a management application to&bsn;determine the duplex status of an interface&bsn;without having to know every possible value of&bsn;ifMauType. This was felt to be sufficiently&bsn;valuable to justify the redundancy.&bsn;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33235 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10366 |{#SNMPVALUE}: Power supply status |sensor.psu.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonSupplyState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33236 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10366 |{#SNMPVALUE}: Temperature status |sensor.temp.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonTemperatureState&bsn;The current state of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33237 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10366 |{#SNMPVALUE}: Temperature |sensor.temp.value[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonTemperatureValue&bsn;The current measurement of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33238 |3 | |10367 |ICMP ping |icmpping |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33239 |3 | |10367 |ICMP loss |icmppingloss |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33240 |3 | |10367 |ICMP response time |icmppingsec |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33241 |17 | |10367 |SNMP traps (fallback) |snmptrap.fallback |1m |7d |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33242 |20 |1.3.6.1.2.1.1.4.0 |10367 |System contact details |system.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33243 |20 |1.3.6.1.2.1.1.1.0 |10367 |System description |system.descr |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;A textual description of the entity. This value should&bsn;include the full name and version identification of the system's hardware type, software operating-system, and&bsn;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33244 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10367 |Hardware model name |system.hw.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33245 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10367 |Hardware serial number |system.hw.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33246 |20 |1.3.6.1.2.1.1.6.0 |10367 |System location |system.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33247 |20 |1.3.6.1.2.1.1.5.0 |10367 |System name |system.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33248 |20 |1.3.6.1.2.1.1.2.0 |10367 |System object ID |system.objectid |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33249 |20 |1.3.6.1.2.1.1.1.0 |10367 |Operating system |system.sw.os |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33250 |20 |1.3.6.1.2.1.1.3.0 |10367 |Uptime |system.uptime |1m |7d |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33251 |5 | |10367 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33252 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10367 |CPU discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&bsn;indexed with cpmCPUTotalIndex .&bsn;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&bsn;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&bsn;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33253 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10367 |Entity Serial Numbers discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33254 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2] |10367 |FAN discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of fan status maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33255 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10367 |Memory discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.&bsn;http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33256 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10367 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33257 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10367 |EtherLike discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33258 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2] |10367 |PSU discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of power supply status maintained by the environmental monitor card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33259 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10367 |Temperature discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status&bsn;maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33260 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10367 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&bsn;Object name: cpmCPUTotal5minRev&bsn;The cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33261 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10367 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&bsn;Object name: entPhysicalSerialNum |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33262 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10367 |{#SNMPVALUE}: Fan status |sensor.fan.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonFanState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33263 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10367 |{#SNMPVALUE}: Free memory |vm.memory.free[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&bsn;Object name: ciscoMemoryPoolFree&bsn;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33264 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10367 |{#SNMPVALUE}: Used memory |vm.memory.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&bsn;Object name: ciscoMemoryPoolUsed&bsn;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33265 |15 | |10367 |{#SNMPVALUE}: Memory utilization |vm.memory.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[{#SNMPINDEX}]")/(last("vm.memory.free[{#SNMPINDEX}]")+last("vm.memory.used[{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33266 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The number of inbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33267 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33268 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33269 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The number of outbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33270 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33271 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33272 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33273 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The current operational state of the interface.&bsn;- The testing(3) state indicates that no operational packet scan be passed&bsn;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&bsn;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&bsn;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&bsn;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&bsn;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33274 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The type of interface.&bsn;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&bsn;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33275 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&bsn;Object name: dot3StatsDuplexStatus&bsn;The current mode of operation of the MAC&bsn;entity. 'unknown' indicates that the current&bsn;duplex mode could not be determined.&bsn;&bsn;Management control of the duplex mode is&bsn;accomplished through the MAU MIB. When&bsn;an interface does not support autonegotiation,&bsn;or when autonegotiation is not enabled, the&bsn;duplex mode is controlled using&bsn;ifMauDefaultType. When autonegotiation is&bsn;supported and enabled, duplex mode is controlled&bsn;using ifMauAutoNegAdvertisedBits. In either&bsn;case, the currently operating duplex mode is&bsn;reflected both in this object and in ifMauType.&bsn;&bsn;Note that this object provides redundant&bsn;information with ifMauType. Normally, redundant&bsn;objects are discouraged. However, in this&bsn;instance, it allows a management application to&bsn;determine the duplex status of an interface&bsn;without having to know every possible value of&bsn;ifMauType. This was felt to be sufficiently&bsn;valuable to justify the redundancy.&bsn;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33276 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10367 |{#SNMPVALUE}: Power supply status |sensor.psu.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonSupplyState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33277 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10367 |{#SNMPVALUE}: Temperature status |sensor.temp.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonTemperatureState&bsn;The current state of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33278 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10367 |{#SNMPVALUE}: Temperature |sensor.temp.value[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonTemperatureValue&bsn;The current measurement of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33279 |3 | |10368 |ICMP ping |icmpping |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33280 |3 | |10368 |ICMP loss |icmppingloss |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33281 |3 | |10368 |ICMP response time |icmppingsec |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33282 |17 | |10368 |SNMP traps (fallback) |snmptrap.fallback |1m |7d |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33283 |20 |1.3.6.1.2.1.1.4.0 |10368 |System contact details |system.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33284 |20 |1.3.6.1.2.1.1.1.0 |10368 |System description |system.descr |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;A textual description of the entity. This value should&bsn;include the full name and version identification of the system's hardware type, software operating-system, and&bsn;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33285 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10368 |Hardware model name |system.hw.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33286 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10368 |Hardware serial number |system.hw.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33287 |20 |1.3.6.1.2.1.1.6.0 |10368 |System location |system.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33288 |20 |1.3.6.1.2.1.1.5.0 |10368 |System name |system.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33289 |20 |1.3.6.1.2.1.1.2.0 |10368 |System object ID |system.objectid |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33290 |20 |1.3.6.1.2.1.1.1.0 |10368 |Operating system |system.sw.os |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33291 |20 |1.3.6.1.2.1.1.3.0 |10368 |Uptime |system.uptime |1m |7d |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33292 |5 | |10368 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33293 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10368 |CPU discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&bsn;indexed with cpmCPUTotalIndex .&bsn;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&bsn;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&bsn;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33294 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10368 |Entity Serial Numbers discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33295 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2] |10368 |FAN discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of fan status maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33296 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10368 |Memory discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.&bsn;http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33297 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10368 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33298 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10368 |EtherLike discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33299 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2] |10368 |PSU discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of power supply status maintained by the environmental monitor card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33300 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10368 |Temperature discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status&bsn;maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33301 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10368 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&bsn;Object name: cpmCPUTotal5minRev&bsn;The cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33302 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10368 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&bsn;Object name: entPhysicalSerialNum |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33303 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10368 |{#SNMPVALUE}: Fan status |sensor.fan.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonFanState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33304 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10368 |{#SNMPVALUE}: Free memory |vm.memory.free[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&bsn;Object name: ciscoMemoryPoolFree&bsn;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33305 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10368 |{#SNMPVALUE}: Used memory |vm.memory.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&bsn;Object name: ciscoMemoryPoolUsed&bsn;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33306 |15 | |10368 |{#SNMPVALUE}: Memory utilization |vm.memory.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[{#SNMPINDEX}]")/(last("vm.memory.free[{#SNMPINDEX}]")+last("vm.memory.used[{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33307 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The number of inbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33308 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33309 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33310 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The number of outbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33311 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33312 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33313 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33314 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The current operational state of the interface.&bsn;- The testing(3) state indicates that no operational packet scan be passed&bsn;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&bsn;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&bsn;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&bsn;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&bsn;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33315 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The type of interface.&bsn;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&bsn;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33316 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&bsn;Object name: dot3StatsDuplexStatus&bsn;The current mode of operation of the MAC&bsn;entity. 'unknown' indicates that the current&bsn;duplex mode could not be determined.&bsn;&bsn;Management control of the duplex mode is&bsn;accomplished through the MAU MIB. When&bsn;an interface does not support autonegotiation,&bsn;or when autonegotiation is not enabled, the&bsn;duplex mode is controlled using&bsn;ifMauDefaultType. When autonegotiation is&bsn;supported and enabled, duplex mode is controlled&bsn;using ifMauAutoNegAdvertisedBits. In either&bsn;case, the currently operating duplex mode is&bsn;reflected both in this object and in ifMauType.&bsn;&bsn;Note that this object provides redundant&bsn;information with ifMauType. Normally, redundant&bsn;objects are discouraged. However, in this&bsn;instance, it allows a management application to&bsn;determine the duplex status of an interface&bsn;without having to know every possible value of&bsn;ifMauType. This was felt to be sufficiently&bsn;valuable to justify the redundancy.&bsn;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33317 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10368 |{#SNMPVALUE}: Power supply status |sensor.psu.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonSupplyState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33318 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10368 |{#SNMPVALUE}: Temperature status |sensor.temp.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonTemperatureState&bsn;The current state of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33319 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10368 |{#SNMPVALUE}: Temperature |sensor.temp.value[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonTemperatureValue&bsn;The current measurement of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33320 |3 | |10369 |ICMP ping |icmpping |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33321 |3 | |10369 |ICMP loss |icmppingloss |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33322 |3 | |10369 |ICMP response time |icmppingsec |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33323 |17 | |10369 |SNMP traps (fallback) |snmptrap.fallback |1m |7d |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33324 |20 |1.3.6.1.2.1.1.4.0 |10369 |System contact details |system.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33325 |20 |1.3.6.1.2.1.1.1.0 |10369 |System description |system.descr |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;A textual description of the entity. This value should&bsn;include the full name and version identification of the system's hardware type, software operating-system, and&bsn;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33326 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10369 |Hardware model name |system.hw.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33327 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10369 |Hardware serial number |system.hw.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33328 |20 |1.3.6.1.2.1.1.6.0 |10369 |System location |system.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33329 |20 |1.3.6.1.2.1.1.5.0 |10369 |System name |system.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33330 |20 |1.3.6.1.2.1.1.2.0 |10369 |System object ID |system.objectid |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33331 |20 |1.3.6.1.2.1.1.1.0 |10369 |Operating system |system.sw.os |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33332 |20 |1.3.6.1.2.1.1.3.0 |10369 |Uptime |system.uptime |1m |7d |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33333 |5 | |10369 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33334 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10369 |CPU discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&bsn;indexed with cpmCPUTotalIndex .&bsn;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&bsn;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&bsn;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33335 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10369 |Entity Serial Numbers discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33336 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2] |10369 |FAN discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of fan status maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33337 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10369 |Memory discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.&bsn;http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33338 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10369 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33339 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10369 |EtherLike discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33340 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2] |10369 |PSU discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of power supply status maintained by the environmental monitor card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33341 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10369 |Temperature discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status&bsn;maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33342 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10369 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&bsn;Object name: cpmCPUTotal5minRev&bsn;The cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33343 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10369 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&bsn;Object name: entPhysicalSerialNum |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33344 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10369 |{#SNMPVALUE}: Fan status |sensor.fan.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonFanState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33345 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10369 |{#SNMPVALUE}: Free memory |vm.memory.free[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&bsn;Object name: ciscoMemoryPoolFree&bsn;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33346 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10369 |{#SNMPVALUE}: Used memory |vm.memory.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&bsn;Object name: ciscoMemoryPoolUsed&bsn;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33347 |15 | |10369 |{#SNMPVALUE}: Memory utilization |vm.memory.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[{#SNMPINDEX}]")/(last("vm.memory.free[{#SNMPINDEX}]")+last("vm.memory.used[{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33348 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The number of inbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33349 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33350 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33351 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The number of outbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33352 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33353 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33354 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33355 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The current operational state of the interface.&bsn;- The testing(3) state indicates that no operational packet scan be passed&bsn;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&bsn;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&bsn;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&bsn;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&bsn;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33356 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The type of interface.&bsn;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&bsn;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33357 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&bsn;Object name: dot3StatsDuplexStatus&bsn;The current mode of operation of the MAC&bsn;entity. 'unknown' indicates that the current&bsn;duplex mode could not be determined.&bsn;&bsn;Management control of the duplex mode is&bsn;accomplished through the MAU MIB. When&bsn;an interface does not support autonegotiation,&bsn;or when autonegotiation is not enabled, the&bsn;duplex mode is controlled using&bsn;ifMauDefaultType. When autonegotiation is&bsn;supported and enabled, duplex mode is controlled&bsn;using ifMauAutoNegAdvertisedBits. In either&bsn;case, the currently operating duplex mode is&bsn;reflected both in this object and in ifMauType.&bsn;&bsn;Note that this object provides redundant&bsn;information with ifMauType. Normally, redundant&bsn;objects are discouraged. However, in this&bsn;instance, it allows a management application to&bsn;determine the duplex status of an interface&bsn;without having to know every possible value of&bsn;ifMauType. This was felt to be sufficiently&bsn;valuable to justify the redundancy.&bsn;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33358 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10369 |{#SNMPVALUE}: Power supply status |sensor.psu.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonSupplyState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33359 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10369 |{#SNMPVALUE}: Temperature status |sensor.temp.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonTemperatureState&bsn;The current state of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33360 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10369 |{#SNMPVALUE}: Temperature |sensor.temp.value[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonTemperatureValue&bsn;The current measurement of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33361 |3 | |10370 |ICMP ping |icmpping |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33362 |3 | |10370 |ICMP loss |icmppingloss |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33363 |3 | |10370 |ICMP response time |icmppingsec |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33364 |17 | |10370 |SNMP traps (fallback) |snmptrap.fallback |1m |7d |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33365 |20 |1.3.6.1.2.1.1.4.0 |10370 |System contact details |system.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33366 |20 |1.3.6.1.2.1.1.1.0 |10370 |System description |system.descr |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;A textual description of the entity. This value should&bsn;include the full name and version identification of the system's hardware type, software operating-system, and&bsn;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33367 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10370 |Hardware model name |system.hw.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33368 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10370 |Hardware serial number |system.hw.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33369 |20 |1.3.6.1.2.1.1.6.0 |10370 |System location |system.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33370 |20 |1.3.6.1.2.1.1.5.0 |10370 |System name |system.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33371 |20 |1.3.6.1.2.1.1.2.0 |10370 |System object ID |system.objectid |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33372 |20 |1.3.6.1.2.1.1.1.0 |10370 |Operating system |system.sw.os |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33373 |20 |1.3.6.1.2.1.1.3.0 |10370 |Uptime |system.uptime |1m |7d |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&bsn;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33374 |5 | |10370 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33375 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10370 |CPU discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&bsn;indexed with cpmCPUTotalIndex .&bsn;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&bsn;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&bsn;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33376 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10370 |Entity Serial Numbers discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33377 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2] |10370 |FAN discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of fan status maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33378 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10370 |Memory discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.&bsn;http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33379 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10370 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33380 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10370 |EtherLike discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33381 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2] |10370 |PSU discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of power supply status maintained by the environmental monitor card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33382 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10370 |Temperature discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status&bsn;maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33383 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10370 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&bsn;Object name: cpmCPUTotal5minRev&bsn;The cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33384 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10370 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&bsn;Object name: entPhysicalSerialNum |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33385 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10370 |{#SNMPVALUE}: Fan status |sensor.fan.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonFanState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33386 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10370 |{#SNMPVALUE}: Free memory |vm.memory.free[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&bsn;Object name: ciscoMemoryPoolFree&bsn;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33387 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10370 |{#SNMPVALUE}: Used memory |vm.memory.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&bsn;Object name: ciscoMemoryPoolUsed&bsn;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&bsn;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33388 |15 | |10370 |{#SNMPVALUE}: Memory utilization |vm.memory.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[{#SNMPINDEX}]")/(last("vm.memory.free[{#SNMPINDEX}]")+last("vm.memory.used[{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33389 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The number of inbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33390 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33391 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33392 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The number of outbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33393 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33394 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33395 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33396 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The current operational state of the interface.&bsn;- The testing(3) state indicates that no operational packet scan be passed&bsn;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&bsn;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&bsn;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&bsn;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&bsn;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33397 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&bsn;The type of interface.&bsn;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&bsn;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33398 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&bsn;Object name: dot3StatsDuplexStatus&bsn;The current mode of operation of the MAC&bsn;entity. 'unknown' indicates that the current&bsn;duplex mode could not be determined.&bsn;&bsn;Management control of the duplex mode is&bsn;accomplished through the MAU MIB. When&bsn;an interface does not support autonegotiation,&bsn;or when autonegotiation is not enabled, the&bsn;duplex mode is controlled using&bsn;ifMauDefaultType. When autonegotiation is&bsn;supported and enabled, duplex mode is controlled&bsn;using ifMauAutoNegAdvertisedBits. In either&bsn;case, the currently operating duplex mode is&bsn;reflected both in this object and in ifMauType.&bsn;&bsn;Note that this object provides redundant&bsn;information with ifMauType. Normally, redundant&bsn;objects are discouraged. However, in this&bsn;instance, it allows a management application to&bsn;determine the duplex status of an interface&bsn;without having to know every possible value of&bsn;ifMauType. This was felt to be sufficiently&bsn;valuable to justify the redundancy.&bsn;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33399 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10370 |{#SNMPVALUE}: Power supply status |sensor.psu.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonSupplyState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33400 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10370 |{#SNMPVALUE}: Temperature status |sensor.temp.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonTemperatureState&bsn;The current state of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33401 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10370 |{#SNMPVALUE}: Temperature |sensor.temp.value[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&bsn;Object name: ciscoEnvMonTemperatureValue&bsn;The current measurement of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33402 |3 | |10251 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33403 |3 | |10251 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33404 |3 | |10251 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33405 |17 | |10251 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33406 |20 |1.3.6.1.2.1.1.4.0 |10251 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33407 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10251 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33408 |20 |1.3.6.1.2.1.1.1.0 |10251 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33409 |20 |1.3.6.1.2.1.1.6.0 |10251 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33410 |20 |1.3.6.1.2.1.1.5.0 |10251 |System name |system.name |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33411 |20 |1.3.6.1.2.1.1.2.0 |10251 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33412 |20 |1.3.6.1.2.1.1.3.0 |10251 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33413 |5 | |10251 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33414 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10251 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33415 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10251 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33416 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10251 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33417 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33418 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33419 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33420 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33421 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33422 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33423 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33424 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33425 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33426 |15 | |10251 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33427 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10251 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33428 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10251 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33429 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10251 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33430 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10251 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33431 |15 | |10251 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33433 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10371 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33434 |20 |1.3.6.1.2.1.1.3.0 |10371 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33435 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10371 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33436 |20 |1.3.6.1.2.1.1.2.0 |10371 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33438 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10371 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33439 |20 |1.3.6.1.2.1.1.6.0 |10371 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33440 |20 |1.3.6.1.2.1.1.1.0 |10371 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33441 |20 |1.3.6.1.2.1.1.4.0 |10371 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33442 |17 | |10371 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33443 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10371 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33444 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10371 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33445 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10371 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33446 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10371 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33447 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10371 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33448 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10371 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33449 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10371 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33453 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10371 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33454 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10371 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33455 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10371 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33456 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10371 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33457 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10371 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33458 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10371 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33459 |5 | |10371 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33460 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10371 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33461 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10371 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33462 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10371 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33463 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10371 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33464 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10371 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33465 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10371 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33466 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33467 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33468 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33469 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33470 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33471 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10371 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33472 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10371 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33473 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10371 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33474 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10371 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33475 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10371 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33476 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10371 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33477 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10371 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33478 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10371 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33479 |19 | |10372 |Get chassis |netapp.chassis.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster/chassis?fields=id,state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33480 |15 | |10372 |Cluster latency, other |netapp.cluster.statistics.latency.other |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.cluster.statistics.latency_raw.other) - prev(netapp.cluster.statistics.latency_raw.other)) /&bsn;(last(netapp.cluster.statistics.iops_raw.other) - prev(netapp.cluster.statistics.iops_raw.other) +&bsn;(last(netapp.cluster.statistics.iops_raw.other) - prev(netapp.cluster.statistics.iops_raw.other) = 0) ) * 0.001 | |0 | | | | |0 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33481 |19 | |10372 |Get SVMs |netapp.svms.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/svm/svms?fields=name,state,comment | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33482 |19 | |10372 |Get FC ports |netapp.ports.fc.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/network/fc/ports?fields=name,node.name,description,enabled,fabric.switch_port,state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33483 |19 | |10372 |Get ethernet ports |netapp.ports.eth.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/network/ethernet/ports?fields=name,type,node.name,broadcast_domain.name,enabled,state,mtu,speed | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33484 |19 | |10372 |Get nodes |netapp.nodes.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster/nodes?fields=* | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33485 |19 | |10372 |Get LUNs |netapp.luns.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/storage/luns?fields=name,svm.name,space.size,space.used,status.state,status.container_state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33486 |19 | |10372 |Get FRUs |netapp.frus.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster/chassis?fields=id,frus.id,frus.state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33487 |19 | |10372 |Get disks |netapp.disks.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/storage/disks?fields=state,node.name | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33488 |15 | |10372 |Cluster latency, write |netapp.cluster.statistics.latency.write |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.cluster.statistics.latency_raw.write) - prev(netapp.cluster.statistics.latency_raw.write)) /&bsn;( last(netapp.cluster.statistics.iops_raw.write) - prev(netapp.cluster.statistics.iops_raw.write) +&bsn;(last(netapp.cluster.statistics.iops_raw.write) - prev(netapp.cluster.statistics.iops_raw.write) = 0) ) * 0.001 | |0 | | | | |0 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for write I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33489 |15 | |10372 |Cluster latency, total |netapp.cluster.statistics.latency.total |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.cluster.statistics.latency_raw.total) - prev(netapp.cluster.statistics.latency_raw.total)) /&bsn;( last(netapp.cluster.statistics.iops_raw.total) - prev(netapp.cluster.statistics.iops_raw.total) +&bsn;(last(netapp.cluster.statistics.iops_raw.total) - prev(netapp.cluster.statistics.iops_raw.total) = 0) ) * 0.001 | |0 | | | | |0 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric aggregated over all types of I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33490 |19 | |10372 |Get cluster |netapp.cluster.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33491 |15 | |10372 |Cluster latency, read |netapp.cluster.statistics.latency.read |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.cluster.statistics.latency_raw.read) - prev(netapp.cluster.statistics.latency_raw.read)) /&bsn;( last(netapp.cluster.statistics.iops_raw.read) - prev(netapp.cluster.statistics.iops_raw.read) +&bsn;(last(netapp.cluster.statistics.iops_raw.read) - prev(netapp.cluster.statistics.iops_raw.read) = 0) ) * 0.001 | |0 | | | | |0 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for read I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33492 |19 | |10372 |Get volumes |netapp.volumes.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/storage/volumes?fields=name,comment,state,type,svm.name,space.size,space.available,space.used,statistics | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33513 |19 | |10372 |Chassis discovery |netapp.chassis.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster/chassis?fields=id | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33514 |19 | |10372 |Disks discovery |netapp.disks.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/storage/disks?fields=name,node.name | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33516 |19 | |10372 |LUNs discovery |netapp.luns.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/storage/luns?fields=name,svm.name,space.size,space.used,status.state,status.container_state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33517 |19 | |10372 |Nodes discovery |netapp.nodes.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster/nodes?fields=name | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33518 |19 | |10372 |Ethernet ports discovery |netapp.ports.ether.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/network/ethernet/ports?fields=name,state,node.name | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33519 |19 | |10372 |FC ports discovery |netapp.ports.fc.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/network/fc/ports?fields=node.name,name,state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33520 |19 | |10372 |SVMs discovery |netapp.svms.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/svm/svms?fields=name | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33521 |19 | |10372 |Volumes discovery |netapp.volumes.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/storage/volumes?fields=name | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33522 |15 | |10372 |{#VOLUMENAME}: Volume latency, total |netapp.volume.statistics.latency.total[{#VOLUMENAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.volume.statistics.latency_raw.total[{#VOLUMENAME}]) - prev(netapp.volume.statistics.latency_raw.total[{#VOLUMENAME}])) /&bsn;( last(netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}]) +&bsn;(last(netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}]) = 0) ) * 0.001 | |0 | | | | |2 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric aggregated over all types of I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33523 |15 | |10372 |{#VOLUMENAME}: Volume latency, write |netapp.volume.statistics.latency.write[{#VOLUMENAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.volume.statistics.latency_raw.write[{#VOLUMENAME}]) - prev(netapp.volume.statistics.latency_raw.write[{#VOLUMENAME}])) /&bsn;( last(netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}]) +&bsn;(last(netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}]) = 0) ) * 0.001 | |0 | | | | |2 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for write I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33524 |15 | |10372 |{#VOLUMENAME}: Volume latency, read |netapp.volume.statistics.latency.read[{#VOLUMENAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.volume.statistics.latency_raw.read[{#VOLUMENAME}]) - prev(netapp.volume.statistics.latency_raw.read[{#VOLUMENAME}])) /&bsn;( last(netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}]) +&bsn;(last(netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}]) = 0)) * 0.001 | |0 | | | | |2 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for read I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33525 |15 | |10372 |{#VOLUMENAME}: Volume latency, other |netapp.volume.statistics.latency.other[{#VOLUMENAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.volume.statistics.latency_raw.other[{#VOLUMENAME}]) - prev(netapp.volume.statistics.latency_raw.other[{#VOLUMENAME}])) /&bsn;( last(netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]) +&bsn;(last(netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]) = 0) ) * 0.001 | |0 | | | | |2 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33568 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10373 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33569 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10373 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33570 |20 |1.3.6.1.2.1.1.3.0 |10373 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33571 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10373 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33572 |20 |1.3.6.1.2.1.1.2.0 |10373 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33574 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10373 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33575 |20 |1.3.6.1.2.1.1.6.0 |10373 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33576 |20 |1.3.6.1.2.1.1.1.0 |10373 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33577 |20 |1.3.6.1.2.1.1.4.0 |10373 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33578 |17 | |10373 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33579 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10373 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33580 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10373 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33581 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10373 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33582 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10373 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33583 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10373 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33584 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10373 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33585 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10373 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33589 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10373 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33590 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10373 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33591 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10373 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33592 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10373 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33593 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10373 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33594 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10373 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33595 |5 | |10373 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33596 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10373 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33597 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10373 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33598 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10373 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33599 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10373 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33600 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10373 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33601 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10373 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33602 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10373 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33603 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33604 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33605 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33606 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33607 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33608 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10373 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33609 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10373 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33610 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10373 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33611 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10373 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33612 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10373 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33613 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10373 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33614 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10373 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33615 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10373 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33616 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10373 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33617 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10373 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33618 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10373 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33619 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10374 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33620 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10374 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33621 |20 |1.3.6.1.2.1.1.3.0 |10374 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33622 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10374 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33623 |20 |1.3.6.1.2.1.1.2.0 |10374 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33625 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10374 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33626 |20 |1.3.6.1.2.1.1.6.0 |10374 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33627 |20 |1.3.6.1.2.1.1.1.0 |10374 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33628 |20 |1.3.6.1.2.1.1.4.0 |10374 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33629 |17 | |10374 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33630 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10374 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33631 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10374 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33632 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10374 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33633 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10374 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33634 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10374 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33635 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10374 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33636 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10374 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33640 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10374 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33641 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10374 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33642 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10374 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33643 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10374 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33644 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10374 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33645 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10374 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33646 |5 | |10374 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33647 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10374 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33648 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10374 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33649 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10374 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33650 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10374 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33651 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10374 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33652 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10374 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33653 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10374 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33654 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33655 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33656 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33657 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33658 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33659 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10374 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33660 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10374 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33661 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10374 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33662 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10374 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33663 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10374 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33664 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10374 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33665 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10374 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33666 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10374 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33667 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10374 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33668 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10374 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33669 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10374 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33670 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10375 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33671 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10375 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33672 |20 |1.3.6.1.2.1.1.3.0 |10375 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33673 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10375 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33674 |20 |1.3.6.1.2.1.1.2.0 |10375 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33676 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10375 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33677 |20 |1.3.6.1.2.1.1.6.0 |10375 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33678 |20 |1.3.6.1.2.1.1.1.0 |10375 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33679 |20 |1.3.6.1.2.1.1.4.0 |10375 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33680 |17 | |10375 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33681 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10375 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33682 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10375 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33683 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10375 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33684 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10375 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33685 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10375 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33686 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10375 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33687 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10375 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33691 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10375 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33692 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10375 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33693 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10375 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33694 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10375 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33695 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10375 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33696 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10375 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33697 |5 | |10375 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33698 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10375 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33699 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10375 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33700 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10375 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33701 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10375 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33702 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10375 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33703 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10375 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33704 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10375 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33705 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33706 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33707 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33708 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33709 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33710 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10375 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33711 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10375 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33712 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10375 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33713 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10375 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33714 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10375 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33715 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10375 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33716 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10375 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33717 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10375 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33718 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10375 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33719 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10375 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33720 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10375 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33721 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10376 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33722 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10376 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33723 |20 |1.3.6.1.2.1.1.3.0 |10376 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33724 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10376 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33725 |20 |1.3.6.1.2.1.1.2.0 |10376 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33727 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10376 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33728 |20 |1.3.6.1.2.1.1.6.0 |10376 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33729 |20 |1.3.6.1.2.1.1.1.0 |10376 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33730 |20 |1.3.6.1.2.1.1.4.0 |10376 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33731 |17 | |10376 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33732 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10376 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33733 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10376 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33734 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10376 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33735 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10376 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33736 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10376 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33737 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10376 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33738 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10376 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33742 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10376 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33743 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10376 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33744 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10376 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33745 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10376 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33746 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10376 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33747 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10376 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33748 |5 | |10376 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33749 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10376 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33750 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10376 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33751 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10376 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33752 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10376 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33753 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10376 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33754 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10376 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33755 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10376 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33756 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33757 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33758 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33759 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33760 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33761 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10376 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33762 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10376 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33763 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10376 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33764 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10376 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33765 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10376 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33766 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10376 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33767 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10376 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33768 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10376 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33769 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10376 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33770 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10376 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33771 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10376 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33772 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10377 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33773 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10377 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33774 |20 |1.3.6.1.2.1.1.3.0 |10377 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33775 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10377 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33776 |20 |1.3.6.1.2.1.1.2.0 |10377 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33778 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10377 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33779 |20 |1.3.6.1.2.1.1.6.0 |10377 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33780 |20 |1.3.6.1.2.1.1.1.0 |10377 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33781 |20 |1.3.6.1.2.1.1.4.0 |10377 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33782 |17 | |10377 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33783 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10377 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33784 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10377 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33785 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10377 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33786 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10377 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33787 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10377 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33788 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10377 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33789 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10377 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33793 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10377 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33794 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10377 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33795 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10377 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33796 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10377 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33797 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10377 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33798 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10377 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33799 |5 | |10377 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33800 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10377 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33801 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10377 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33802 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10377 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33803 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10377 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33804 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10377 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33805 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10377 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33806 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10377 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33807 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33808 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33809 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33810 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33811 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33812 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10377 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33813 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10377 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33814 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10377 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33815 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10377 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33816 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10377 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33817 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10377 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33818 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10377 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33819 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10377 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33820 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10377 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33821 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10377 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33822 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10377 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33823 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10378 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33824 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10378 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33825 |20 |1.3.6.1.2.1.1.3.0 |10378 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33826 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10378 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33827 |20 |1.3.6.1.2.1.1.2.0 |10378 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33829 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10378 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33830 |20 |1.3.6.1.2.1.1.6.0 |10378 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33831 |20 |1.3.6.1.2.1.1.1.0 |10378 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33832 |20 |1.3.6.1.2.1.1.4.0 |10378 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33833 |17 | |10378 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33834 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10378 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33835 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10378 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33836 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10378 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33837 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10378 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33838 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10378 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33839 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10378 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33840 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10378 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33844 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10378 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33845 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10378 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33846 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10378 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33847 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10378 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33848 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10378 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33849 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10378 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33850 |5 | |10378 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33851 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10378 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33852 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10378 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33853 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10378 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33854 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10378 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33855 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10378 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33856 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10378 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33857 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10378 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33858 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33859 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33860 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33861 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33862 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33863 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10378 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33864 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10378 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33865 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10378 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33866 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10378 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33867 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10378 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33868 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10378 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33869 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10378 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33870 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10378 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33871 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10378 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33872 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10378 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33873 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10378 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33874 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10379 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33875 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10379 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33876 |20 |1.3.6.1.2.1.1.3.0 |10379 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33877 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10379 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33878 |20 |1.3.6.1.2.1.1.2.0 |10379 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33880 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10379 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33881 |20 |1.3.6.1.2.1.1.6.0 |10379 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33882 |20 |1.3.6.1.2.1.1.1.0 |10379 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33883 |20 |1.3.6.1.2.1.1.4.0 |10379 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33884 |17 | |10379 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33885 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10379 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33886 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10379 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33887 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10379 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33888 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10379 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33889 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10379 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33890 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10379 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33891 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10379 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33895 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10379 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33896 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10379 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33897 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10379 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33898 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10379 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33899 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10379 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33900 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10379 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33901 |5 | |10379 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33902 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10379 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33903 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10379 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33904 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10379 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33905 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10379 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33906 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10379 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33907 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10379 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33908 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10379 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33909 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33910 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33911 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33912 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33913 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33914 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10379 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33915 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10379 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33916 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10379 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33917 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10379 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33918 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10379 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33919 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10379 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33920 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10379 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33921 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10379 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33922 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10379 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33923 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10379 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33924 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10379 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33925 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10371 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33926 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10371 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33927 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10371 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33928 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10371 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33929 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10371 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33930 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10380 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33931 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10380 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33932 |20 |1.3.6.1.2.1.1.3.0 |10380 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33933 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10380 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33934 |20 |1.3.6.1.2.1.1.2.0 |10380 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33936 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10380 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33937 |20 |1.3.6.1.2.1.1.6.0 |10380 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33938 |20 |1.3.6.1.2.1.1.1.0 |10380 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33939 |20 |1.3.6.1.2.1.1.4.0 |10380 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33940 |17 | |10380 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33941 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10380 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33942 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10380 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33943 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10380 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33944 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10380 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33945 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10380 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33946 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10380 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33947 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10380 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33951 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10380 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33952 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10380 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33953 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10380 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33954 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10380 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33955 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10380 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33956 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10380 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33957 |5 | |10380 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33958 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10380 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33959 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10380 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33960 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10380 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33961 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10380 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33962 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10380 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33963 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10380 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33964 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10380 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33965 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33966 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33967 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33968 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33969 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33970 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10380 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33971 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10380 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33972 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10380 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33973 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10380 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33974 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10380 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33975 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10380 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33976 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10380 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33977 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10380 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33978 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10380 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33979 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10380 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33980 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10380 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33981 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10381 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33982 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10381 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33983 |20 |1.3.6.1.2.1.1.3.0 |10381 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33984 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10381 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33985 |20 |1.3.6.1.2.1.1.2.0 |10381 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33987 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10381 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33988 |20 |1.3.6.1.2.1.1.6.0 |10381 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33989 |20 |1.3.6.1.2.1.1.1.0 |10381 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33990 |20 |1.3.6.1.2.1.1.4.0 |10381 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33991 |17 | |10381 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33992 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10381 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33993 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10381 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33994 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10381 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33995 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10381 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33996 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10381 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33997 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10381 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33998 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10381 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34002 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10381 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34003 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10381 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34004 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10381 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34005 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10381 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34006 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10381 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34007 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10381 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34008 |5 | |10381 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34009 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10381 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34010 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10381 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34011 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10381 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34012 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10381 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34013 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10381 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34014 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10381 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34015 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10381 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34016 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34017 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34018 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34019 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34020 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34021 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10381 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34022 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10381 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34023 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10381 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34024 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10381 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34025 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10381 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34026 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10381 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34027 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10381 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34028 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10381 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34029 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10381 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34030 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10381 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34031 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10381 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34032 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10382 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34033 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10382 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34034 |20 |1.3.6.1.2.1.1.3.0 |10382 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34035 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10382 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34036 |20 |1.3.6.1.2.1.1.2.0 |10382 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34038 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10382 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34039 |20 |1.3.6.1.2.1.1.6.0 |10382 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34040 |20 |1.3.6.1.2.1.1.1.0 |10382 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34041 |20 |1.3.6.1.2.1.1.4.0 |10382 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34042 |17 | |10382 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34043 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10382 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34044 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10382 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34045 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10382 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34046 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10382 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34047 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10382 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34048 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10382 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34049 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10382 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34053 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10382 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34054 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10382 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34055 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10382 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34056 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10382 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34057 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10382 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34058 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10382 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34059 |5 | |10382 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34060 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10382 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34061 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10382 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34062 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10382 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34063 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10382 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34064 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10382 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34065 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10382 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34066 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10382 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34067 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34068 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34069 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34070 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34071 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34072 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10382 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34073 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10382 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34074 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10382 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34075 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10382 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34076 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10382 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34077 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10382 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34078 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10382 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34079 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10382 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34080 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10382 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34081 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10382 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34082 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10382 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34083 |20 |1.3.6.1.2.1.1.5.0 |10373 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34084 |20 |1.3.6.1.2.1.1.5.0 |10374 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34085 |20 |1.3.6.1.2.1.1.5.0 |10375 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34086 |20 |1.3.6.1.2.1.1.5.0 |10376 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34087 |20 |1.3.6.1.2.1.1.5.0 |10377 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34088 |20 |1.3.6.1.2.1.1.5.0 |10378 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34089 |20 |1.3.6.1.2.1.1.5.0 |10379 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34090 |20 |1.3.6.1.2.1.1.5.0 |10371 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34091 |20 |1.3.6.1.2.1.1.5.0 |10380 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34092 |20 |1.3.6.1.2.1.1.5.0 |10381 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34093 |20 |1.3.6.1.2.1.1.5.0 |10382 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34094 |16 | |10383 |WildFly: Uptime |jmx["java.lang:type=Runtime","Uptime"] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |WildFly server uptime. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34095 |16 | |10383 |WildFly: Launch type |jmx["jboss.as:management-root=server","launchType"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The manner in which the server process was launched. Either "DOMAIN" for a domain mode server launched by a Host Controller, "STANDALONE" for a standalone server launched from the command line, or "EMBEDDED" for a standalone server launched as an embedded part of an application running in the same virtual machine. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34096 |16 | |10383 |WildFly: Name |jmx["jboss.as:management-root=server","name"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |For standalone mode: The name of this server. If not set, defaults to the runtime value of InetAddress.getLocalHost().getHostName().&eol;For domain mode: The name given to this domain |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34097 |16 | |10383 |WildFly: Process type |jmx["jboss.as:management-root=server","processType"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The type of process represented by this root resource. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34098 |16 | |10383 |WildFly: Version |jmx["jboss.as:management-root=server","productVersion"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The version of the WildFly Core based product release |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34099 |16 | |10383 |Servers discovery |jmx.get[beans,"jboss.as:host=master,server-config=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |1 |NULL |Discovery instances in domain. |0 |30d |1 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34100 |16 | |10383 |Deployments discovery |jmx.get[beans,"jboss.as.expr:deployment=*,server-group=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |1 |NULL |Discovery deployments metrics. |0 |30d |1 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34101 |16 | |10383 |WildFly domain: Server {#SERVER}: Autostart |jmx["{#JMXOBJ}",autoStart] |1m |7d |365d |0 |3 | | | | |NULL |160 | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Whether or not this server should be started when the Host Controller starts. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34102 |16 | |10383 |WildFly domain: Server {#SERVER}: Server group |jmx["{#JMXOBJ}",group] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The name of a server group from the domain model. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34103 |16 | |10383 |WildFly domain: Server {#SERVER}: Status |jmx["{#JMXOBJ}",status] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The current status of the server. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34104 |16 | |10383 |WildFly deployment [{#DEPLOYMENT}]: Enabled |jmx["{#JMXOBJ}",enabled] |1m |7d |365d |0 |3 | | | | |NULL |160 | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Boolean indicating whether the deployment content is currently deployed in the runtime (or should be deployed in the runtime the next time the server starts.) |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34105 |16 | |10383 |WildFly deployment [{#DEPLOYMENT}]: Managed |jmx["{#JMXOBJ}",managed] |1m |7d |365d |0 |3 | | | | |NULL |160 | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Indicates if the deployment is managed (aka uses the ContentRepository). |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34106 |16 | |10384 |WildFly: Uptime |jmx["java.lang:type=Runtime","Uptime"] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |WildFly server uptime. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34107 |16 | |10384 |WildFly: Transactions: Committed, rate |jmx["jboss.as:subsystem=transactions","numberOfCommittedTransactions"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The number of committed transactions |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34108 |16 | |10384 |WildFly: Transactions: Timed out, rate |jmx["jboss.as:subsystem=transactions","numberOfTimedOutTransactions"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The number of transactions that have rolled back due to timeout. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34109 |16 | |10384 |WildFly: Transactions: System rollbacks, rate |jmx["jboss.as:subsystem=transactions","numberOfSystemRollbacks"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The number of transactions that have been rolled back due to internal system errors. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34110 |16 | |10384 |WildFly: Transactions: ResourceRollbacks, rate |jmx["jboss.as:subsystem=transactions","numberOfResourceRollbacks"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The number of transactions that rolled back due to resource (participant) failure. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34111 |16 | |10384 |WildFly: Transactions: Nested, rate |jmx["jboss.as:subsystem=transactions","numberOfNestedTransactions"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The total number of nested (sub) transactions created. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34112 |16 | |10384 |WildFly: Transactions: Current |jmx["jboss.as:subsystem=transactions","numberOfInflightTransactions"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The number of transactions that have begun but not yet terminated. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34113 |16 | |10384 |WildFly: Transactions: Heuristics, rate |jmx["jboss.as:subsystem=transactions","numberOfHeuristics"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The number of transactions which have terminated with heuristic outcomes. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34114 |16 | |10384 |WildFly: Transactions: Application rollbacks, rate |jmx["jboss.as:subsystem=transactions","numberOfApplicationRollbacks"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The number of transactions that have been rolled back by application request. This includes those that timeout, since the timeout behavior is considered an attribute of the application configuration. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34115 |16 | |10384 |WildFly: Launch type |jmx["jboss.as:management-root=server","launchType"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The manner in which the server process was launched. Either "DOMAIN" for a domain mode server launched by a Host Controller, "STANDALONE" for a standalone server launched from the command line, or "EMBEDDED" for a standalone server launched as an embedded part of an application running in the same virtual machine. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34116 |16 | |10384 |WildFly: Transactions: Aborted, rate |jmx["jboss.as:subsystem=transactions","numberOfAbortedTransactions"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The number of aborted (i.e. rolledback) transactions per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34117 |16 | |10384 |WildFly: Server controller state |jmx["jboss.as:management-root=server","serverState"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The current state of the server controller; either STARTING, RUNNING, RESTART_REQUIRED, RELOAD_REQUIRED or STOPPING. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34118 |16 | |10384 |WildFly: Runtime configuration state |jmx["jboss.as:management-root=server","runtimeConfigurationState"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The current persistent configuration state, one of starting, ok, reload-required, restart-required, stopping or stopped. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34119 |16 | |10384 |WildFly: Version |jmx["jboss.as:management-root=server","productVersion"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The version of the WildFly Core based product release |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34120 |16 | |10384 |WildFly: Process type |jmx["jboss.as:management-root=server","processType"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The type of process represented by this root resource. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34121 |16 | |10384 |WildFly: Name |jmx["jboss.as:management-root=server","name"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |For standalone mode: The name of this server. If not set, defaults to the runtime value of InetAddress.getLocalHost().getHostName().&eol;For domain mode: The name given to this domain |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34122 |16 | |10384 |WildFly: Transactions: Total, rate |jmx["jboss.as:subsystem=transactions","numberOfTransactions"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The total number of transactions (top-level and nested) created per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34123 |16 | |10384 |JDBC metrics discovery |jmx.get[beans,"jboss.as:subsystem=datasources,data-source=*,statistics=jdbc"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |1 |NULL | |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34124 |16 | |10384 |Pools metrics discovery |jmx.get[beans,"jboss.as:subsystem=datasources,data-source=*,statistics=pool"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |1 |NULL | |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34125 |16 | |10384 |Undertow metrics discovery |jmx.get[beans,"jboss.as:subsystem=undertow,server=*,http-listener=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |1 |NULL | |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34126 |16 | |10384 |Deployments discovery |jmx.get[beans,"jboss.as.expr:deployment=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |1 |NULL |Discovery deployments metrics. |0 |30d |1 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34127 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Cache access, rate |jmx["{#JMXOBJ}",PreparedStatementCacheAccessCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of times that the statement cache was accessed per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34128 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Cache add, rate |jmx["{#JMXOBJ}",PreparedStatementCacheAddCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of statements added to the statement cache per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34129 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Cache current size |jmx["{#JMXOBJ}",PreparedStatementCacheCurrentSize] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of prepared and callable statements currently cached in the statement cache. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34130 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Cache delete, rate |jmx["{#JMXOBJ}",PreparedStatementCacheDeleteCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of statements discarded from the cache per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34131 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Cache hit, rate |jmx["{#JMXOBJ}",PreparedStatementCacheHitCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of times that statements from the cache were used per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34132 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Cache miss, rate |jmx["{#JMXOBJ}",PreparedStatementCacheMissCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of times that a statement request could not be satisfied with a statement from the cache per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34133 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Statistics enabled |jmx["{#JMXOBJ}",statisticsEnabled] |1m |7d |365d |0 |3 | | | | |NULL |160 | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Define whether runtime statistics are enabled or not. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34134 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Active |jmx["{#JMXOBJ}",ActiveCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of open connections. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34135 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Commit time, avg |jmx["{#JMXOBJ}",XACommitAverageTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time for a XAResource commit invocation. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34136 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Start time, avg |jmx["{#JMXOBJ}",XAStartAverageTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time for a XAResource start invocation. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34137 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Rollback, rate |jmx["{#JMXOBJ}",XARollbackCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of XAResource rollback invocations per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34138 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Rollback time, avg |jmx["{#JMXOBJ}",XARollbackAverageTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time for a XAResource rollback invocation. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34139 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Recover, rate |jmx["{#JMXOBJ}",XARecoverCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of XAResource recover invocationsper second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34140 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Recover time, avg |jmx["{#JMXOBJ}",XARecoverAverageTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time for a XAResource recover invocation. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34141 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Prepare, rate |jmx["{#JMXOBJ}",XAPrepareCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of XAResource prepare invocations per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34142 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Prepare time, avg |jmx["{#JMXOBJ}",XAPrepareAverageTime] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time for a XAResource prepare invocation. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34143 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Forget, rate |jmx["{#JMXOBJ}",XAForgetCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of XAResource forget invocations per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34144 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Forget time, avg |jmx["{#JMXOBJ}",XAForgetAverageTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time for a XAResource forget invocation. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34145 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: End, rate |jmx["{#JMXOBJ}",XAEndCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of XAResource end invocations per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34146 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: End time, avg |jmx["{#JMXOBJ}",XAEndAverageTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time for a XAResource end invocation. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34147 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Commit, rate |jmx["{#JMXOBJ}",XACommitCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of XAResource commit invocations per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34148 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Wait |jmx["{#JMXOBJ}",WaitCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of requests that had to wait to obtain a physical connection. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34149 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Available |jmx["{#JMXOBJ}",AvailableCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The available count. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34150 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Timed out, rate |jmx["{#JMXOBJ}",TimedOut] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The timed out connections per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34151 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Statistics enabled |jmx["{#JMXOBJ}",statisticsEnabled] |1m |7d |365d |0 |0 | | | | |NULL |160 | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Define whether runtime statistics are enabled or not. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34152 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Used, max |jmx["{#JMXOBJ}",MaxUsedCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The maximum number of connections used. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34153 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: In use |jmx["{#JMXOBJ}",InUseCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of physical connections currently in use. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34154 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Idle |jmx["{#JMXOBJ}",IdleCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of physical connections currently idle. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34155 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Destroyed, rate |jmx["{#JMXOBJ}",DestroyedCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The destroyed count. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34156 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Created, rate |jmx["{#JMXOBJ}",CreatedCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The created per second |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34157 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Blocking failure, rate |jmx["{#JMXOBJ}",BlockingFailureCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of failures trying to obtain a physical connection per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34158 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Usage time, avg |jmx["{#JMXOBJ}",AverageUsageTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time spent using a physical connection |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34159 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Pool time, avg |jmx["{#JMXOBJ}",AveragePoolTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time for a physical connection spent in the pool. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34160 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Get time, avg |jmx["{#JMXOBJ}",AverageGetTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time spent obtaining a physical connection. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34161 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Creating time, avg |jmx["{#JMXOBJ}",AverageCreationTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time spent creating a physical connection. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34162 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Blocking time, avg |jmx["{#JMXOBJ}",AverageBlockingTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Average Blocking Time for pool. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34163 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Start rate |jmx["{#JMXOBJ}",XAStartCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of XAResource start invocations per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34164 |16 | |10384 |WildFly listener {#HTTP_LISTENER}: Bytes received, rate |jmx["{#JMXOBJ}",bytesReceived] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of bytes that have been received by this listener per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34165 |16 | |10384 |WildFly listener {#HTTP_LISTENER}: Bytes sent, rate |jmx["{#JMXOBJ}",bytesSent] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of bytes that have been sent out on this listener per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34166 |16 | |10384 |WildFly listener {#HTTP_LISTENER}: Errors, rate |jmx["{#JMXOBJ}",errorCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of 500 responses that have been sent by this listener per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34167 |16 | |10384 |WildFly listener {#HTTP_LISTENER}: Requests, rate |jmx["{#JMXOBJ}",requestCount] |1m |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of requests this listener has served per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34168 |16 | |10384 |WildFly deployment [{#DEPLOYMENT}]: Enabled |jmx["{#JMXOBJ}",enabled] |1m |7d |365d |0 |3 | | | | |NULL |160 | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Boolean indicating whether the deployment content is currently deployed in the runtime (or should be deployed in the runtime the next time the server starts.) |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34169 |16 | |10384 |WildFly deployment [{#DEPLOYMENT}]: Enabled time |jmx["{#JMXOBJ}",enabledTime] |1m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Indicates if the deployment is managed (aka uses the ContentRepository). |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34170 |16 | |10384 |WildFly deployment [{#DEPLOYMENT}]: Managed |jmx["{#JMXOBJ}",managed] |1m |7d |365d |0 |3 | | | | |NULL |160 | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Indicates if the deployment is managed (aka uses the ContentRepository). |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34171 |16 | |10384 |WildFly deployment [{#DEPLOYMENT}]: Persistent |jmx["{#JMXOBJ}",persistent] |1m |7d |365d |0 |3 | | | | |NULL |160 | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Indicates if the deployment is managed (aka uses the ContentRepository). |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34172 |16 | |10384 |WildFly deployment [{#DEPLOYMENT}]: Status |jmx["{#JMXOBJ}",status] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The current runtime status of a deployment. &eol;Possible status modes are OK, FAILED, and STOPPED. &eol;FAILED indicates a dependency is missing or a service could not start. &eol;STOPPED indicates that the deployment was not enabled or was manually stopped. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34173 |11 | |10327 |MSSQL: Get job status |db.odbc.get[get_job_status,"{$MSSQL.DSN}"] |10m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT sj.name AS JobName&bsn;, sj.enabled AS Enabled&bsn;, sjs.last_run_outcome AS RunStatus&bsn;, sjs.last_outcome_message AS LastRunStatusMessage&bsn;, sjs.last_run_duration/10000*3600 + sjs.last_run_duration/100%100*60 + sjs.last_run_duration%100 AS RunDuration&bsn;, CASE sjs.last_run_date&bsn; WHEN 0 THEN NULL&bsn; ELSE msdb.dbo.agent_datetime(sjs.last_run_date,sjs.last_run_time)&bsn; END AS LastRunDateTime&bsn;, sja.next_scheduled_run_date AS NextRunDateTime&bsn;FROM msdb..sysjobs AS sj&bsn;LEFT JOIN msdb..sysjobservers AS sjs ON sj.job_id = sjs.job_id&bsn;LEFT JOIN ( SELECT job.job_id,&bsn; max(act.session_id) AS s_id,&bsn; max(act.next_scheduled_run_date) AS next_scheduled_run_date&bsn; FROM msdb..sysjobs AS job&bsn; LEFT JOIN msdb..sysjobactivity AS act ON act.job_id = job.job_id&bsn; GROUP BY job.job_id ) AS sja ON sja.job_id = sj.job_id&bsn;WHERE Enabled = 1 | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |0 |NULL |The item gets sql agent job status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34174 |11 | |10327 |MSSQL: Get last backup |db.odbc.get[get_last_backup,"{$MSSQL.DSN}"] |10m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT bs.database_name as dbname,[type], DATEDIFF(SECOND, bs.backup_finish_date, getdate()) as timesincelastbackup, (DATEDIFF(SECOND, bs.backup_start_date, bs.backup_finish_date)) as duration&bsn;FROM msdb.dbo.backupset as bs WHERE bs.database_name not in (&bsn;SELECT&bsn;AGDatabases.database_name AS Databasename&bsn;FROM sys.dm_hadr_availability_group_states States&bsn;INNER JOIN master.sys.availability_groups Groups ON States.group_id = Groups.group_id&bsn;INNER JOIN sys.availability_databases_cluster AGDatabases ON Groups.group_id = AGDatabases.group_id&bsn;WHERE primary_replica != @@Servername OR primary_replica is NULL&bsn;)&bsn;GROUP BY bs.database_name, backup_finish_date, [type], backup_start_date&bsn;HAVING backup_finish_date = (SELECT MAX(backup_finish_date) from msdb.dbo.backupset WHERE database_name = bs.database_name AND bs.type = [type])&bsn;ORDER BY bs.database_name | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |0 |NULL |The item gets information about backup processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34175 |11 | |10327 |Job discovery |db.odbc.discovery[jobname,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name AS jobname FROM msdb..sysjobs WHERE enabled = 1 | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Scanning jobs in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
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|
@@ -5119,75 +5207,75 @@ ROW |30401 |18 | |10310 |Redis: Master sync in progress{#SINGLETON}
ROW |30402 |18 | |10310 |Redis: Slave priority{#SINGLETON} |redis.replication.slave_priority[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The priority of the instance as a candidate for failover |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30403 |18 | |10310 |Redis: Slave priority{#SINGLETON} |redis.replication.slave_read_only[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Flag indicating if the replica is read-only |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30404 |18 | |10310 |Redis: Slave replication offset{#SINGLETON} |redis.replication.slave_repl_offset[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The replication offset of the replica instance |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30436 |18 | |10316 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30437 |18 | |10316 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30436 |18 | |10316 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30437 |18 | |10316 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30438 |18 | |10316 |MySQL: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30439 |18 | |10316 |MySQL: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30440 |18 | |10316 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30441 |18 | |10316 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server started. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30442 |18 | |10316 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30443 |18 | |10316 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30444 |18 | |10316 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30445 |18 | |10316 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30446 |18 | |10316 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads in the thread cache. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30447 |18 | |10316 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently open connections. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30449 |18 | |10316 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads that are not sleeping. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30450 |18 | |10316 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of seconds that the server has been up. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30451 |18 | |10316 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests per second. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30440 |18 | |10316 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30441 |18 | |10316 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server start. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30442 |18 | |10316 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30443 |18 | |10316 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical read requests. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30444 |18 | |10316 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30445 |18 | |10316 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30446 |18 | |10316 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of threads in the thread cache. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30447 |18 | |10316 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of currently open connections. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30449 |18 | |10316 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of threads which are not sleeping. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30450 |18 | |10316 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of seconds that the server has been up. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30451 |18 | |10316 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical read requests per second. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30452 |18 | |10316 |MySQL: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30453 |18 | |10316 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30453 |18 | |10316 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes received from all clients. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30454 |18 | |10316 |MySQL: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30455 |18 | |10316 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30455 |18 | |10316 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes sent to all clients. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30456 |18 | |10316 |MySQL: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30457 |18 | |10316 |MySQL: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30458 |18 | |10316 |MySQL: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30459 |18 | |10316 |MySQL: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30460 |18 | |10316 |MySQL: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30461 |18 | |10316 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30461 |18 | |10316 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example, out of memory errors, or failed thread starts. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30462 |18 | |10316 |MySQL: Connection errors peer address per second |mysql.connection_errors_peer_address.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors while searching for the connecting client IP address. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30463 |18 | |10316 |MySQL: InnoDB buffer pool pages free |mysql.innodb_buffer_pool_pages_free |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30464 |18 | |10316 |MySQL: Connection errors select per second |mysql.connection_errors_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30465 |18 | |10316 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library refused. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30466 |18 | |10316 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30470 |18 | |10316 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30471 |18 | |10316 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30465 |18 | |10316 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library has refused. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30466 |18 | |10316 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30470 |18 | |10316 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30471 |18 | |10316 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30476 |18 | |10316 |MySQL: Replication Seconds Behind Master {#MASTERHOST} |mysql.seconds_behind_master["{#MASTERHOST}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of seconds that the slave SQL thread is behind processing the master binary log.&eol;A high number (or an increasing one) can indicate that the slave is unable to handle events&eol;from the master in a timely fashion. |0 |30d |0 | |30475 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30477 |18 | |10316 |MySQL: Replication Slave IO Running {#MASTERHOST} |mysql.slave_io_running["{#MASTERHOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the I/O thread for reading the master's binary log is running. &eol;Normally, you want this to be Yes unless you have not yet started replication or have &eol;explicitly stopped it with STOP SLAVE. |0 |30d |0 | |30475 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30478 |18 | |10316 |MySQL: Replication Slave SQL Running {#MASTERHOST} |mysql.slave_sql_running["{#MASTERHOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the SQL thread for executing events in the relay log is running. &eol;As with the I/O thread, this should normally be Yes. |0 |30d |0 | |30475 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30484 |18 | |10317 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30485 |18 | |10317 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30486 |18 | |10317 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests per second. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30487 |18 | |10317 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30488 |18 | |10317 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30484 |18 | |10317 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30485 |18 | |10317 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical read requests. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30486 |18 | |10317 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical read requests per second. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30487 |18 | |10317 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30488 |18 | |10317 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30489 |18 | |10317 |MySQL: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30490 |18 | |10317 |MySQL: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30491 |18 | |10317 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30492 |18 | |10317 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server started. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30491 |18 | |10317 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30492 |18 | |10317 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server start. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30493 |18 | |10317 |MySQL: InnoDB buffer pool pages free |mysql.innodb_buffer_pool_pages_free |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30494 |18 | |10317 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30495 |18 | |10317 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30496 |18 | |10317 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads in the thread cache. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30497 |18 | |10317 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently open connections. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30499 |18 | |10317 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads that are not sleeping. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30494 |18 | |10317 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30495 |18 | |10317 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30496 |18 | |10317 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of threads in the thread cache. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30497 |18 | |10317 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of currently open connections. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30499 |18 | |10317 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of threads which are not sleeping. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30500 |18 | |10317 |MySQL: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30503 |18 | |10317 |MySQL: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30504 |18 | |10317 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30505 |18 | |10317 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30506 |18 | |10317 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30507 |18 | |10317 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30504 |18 | |10317 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30505 |18 | |10317 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30506 |18 | |10317 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes received from all clients. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30507 |18 | |10317 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes sent to all clients. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30508 |18 | |10317 |MySQL: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30509 |18 | |10317 |MySQL: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30510 |18 | |10317 |MySQL: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30512 |18 | |10317 |MySQL: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30513 |18 | |10317 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30513 |18 | |10317 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example, out of memory errors, or failed thread starts. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30514 |18 | |10317 |MySQL: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30515 |18 | |10317 |MySQL: Connection errors peer address per second |mysql.connection_errors_peer_address.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors while searching for the connecting client IP address. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30516 |18 | |10317 |MySQL: Connection errors select per second |mysql.connection_errors_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30517 |18 | |10317 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library refused. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30518 |18 | |10317 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30519 |18 | |10317 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of seconds that the server has been up. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30524 |18 | |10317 |MySQL: Replication Seconds Behind Master {#MASTER_HOST} |mysql.seconds_behind_master["{#MASTER_HOST}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of seconds that the slave SQL thread is behind processing the master binary log.&eol;A high number (or an increasing one) can indicate that the slave is unable to handle events&eol;from the master in a timely fashion. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30525 |18 | |10317 |MySQL: Replication Slave IO Running {#MASTER_HOST} |mysql.slave_io_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the I/O thread for reading the master's binary log is running. &eol;Normally, you want this to be Yes unless you have not yet started replication or have &eol;explicitly stopped it with STOP SLAVE. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30517 |18 | |10317 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library has refused. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30518 |18 | |10317 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30519 |18 | |10317 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of seconds that the server has been up. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30524 |18 | |10317 |MySQL: Replication Seconds Behind Master {#MASTER_HOST} |mysql.seconds_behind_master["{#MASTER_HOST}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The amount of seconds the slave SQL thread has been behind processing the master binary log.&eol;A high number (or an increasing one) can indicate that the slave is unable to handle events&eol;from the master in a timely fashion. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30525 |18 | |10317 |MySQL: Replication Slave IO Running {#MASTER_HOST} |mysql.slave_io_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the I/O thread for reading the master's binary log is running. &eol;Normally, you want this to be Yes unless you have not yet started a replication or have &eol;explicitly stopped it with STOP SLAVE. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30526 |18 | |10317 |MySQL: Replication Slave SQL Running {#MASTER_HOST} |mysql.slave_sql_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the SQL thread for executing events in the relay log is running. &eol;As with the I/O thread, this should normally be Yes. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30532 |18 | |10318 |Docker: Architecture |docker.architecture |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30533 |18 | |10318 |Docker: Live restore enabled |docker.live_restore.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -5288,40 +5376,40 @@ ROW |30633 |18 | |10319 |Memcached: Open connections
ROW |30634 |18 | |10319 |Memcached: Maximum number of bytes |memcached.config.limit_maxbytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum number of bytes allowed in cache. You can adjust this setting via a config file or the command line while starting your Memcached server. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30635 |18 | |10319 |Memcached: Commands: SET per second |memcached.commands.set.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of SET requests received by server per second. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30636 |18 | |10319 |Memcached: Memcached version |memcached.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the Memcached server |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30642 |18 | |10320 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30643 |18 | |10320 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30642 |18 | |10320 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30643 |18 | |10320 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30644 |18 | |10320 |MySQL: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30645 |18 | |10320 |MySQL: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30646 |18 | |10320 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30647 |18 | |10320 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server started. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30648 |18 | |10320 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30649 |18 | |10320 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30650 |18 | |10320 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30651 |18 | |10320 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30652 |18 | |10320 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads in the thread cache. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30653 |18 | |10320 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently open connections. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30655 |18 | |10320 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads that are not sleeping. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30656 |18 | |10320 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of seconds that the server has been up. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30657 |18 | |10320 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests per second. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30646 |18 | |10320 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30647 |18 | |10320 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server start. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30648 |18 | |10320 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30649 |18 | |10320 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical read requests. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30650 |18 | |10320 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30651 |18 | |10320 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30652 |18 | |10320 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of threads in the thread cache. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30653 |18 | |10320 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of currently open connections. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30655 |18 | |10320 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of threads which are not sleeping. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30656 |18 | |10320 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of seconds that the server has been up. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30657 |18 | |10320 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical read requests per second. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30658 |18 | |10320 |MySQL: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30659 |18 | |10320 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30659 |18 | |10320 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes received from all clients. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30660 |18 | |10320 |MySQL: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30661 |18 | |10320 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30661 |18 | |10320 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes sent to all clients. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30662 |18 | |10320 |MySQL: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30663 |18 | |10320 |MySQL: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30664 |18 | |10320 |MySQL: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30665 |18 | |10320 |MySQL: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30666 |18 | |10320 |MySQL: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30667 |18 | |10320 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30667 |18 | |10320 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example, out of memory errors, or failed thread starts. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30668 |18 | |10320 |MySQL: Connection errors peer address per second |mysql.connection_errors_peer_address.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors while searching for the connecting client IP address. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30669 |18 | |10320 |MySQL: InnoDB buffer pool pages free |mysql.innodb_buffer_pool_pages_free |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30670 |18 | |10320 |MySQL: Connection errors select per second |mysql.connection_errors_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30671 |18 | |10320 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library refused. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30672 |18 | |10320 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30676 |18 | |10320 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30677 |18 | |10320 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30682 |18 | |10320 |MySQL: Replication Seconds Behind Master {#MASTER_HOST} |mysql.replication.seconds_behind_master["{#MASTER_HOST}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of seconds that the slave SQL thread is behind processing the master binary log.&eol;A high number (or an increasing one) can indicate that the slave is unable to handle events&eol;from the master in a timely fashion. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30683 |18 | |10320 |MySQL: Replication Slave IO Running {#MASTER_HOST} |mysql.replication.slave_io_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the I/O thread for reading the master's binary log is running. &eol;Normally, you want this to be Yes unless you have not yet started replication or have &eol;explicitly stopped it with STOP SLAVE. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30671 |18 | |10320 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library has refused. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30672 |18 | |10320 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30676 |18 | |10320 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30677 |18 | |10320 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30682 |18 | |10320 |MySQL: Replication Seconds Behind Master {#MASTER_HOST} |mysql.replication.seconds_behind_master["{#MASTER_HOST}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of seconds that the slave SQL thread is behind processing the master binary log.&eol;A high number (or an increasing one) can indicate that the slave is unable to handle events&eol;from the master in a timely fashion. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30683 |18 | |10320 |MySQL: Replication Slave IO Running {#MASTER_HOST} |mysql.replication.slave_io_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the I/O thread for reading the master's binary log is running. &eol;Normally, you want this to be Yes unless you have not yet started a replication or have &eol;explicitly stopped it with STOP SLAVE. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30684 |18 | |10320 |MySQL: Replication Slave SQL Running {#MASTER_HOST} |mysql.replication.slave_sql_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the SQL thread for executing events in the relay log is running. &eol;As with the I/O thread, this should normally be Yes. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30686 |18 | |10321 |Discrete sensors discovery |ipmi.discrete.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the discrete IPMI sensors. |0 |30d |1 | |30685 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30687 |18 | |10321 |Threshold sensors discovery |ipmi.sensors.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the threshold IPMI sensors. |0 |30d |1 | |30685 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -5590,10 +5678,10 @@ ROW |31067 |18 | |10327 |MSSQL: Page splits per second
ROW |31068 |18 | |10327 |MSSQL: Page writes per second |mssql.page_writes_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of physical database page writes that are issued per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31069 |18 | |10327 |MSSQL: Number of blocked processes |mssql.processes_blocked |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of currently blocked processes. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31070 |18 | |10327 |MSSQL: Read-ahead pages per second |mssql.readahead_pages_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of pages read per second in anticipation of use. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31071 |18 | |10327 |MSSQL: Safe auto-params per second |mssql.safe_autoparams_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of safe auto-parameterization attempts per second. Safe refers to a determination that a cached execution plan can be shared between different similar-looking Transact-SQL statements. SQL Server makes many auto-parameterization attempts some of which turn out to be safe and others fail. Note that auto-parameterizations are also known as simple parameterizations in later versions of SQL Server. This does not include forced parameterizations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31071 |18 | |10327 |MSSQL: Safe auto-params per second |mssql.safe_autoparams_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of safe auto-parameterization attempts per second. Safe refers to a determination that a cached execution plan can be shared between different similar-looking Transact-SQL statements. SQL Server makes many auto-parameterization attempts some of which turn out to be safe and others fail. Note that auto-parameterizations are also known as simple parameterizations in the newer versions of SQL Server. This does not include forced parameterizations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31072 |18 | |10327 |MSSQL: SQL compilations per second |mssql.sql_compilations_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of SQL compilations per second. Indicates the number of times the compile code path is entered. Includes compiles caused by statement-level recompilations in SQL Server. After SQL Server user activity is stable, this value reaches a steady state. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31073 |18 | |10327 |MSSQL: SQL re-compilations per second |mssql.sql_recompilations_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of statement recompiles per second. Counts the number of times statement recompiles are triggered. Generally, you want the recompiles to be low. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31074 |18 | |10327 |MSSQL: Target pages |mssql.target_pages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The optimum number of pages in the buffer pool. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31074 |18 | |10327 |MSSQL: Target pages |mssql.target_pages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The optimal number of pages in the buffer pool. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31075 |18 | |10327 |MSSQL: Maximum workspace memory |mssql.maximum_workspace_memory |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the maximum amount of memory available for executing processes, such as hash, sort, bulk copy, and index creation operations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31076 |18 | |10327 |MSSQL: Target server memory |mssql.target_server_memory |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the ideal amount of memory the server can consume. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31077 |18 | |10327 |MSSQL: Total latch wait Time |mssql.total_latch_wait_time |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Total latch wait time (in milliseconds) for latch requests in the last second. This value should stay stable compared to the number of latch waits per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -5605,8 +5693,8 @@ ROW |31082 |18 | |10327 |MSSQL: Uptime
ROW |31083 |18 | |10327 |MSSQL: Number users connected |mssql.user_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users connected to MS SQL Server. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31084 |18 | |10327 |MSSQL: Errors per second (User errors) |mssql.user_errors_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31085 |18 | |10327 |MSSQL: Version |mssql.version |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MS SQL Server version. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31086 |18 | |10327 |MSSQL: Work files created per second |mssql.workfiles_created_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of work files created per second. For example, work files could be used to store temporary results for hash joins and hash aggregates. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31087 |18 | |10327 |MSSQL: Work tables created per second |mssql.worktables_created_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of work tables created per second. For example, work tables could be used to store temporary results for query spool, lob variables, XML variables, and cursors. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31086 |18 | |10327 |MSSQL: Work files created per second |mssql.workfiles_created_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of work files created per second. For example, work files can be used to store temporary results for hash joins and hash aggregates. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31087 |18 | |10327 |MSSQL: Work tables created per second |mssql.worktables_created_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of work tables created per second. For example, work tables can be used to store temporary results for query spool, lob variables, XML variables, and cursors. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31088 |18 | |10327 |MSSQL: Worktables from cache ratio |mssql.worktables_from_cache_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Percentage of work tables created where the initial two pages of the work table were not allocated but were immediately available from the work table cache. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31089 |18 | |10327 |MSSQL: Memory grants outstanding |mssql.memory_grants_outstanding |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Specifies the total number of processes that have successfully acquired a workspace memory grant. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31090 |18 | |10327 |MSSQL: Logouts per second |mssql.logouts_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of logout operations started per second. Any value over 2 may indicate insufcient connection pooling. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -5615,19 +5703,19 @@ ROW |31092 |18 | |10327 |MSSQL: Forwarded records per second
ROW |31093 |18 | |10327 |MSSQL: Total average wait time base |mssql.average_wait_time_base |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |For internal use only. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31094 |18 | |10327 |MSSQL: Total average wait time raw |mssql.average_wait_time_raw |0 |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Average amount of wait time (in milliseconds) for each lock request that resulted in a wait. Information for all locks. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31095 |18 | |10327 |MSSQL: Batch requests per second |mssql.batch_requests_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of Transact-SQL command batches received per second. This statistic is affected by all constraints (such as I/O, number of users, cache size, complexity of requests, and so on). High batch requests mean good throughput. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31096 |18 | |10327 |MSSQL: Buffer cache hit ratio |mssql.buffer_cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the percentage of pages found in the buffer cache without having to read from disk. The ratio is the total number of cache hits divided by the total number of cache lookups over the last few thousand page accesses. After a long period of time, the ratio moves very little. Because reading from the cache is much less expensive than reading from disk, you want this ratio to be high. Generally, you can increase the buffer cache hit ratio by increasing the amount of memory available to SQL Server or by using the buffer pool extension feature. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31096 |18 | |10327 |MSSQL: Buffer cache hit ratio |mssql.buffer_cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the percentage of pages found in the buffer cache without having to read from disk. The ratio is the total number of cache hits divided by the total number of cache lookups over the last few thousand page accesses. After a long period of time, the ratio changes very little. Since reading from the cache is much less expensive than reading from the disk, a higher value is preferred for this item. To increase the buffer cache hit ratio, consider increasing the amount of memory available to SQL Server or using the buffer pool extension feature. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31097 |18 | |10327 |MSSQL: Cache hit ratio |mssql.cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Ratio between cache hits and lookups. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31098 |18 | |10327 |MSSQL: Cache object counts |mssql.cache_object_counts |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cache objects in the cache. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31099 |18 | |10327 |MSSQL: Cache objects in use |mssql.cache_objects_in_use |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cache objects in use. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31100 |18 | |10327 |MSSQL: Cache pages |mssql.cache_pages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of 8-kilobyte (KB) pages used by cache objects. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31101 |18 | |10327 |MSSQL: Checkpoint pages per second |mssql.checkpoint_pages_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of pages flushed to disk per second by a checkpoint or other operation that require all dirty pages to be flushed. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31102 |18 | |10327 |MSSQL: Total data file size |mssql.data_files_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total size of all the data files. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31101 |18 | |10327 |MSSQL: Checkpoint pages per second |mssql.checkpoint_pages_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of pages flushed to disk per second by a checkpoint or other operation which required all dirty pages to be flushed. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31102 |18 | |10327 |MSSQL: Total data file size |mssql.data_files_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total size of all data files. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31103 |18 | |10327 |MSSQL: Database pages |mssql.database_pages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of pages in the buffer pool with database content. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31104 |18 | |10327 |MSSQL: Total errors per second |mssql.errors_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31105 |18 | |10327 |MSSQL: Failed auto-params per second |mssql.failed_autoparams_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of failed auto-parameterization attempts per second. This should be small. Note that auto-parameterizations are also known as simple parameterizations in later versions of SQL Server. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31105 |18 | |10327 |MSSQL: Failed auto-params per second |mssql.failed_autoparams_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of failed auto-parameterization attempts per second. This number should be small. Note that auto-parameterizations are also known as simple parameterizations in the newer versions of SQL Server. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31106 |18 | |10327 |MSSQL: Free list stalls per second |mssql.free_list_stalls_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of requests per second that had to wait for a free page. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31107 |18 | |10327 |MSSQL: Logins per second |mssql.logins_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of logins started per second. This does not include pooled connections. Any value over 2 may indicate insufcient connection pooling. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31108 |18 | |10327 |MSSQL: Full scans per second |mssql.full_scans_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of unrestricted full scans per second. These can be either base-table or full-index scans. Values greater than 1 or 2 indicate that we are having table / Index page scans. If we see high CPU then we need to investigate this counter, otherwise if the full scans are on small tables we can ignore this counter. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31108 |18 | |10327 |MSSQL: Full scans per second |mssql.full_scans_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of unrestricted full scans per second. These can be either base-table or full-index scans. Values greater than 1 or 2 indicate that there are table / Index page scans. If that is combined with high CPU, this counter requires further investigation, otherwise, if the full scans are on small tables, it can be ignored. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31109 |18 | |10327 |MSSQL: Granted Workspace Memory |mssql.granted_workspace_memory |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Specifies the total amount of memory currently granted to executing processes, such as hash, sort, bulk copy, and index creation operations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31110 |18 | |10327 |MSSQL: Index searches per second |mssql.index_searches_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of index searches per second. These are used to start a range scan, reposition a range scan, revalidate a scan point, fetch a single index record, and search down the index to locate where to insert a new row. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31111 |18 | |10327 |MSSQL: Errors per second (Info errors) |mssql.info_errors_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -5635,27 +5723,27 @@ ROW |31112 |18 | |10327 |MSSQL: Errors per second (Kill connection err
ROW |31113 |18 | |10327 |MSSQL: Latch waits per second |mssql.latch_waits_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of latch requests that could not be granted immediately. Latches are lightweight means of holding a very transient server resource, such as an address in memory. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31114 |18 | |10327 |MSSQL: Lazy writes per second |mssql.lazy_writes_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of buffers written per second by the buffer manager's lazy writer. The lazy writer is a system process that flushes out batches of dirty, aged buffers (buffers that contain changes that must be written back to disk before the buffer can be reused for a different page) and makes them available to user processes. The lazy writer eliminates the need to perform frequent checkpoints in order to create available buffers. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31115 |18 | |10327 |MSSQL: Total lock requests per second |mssql.lock_requests_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of new locks and lock conversions per second requested from the lock manager. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31116 |18 | |10327 |MSSQL: Total lock requests per second that timed out |mssql.lock_timeouts_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of lock requests per second that timed out, including requests for NOWAIT locks. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31116 |18 | |10327 |MSSQL: Total lock requests per second that timed out |mssql.lock_timeouts_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of timed out lock requests per second, including requests for NOWAIT locks. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31117 |18 | |10327 |MSSQL: Lock wait time |mssql.lock_wait_time |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Average of total wait time (in milliseconds) for locks in the last second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31118 |18 | |10327 |MSSQL: Total lock requests per second that required waiting |mssql.lock_waits_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of lock requests per second that required the caller to wait. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31119 |18 | |10327 |MSSQL: Total log file size |mssql.log_files_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total size of all the transaction log files. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31120 |18 | |10327 |MSSQL: Auto-param attempts per second |mssql.autoparam_attempts_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of auto-parameterization attempts per second. Total should be the sum of the failed, safe, and unsafe auto-parameterizations. Auto-parameterization occurs when an instance of SQL Server tries to parameterize a Transact-SQL request by replacing some literals with parameters so that reuse of the resulting cached execution plan across multiple similar-looking requests is possible. Note that auto-parameterizations are also known as simple parameterizations in newer versions of SQL Server. This counter does not include forced parameterizations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31120 |18 | |10327 |MSSQL: Auto-param attempts per second |mssql.autoparam_attempts_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of auto-parameterization attempts per second. The total should be the sum of the failed, safe, and unsafe auto-parameterizations. Auto-parameterization occurs when an instance of SQL Server tries to parameterize a Transact-SQL request by replacing some literals with parameters to me reuse of the resulting cached execution plan across multiple similar-looking requests possible. Note that auto-parameterizations are also known as simple parameterizations in the newer versions of SQL Server. This counter does not include forced parameterizations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31121 |18 | |10327 |MSSQL: Total log file used size |mssql.log_files_used_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The cumulative used size of all the log files in the database. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31133 |18 | |10327 |MSSQL AG '{#GROUP_NAME}': Primary replica recovery health |mssql.primary_recovery_health["{#GROUP_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |103 | | |0 | | | | |2 |NULL |Indicates the recovery health of the primary replica:&eol;0 = In progress&eol;1 = Online&eol;2 = Unavailable |0 |30d |0 | |31128 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31134 |18 | |10327 |MSSQL AG '{#GROUP_NAME}': Primary replica name |mssql.primary_replica["{#GROUP_NAME}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Name of the server instance that is hosting the current primary replica. |0 |30d |0 | |31128 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31135 |18 | |10327 |MSSQL AG '{#GROUP_NAME}': Secondary replica recovery health |mssql.secondary_recovery_health["{#GROUP_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |103 | | |0 | | | | |2 |NULL |Indicates the recovery health of a secondary replica replica:&eol;0 = In progress&eol;1 = Online&eol;2 = Unavailable |0 |30d |0 | |31128 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31136 |18 | |10327 |MSSQL AG '{#GROUP_NAME}': Synchronization health |mssql.synchronization_health["{#GROUP_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |106 | | |0 | | | | |2 |NULL |Reflects a rollup of the synchronization_health of all availability replicas in the availability group:&eol;0: Not healthy. None of the availability replicas have a healthy.&eol;1: Partially healthy. The synchronization health of some, but not all, availability replicas is healthy.&eol;2: Healthy. The synchronization health of every availability replica is healthy. |0 |30d |0 | |31128 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31136 |18 | |10327 |MSSQL AG '{#GROUP_NAME}': Synchronization health |mssql.synchronization_health["{#GROUP_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |106 | | |0 | | | | |2 |NULL |Reflects a rollup of the synchronization_health of all availability replicas in the availability group:&eol;0: Not healthy. None of the availability replicas have a healthy synchronization.&eol;1: Partially healthy. The synchronization of some, but not all, availability replicas is healthy.&eol;2: Healthy. The synchronization of every availability replica is healthy. |0 |30d |0 | |31128 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31137 |18 | |10327 |MSSQL DB '{#DBNAME}': Active transactions |mssql.db.active_transactions["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of active transactions for the database. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31138 |18 | |10327 |MSSQL DB '{#DBNAME}': Data file size |mssql.db.data_files_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Cumulative size of all the data files in the database including any automatic growth. Monitoring this counter is useful, for example, for determining the correct size of tempdb. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31139 |18 | |10327 |MSSQL DB '{#DBNAME}': Log bytes flushed per second |mssql.db.log_bytes_flushed_sec.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of log bytes flushed per second. Useful for determining trends and utilization of the transaction log. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31140 |18 | |10327 |MSSQL DB '{#DBNAME}': Log file size |mssql.db.log_files_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Cumulative size of all the transaction log files in the database. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31141 |18 | |10327 |MSSQL DB '{#DBNAME}': Log file used size |mssql.db.log_files_used_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The cumulative used size of all the log files in the database. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31141 |18 | |10327 |MSSQL DB '{#DBNAME}': Log file used size |mssql.db.log_files_used_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Cumulative used size of all the log files in the database. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31142 |18 | |10327 |MSSQL DB '{#DBNAME}': Log flush wait time |mssql.db.log_flush_wait_time["{#DBNAME}"] |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Total wait time (in milliseconds) to flush the log. On an AlwaysOn secondary database, this value indicates the wait time for log records to be hardened to disk. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31143 |18 | |10327 |MSSQL DB '{#DBNAME}': Log flush waits per second |mssql.db.log_flush_waits_sec.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of commits per second waiting for the log flush. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31144 |18 | |10327 |MSSQL DB '{#DBNAME}': Log flushes per second |mssql.db.log_flushes_sec.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of log flushes per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31145 |18 | |10327 |MSSQL DB '{#DBNAME}': Log growths |mssql.db.log_growths["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of times the transaction log for the database has been expanded. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31146 |18 | |10327 |MSSQL DB '{#DBNAME}': Log shrinks |mssql.db.log_shrinks["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of times the transaction log for the database has been shrunk. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31147 |18 | |10327 |MSSQL DB '{#DBNAME}': Log truncations |mssql.db.log_truncations["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times the transaction log has been shrunk. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31147 |18 | |10327 |MSSQL DB '{#DBNAME}': Log truncations |mssql.db.log_truncations["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times the transaction log has been shrunk. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31148 |18 | |10327 |MSSQL DB '{#DBNAME}': Percent log used |mssql.db.percent_log_used["{#DBNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Percentage of space in the log that is in use. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31149 |18 | |10327 |MSSQL DB '{#DBNAME}': State |mssql.db.state["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |99 | | |0 | | | | |2 |NULL |0 = ONLINE&eol;1 = RESTORING&eol;2 = RECOVERING &pipe; SQL Server 2008 and later&eol;3 = RECOVERY_PENDING &pipe; SQL Server 2008 and later&eol;4 = SUSPECT&eol;5 = EMERGENCY &pipe; SQL Server 2008 and later&eol;6 = OFFLINE &pipe; SQL Server 2008 and later&eol;7 = COPYING &pipe; Azure SQL Database Active Geo-Replication&eol;10 = OFFLINE_SECONDARY &pipe; Azure SQL Database Active Geo-Replication |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31150 |18 | |10327 |MSSQL DB '{#DBNAME}': Transactions per second |mssql.db.transactions_sec.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of transactions started for the database per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -5665,7 +5753,7 @@ ROW |31153 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}'
ROW |31154 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': Role sequence |mssql.mirroring.role_sequence["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times that mirroring partners have switched the principal and mirror roles due to a failover or forced service. |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31155 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': Role |mssql.mirroring.role["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |109 | | |0 | | | | |2 |NULL |Current role of the local database plays in the database mirroring session.&eol;1 = Principal&eol;2 = Mirror |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31156 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': Safety level |mssql.mirroring.safety_level["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |110 | | |0 | | | | |2 |NULL |Safety setting for updates on the mirror database:&eol;0 = Unknown state&eol;1 = Off [asynchronous]&eol;2 = Full [synchronous] |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31157 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': State |mssql.mirroring.state["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |108 | | |0 | | | | |2 |NULL |State of the mirror database and of the database mirroring session.&eol;0 = Suspended&eol;1 = Disconnected from the other partner&eol;2 = Synchronizing&eol;3 = Pending Failover&eol;4 = Synchronized&eol;5 = The partners are not synchronized. Failover is not possible now.&eol;6 = The partners are synchronized. Failover is potentially possible. For information about the requirements for failover see, Database Mirroring Operating Modes. |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31157 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': State |mssql.mirroring.state["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |108 | | |0 | | | | |2 |NULL |State of the mirror database and of the database mirroring session.&eol;0 = Suspended&eol;1 = Disconnected from the other partner&eol;2 = Synchronizing&eol;3 = Pending Failover&eol;4 = Synchronized&eol;5 = The partners are not synchronized. Failover is not possible now.&eol;6 = The partners are synchronized. Failover is potentially possible. For information about the requirements for the failover, see Database Mirroring Operating Modes. |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31158 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': Witness state |mssql.mirroring.witness_state["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |111 | | |0 | | | | |2 |NULL |State of the witness in the database mirroring session of the database:&eol;0 = Unknown&eol;1 = Connected&eol;2 = Disconnected |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31161 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Connected state |mssql.replica.connected_state["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |100 | | |0 | | | | |2 |NULL |Whether a secondary replica is currently connected to the primary replica:&eol;0 : Disconnected. The response of an availability replica to the DISCONNECTED state depends on its role:&eol;On the primary replica, if a secondary replica is disconnected, its secondary databases are marked as NOT SYNCHRONIZED on the primary replica, which waits for the secondary to reconnect;&eol;On a secondary replica, upon detecting that it is disconnected, the secondary replica attempts to reconnect to the primary replica.&eol;1 : Connected. Each primary replica tracks the connection state for every secondary replica in the same availability group. Secondary replicas track the connection state of only the primary replica. |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31162 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Is local |mssql.replica.is_local["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |107 | | |0 | | | | |2 |NULL |Whether the replica is local:&eol;0 = Indicates a remote secondary replica in an availability group whose primary replica is hosted by the local server instance. This value occurs only on the primary replica location.&eol;1 = Indicates a local replica. On secondary replicas, this is the only available value for the availability group to which the replica belongs. |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -5673,18 +5761,18 @@ ROW |31163 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_N
ROW |31164 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Operational state |mssql.replica.operational_state["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |102 | | |0 | | | | |2 |NULL |Current operational state of the replica:&eol;0 = Pending failover&eol;1 = Pending&eol;2 = Online&eol;3 = Offline&eol;4 = Failed&eol;5 = Failed, no quorum&eol;6 = Not local |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31165 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Recovery health |mssql.replica.recovery_health["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |103 | | |0 | | | | |2 |NULL |Rollup of the database_state column of the sys.dm_hadr_database_replica_states dynamic management view:&eol;0 : In progress. At least one joined database has a database state other than ONLINE &eol;(database_state is not 0).&eol;1 : Online. All the joined databases have a database state of ONLINE (database_state is 0). |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31166 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Role |mssql.replica.role["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |104 | | |0 | | | | |2 |NULL |Current Always On availability groups role of a local replica or a connected remote replica:&eol;0 = Resolving&eol;1 = Primary&eol;2 = Secondary |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31167 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Sync health |mssql.replica.synchronization_health["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |106 | | |0 | | | | |2 |NULL |Reflects a rollup of the database synchronization state (synchronization_state)of all joined availability databases (also known as replicas) and the availability mode of the replica (synchronous-commit or asynchronous-commit mode). The rollup will reflect the least healthy accumulated state the databases on the replica:&eol;0 : Not healthy. At least one joined database is in the NOT SYNCHRONIZING state.&eol;1 : Partially healthy. Some replicas are not in the target synchronization state: synchronous-commit replicas should be synchronized, and asynchronous-commit replicas should be synchronizing.&eol;2 : Healthy. All replicas are in the target synchronization state: synchronous-commit replicas are synchronized, and asynchronous-commit replicas are synchronizing. |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31168 |18 | |10316 |MySQL: Threads created per second |mysql.threads_created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31169 |18 | |10316 |MySQL: Created tmp tables on disk per second |mysql.created_tmp_disk_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31167 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Sync health |mssql.replica.synchronization_health["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |106 | | |0 | | | | |2 |NULL |Reflects a rollup of the database synchronization state (synchronization_state)of all joined availability databases (also known as replicas) and the availability mode of the replica (synchronous-commit or asynchronous-commit mode). The rollup will reflect the least healthy accumulated state of the databases on the replica:&eol;0 : Not healthy. At least one joined database is in the NOT SYNCHRONIZING state.&eol;1 : Partially healthy. Some replicas are not in the target synchronization state: synchronous-commit replicas should be synchronized, and asynchronous-commit replicas should be synchronizing.&eol;2 : Healthy. All replicas are in the target synchronization state: synchronous-commit replicas are synchronized, and asynchronous-commit replicas are synchronizing. |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31168 |18 | |10316 |MySQL: Threads created per second |mysql.threads_created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31169 |18 | |10316 |MySQL: Created tmp tables on disk per second |mysql.created_tmp_disk_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31170 |18 | |10316 |MySQL: Created tmp files on disk per second |mysql.created_tmp_files.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |How many temporary files mysqld has created. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31171 |18 | |10316 |MySQL: Created tmp tables on memory per second |mysql.created_tmp_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31172 |18 | |10320 |MySQL: Threads created per second |mysql.threads_created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31173 |18 | |10320 |MySQL: Created tmp tables on disk per second |mysql.created_tmp_disk_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31171 |18 | |10316 |MySQL: Created tmp tables on memory per second |mysql.created_tmp_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31172 |18 | |10320 |MySQL: Threads created per second |mysql.threads_created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31173 |18 | |10320 |MySQL: Created tmp tables on disk per second |mysql.created_tmp_disk_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31174 |18 | |10320 |MySQL: Created tmp files on disk per second |mysql.created_tmp_files.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |How many temporary files mysqld has created. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31175 |18 | |10320 |MySQL: Created tmp tables on memory per second |mysql.created_tmp_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31176 |18 | |10317 |MySQL: Threads created per second |mysql.threads_created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31177 |18 | |10317 |MySQL: Created tmp tables on disk per second |mysql.created_tmp_disk_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31178 |18 | |10317 |MySQL: Created tmp tables on memory per second |mysql.created_tmp_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31175 |18 | |10320 |MySQL: Created tmp tables on memory per second |mysql.created_tmp_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31176 |18 | |10317 |MySQL: Threads created per second |mysql.threads_created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31177 |18 | |10317 |MySQL: Created tmp tables on disk per second |mysql.created_tmp_disk_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31178 |18 | |10317 |MySQL: Created tmp tables on memory per second |mysql.created_tmp_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31179 |18 | |10317 |MySQL: Created tmp files on disk per second |mysql.created_tmp_files.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |How many temporary files mysqld has created. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31197 |18 | |10328 |Dbstat: Rows fetched |pgsql.dbstat.sum.tup_fetched.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows fetched by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31198 |18 | |10328 |Dbstat: Backends connected |pgsql.dbstat.sum.numbackends |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connected backends |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -6166,43 +6254,43 @@ ROW |32434 |18 | |10349 |Load + Diversion mode discovery
ROW |32435 |18 | |10349 |Load mode discovery |controlmode.load.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for device in load mode |0 |1h |0 | |32422 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32461 |18 | |10338 |Asterisk: PJSIP available endpoints |asterisk.pjsip.available |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of available PJSIP peers. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32462 |18 | |10338 |Asterisk: IAX online peers |asterisk.iax.online |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of online IAX peers. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32547 |18 | |10316 |MySQL: Innodb buffer pool wait free |mysql.innodb_buffer_pool_wait_free |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times InnoDB waited for a free page before reading or creating a page. Normally, writes to the InnoDB buffer pool happen in the background. When no clean pages are available, dirty pages are flushed first in order to free some up. This counts the numbers of wait for this operation to finish. If this value is not small, look at increasing innodb_buffer_pool_size. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32547 |18 | |10316 |MySQL: Innodb buffer pool wait free |mysql.innodb_buffer_pool_wait_free |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times InnoDB waited for a free page before reading or creating a page. Normally, writes to the InnoDB buffer pool happen in the background. When no clean pages are available, dirty pages are flushed first in order to free some up. This counts the numbers of wait for this operation to finish. If this value is not small, look at the increasing innodb_buffer_pool_size. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32548 |18 | |10316 |MySQL: Innodb number open files |mysql.innodb_num_open_files |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of open files held by InnoDB. InnoDB only. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32549 |18 | |10316 |MySQL: Innodb log written |mysql.innodb_os_log_written |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes written to the InnoDB log. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32550 |18 | |10316 |MySQL: Open table definitions |mysql.open_table_definitions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of cached table definitions. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32551 |18 | |10316 |MySQL: Open tables |mysql.open_tables |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of tables that are open. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32552 |18 | |10316 |MySQL: Binlog cache disk use |mysql.binlog_cache_disk_use |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions which used a temporary disk cache because they could not fit in the regular binary log cache, being larger than binlog_cache_size. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32550 |18 | |10316 |MySQL: Open table definitions |mysql.open_table_definitions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cached table definitions. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32551 |18 | |10316 |MySQL: Open tables |mysql.open_tables |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of tables that are open. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32552 |18 | |10316 |MySQL: Binlog cache disk use |mysql.binlog_cache_disk_use |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions that used a temporary disk cache because they could not fit in the regular binary log cache, being larger than binlog_cache_size. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32553 |18 | |10316 |MariaDB discovery |mysql.extra_metric.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics if MariaDB is used. |0 |30d |0 | |30431 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32554 |18 | |10316 |MySQL: Binlog commits |mysql.binlog_commits[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of transactions committed to the binary log. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32555 |18 | |10316 |MySQL: Binlog group commits |mysql.binlog_group_commits[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of group commits done to the binary log. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32556 |18 | |10316 |MySQL: Master GTID wait count |mysql.master_gtid_wait_count[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times MASTER_GTID_WAIT called. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32556 |18 | |10316 |MySQL: Master GTID wait count |mysql.master_gtid_wait_count[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times MASTER_GTID_WAIT called. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32557 |18 | |10316 |MySQL: Master GTID wait time |mysql.master_gtid_wait_time[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of time spent in MASTER_GTID_WAIT. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32558 |18 | |10316 |MySQL: Master GTID wait timeouts |mysql.master_gtid_wait_timeouts[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of timeouts occurring in MASTER_GTID_WAIT. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32559 |18 | |10316 |MySQL: Replication Slave SQL Running State {#MASTER_HOST} |mysql.slave_sql_running_state["{#MASTER_HOST}"] |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |This shows the state of the SQL driver threads. |0 |30d |0 | |30475 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32561 |18 | |10320 |MySQL: Innodb buffer pool wait free |mysql.innodb_buffer_pool_wait_free |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times InnoDB waited for a free page before reading or creating a page. Normally, writes to the InnoDB buffer pool happen in the background. When no clean pages are available, dirty pages are flushed first in order to free some up. This counts the numbers of wait for this operation to finish. If this value is not small, look at increasing innodb_buffer_pool_size. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32561 |18 | |10320 |MySQL: Innodb buffer pool wait free |mysql.innodb_buffer_pool_wait_free |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times InnoDB waited for a free page before reading or creating a page. Normally, writes to the InnoDB buffer pool happen in the background. When no clean pages are available, dirty pages are flushed first in order to free some up. This counts the numbers of wait for this operation to finish. If this value is not small, look at the increasing innodb_buffer_pool_size. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32562 |18 | |10320 |MySQL: Innodb number open files |mysql.innodb_num_open_files |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of open files held by InnoDB. InnoDB only. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32563 |18 | |10320 |MySQL: Innodb log written |mysql.innodb_os_log_written |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes written to the InnoDB log. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32564 |18 | |10320 |MySQL: Open table definitions |mysql.open_table_definitions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of cached table definitions. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32565 |18 | |10320 |MySQL: Open tables |mysql.open_tables |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of tables that are open. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32566 |18 | |10320 |MySQL: Binlog cache disk use |mysql.binlog_cache_disk_use |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions which used a temporary disk cache because they could not fit in the regular binary log cache, being larger than binlog_cache_size. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32564 |18 | |10320 |MySQL: Open table definitions |mysql.open_table_definitions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cached table definitions. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32565 |18 | |10320 |MySQL: Open tables |mysql.open_tables |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of tables that are open. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32566 |18 | |10320 |MySQL: Binlog cache disk use |mysql.binlog_cache_disk_use |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions that used a temporary disk cache because they could not fit in the regular binary log cache, being larger than binlog_cache_size. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32567 |18 | |10320 |MariaDB discovery |mysql.extra_metric.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics if MariaDB is used. |0 |30d |0 | |30637 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32568 |18 | |10320 |MySQL: Binlog commits |mysql.binlog_commits[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of transactions committed to the binary log. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32569 |18 | |10320 |MySQL: Binlog group commits |mysql.binlog_group_commits[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of group commits done to the binary log. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32570 |18 | |10320 |MySQL: Master GTID wait count |mysql.master_gtid_wait_count[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times MASTER_GTID_WAIT called. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32570 |18 | |10320 |MySQL: Master GTID wait count |mysql.master_gtid_wait_count[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times MASTER_GTID_WAIT called. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32571 |18 | |10320 |MySQL: Master GTID wait time |mysql.master_gtid_wait_time[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of time spent in MASTER_GTID_WAIT. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32572 |18 | |10320 |MySQL: Master GTID wait timeouts |mysql.master_gtid_wait_timeouts[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of timeouts occurring in MASTER_GTID_WAIT. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32573 |18 | |10320 |MySQL: Replication Slave SQL Running State {#MASTER_HOST} |mysql.replication.slave_sql_running_state["{#MASTER_HOST}"] |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |This shows the state of the SQL driver threads. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32575 |18 | |10317 |MySQL: Innodb buffer pool wait free |mysql.innodb_buffer_pool_wait_free |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times InnoDB waited for a free page before reading or creating a page. Normally, writes to the InnoDB buffer pool happen in the background. When no clean pages are available, dirty pages are flushed first in order to free some up. This counts the numbers of wait for this operation to finish. If this value is not small, look at increasing innodb_buffer_pool_size. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32575 |18 | |10317 |MySQL: Innodb buffer pool wait free |mysql.innodb_buffer_pool_wait_free |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times InnoDB waited for a free page before reading or creating a page. Normally, writes to the InnoDB buffer pool happen in the background. When no clean pages are available, dirty pages are flushed first in order to free some up. This counts the numbers of wait for this operation to finish. If this value is not small, look at the increasing innodb_buffer_pool_size. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32576 |18 | |10317 |MySQL: Innodb number open files |mysql.innodb_num_open_files |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of open files held by InnoDB. InnoDB only. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32577 |18 | |10317 |MySQL: Innodb log written |mysql.innodb_os_log_written |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes written to the InnoDB log. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32578 |18 | |10317 |MySQL: Open table definitions |mysql.open_table_definitions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of cached table definitions. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32579 |18 | |10317 |MySQL: Open tables |mysql.open_tables |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of tables that are open. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32580 |18 | |10317 |MySQL: Binlog cache disk use |mysql.binlog_cache_disk_use |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions which used a temporary disk cache because they could not fit in the regular binary log cache, being larger than binlog_cache_size. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32578 |18 | |10317 |MySQL: Open table definitions |mysql.open_table_definitions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cached table definitions. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32579 |18 | |10317 |MySQL: Open tables |mysql.open_tables |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of tables that are open. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32580 |18 | |10317 |MySQL: Binlog cache disk use |mysql.binlog_cache_disk_use |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions that used a temporary disk cache because they could not fit in the regular binary log cache, being larger than binlog_cache_size. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32581 |18 | |10317 |MariaDB discovery |mysql.extra_metric.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics if MariaDB is used. |0 |30d |0 | |30480 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32582 |18 | |10317 |MySQL: Replication Slave SQL Running State {#MASTER_HOST} |mysql.slave_sql_running_state["{#MASTER_HOST}"] |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |This shows the state of the SQL driver threads. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32583 |18 | |10317 |MySQL: Binlog commits |mysql.binlog_commits[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of transactions committed to the binary log. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32584 |18 | |10317 |MySQL: Binlog group commits |mysql.binlog_group_commits[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of group commits done to the binary log. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32585 |18 | |10317 |MySQL: Master GTID wait count |mysql.master_gtid_wait_count[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times MASTER_GTID_WAIT called. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32585 |18 | |10317 |MySQL: Master GTID wait count |mysql.master_gtid_wait_count[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times MASTER_GTID_WAIT called. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32586 |18 | |10317 |MySQL: Master GTID wait time |mysql.master_gtid_wait_time[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of time spent in MASTER_GTID_WAIT. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32587 |18 | |10317 |MySQL: Master GTID wait timeouts |mysql.master_gtid_wait_timeouts[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of timeouts occurring in MASTER_GTID_WAIT. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32588 |18 | |10333 |Oracle TBS '{#TABLESPACE}': Tablespace used, bytes |oracle.tbs_used_bytes["{#TABLESPACE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Currently used bytes for tablespace (current size of datafiles-free space). |0 |30d |0 | |31645 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -6544,7 +6632,7 @@ ROW |33190 |18 | |10363 |MongoDB {#DBNAME}: Size, index
ROW |33191 |18 | |10363 |MongoDB {#DBNAME}: Objects, count |mongodb.db.objects["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of objects (documents) in the database across all collections. |0 |30d |0 | |33178 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33192 |18 | |10363 |MongoDB {#DBNAME}: Objects, avg size |mongodb.db.size["{#DBNAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The average size of each document in bytes. |0 |30d |0 | |33178 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33193 |18 | |10363 |MongoDB {#DBNAME}: Size, storage |mongodb.db.storage_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total amount of space allocated to collections in this database for document storage. |0 |30d |0 | |33178 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33195 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Non-Local DB '*{#REPLICA_NAME}*{#DBNAME}': Log queue size |mssql.non-local_db.log_send_queue_size["{#GROUP_NAME}*{#REPLICA_NAME}*{#DBNAME}"]|0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Amount of log records of the primary database that has not been sent to the secondary databases. |0 |30d |0 | |33194 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33195 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Non-Local DB '*{#REPLICA_NAME}*{#DBNAME}': Log queue size |mssql.non-local_db.log_send_queue_size["{#GROUP_NAME}*{#REPLICA_NAME}*{#DBNAME}"]|0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Amount of the log records of the primary database that has not been sent to the secondary databases. |0 |30d |0 | |33194 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33196 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Non-Local DB '*{#REPLICA_NAME}*{#DBNAME}': Redo log queue size |mssql.non-local_db.redo_queue_size["{#GROUP_NAME}*{#REPLICA_NAME}*{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Amount of log records in the log files of the secondary replica that has not yet been redone. |0 |30d |0 | |33194 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33493 |18 | |10372 |Cluster status |netapp.cluster.status |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The status of the cluster: ok, error, partial_no_data, partial_no_response, partial_other_error, negative_delta, backfilled_data, inconsistent_delta_time, inconsistent_old_data. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33494 |18 | |10372 |Cluster location |netapp.cluster.location |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The location of the cluster. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -6609,6 +6697,17 @@ ROW |33564 |18 | |10372 |{#VOLUMENAME}: Used size
ROW |33565 |18 | |10372 |{#VOLUMENAME}: Space size |netapp.volume.space_size[{#VOLUMENAME}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total provisioned size. The default size is equal to the minimum size of 20MB, in bytes. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33566 |18 | |10372 |{#VOLUMENAME}: Type |netapp.volume.type[{#VOLUMENAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Type of the volume.&eol;rw ‐ read-write volume.&eol;dp ‐ data-protection volume.&eol;ls ‐ load-sharing dp volume. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33567 |18 | |10363 |MongoDB cluster: Configserver heartbeat |mongodb.config_server_heartbeat |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Difference between the latest optime of the CSRS primary that the mongos has seen and cluster time. |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34176 |18 | |10327 |MSSQL DB '{#DBNAME}': Last diff backup duration |mssql.backup.diff.duration["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Duration of the last differential backup. |0 |30d |0 | |34174 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34177 |18 | |10327 |MSSQL DB '{#DBNAME}': Last diff backup (time ago) |mssql.backup.diff["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The amount of time since the last differential backup. |0 |30d |0 | |34174 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34178 |18 | |10327 |MSSQL DB '{#DBNAME}': Last log backup |mssql.backup.log["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The amount of time since the last log backup. |0 |30d |0 | |34174 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34179 |18 | |10327 |MSSQL DB '{#DBNAME}': Last log backup duration |mssql.backup.log.duration["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Duration of the last log backup. |0 |30d |0 | |34174 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34180 |18 | |10327 |MSSQL DB '{#DBNAME}': Last full backup (time ago) |mssql.backup.full["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The amount of time since the last full backup. |0 |30d |0 | |34174 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34181 |18 | |10327 |MSSQL DB '{#DBNAME}': Last full backup duration |mssql.backup.full.duration["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Duration of the last full backup. |0 |30d |0 | |34174 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34182 |18 | |10327 |MSSQL Job '{#JOBNAME}': Last run date-time |mssql.job.lastrundatetime["{#JOBNAME}"] |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The last date-time of the job run. |0 |30d |0 | |34173 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34183 |18 | |10327 |MSSQL Job '{#JOBNAME}': Last run status message |mssql.job.lastrunstatusmessage["{#JOBNAME}"] |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The informational message about the last run of the job. |0 |30d |0 | |34173 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34184 |18 | |10327 |MSSQL Job '{#JOBNAME}': Next run date-time |mssql.job.nextrundatetime["{#JOBNAME}"] |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The next date-time of the job run. |0 |30d |0 | |34173 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34185 |18 | |10327 |MSSQL Job '{#JOBNAME}': Run duration |mssql.job.run_duration["{#JOBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Duration of the last run job. |0 |30d |0 | |34173 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34186 |18 | |10327 |MSSQL Job '{#JOBNAME}': Run status |mssql.job.runstatus["{#JOBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |161 | | |0 | | | | |2 |NULL |The job status possible values:&eol;0 ⇒ Failed&eol;1 ⇒ Succeeded&eol;2 ⇒ Retry&eol;3 ⇒ Canceled&eol;4 ⇒ Running |0 |30d |0 | |34173 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
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|
@@ -8379,7 +8478,6 @@ ROW |16710 |{19548} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19549} >
ROW |16713 |{19552}<>0 |"{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running (startup type {#SERVICE.STARTUPNAME}) | |0 |3 |The service has a state other than "Running" for the last three times. |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |16717 |{19556}<>0 |"{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running (startup type {#SERVICE.STARTUPNAME}) | |0 |3 |The service has a state other than "Running" for the last three times. |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |16719 |{19558}>{$MYSQL.ABORTED_CONN.MAX.WARN} |MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m) | |0 |3 |The number of failed attempts to connect to the MySQL server is more than {$MYSQL.ABORTED_CONN.MAX.WARN} in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16720 |{19559}<{$MYSQL.BUFF_UTIL.MIN.WARN} |MySQL: Buffer pool utilization is too low (less {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m) | |0 |2 |The buffer pool utilization is less than {$MYSQL.BUFF_UTIL.MIN.WARN}% in the last 5 minutes. This means that there is a lot of unused RAM allocated for the buffer pool, which you can easily reallocate at the moment. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |16721 |{19560}>0 |MySQL: Refused connections (max_connections limit reached) | |0 |3 |Number of refused connections due to the max_connections limit being reached. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |16723 |{19562}=0 |MySQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |16724 |{19563}>{$MYSQL.SLOW_QUERIES.MAX.WARN} |MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m) | |0 |2 |The number of slow queries is more than {$MYSQL.SLOW_QUERIES.MAX.WARN} in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
@@ -8392,7 +8490,6 @@ ROW |16730 |{19570}=1
ROW |16732 |{19572}=0 |MySQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |16733 |{19573}=1 and {19574}>0 |MySQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |MySQL version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |16734 |{19575}>{$MYSQL.ABORTED_CONN.MAX.WARN} |MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m) | |0 |3 |The number of failed attempts to connect to the MySQL server is more than {$MYSQL.ABORTED_CONN.MAX.WARN} in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16735 |{19576}<{$MYSQL.BUFF_UTIL.MIN.WARN} |MySQL: Buffer pool utilization is too low (less {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m) | |0 |2 |The buffer pool utilization is less than {$MYSQL.BUFF_UTIL.MIN.WARN}% in the last 5 minutes. This means that there is a lot of unused RAM allocated for the buffer pool, which you can easily reallocate at the moment. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |16736 |{19577}>0 |MySQL: Refused connections (max_connections limit reached) | |0 |3 |Number of refused connections due to the max_connections limit being reached. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |16737 |{19578}>{$MYSQL.SLOW_QUERIES.MAX.WARN} |MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m) | |0 |2 |The number of slow queries is more than {$MYSQL.SLOW_QUERIES.MAX.WARN} in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |16738 |{19579}<10m |MySQL: Service has been restarted (uptime < 10m) | |0 |1 |MySQL uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
@@ -8414,7 +8511,6 @@ ROW |16753 |{19599}=0
ROW |16754 |{19600}<10m |Memcached: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |16755 |{19601}=1 and {19602}>0 |Memcached: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Memcached version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |16756 |{19603}>{$MYSQL.ABORTED_CONN.MAX.WARN} |MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m) | |0 |3 |The number of failed attempts to connect to the MySQL server is more than {$MYSQL.ABORTED_CONN.MAX.WARN} in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16757 |{19604}<{$MYSQL.BUFF_UTIL.MIN.WARN} |MySQL: Buffer pool utilization is too low (less {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m) | |0 |2 |The buffer pool utilization is less than {$MYSQL.BUFF_UTIL.MIN.WARN}% in the last 5 minutes. This means that there is a lot of unused RAM allocated for the buffer pool, which you can easily reallocate at the moment. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |16758 |{19605}>0 |MySQL: Refused connections (max_connections limit reached) | |0 |3 |Number of refused connections due to the max_connections limit being reached. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |16759 |{19606}=0 |MySQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |16760 |{19607}>{$MYSQL.SLOW_QUERIES.MAX.WARN} |MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m) | |0 |2 |The number of slow queries is more than {$MYSQL.SLOW_QUERIES.MAX.WARN} in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
@@ -8544,8 +8640,8 @@ ROW |16928 |{19846}<{$MSSQL.BUFFER_CACHE_RATIO.MIN.CRIT}
ROW |16929 |{19847}<{$MSSQL.BUFFER_CACHE_RATIO.MIN.WARN} |MSSQL: Percentage of the buffer cache efficiency is low (below {$MSSQL.BUFFER_CACHE_RATIO.MIN.WARN}% for 5m) | |0 |2 |Low buffer cache hit ratio. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |16930 |{19848}>{$MSSQL.FREE_LIST_STALLS.MAX} |MSSQL: Number of rps waiting for a free page is high (over {$MSSQL.FREE_LIST_STALLS.MAX} for 5m) | |0 |2 |Some requests have to wait for a free page. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |16931 |{19849}>{$MSSQL.LAZY_WRITES.MAX} |MSSQL: Number of buffers written per second by the lazy writer is high (over {$MSSQL.LAZY_WRITES.MAX} for 5m) | |0 |2 |The number of buffers written per second by the buffer manager's lazy writer exceeds the threshold. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16932 |{19850}>{$MSSQL.LOCK_REQUESTS.MAX} |MSSQL: Total number of locks per second is high (over {$MSSQL.LOCK_REQUESTS.MAX} for 5m) | |0 |2 |The number of new locks and lock conversions per second requested from the lock manager is high. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16933 |{19851}>{$MSSQL.LOCK_TIMEOUTS.MAX} |MSSQL: Total lock requests per second that timed out is high (over {$MSSQL.LOCK_TIMEOUTS.MAX} for 5m) | |0 |2 |The total number of lock requests per second that timed out, including requests for NOWAIT locks is high. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16932 |{19850}>{$MSSQL.LOCK_REQUESTS.MAX} |MSSQL: Total number of locks per second is high (over {$MSSQL.LOCK_REQUESTS.MAX} for 5m) | |0 |2 |Number of new locks and lock conversions per second requested from the lock manager is high. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16933 |{19851}>{$MSSQL.LOCK_TIMEOUTS.MAX} |MSSQL: Total lock requests per second that timed out is high (over {$MSSQL.LOCK_TIMEOUTS.MAX} for 5m) | |0 |2 |The total number of timed out lock requests per second, including requests for NOWAIT locks, is high. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |16934 |{19852}>0 |MSSQL: Some blocking is occurring for 5m | |0 |3 |Values greater than zero indicate at least some blocking is occurring, while a value of zero can quickly eliminate blocking as a potential root-cause problem. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |16935 |{19853}>{$MSSQL.DEADLOCKS.MAX} |MSSQL: Number of deadlock is high (over {$MSSQL.DEADLOCKS.MAX} for 5m) | |0 |3 |Too many deadlocks are occurring currently. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |16936 |{19854}<{$MSSQL.PAGE_LIFE_EXPECTANCY.MIN} |MSSQL: Page life expectancy is low (less {$MSSQL.PAGE_LIFE_EXPECTANCY.MIN}min for 15m) | |0 |4 |The page stays in the buffer pool without references of less time than the threshold value. |NULL |0 |0 |0 | |0 | |0 | |0 |
@@ -8554,12 +8650,10 @@ ROW |16938 |{19856}>{$MSSQL.PAGE_WRITES.MAX}
ROW |16939 |{19857}<10m |MSSQL: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |16940 |{19858}=1 |MSSQL: Failed to fetch info data (or no data for 30m) | |0 |1 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |16941 |{19859}=1 and {19860}>0 |MSSQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |MSSQL version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16942 |{19861}>{$MSSQL.WORK_FILES.MAX} |MSSQL: Number work files created per second is high (over {$MSSQL.WORK_FILES.MAX} for 5m) | |0 |3 |Too many work files created per second to store temporary results for hash joins and hash aggregates. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16943 |{19862}>{$MSSQL.WORK_TABLES.MAX} |MSSQL: Number work tables created per second is high (over {$MSSQL.WORK_TABLES.MAX} for 5m) | |0 |3 |Too many work tables created per second to store temporary results for query spool, lob variables, XML variables, and cursors. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16944 |{19863}<{$MSSQL.WORKTABLES_FROM_CACHE_RATIO.MIN.CRIT} |MSSQL: Percentage of work tables available from the work table cache is low (below {$MSSQL.WORKTABLES_FROM_CACHE_RATIO.MIN.CRIT}% for 5m) | |0 |4 |A value less than 90% may indicate insufcient memory, since execution plans are being dropped, or may indicate, on 32-bit systems, the need for an upgrade to a 64-bit system |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16944 |{19863}<{$MSSQL.WORKTABLES_FROM_CACHE_RATIO.MIN.CRIT} |MSSQL: Percentage of work tables available from the work table cache is low (below {$MSSQL.WORKTABLES_FROM_CACHE_RATIO.MIN.CRIT}% for 5m) | |0 |4 |A value less than 90% may indicate insufcient memory, since execution plans are being dropped, or on 32-bit systems, may indicate the need for an upgrade to a 64-bit system |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |16946 |{19865}=0 |MSSQL AG '{#GROUP_NAME}': Primary replica recovery health in progress | |0 |2 |The primary replica is in the synchronization process. |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |16947 |{19866}=0 |MSSQL AG '{#GROUP_NAME}': Secondary replica recovery health in progress | |0 |2 |The secondary replica is in the synchronization process. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16948 |{19867}=0 |MSSQL AG '{#GROUP_NAME}': All replicas unhealthy | |0 |5 |None of the availability replicas have a healthy. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16948 |{19867}=0 |MSSQL AG '{#GROUP_NAME}': All replicas unhealthy | |0 |5 |None of the availability replicas have a healthy synchronization. |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |16949 |{19868}=1 |MSSQL AG '{#GROUP_NAME}': Some replicas unhealthy | |0 |4 |The synchronization health of some, but not all, availability replicas is healthy. |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |16950 |{19869}>{$MSSQL.LOG_FLUSH_WAIT_TIME.MAX:"{#DBNAME}"} |MSSQL DB '{#DBNAME}': Total wait time to flush the log is high (over {$MSSQL.LOG_FLUSH_WAIT_TIME.MAX:"{#DBNAME}"}ms for 5m) | |0 |2 |The wait time to flush the log is too long. |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |16951 |{19870}>{$MSSQL.LOG_FLUSH_WAITS.MAX:"{#DBNAME}"} |MSSQL DB '{#DBNAME}': Number of commits waiting for the log flush is high (over {$MSSQL.LOG_FLUSH_WAITS.MAX:"{#DBNAME}"}/sec for 5m) | |0 |2 |Too many commits are waiting for the log flush. |NULL |0 |2 |0 | |0 | |0 | |0 |
@@ -8707,9 +8801,9 @@ ROW |17145 |{20152}<324
ROW |17146 |{20153}<378 |System Fan 2 Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |17147 |{20154}<324 |System Fan 3 Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |17148 |{20155}<378 |System Fan 3 Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17149 |{20156} > {$MSSQL.PERCENT_READAHEAD.MAX} / 100 * {20157} |MSSQL: Too many physical reads occurring | |0 |2 |If this value is makes up even a sizeable minority of total Page Reads/sec (say, greater than 20% of total page reads), you may have too many physical reads occurring. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17149 |{20156} > {$MSSQL.PERCENT_READAHEAD.MAX} / 100 * {20157} |MSSQL: Too many physical reads occurring | |0 |2 |If this value makes up even a sizeable minority of the total Page Reads/sec (say, greater than 20% of the total page reads), you may have too many physical reads occurring. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |17150 |{20158} > {$MSSQL.PERCENT_COMPILATIONS.MAX} |MSSQL: Percent of adhoc queries running is over {$MSSQL.PERCENT_COMPILATIONS.MAX}% for 15m | |0 |2 |The lower this value is the better. High values often indicate excessive adhoc querying and should be as low as possible. If excessive adhoc querying is happening, try rewriting the queries as procedures or invoke the queries using sp_executeSQL. When rewriting isn’t possible, consider using a plan guide or setting the database to parameterization forced mode. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17151 |{20159} > {$MSSQL.PERCENT_RECOMPILATIONS.MAX} |MSSQL: Percent of times statement recompiles is over {$MSSQL.PERCENT_RECOMPILATIONS.MAX}% for 15m | |0 |2 |This number should be at or near zero, since recompiles can cause deadlocks and exclusive compile locks. This counter’s value should follow in proportion to “Batch Requests/sec” and “SQL Compilations/sec”. This needs to be nil in your system as much as possible. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17151 |{20159} > {$MSSQL.PERCENT_RECOMPILATIONS.MAX} |MSSQL: Percent of times statement recompiles is over {$MSSQL.PERCENT_RECOMPILATIONS.MAX}% for 15m | |0 |2 |This number should be at or near zero, since recompiles can cause deadlocks and exclusive compile locks. This counter’s value should follow in proportion to “Batch Requests/sec” and “SQL Compilations/sec”. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |17152 |{20160} > 0.001 |MSSQL: Index and table scans are often than index searches for 15m | |0 |2 |Index searches are preferable to index and table scans. For OLTP applications, optimize for more index searches and less scans (preferably, 1 full scan for every 1000 index searches). Index and table scans are expensive I/O operations. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |17153 |{20161}=0 |MSSQL: Service is unavailable | |0 |5 |The TCP port of the MS SQL Server service is currently unavailable. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |17154 |{20162} * 100 / {20163} > {$ORACLE.PROCESSES.MAX.WARN} |Oracle: Too many active processes (over {$ORACLE.PROCESSES.MAX.WARN}% for 5 min) | |0 |2 |Active processes are using more than {$ORACLE.PROCESSES.MAX.WARN}% of the available number of processes. |NULL |0 |0 |0 | |0 | |0 | |0 |
@@ -9456,7 +9550,7 @@ ROW |18017 |{21357}=0
ROW |18018 |{21358}<10m |MongoDB cluster: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |18019 |{21359}=1 |MongoDB cluster: Failed to fetch info data (or no data for 10m) | |0 |2 |Zabbix has not received data for items for the last 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |18020 |{21360}=1 and {21361}>0 |MongoDB cluster: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |MongoDB cluster version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |18021 |{21362}>{21363} and {21363}>{21364} |MSSQL AG '{#GROUP_NAME}' Non-Local DB '*{#REPLICA_NAME}*{#DBNAME}': Log queue size is growing | |0 |4 |The log records of the primary database do not send to the secondary databases. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18021 |{21362}>{21363} and {21363}>{21364} |MSSQL AG '{#GROUP_NAME}' Non-Local DB '*{#REPLICA_NAME}*{#DBNAME}': Log queue size is growing | |0 |4 |The log records of the primary database are not sent to the secondary databases. |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |18022 |{21365}>{21366} and {21366}>{21367} |MSSQL AG '{#GROUP_NAME}' Non-Local DB '*{#REPLICA_NAME}*{#DBNAME}': Redo log queue size is growing | |0 |4 |The log records in the log files of the secondary replica have not yet been redone. |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |18023 |{21368}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18024 |{21369}>{$ICMP_LOSS_WARN} and {21369}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
@@ -9997,6 +10091,36 @@ ROW |18603 |{22124}=1 and {22125}>0
ROW |18604 |{22126}=1 and {22127}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |18605 |{22128}=1 and {22129}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |18606 |{22130}=1 and {22131}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18607 |{22132}<10m |WildFly: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18608 |{22133}=1 and {22134}>0 |WildFly: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |WildFly version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18609 |{22135}=1 and {22136}>0 |WildFly domain: Server {#SERVER}: Server group has changed (new group: {ITEM.VALUE}) | |0 |1 |Server group has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |18610 |{22137}=1 and {22138}>0 |WildFly domain: Server {#SERVER}: Server status has changed (new status: {ITEM.VALUE}) | |0 |2 |Server status has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |18611 |{22139}<10m |WildFly: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18612 |{22140}=1 |WildFly: Failed to fetch info data (or no data for 15m) | |0 |2 |Zabbix has not received data for items for the last 15 minutes |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18613 |{22141}=1 and {22142}>0 |WildFly: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |WildFly version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18614 |{22143}=0 |WildFly: Server needs to restart for configuration change. | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18615 |{22144}=0 |WildFly: Server controller is not in RUNNING state | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18616 |{22145}=0 |WildFly {#JMX_DATA_SOURCE}: JDBC monitoring statistic is not enabled | |0 |1 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18617 |{22146}/{22147}*100>{$WILDFLY.CONN.USAGE.WARN.MAX} |WildFly {#JMX_DATA_SOURCE}: Connection usage is too high (over {$WILDFLY.CONN.USAGE.WARN.MAX} in 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18618 |{22148}=0 |WildFly {#JMX_DATA_SOURCE}: There are no active connections for 5m | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18619 |{22149}=0 |WildFly {#JMX_DATA_SOURCE}: Pools monitoring statistic is not enabled | |0 |1 |Zabbix has not received data for items for the last 15 minutes |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18620 |{22150}>0 |WildFly {#JMX_DATA_SOURCE}: There are timeout connections | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18621 |{22151}>{$WILDFLY.CONN.WAIT.MAX.WARN} |WildFly {#JMX_DATA_SOURCE}: Too many waiting connections (over {$WILDFLY.CONN.WAIT.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18622 |{22152}>0 |WildFly listener {#HTTP_LISTENER}: There are 500 responses by this listener. | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18623 |{22153}=1 and {22154}>0 |WildFly deployment [{#DEPLOYMENT}]: Deployment status has changed (new status: {ITEM.VALUE}) | |0 |2 |Deployment status has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |18624 |{22155}>{$MSSQL.WORK_FILES.MAX} |MSSQL: Number of work files created per second is high (over {$MSSQL.WORK_FILES.MAX} for 5m) | |0 |3 |Too many work files created per second to store temporary results for hash joins and hash aggregates. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18625 |{22156}>{$MSSQL.WORK_TABLES.MAX} |MSSQL: Number of work tables created per second is high (over {$MSSQL.WORK_TABLES.MAX} for 5m) | |0 |3 |Too many work tables created per second to store temporary results for query spool, lob variables, XML variables, and cursors. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18626 |{22157}>{$MSSQL.BACKUP_DIFF.CRIT:"{#DBNAME}"} |MSSQL DB '{#DBNAME}': Diff backup older than {$MSSQL.BACKUP_DIFF.CRIT:"{#DBNAME}"} | |0 |4 |The differential backup has not been executed for a long time. |NULL |0 |2 |0 | |0 | |1 |Time since last backup: {ITEM.LASTVALUE1} |0 |
+ROW |18627 |{22158}>{$MSSQL.BACKUP_DIFF.WARN:"{#DBNAME}"} |MSSQL DB '{#DBNAME}': Diff backup older than {$MSSQL.BACKUP_DIFF.WARN:"{#DBNAME}"} | |0 |2 |The differential backup has not been executed for a long time. |NULL |0 |2 |0 | |0 | |1 |Time since last backup: {ITEM.LASTVALUE1} |0 |
+ROW |18628 |{22159}>{$MSSQL.BACKUP_FULL.CRIT:"{#DBNAME}"} |MSSQL DB '{#DBNAME}': Full backup older than {$MSSQL.BACKUP_FULL.CRIT:"{#DBNAME}"} | |0 |4 |The full backup has not been executed for a long time. |NULL |0 |2 |0 | |0 | |1 |Time since last backup: {ITEM.LASTVALUE1} |0 |
+ROW |18629 |{22160}>{$MSSQL.BACKUP_FULL.WARN:"{#DBNAME}"} |MSSQL DB '{#DBNAME}': Full backup older than {$MSSQL.BACKUP_FULL.WARN:"{#DBNAME}"} | |0 |2 |The full backup has not been executed for a long time. |NULL |0 |2 |0 | |0 | |1 |Time since last backup: {ITEM.LASTVALUE1} |0 |
+ROW |18630 |{22161}>{$MSSQL.BACKUP_LOG.CRIT:"{#DBNAME}"} |MSSQL DB '{#DBNAME}': Log backup older than {$MSSQL.BACKUP_LOG.CRIT:"{#DBNAME}"} | |0 |4 |The log backup has not been executed for a long time. |NULL |0 |2 |0 | |0 | |1 |Time since last backup: {ITEM.LASTVALUE1} |0 |
+ROW |18631 |{22162}>{$MSSQL.BACKUP_LOG.WARN:"{#DBNAME}"} |MSSQL DB '{#DBNAME}': Log backup older than {$MSSQL.BACKUP_LOG.WARN:"{#DBNAME}"} | |0 |2 |The log backup has not been executed for a long time. |NULL |0 |2 |0 | |0 | |1 |Time since last backup: {ITEM.LASTVALUE1} |0 |
+ROW |18632 |{22163}>{$MSSQL.BACKUP_DURATION.WARN:"{#JOBNAME}"} |MSSQL Job '{#JOBNAME}': Job duration is greater than {$MSSQL.BACKUP_DURATION.WARN:"{#JOBNAME}"} | |0 |2 |The job is taking too long. |NULL |0 |2 |0 | |0 | |1 |Job duration: {ITEM.LASTVALUE1} |0 |
+ROW |18633 |{22164}=0 |MSSQL Job '{#JOBNAME}': Failed to run | |0 |2 |The last run of the job has failed. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |18634 |{22165}<{$MYSQL.BUFF_UTIL.MIN.WARN} |MySQL: Buffer pool utilization is too low (less than {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m) | |0 |2 |The buffer pool utilization is less than {$MYSQL.BUFF_UTIL.MIN.WARN}% in the last 5 minutes. This means that there is a lot of unused RAM allocated for the buffer pool, which you can easily reallocate at the moment. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18635 |{22166}<{$MYSQL.BUFF_UTIL.MIN.WARN} |MySQL: Buffer pool utilization is too low (less than {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m) | |0 |2 |The buffer pool utilization is less than {$MYSQL.BUFF_UTIL.MIN.WARN}% in the last 5 minutes. This means that there is a lot of unused RAM allocated for the buffer pool, which you can easily reallocate at the moment. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18636 |{22167}<{$MYSQL.BUFF_UTIL.MIN.WARN} |MySQL: Buffer pool utilization is too low (less than {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m) | |0 |2 |The buffer pool utilization is less than {$MYSQL.BUFF_UTIL.MIN.WARN}% in the last 5 minutes. This means that there is a lot of unused RAM allocated for the buffer pool, which you can easily reallocate at the moment. |NULL |0 |0 |0 | |0 | |0 | |0 |
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|
@@ -10535,763 +10659,767 @@ ROW |21343 |16443 |16256 |
ROW |21344 |16270 |16269 |
ROW |21345 |16448 |16269 |
ROW |21346 |16265 |16269 |
-ROW |23532 |17682 |17683 |
-ROW |23533 |17684 |17685 |
-ROW |23534 |17686 |17687 |
-ROW |23535 |15944 |15947 |
-ROW |23536 |15944 |15943 |
-ROW |23537 |15943 |15947 |
-ROW |23538 |16888 |15947 |
-ROW |23539 |16888 |15943 |
-ROW |23540 |15948 |15949 |
-ROW |23541 |15950 |15949 |
-ROW |23542 |17219 |17218 |
-ROW |23543 |17222 |17221 |
-ROW |23544 |16743 |16744 |
-ROW |23545 |16784 |16785 |
-ROW |23546 |16790 |16791 |
-ROW |23547 |16892 |16900 |
-ROW |23548 |16894 |16900 |
-ROW |23549 |17267 |17275 |
-ROW |23550 |17272 |17276 |
-ROW |23551 |17273 |17275 |
-ROW |23552 |17274 |17276 |
-ROW |23553 |17279 |17277 |
-ROW |23554 |17282 |17280 |
-ROW |23555 |16646 |16647 |
-ROW |23556 |16809 |16810 |
-ROW |23557 |16902 |16904 |
-ROW |23558 |16904 |16905 |
-ROW |23559 |16909 |16906 |
-ROW |23560 |16910 |16912 |
-ROW |23561 |16912 |16913 |
-ROW |23562 |16917 |16914 |
-ROW |23563 |16752 |16753 |
-ROW |23564 |15955 |15957 |
-ROW |23565 |15955 |15954 |
-ROW |23566 |15954 |15957 |
-ROW |23567 |15956 |15957 |
-ROW |23568 |15956 |15954 |
-ROW |23569 |16678 |15957 |
-ROW |23570 |16678 |15954 |
-ROW |23571 |15961 |15960 |
-ROW |23572 |15962 |15960 |
-ROW |23573 |16679 |15960 |
-ROW |23574 |17225 |17231 |
-ROW |23575 |17228 |17231 |
-ROW |23576 |17236 |17233 |
-ROW |23577 |17966 |17968 |
-ROW |23578 |17966 |17967 |
-ROW |23579 |17967 |17968 |
-ROW |23580 |17973 |17968 |
-ROW |23581 |17973 |17967 |
-ROW |23582 |17975 |17968 |
-ROW |23583 |17975 |17967 |
-ROW |23584 |17985 |17986 |
-ROW |23585 |17987 |17986 |
-ROW |23586 |17992 |17986 |
-ROW |23587 |17081 |17083 |
-ROW |23588 |17082 |17081 |
-ROW |23589 |17082 |17083 |
-ROW |23590 |17082 |17084 |
-ROW |23591 |17084 |17083 |
-ROW |23592 |17117 |17127 |
-ROW |23593 |17118 |17117 |
-ROW |23594 |17118 |17127 |
-ROW |23595 |17119 |17127 |
-ROW |23596 |17120 |17119 |
-ROW |23597 |17120 |17127 |
-ROW |23598 |17122 |17121 |
-ROW |23599 |17123 |17127 |
-ROW |23600 |17124 |17123 |
-ROW |23601 |17124 |17127 |
-ROW |23602 |17126 |17125 |
-ROW |23603 |17128 |17144 |
-ROW |23604 |17129 |17128 |
-ROW |23605 |17129 |17144 |
-ROW |23606 |17130 |17144 |
-ROW |23607 |17131 |17130 |
-ROW |23608 |17131 |17144 |
-ROW |23609 |17132 |17144 |
-ROW |23610 |17133 |17132 |
-ROW |23611 |17133 |17144 |
-ROW |23612 |17134 |17144 |
-ROW |23613 |17135 |17134 |
-ROW |23614 |17135 |17144 |
-ROW |23615 |17136 |17144 |
-ROW |23616 |17137 |17136 |
-ROW |23617 |17137 |17144 |
-ROW |23618 |17139 |17138 |
-ROW |23619 |17140 |17144 |
-ROW |23620 |17141 |17140 |
-ROW |23621 |17141 |17144 |
-ROW |23622 |17142 |17144 |
-ROW |23623 |17143 |17142 |
-ROW |23624 |17143 |17144 |
-ROW |23625 |17145 |17144 |
-ROW |23626 |17146 |17144 |
-ROW |23627 |17146 |17145 |
-ROW |23628 |17147 |17144 |
-ROW |23629 |17148 |17144 |
-ROW |23630 |17148 |17147 |
-ROW |23631 |17306 |17307 |
-ROW |23632 |16920 |16921 |
-ROW |23633 |16833 |16920 |
-ROW |23634 |17748 |17747 |
-ROW |23635 |17750 |17749 |
-ROW |23636 |17753 |17754 |
-ROW |23637 |17755 |17754 |
-ROW |23638 |17765 |17766 |
-ROW |23639 |18007 |18005 |
-ROW |23640 |18019 |18017 |
-ROW |23641 |16929 |16928 |
-ROW |23642 |16940 |17153 |
-ROW |23643 |16719 |16721 |
-ROW |23644 |16975 |16723 |
-ROW |23645 |16729 |16728 |
-ROW |23646 |16730 |16728 |
-ROW |23647 |16756 |16758 |
-ROW |23648 |16979 |16759 |
-ROW |23649 |16765 |16764 |
-ROW |23650 |16766 |16764 |
-ROW |23651 |16734 |16736 |
-ROW |23652 |16983 |16732 |
-ROW |23653 |16741 |16740 |
-ROW |23654 |16742 |16740 |
-ROW |23655 |17173 |17172 |
-ROW |23656 |17175 |17176 |
-ROW |23657 |17180 |17179 |
-ROW |23658 |17711 |17712 |
-ROW |23659 |17713 |17714 |
-ROW |23660 |17030 |17017 |
-ROW |23661 |17035 |17036 |
-ROW |23662 |17039 |17038 |
-ROW |23663 |17044 |17043 |
-ROW |23664 |17715 |17716 |
-ROW |23665 |17717 |17718 |
-ROW |23666 |15928 |15933 |
-ROW |23667 |15931 |15933 |
-ROW |23668 |16683 |16687 |
-ROW |23669 |14252 |14251 |
-ROW |23670 |14294 |14293 |
-ROW |23671 |14312 |14311 |
-ROW |23672 |14328 |14327 |
-ROW |23673 |14348 |14347 |
-ROW |23674 |14357 |14356 |
-ROW |23675 |14390 |14389 |
-ROW |23676 |14404 |14403 |
-ROW |23677 |14452 |14451 |
-ROW |23678 |14469 |14468 |
-ROW |23679 |14487 |14486 |
-ROW |23680 |14506 |14505 |
-ROW |23681 |14535 |14534 |
-ROW |23682 |14545 |14544 |
-ROW |23683 |14583 |14582 |
-ROW |23684 |14599 |14598 |
-ROW |23685 |14616 |14615 |
-ROW |23686 |14653 |14652 |
-ROW |23687 |14674 |14673 |
-ROW |23688 |14692 |14691 |
-ROW |23689 |14705 |14704 |
-ROW |23690 |14718 |14717 |
-ROW |23691 |14907 |14906 |
-ROW |23692 |15221 |15220 |
-ROW |23693 |15702 |15701 |
-ROW |23694 |15724 |15723 |
-ROW |23695 |15756 |15755 |
-ROW |23696 |15820 |15819 |
-ROW |23697 |15841 |15840 |
-ROW |23698 |15991 |15990 |
-ROW |23699 |16018 |16017 |
-ROW |23700 |16454 |16453 |
-ROW |23701 |17721 |17720 |
-ROW |23702 |17936 |17935 |
-ROW |23703 |14253 |14252 |
-ROW |23704 |14295 |14294 |
-ROW |23705 |14313 |14312 |
-ROW |23706 |14329 |14328 |
-ROW |23707 |14349 |14348 |
-ROW |23708 |14358 |14357 |
-ROW |23709 |14391 |14390 |
-ROW |23710 |14405 |14404 |
-ROW |23711 |14453 |14452 |
-ROW |23712 |14470 |14469 |
-ROW |23713 |14488 |14487 |
-ROW |23714 |14507 |14506 |
-ROW |23715 |14536 |14535 |
-ROW |23716 |14546 |14545 |
-ROW |23717 |14584 |14583 |
-ROW |23718 |14600 |14599 |
-ROW |23719 |14617 |14616 |
-ROW |23720 |14654 |14653 |
-ROW |23721 |14675 |14674 |
-ROW |23722 |14693 |14692 |
-ROW |23723 |14706 |14705 |
-ROW |23724 |14719 |14718 |
-ROW |23725 |14908 |14907 |
-ROW |23726 |15222 |15221 |
-ROW |23727 |15703 |15702 |
-ROW |23728 |15725 |15724 |
-ROW |23729 |15757 |15756 |
-ROW |23730 |15821 |15820 |
-ROW |23731 |15842 |15841 |
-ROW |23732 |15992 |15991 |
-ROW |23733 |16019 |16018 |
-ROW |23734 |16455 |16454 |
-ROW |23735 |17722 |17721 |
-ROW |23736 |17937 |17936 |
-ROW |23737 |14253 |14251 |
-ROW |23738 |14295 |14293 |
-ROW |23739 |14313 |14311 |
-ROW |23740 |14329 |14327 |
-ROW |23741 |14349 |14347 |
-ROW |23742 |14358 |14356 |
-ROW |23743 |14391 |14389 |
-ROW |23744 |14405 |14403 |
-ROW |23745 |14453 |14451 |
-ROW |23746 |14470 |14468 |
-ROW |23747 |14488 |14486 |
-ROW |23748 |14507 |14505 |
-ROW |23749 |14536 |14534 |
-ROW |23750 |14546 |14544 |
-ROW |23751 |14584 |14582 |
-ROW |23752 |14600 |14598 |
-ROW |23753 |14617 |14615 |
-ROW |23754 |14654 |14652 |
-ROW |23755 |14675 |14673 |
-ROW |23756 |14693 |14691 |
-ROW |23757 |14706 |14704 |
-ROW |23758 |14719 |14717 |
-ROW |23759 |14908 |14906 |
-ROW |23760 |15222 |15220 |
-ROW |23761 |15703 |15701 |
-ROW |23762 |15725 |15723 |
-ROW |23763 |15757 |15755 |
-ROW |23764 |15821 |15819 |
-ROW |23765 |15842 |15840 |
-ROW |23766 |15992 |15990 |
-ROW |23767 |16019 |16017 |
-ROW |23768 |16455 |16453 |
-ROW |23769 |17722 |17720 |
-ROW |23770 |17937 |17935 |
-ROW |23771 |16287 |16289 |
-ROW |23772 |16279 |16285 |
-ROW |23773 |16290 |16348 |
-ROW |23774 |16291 |16349 |
-ROW |23775 |16292 |16350 |
-ROW |23776 |16293 |16351 |
-ROW |23777 |16294 |16352 |
-ROW |23778 |16295 |16353 |
-ROW |23779 |16296 |16354 |
-ROW |23780 |16297 |16355 |
-ROW |23781 |16298 |16356 |
-ROW |23782 |16299 |16357 |
-ROW |23783 |16300 |16358 |
-ROW |23784 |16301 |16359 |
-ROW |23785 |16302 |16360 |
-ROW |23786 |16303 |16361 |
-ROW |23787 |16304 |16362 |
-ROW |23788 |16305 |16363 |
-ROW |23789 |16306 |16364 |
-ROW |23790 |16307 |16365 |
-ROW |23791 |16308 |16366 |
-ROW |23792 |16309 |16367 |
-ROW |23793 |16311 |16369 |
-ROW |23794 |16312 |16370 |
-ROW |23795 |16313 |16371 |
-ROW |23796 |16314 |16372 |
-ROW |23797 |16315 |16373 |
-ROW |23798 |16316 |16374 |
-ROW |23799 |16317 |16375 |
-ROW |23800 |16318 |16376 |
-ROW |23801 |16457 |16458 |
-ROW |23802 |17724 |17725 |
-ROW |23803 |17939 |17940 |
-ROW |23804 |16289 |14293 |
-ROW |23805 |16285 |14717 |
-ROW |23806 |16348 |14311 |
-ROW |23807 |16349 |14327 |
-ROW |23808 |16350 |14347 |
-ROW |23809 |16351 |14356 |
-ROW |23810 |16352 |14389 |
-ROW |23811 |16353 |14403 |
-ROW |23812 |16354 |14451 |
-ROW |23813 |16355 |14468 |
-ROW |23814 |16356 |14486 |
-ROW |23815 |16357 |14505 |
-ROW |23816 |16358 |14534 |
-ROW |23817 |16359 |14544 |
-ROW |23818 |16360 |14582 |
-ROW |23819 |16361 |14598 |
-ROW |23820 |16362 |14615 |
-ROW |23821 |16363 |14652 |
-ROW |23822 |16364 |14673 |
-ROW |23823 |16365 |14691 |
-ROW |23824 |16366 |14704 |
-ROW |23825 |16367 |14906 |
-ROW |23826 |16369 |15220 |
-ROW |23827 |16370 |15701 |
-ROW |23828 |16371 |15723 |
-ROW |23829 |16372 |15755 |
-ROW |23830 |16373 |15819 |
-ROW |23831 |16374 |15840 |
-ROW |23832 |16375 |15990 |
-ROW |23833 |16376 |16017 |
-ROW |23834 |16458 |16453 |
-ROW |23835 |17725 |17720 |
-ROW |23836 |17940 |17935 |
-ROW |23837 |16631 |16630 |
-ROW |23838 |16640 |16636 |
-ROW |23839 |16642 |16638 |
-ROW |23840 |16643 |16639 |
-ROW |23841 |15695 |16863 |
-ROW |23842 |17798 |16863 |
-ROW |23843 |17799 |16863 |
-ROW |23844 |15694 |16868 |
-ROW |23845 |15696 |16864 |
-ROW |23846 |15697 |16865 |
-ROW |23847 |17800 |16864 |
-ROW |23848 |17801 |16865 |
-ROW |23849 |17802 |16868 |
-ROW |23850 |17803 |16864 |
-ROW |23851 |17804 |16865 |
-ROW |23852 |17805 |16868 |
-ROW |23853 |15671 |16841 |
-ROW |23854 |17806 |16841 |
-ROW |23855 |17807 |16841 |
-ROW |23856 |15672 |16842 |
-ROW |23857 |15673 |16843 |
-ROW |23858 |15674 |16844 |
-ROW |23859 |15675 |16845 |
-ROW |23860 |15676 |16846 |
-ROW |23861 |15677 |16847 |
-ROW |23862 |15678 |16848 |
-ROW |23863 |15679 |16849 |
-ROW |23864 |15680 |16850 |
-ROW |23865 |15681 |16851 |
-ROW |23866 |15682 |16852 |
-ROW |23867 |15683 |16853 |
-ROW |23868 |15684 |16854 |
-ROW |23869 |15685 |16855 |
-ROW |23870 |15686 |16856 |
-ROW |23871 |15687 |16857 |
-ROW |23872 |15689 |16858 |
-ROW |23873 |15691 |16860 |
-ROW |23874 |15708 |16861 |
-ROW |23875 |15997 |16862 |
-ROW |23876 |17808 |16842 |
-ROW |23877 |17809 |16843 |
-ROW |23878 |17810 |16844 |
-ROW |23879 |17811 |16845 |
-ROW |23880 |17812 |16846 |
-ROW |23881 |17813 |16847 |
-ROW |23882 |17814 |16848 |
-ROW |23883 |17815 |16849 |
-ROW |23884 |17816 |16850 |
-ROW |23885 |17817 |16851 |
-ROW |23886 |17818 |16852 |
-ROW |23887 |17819 |16853 |
-ROW |23888 |17820 |16854 |
-ROW |23889 |17821 |16855 |
-ROW |23890 |17822 |16856 |
-ROW |23891 |17823 |16857 |
-ROW |23892 |17824 |16858 |
-ROW |23893 |17826 |16860 |
-ROW |23894 |17827 |16861 |
-ROW |23895 |17828 |16862 |
-ROW |23896 |17829 |16842 |
-ROW |23897 |17830 |16843 |
-ROW |23898 |17831 |16844 |
-ROW |23899 |17832 |16845 |
-ROW |23900 |17833 |16846 |
-ROW |23901 |17834 |16847 |
-ROW |23902 |17835 |16848 |
-ROW |23903 |17836 |16849 |
-ROW |23904 |17837 |16850 |
-ROW |23905 |17838 |16851 |
-ROW |23906 |17839 |16852 |
-ROW |23907 |17840 |16853 |
-ROW |23908 |17841 |16854 |
-ROW |23909 |17842 |16855 |
-ROW |23910 |17843 |16856 |
-ROW |23911 |17844 |16857 |
-ROW |23912 |17845 |16858 |
-ROW |23913 |17847 |16860 |
-ROW |23914 |17848 |16861 |
-ROW |23915 |17849 |16862 |
-ROW |23916 |15698 |16866 |
-ROW |23917 |17850 |16866 |
-ROW |23918 |17851 |16866 |
-ROW |23919 |16028 |16867 |
-ROW |23920 |17852 |16867 |
-ROW |23921 |17853 |16867 |
-ROW |23922 |17857 |17858 |
-ROW |23923 |17863 |17864 |
-ROW |23924 |14318 |14319 |
-ROW |23925 |17311 |15717 |
-ROW |23926 |17311 |17312 |
-ROW |23927 |17312 |15717 |
-ROW |23928 |17313 |15717 |
-ROW |23929 |17313 |17314 |
-ROW |23930 |17314 |15717 |
-ROW |23931 |17315 |17316 |
-ROW |23932 |17317 |17318 |
-ROW |23933 |17319 |17320 |
-ROW |23934 |17321 |17322 |
-ROW |23935 |15721 |15720 |
-ROW |23936 |15394 |15393 |
-ROW |23937 |15392 |15391 |
-ROW |23938 |17194 |14339 |
-ROW |23939 |15382 |15381 |
-ROW |23940 |15380 |15379 |
-ROW |23941 |16504 |16505 |
-ROW |23942 |14372 |14373 |
-ROW |23943 |15386 |15385 |
-ROW |23944 |15384 |15383 |
-ROW |23945 |14380 |14381 |
-ROW |23946 |18024 |18023 |
-ROW |23947 |18025 |18024 |
-ROW |23948 |18025 |18023 |
-ROW |23949 |18028 |18027 |
-ROW |23950 |18034 |18033 |
-ROW |23951 |18036 |18041 |
-ROW |23952 |18037 |18041 |
-ROW |23953 |18038 |18041 |
-ROW |23954 |18039 |18041 |
-ROW |23955 |18040 |18041 |
-ROW |23956 |18044 |18043 |
-ROW |23957 |18046 |18045 |
-ROW |23958 |18048 |18047 |
-ROW |23959 |18051 |18050 |
-ROW |23960 |18052 |18051 |
-ROW |23961 |18052 |18050 |
-ROW |23962 |18055 |18054 |
-ROW |23963 |18061 |18060 |
-ROW |23964 |18063 |18068 |
-ROW |23965 |18064 |18068 |
-ROW |23966 |18065 |18068 |
-ROW |23967 |18066 |18068 |
-ROW |23968 |18067 |18068 |
-ROW |23969 |18071 |18070 |
-ROW |23970 |18073 |18072 |
-ROW |23971 |18075 |18074 |
-ROW |23972 |18078 |18077 |
-ROW |23973 |18079 |18078 |
-ROW |23974 |18079 |18077 |
-ROW |23975 |18082 |18081 |
-ROW |23976 |18088 |18087 |
-ROW |23977 |18090 |18095 |
-ROW |23978 |18091 |18095 |
-ROW |23979 |18092 |18095 |
-ROW |23980 |18093 |18095 |
-ROW |23981 |18094 |18095 |
-ROW |23982 |18098 |18097 |
-ROW |23983 |18100 |18099 |
-ROW |23984 |18102 |18101 |
-ROW |23985 |18105 |18104 |
-ROW |23986 |18106 |18105 |
-ROW |23987 |18106 |18104 |
-ROW |23988 |18109 |18108 |
-ROW |23989 |18115 |18114 |
-ROW |23990 |18117 |18122 |
-ROW |23991 |18118 |18122 |
-ROW |23992 |18119 |18122 |
-ROW |23993 |18120 |18122 |
-ROW |23994 |18121 |18122 |
-ROW |23995 |18125 |18124 |
-ROW |23996 |18127 |18126 |
-ROW |23997 |18129 |18128 |
-ROW |23998 |18132 |18131 |
-ROW |23999 |18133 |18132 |
-ROW |24000 |18133 |18131 |
-ROW |24001 |18136 |18135 |
-ROW |24002 |18142 |18141 |
-ROW |24003 |18144 |18149 |
-ROW |24004 |18145 |18149 |
-ROW |24005 |18146 |18149 |
-ROW |24006 |18147 |18149 |
-ROW |24007 |18148 |18149 |
-ROW |24008 |18152 |18151 |
-ROW |24009 |18154 |18153 |
-ROW |24010 |18156 |18155 |
-ROW |24011 |15347 |15346 |
-ROW |24012 |15345 |15344 |
-ROW |24013 |17196 |17195 |
-ROW |24014 |15363 |15360 |
-ROW |24015 |15364 |15361 |
-ROW |24016 |15365 |15362 |
-ROW |24017 |15357 |15354 |
-ROW |24018 |15358 |15355 |
-ROW |24019 |15359 |15356 |
-ROW |24020 |17200 |17197 |
-ROW |24021 |17201 |17198 |
-ROW |24022 |17202 |17199 |
-ROW |24023 |15334 |15333 |
-ROW |24024 |15332 |15331 |
-ROW |24025 |14460 |14461 |
-ROW |24026 |14476 |14477 |
-ROW |24027 |14495 |14496 |
-ROW |24028 |14511 |17203 |
-ROW |24029 |14551 |14552 |
-ROW |24030 |15374 |15373 |
-ROW |24031 |15376 |15375 |
-ROW |24032 |14914 |14915 |
-ROW |24033 |14589 |14590 |
-ROW |24034 |15338 |15337 |
-ROW |24035 |17205 |17204 |
-ROW |24036 |14624 |14625 |
-ROW |24037 |18159 |18158 |
-ROW |24038 |18160 |18159 |
-ROW |24039 |18160 |18158 |
-ROW |24040 |18163 |18164 |
-ROW |24041 |18164 |18158 |
-ROW |24042 |18166 |18169 |
-ROW |24043 |18167 |18169 |
-ROW |24044 |18168 |18169 |
-ROW |24045 |18171 |18172 |
-ROW |24046 |18175 |18174 |
-ROW |24047 |14664 |14665 |
-ROW |24048 |17207 |17208 |
-ROW |24049 |16547 |16546 |
-ROW |24050 |17323 |17324 |
-ROW |24051 |17325 |17326 |
-ROW |24052 |17374 |17375 |
-ROW |24053 |17376 |17377 |
-ROW |24054 |17378 |17379 |
-ROW |24055 |17380 |17381 |
-ROW |24056 |17382 |17383 |
-ROW |24057 |17384 |17385 |
-ROW |24058 |17432 |17433 |
-ROW |24059 |17434 |17435 |
-ROW |24060 |17436 |17437 |
-ROW |24061 |17438 |17439 |
-ROW |24062 |17440 |17441 |
-ROW |24063 |17442 |17443 |
-ROW |24064 |17476 |17477 |
-ROW |24065 |17478 |17479 |
-ROW |24066 |17480 |17481 |
-ROW |24067 |17482 |17483 |
-ROW |24068 |17484 |17485 |
-ROW |24069 |17500 |17501 |
-ROW |24070 |17502 |17503 |
-ROW |24071 |17504 |17505 |
-ROW |24072 |17565 |17566 |
-ROW |24073 |17567 |17568 |
-ROW |24074 |17569 |17570 |
-ROW |24075 |17571 |17572 |
-ROW |24076 |17573 |17574 |
-ROW |24077 |17606 |17607 |
-ROW |24078 |17608 |17609 |
-ROW |24079 |17610 |17611 |
-ROW |24080 |17612 |17613 |
-ROW |24081 |17645 |17646 |
-ROW |24082 |17647 |17648 |
-ROW |24083 |17649 |17650 |
-ROW |24084 |17651 |17652 |
-ROW |24085 |17653 |17654 |
-ROW |24086 |17655 |17656 |
-ROW |24087 |17212 |17211 |
-ROW |24088 |16551 |16552 |
-ROW |24089 |17888 |17890 |
-ROW |24090 |17891 |17893 |
-ROW |24091 |17894 |17896 |
-ROW |24092 |17888 |17889 |
-ROW |24093 |17891 |17892 |
-ROW |24094 |17894 |17895 |
-ROW |24095 |16031 |16563 |
-ROW |24096 |16045 |16564 |
-ROW |24097 |16046 |16565 |
-ROW |24098 |16039 |16040 |
-ROW |24099 |16061 |16063 |
-ROW |24100 |16062 |16064 |
-ROW |24101 |16042 |16579 |
-ROW |24102 |16067 |16580 |
-ROW |24103 |16068 |16581 |
-ROW |24104 |16041 |16042 |
-ROW |24105 |16065 |16067 |
-ROW |24106 |16066 |16068 |
-ROW |24107 |16041 |16579 |
-ROW |24108 |16065 |16580 |
-ROW |24109 |16066 |16581 |
-ROW |24110 |17890 |17889 |
-ROW |24111 |17893 |17892 |
-ROW |24112 |17896 |17895 |
-ROW |24113 |16070 |16069 |
-ROW |24114 |16072 |16071 |
-ROW |24115 |16076 |16994 |
-ROW |24116 |17897 |16994 |
-ROW |24117 |16079 |16077 |
-ROW |24118 |16080 |16078 |
-ROW |24119 |16083 |16081 |
-ROW |24120 |16084 |16082 |
-ROW |24121 |16091 |16997 |
-ROW |24122 |16092 |16998 |
-ROW |24123 |17898 |16997 |
-ROW |24124 |17899 |16998 |
-ROW |24125 |17900 |17902 |
-ROW |24126 |17903 |17905 |
-ROW |24127 |17900 |17901 |
-ROW |24128 |17903 |17904 |
-ROW |24129 |16097 |16569 |
-ROW |24130 |16110 |16570 |
-ROW |24131 |16105 |16106 |
-ROW |24132 |16118 |16119 |
-ROW |24133 |16108 |16582 |
-ROW |24134 |16121 |16583 |
-ROW |24135 |16107 |16108 |
-ROW |24136 |16120 |16121 |
-ROW |24137 |16107 |16582 |
-ROW |24138 |16120 |16583 |
-ROW |24139 |17902 |17901 |
-ROW |24140 |17905 |17904 |
-ROW |24141 |16123 |16122 |
-ROW |24142 |16125 |16124 |
-ROW |24143 |16129 |17002 |
-ROW |24144 |17906 |17002 |
-ROW |24145 |16131 |16130 |
-ROW |24146 |16133 |16132 |
-ROW |24147 |16137 |17004 |
-ROW |24148 |17907 |17004 |
-ROW |24149 |17908 |17910 |
-ROW |24150 |17908 |17909 |
-ROW |24151 |16141 |16142 |
-ROW |24152 |16146 |16573 |
-ROW |24153 |16143 |16584 |
-ROW |24154 |17910 |17909 |
-ROW |24155 |16152 |16883 |
-ROW |24156 |16153 |16883 |
-ROW |24157 |17911 |16883 |
-ROW |24158 |17912 |16883 |
-ROW |24159 |16156 |16155 |
-ROW |24160 |16158 |16157 |
-ROW |24161 |17913 |17915 |
-ROW |24162 |17916 |17918 |
-ROW |24163 |17913 |17914 |
-ROW |24164 |17916 |17917 |
-ROW |24165 |17915 |17914 |
-ROW |24166 |17918 |17917 |
-ROW |24167 |16009 |16008 |
-ROW |24168 |16011 |16010 |
-ROW |24169 |16014 |16013 |
-ROW |24170 |16016 |16015 |
-ROW |24171 |17005 |16160 |
-ROW |24172 |17007 |16171 |
-ROW |24173 |17919 |17920 |
-ROW |24174 |17921 |17922 |
-ROW |24175 |16161 |16160 |
-ROW |24176 |16172 |16171 |
-ROW |24177 |16162 |16161 |
-ROW |24178 |16173 |16172 |
-ROW |24179 |16162 |16160 |
-ROW |24180 |16173 |16171 |
-ROW |24181 |16166 |17920 |
-ROW |24182 |16177 |17922 |
-ROW |24183 |16167 |17920 |
-ROW |24184 |16178 |17922 |
-ROW |24185 |16183 |16182 |
-ROW |24186 |17657 |17050 |
-ROW |24187 |17923 |17050 |
-ROW |24188 |17924 |17050 |
-ROW |24189 |17009 |17662 |
-ROW |24190 |17009 |17661 |
-ROW |24191 |16190 |16189 |
-ROW |24192 |17658 |17054 |
-ROW |24193 |17925 |17054 |
-ROW |24194 |17926 |17054 |
-ROW |24195 |17010 |17664 |
-ROW |24196 |17010 |17663 |
-ROW |24197 |17011 |16209 |
-ROW |24198 |17013 |16220 |
-ROW |24199 |17927 |17928 |
-ROW |24200 |17929 |17930 |
-ROW |24201 |16210 |16209 |
-ROW |24202 |16221 |16220 |
-ROW |24203 |16211 |16210 |
-ROW |24204 |16222 |16221 |
-ROW |24205 |16211 |16209 |
-ROW |24206 |16222 |16220 |
-ROW |24207 |16215 |17928 |
-ROW |24208 |16226 |17930 |
-ROW |24209 |16216 |17928 |
-ROW |24210 |16227 |17930 |
-ROW |24211 |16232 |16231 |
-ROW |24212 |17659 |17058 |
-ROW |24213 |17931 |17058 |
-ROW |24214 |17932 |17058 |
-ROW |24215 |17015 |17666 |
-ROW |24216 |17015 |17665 |
-ROW |24217 |16239 |16238 |
-ROW |24218 |17660 |17062 |
-ROW |24219 |17933 |17062 |
-ROW |24220 |17934 |17062 |
-ROW |24221 |17016 |17668 |
-ROW |24222 |17016 |17667 |
-ROW |24223 |18256 |18257 |
-ROW |24224 |18292 |18293 |
-ROW |24225 |18328 |18329 |
-ROW |24226 |18364 |18365 |
-ROW |24227 |18400 |18401 |
-ROW |24228 |18436 |18437 |
-ROW |24229 |18472 |18473 |
-ROW |24230 |18199 |18200 |
-ROW |24231 |18511 |18512 |
-ROW |24232 |18547 |18548 |
-ROW |24233 |18583 |18584 |
-ROW |24234 |16768 |16769 |
-ROW |24235 |16768 |16770 |
-ROW |24236 |16769 |16770 |
-ROW |24237 |16771 |16772 |
-ROW |24238 |16771 |16773 |
-ROW |24239 |16772 |16773 |
-ROW |24240 |16488 |16487 |
-ROW |24241 |16485 |16484 |
-ROW |24242 |16486 |16484 |
-ROW |24243 |16486 |16485 |
-ROW |24244 |16480 |16479 |
-ROW |24245 |16482 |16481 |
-ROW |24246 |16475 |16474 |
-ROW |24247 |16471 |16472 |
-ROW |24248 |16468 |16469 |
-ROW |24249 |16459 |16460 |
-ROW |24250 |16462 |16463 |
-ROW |24251 |16465 |16466 |
-ROW |24252 |16477 |16476 |
-ROW |24253 |15729 |15728 |
-ROW |24254 |15730 |15728 |
-ROW |24255 |15730 |15729 |
-ROW |24256 |15752 |15754 |
-ROW |24257 |15753 |15754 |
-ROW |24258 |15753 |15752 |
-ROW |24259 |15742 |15741 |
-ROW |24260 |15750 |15749 |
-ROW |24261 |15751 |15750 |
-ROW |24262 |15751 |15749 |
-ROW |24263 |15746 |15743 |
-ROW |24264 |15744 |15743 |
-ROW |24265 |15740 |15739 |
-ROW |24266 |17214 |17213 |
-ROW |24267 |17216 |17215 |
-ROW |24268 |15748 |15747 |
-ROW |24269 |16440 |16439 |
-ROW |24270 |17768 |15790 |
-ROW |24271 |17769 |15787 |
-ROW |24272 |17770 |15787 |
-ROW |24273 |17770 |17769 |
-ROW |24274 |15786 |15785 |
-ROW |24275 |15784 |15783 |
-ROW |24276 |15794 |15792 |
-ROW |24277 |15793 |15792 |
-ROW |24278 |15782 |15781 |
-ROW |24279 |15797 |15796 |
-ROW |24280 |15825 |15824 |
-ROW |24281 |15826 |15824 |
-ROW |24282 |15826 |15825 |
-ROW |24283 |15828 |15829 |
-ROW |24284 |15831 |15832 |
-ROW |24285 |15834 |15835 |
-ROW |24286 |15845 |15846 |
-ROW |24287 |17251 |17255 |
-ROW |24288 |17254 |17255 |
+ROW |24289 |17682 |17683 |
+ROW |24290 |17684 |17685 |
+ROW |24291 |17686 |17687 |
+ROW |24292 |15944 |15947 |
+ROW |24293 |15944 |15943 |
+ROW |24294 |15943 |15947 |
+ROW |24295 |16888 |15947 |
+ROW |24296 |16888 |15943 |
+ROW |24297 |15948 |15949 |
+ROW |24298 |15950 |15949 |
+ROW |24299 |17219 |17218 |
+ROW |24300 |17222 |17221 |
+ROW |24301 |16743 |16744 |
+ROW |24302 |16784 |16785 |
+ROW |24303 |16790 |16791 |
+ROW |24304 |16892 |16900 |
+ROW |24305 |16894 |16900 |
+ROW |24306 |17267 |17275 |
+ROW |24307 |17272 |17276 |
+ROW |24308 |17273 |17275 |
+ROW |24309 |17274 |17276 |
+ROW |24310 |17279 |17277 |
+ROW |24311 |17282 |17280 |
+ROW |24312 |16646 |16647 |
+ROW |24313 |16809 |16810 |
+ROW |24314 |16902 |16904 |
+ROW |24315 |16904 |16905 |
+ROW |24316 |16909 |16906 |
+ROW |24317 |16910 |16912 |
+ROW |24318 |16912 |16913 |
+ROW |24319 |16917 |16914 |
+ROW |24320 |16752 |16753 |
+ROW |24321 |15955 |15957 |
+ROW |24322 |15955 |15954 |
+ROW |24323 |15954 |15957 |
+ROW |24324 |15956 |15957 |
+ROW |24325 |15956 |15954 |
+ROW |24326 |16678 |15957 |
+ROW |24327 |16678 |15954 |
+ROW |24328 |15961 |15960 |
+ROW |24329 |15962 |15960 |
+ROW |24330 |16679 |15960 |
+ROW |24331 |17225 |17231 |
+ROW |24332 |17228 |17231 |
+ROW |24333 |17236 |17233 |
+ROW |24334 |17966 |17968 |
+ROW |24335 |17966 |17967 |
+ROW |24336 |17967 |17968 |
+ROW |24337 |17973 |17968 |
+ROW |24338 |17973 |17967 |
+ROW |24339 |17975 |17968 |
+ROW |24340 |17975 |17967 |
+ROW |24341 |17985 |17986 |
+ROW |24342 |17987 |17986 |
+ROW |24343 |17992 |17986 |
+ROW |24344 |17081 |17083 |
+ROW |24345 |17082 |17081 |
+ROW |24346 |17082 |17083 |
+ROW |24347 |17082 |17084 |
+ROW |24348 |17084 |17083 |
+ROW |24349 |18615 |18614 |
+ROW |24350 |17117 |17127 |
+ROW |24351 |17118 |17117 |
+ROW |24352 |17118 |17127 |
+ROW |24353 |17119 |17127 |
+ROW |24354 |17120 |17119 |
+ROW |24355 |17120 |17127 |
+ROW |24356 |17122 |17121 |
+ROW |24357 |17123 |17127 |
+ROW |24358 |17124 |17123 |
+ROW |24359 |17124 |17127 |
+ROW |24360 |17126 |17125 |
+ROW |24361 |17128 |17144 |
+ROW |24362 |17129 |17128 |
+ROW |24363 |17129 |17144 |
+ROW |24364 |17130 |17144 |
+ROW |24365 |17131 |17130 |
+ROW |24366 |17131 |17144 |
+ROW |24367 |17132 |17144 |
+ROW |24368 |17133 |17132 |
+ROW |24369 |17133 |17144 |
+ROW |24370 |17134 |17144 |
+ROW |24371 |17135 |17134 |
+ROW |24372 |17135 |17144 |
+ROW |24373 |17136 |17144 |
+ROW |24374 |17137 |17136 |
+ROW |24375 |17137 |17144 |
+ROW |24376 |17139 |17138 |
+ROW |24377 |17140 |17144 |
+ROW |24378 |17141 |17140 |
+ROW |24379 |17141 |17144 |
+ROW |24380 |17142 |17144 |
+ROW |24381 |17143 |17142 |
+ROW |24382 |17143 |17144 |
+ROW |24383 |17145 |17144 |
+ROW |24384 |17146 |17144 |
+ROW |24385 |17146 |17145 |
+ROW |24386 |17147 |17144 |
+ROW |24387 |17148 |17144 |
+ROW |24388 |17148 |17147 |
+ROW |24389 |17306 |17307 |
+ROW |24390 |16920 |16921 |
+ROW |24391 |16833 |16920 |
+ROW |24392 |17748 |17747 |
+ROW |24393 |17750 |17749 |
+ROW |24394 |17753 |17754 |
+ROW |24395 |17755 |17754 |
+ROW |24396 |17765 |17766 |
+ROW |24397 |18007 |18005 |
+ROW |24398 |18019 |18017 |
+ROW |24399 |16929 |16928 |
+ROW |24400 |16940 |17153 |
+ROW |24401 |18627 |18626 |
+ROW |24402 |18629 |18628 |
+ROW |24403 |18631 |18630 |
+ROW |24404 |16719 |16721 |
+ROW |24405 |16975 |16723 |
+ROW |24406 |16729 |16728 |
+ROW |24407 |16730 |16728 |
+ROW |24408 |16756 |16758 |
+ROW |24409 |16979 |16759 |
+ROW |24410 |16765 |16764 |
+ROW |24411 |16766 |16764 |
+ROW |24412 |16734 |16736 |
+ROW |24413 |16983 |16732 |
+ROW |24414 |16741 |16740 |
+ROW |24415 |16742 |16740 |
+ROW |24416 |17173 |17172 |
+ROW |24417 |17175 |17176 |
+ROW |24418 |17180 |17179 |
+ROW |24419 |17711 |17712 |
+ROW |24420 |17713 |17714 |
+ROW |24421 |17030 |17017 |
+ROW |24422 |17035 |17036 |
+ROW |24423 |17039 |17038 |
+ROW |24424 |17044 |17043 |
+ROW |24425 |17715 |17716 |
+ROW |24426 |17717 |17718 |
+ROW |24427 |15928 |15933 |
+ROW |24428 |15931 |15933 |
+ROW |24429 |16683 |16687 |
+ROW |24430 |14252 |14251 |
+ROW |24431 |14294 |14293 |
+ROW |24432 |14312 |14311 |
+ROW |24433 |14328 |14327 |
+ROW |24434 |14348 |14347 |
+ROW |24435 |14357 |14356 |
+ROW |24436 |14390 |14389 |
+ROW |24437 |14404 |14403 |
+ROW |24438 |14452 |14451 |
+ROW |24439 |14469 |14468 |
+ROW |24440 |14487 |14486 |
+ROW |24441 |14506 |14505 |
+ROW |24442 |14535 |14534 |
+ROW |24443 |14545 |14544 |
+ROW |24444 |14583 |14582 |
+ROW |24445 |14599 |14598 |
+ROW |24446 |14616 |14615 |
+ROW |24447 |14653 |14652 |
+ROW |24448 |14674 |14673 |
+ROW |24449 |14692 |14691 |
+ROW |24450 |14705 |14704 |
+ROW |24451 |14718 |14717 |
+ROW |24452 |14907 |14906 |
+ROW |24453 |15221 |15220 |
+ROW |24454 |15702 |15701 |
+ROW |24455 |15724 |15723 |
+ROW |24456 |15756 |15755 |
+ROW |24457 |15820 |15819 |
+ROW |24458 |15841 |15840 |
+ROW |24459 |15991 |15990 |
+ROW |24460 |16018 |16017 |
+ROW |24461 |16454 |16453 |
+ROW |24462 |17721 |17720 |
+ROW |24463 |17936 |17935 |
+ROW |24464 |14253 |14252 |
+ROW |24465 |14295 |14294 |
+ROW |24466 |14313 |14312 |
+ROW |24467 |14329 |14328 |
+ROW |24468 |14349 |14348 |
+ROW |24469 |14358 |14357 |
+ROW |24470 |14391 |14390 |
+ROW |24471 |14405 |14404 |
+ROW |24472 |14453 |14452 |
+ROW |24473 |14470 |14469 |
+ROW |24474 |14488 |14487 |
+ROW |24475 |14507 |14506 |
+ROW |24476 |14536 |14535 |
+ROW |24477 |14546 |14545 |
+ROW |24478 |14584 |14583 |
+ROW |24479 |14600 |14599 |
+ROW |24480 |14617 |14616 |
+ROW |24481 |14654 |14653 |
+ROW |24482 |14675 |14674 |
+ROW |24483 |14693 |14692 |
+ROW |24484 |14706 |14705 |
+ROW |24485 |14719 |14718 |
+ROW |24486 |14908 |14907 |
+ROW |24487 |15222 |15221 |
+ROW |24488 |15703 |15702 |
+ROW |24489 |15725 |15724 |
+ROW |24490 |15757 |15756 |
+ROW |24491 |15821 |15820 |
+ROW |24492 |15842 |15841 |
+ROW |24493 |15992 |15991 |
+ROW |24494 |16019 |16018 |
+ROW |24495 |16455 |16454 |
+ROW |24496 |17722 |17721 |
+ROW |24497 |17937 |17936 |
+ROW |24498 |14253 |14251 |
+ROW |24499 |14295 |14293 |
+ROW |24500 |14313 |14311 |
+ROW |24501 |14329 |14327 |
+ROW |24502 |14349 |14347 |
+ROW |24503 |14358 |14356 |
+ROW |24504 |14391 |14389 |
+ROW |24505 |14405 |14403 |
+ROW |24506 |14453 |14451 |
+ROW |24507 |14470 |14468 |
+ROW |24508 |14488 |14486 |
+ROW |24509 |14507 |14505 |
+ROW |24510 |14536 |14534 |
+ROW |24511 |14546 |14544 |
+ROW |24512 |14584 |14582 |
+ROW |24513 |14600 |14598 |
+ROW |24514 |14617 |14615 |
+ROW |24515 |14654 |14652 |
+ROW |24516 |14675 |14673 |
+ROW |24517 |14693 |14691 |
+ROW |24518 |14706 |14704 |
+ROW |24519 |14719 |14717 |
+ROW |24520 |14908 |14906 |
+ROW |24521 |15222 |15220 |
+ROW |24522 |15703 |15701 |
+ROW |24523 |15725 |15723 |
+ROW |24524 |15757 |15755 |
+ROW |24525 |15821 |15819 |
+ROW |24526 |15842 |15840 |
+ROW |24527 |15992 |15990 |
+ROW |24528 |16019 |16017 |
+ROW |24529 |16455 |16453 |
+ROW |24530 |17722 |17720 |
+ROW |24531 |17937 |17935 |
+ROW |24532 |16287 |16289 |
+ROW |24533 |16279 |16285 |
+ROW |24534 |16290 |16348 |
+ROW |24535 |16291 |16349 |
+ROW |24536 |16292 |16350 |
+ROW |24537 |16293 |16351 |
+ROW |24538 |16294 |16352 |
+ROW |24539 |16295 |16353 |
+ROW |24540 |16296 |16354 |
+ROW |24541 |16297 |16355 |
+ROW |24542 |16298 |16356 |
+ROW |24543 |16299 |16357 |
+ROW |24544 |16300 |16358 |
+ROW |24545 |16301 |16359 |
+ROW |24546 |16302 |16360 |
+ROW |24547 |16303 |16361 |
+ROW |24548 |16304 |16362 |
+ROW |24549 |16305 |16363 |
+ROW |24550 |16306 |16364 |
+ROW |24551 |16307 |16365 |
+ROW |24552 |16308 |16366 |
+ROW |24553 |16309 |16367 |
+ROW |24554 |16311 |16369 |
+ROW |24555 |16312 |16370 |
+ROW |24556 |16313 |16371 |
+ROW |24557 |16314 |16372 |
+ROW |24558 |16315 |16373 |
+ROW |24559 |16316 |16374 |
+ROW |24560 |16317 |16375 |
+ROW |24561 |16318 |16376 |
+ROW |24562 |16457 |16458 |
+ROW |24563 |17724 |17725 |
+ROW |24564 |17939 |17940 |
+ROW |24565 |16289 |14293 |
+ROW |24566 |16285 |14717 |
+ROW |24567 |16348 |14311 |
+ROW |24568 |16349 |14327 |
+ROW |24569 |16350 |14347 |
+ROW |24570 |16351 |14356 |
+ROW |24571 |16352 |14389 |
+ROW |24572 |16353 |14403 |
+ROW |24573 |16354 |14451 |
+ROW |24574 |16355 |14468 |
+ROW |24575 |16356 |14486 |
+ROW |24576 |16357 |14505 |
+ROW |24577 |16358 |14534 |
+ROW |24578 |16359 |14544 |
+ROW |24579 |16360 |14582 |
+ROW |24580 |16361 |14598 |
+ROW |24581 |16362 |14615 |
+ROW |24582 |16363 |14652 |
+ROW |24583 |16364 |14673 |
+ROW |24584 |16365 |14691 |
+ROW |24585 |16366 |14704 |
+ROW |24586 |16367 |14906 |
+ROW |24587 |16369 |15220 |
+ROW |24588 |16370 |15701 |
+ROW |24589 |16371 |15723 |
+ROW |24590 |16372 |15755 |
+ROW |24591 |16373 |15819 |
+ROW |24592 |16374 |15840 |
+ROW |24593 |16375 |15990 |
+ROW |24594 |16376 |16017 |
+ROW |24595 |16458 |16453 |
+ROW |24596 |17725 |17720 |
+ROW |24597 |17940 |17935 |
+ROW |24598 |16631 |16630 |
+ROW |24599 |16640 |16636 |
+ROW |24600 |16642 |16638 |
+ROW |24601 |16643 |16639 |
+ROW |24602 |15695 |16863 |
+ROW |24603 |17798 |16863 |
+ROW |24604 |17799 |16863 |
+ROW |24605 |15694 |16868 |
+ROW |24606 |15696 |16864 |
+ROW |24607 |15697 |16865 |
+ROW |24608 |17800 |16864 |
+ROW |24609 |17801 |16865 |
+ROW |24610 |17802 |16868 |
+ROW |24611 |17803 |16864 |
+ROW |24612 |17804 |16865 |
+ROW |24613 |17805 |16868 |
+ROW |24614 |15671 |16841 |
+ROW |24615 |17806 |16841 |
+ROW |24616 |17807 |16841 |
+ROW |24617 |15672 |16842 |
+ROW |24618 |15673 |16843 |
+ROW |24619 |15674 |16844 |
+ROW |24620 |15675 |16845 |
+ROW |24621 |15676 |16846 |
+ROW |24622 |15677 |16847 |
+ROW |24623 |15678 |16848 |
+ROW |24624 |15679 |16849 |
+ROW |24625 |15680 |16850 |
+ROW |24626 |15681 |16851 |
+ROW |24627 |15682 |16852 |
+ROW |24628 |15683 |16853 |
+ROW |24629 |15684 |16854 |
+ROW |24630 |15685 |16855 |
+ROW |24631 |15686 |16856 |
+ROW |24632 |15687 |16857 |
+ROW |24633 |15689 |16858 |
+ROW |24634 |15691 |16860 |
+ROW |24635 |15708 |16861 |
+ROW |24636 |15997 |16862 |
+ROW |24637 |17808 |16842 |
+ROW |24638 |17809 |16843 |
+ROW |24639 |17810 |16844 |
+ROW |24640 |17811 |16845 |
+ROW |24641 |17812 |16846 |
+ROW |24642 |17813 |16847 |
+ROW |24643 |17814 |16848 |
+ROW |24644 |17815 |16849 |
+ROW |24645 |17816 |16850 |
+ROW |24646 |17817 |16851 |
+ROW |24647 |17818 |16852 |
+ROW |24648 |17819 |16853 |
+ROW |24649 |17820 |16854 |
+ROW |24650 |17821 |16855 |
+ROW |24651 |17822 |16856 |
+ROW |24652 |17823 |16857 |
+ROW |24653 |17824 |16858 |
+ROW |24654 |17826 |16860 |
+ROW |24655 |17827 |16861 |
+ROW |24656 |17828 |16862 |
+ROW |24657 |17829 |16842 |
+ROW |24658 |17830 |16843 |
+ROW |24659 |17831 |16844 |
+ROW |24660 |17832 |16845 |
+ROW |24661 |17833 |16846 |
+ROW |24662 |17834 |16847 |
+ROW |24663 |17835 |16848 |
+ROW |24664 |17836 |16849 |
+ROW |24665 |17837 |16850 |
+ROW |24666 |17838 |16851 |
+ROW |24667 |17839 |16852 |
+ROW |24668 |17840 |16853 |
+ROW |24669 |17841 |16854 |
+ROW |24670 |17842 |16855 |
+ROW |24671 |17843 |16856 |
+ROW |24672 |17844 |16857 |
+ROW |24673 |17845 |16858 |
+ROW |24674 |17847 |16860 |
+ROW |24675 |17848 |16861 |
+ROW |24676 |17849 |16862 |
+ROW |24677 |15698 |16866 |
+ROW |24678 |17850 |16866 |
+ROW |24679 |17851 |16866 |
+ROW |24680 |16028 |16867 |
+ROW |24681 |17852 |16867 |
+ROW |24682 |17853 |16867 |
+ROW |24683 |17857 |17858 |
+ROW |24684 |17863 |17864 |
+ROW |24685 |14318 |14319 |
+ROW |24686 |17311 |15717 |
+ROW |24687 |17311 |17312 |
+ROW |24688 |17312 |15717 |
+ROW |24689 |17313 |15717 |
+ROW |24690 |17313 |17314 |
+ROW |24691 |17314 |15717 |
+ROW |24692 |17315 |17316 |
+ROW |24693 |17317 |17318 |
+ROW |24694 |17319 |17320 |
+ROW |24695 |17321 |17322 |
+ROW |24696 |15721 |15720 |
+ROW |24697 |15394 |15393 |
+ROW |24698 |15392 |15391 |
+ROW |24699 |17194 |14339 |
+ROW |24700 |15382 |15381 |
+ROW |24701 |15380 |15379 |
+ROW |24702 |16504 |16505 |
+ROW |24703 |14372 |14373 |
+ROW |24704 |15386 |15385 |
+ROW |24705 |15384 |15383 |
+ROW |24706 |14380 |14381 |
+ROW |24707 |18024 |18023 |
+ROW |24708 |18025 |18024 |
+ROW |24709 |18025 |18023 |
+ROW |24710 |18028 |18027 |
+ROW |24711 |18034 |18033 |
+ROW |24712 |18036 |18041 |
+ROW |24713 |18037 |18041 |
+ROW |24714 |18038 |18041 |
+ROW |24715 |18039 |18041 |
+ROW |24716 |18040 |18041 |
+ROW |24717 |18044 |18043 |
+ROW |24718 |18046 |18045 |
+ROW |24719 |18048 |18047 |
+ROW |24720 |18051 |18050 |
+ROW |24721 |18052 |18051 |
+ROW |24722 |18052 |18050 |
+ROW |24723 |18055 |18054 |
+ROW |24724 |18061 |18060 |
+ROW |24725 |18063 |18068 |
+ROW |24726 |18064 |18068 |
+ROW |24727 |18065 |18068 |
+ROW |24728 |18066 |18068 |
+ROW |24729 |18067 |18068 |
+ROW |24730 |18071 |18070 |
+ROW |24731 |18073 |18072 |
+ROW |24732 |18075 |18074 |
+ROW |24733 |18078 |18077 |
+ROW |24734 |18079 |18078 |
+ROW |24735 |18079 |18077 |
+ROW |24736 |18082 |18081 |
+ROW |24737 |18088 |18087 |
+ROW |24738 |18090 |18095 |
+ROW |24739 |18091 |18095 |
+ROW |24740 |18092 |18095 |
+ROW |24741 |18093 |18095 |
+ROW |24742 |18094 |18095 |
+ROW |24743 |18098 |18097 |
+ROW |24744 |18100 |18099 |
+ROW |24745 |18102 |18101 |
+ROW |24746 |18105 |18104 |
+ROW |24747 |18106 |18105 |
+ROW |24748 |18106 |18104 |
+ROW |24749 |18109 |18108 |
+ROW |24750 |18115 |18114 |
+ROW |24751 |18117 |18122 |
+ROW |24752 |18118 |18122 |
+ROW |24753 |18119 |18122 |
+ROW |24754 |18120 |18122 |
+ROW |24755 |18121 |18122 |
+ROW |24756 |18125 |18124 |
+ROW |24757 |18127 |18126 |
+ROW |24758 |18129 |18128 |
+ROW |24759 |18132 |18131 |
+ROW |24760 |18133 |18132 |
+ROW |24761 |18133 |18131 |
+ROW |24762 |18136 |18135 |
+ROW |24763 |18142 |18141 |
+ROW |24764 |18144 |18149 |
+ROW |24765 |18145 |18149 |
+ROW |24766 |18146 |18149 |
+ROW |24767 |18147 |18149 |
+ROW |24768 |18148 |18149 |
+ROW |24769 |18152 |18151 |
+ROW |24770 |18154 |18153 |
+ROW |24771 |18156 |18155 |
+ROW |24772 |15347 |15346 |
+ROW |24773 |15345 |15344 |
+ROW |24774 |17196 |17195 |
+ROW |24775 |15363 |15360 |
+ROW |24776 |15364 |15361 |
+ROW |24777 |15365 |15362 |
+ROW |24778 |15357 |15354 |
+ROW |24779 |15358 |15355 |
+ROW |24780 |15359 |15356 |
+ROW |24781 |17200 |17197 |
+ROW |24782 |17201 |17198 |
+ROW |24783 |17202 |17199 |
+ROW |24784 |15334 |15333 |
+ROW |24785 |15332 |15331 |
+ROW |24786 |14460 |14461 |
+ROW |24787 |14476 |14477 |
+ROW |24788 |14495 |14496 |
+ROW |24789 |14511 |17203 |
+ROW |24790 |14551 |14552 |
+ROW |24791 |15374 |15373 |
+ROW |24792 |15376 |15375 |
+ROW |24793 |14914 |14915 |
+ROW |24794 |14589 |14590 |
+ROW |24795 |15338 |15337 |
+ROW |24796 |17205 |17204 |
+ROW |24797 |14624 |14625 |
+ROW |24798 |18159 |18158 |
+ROW |24799 |18160 |18159 |
+ROW |24800 |18160 |18158 |
+ROW |24801 |18163 |18164 |
+ROW |24802 |18164 |18158 |
+ROW |24803 |18166 |18169 |
+ROW |24804 |18167 |18169 |
+ROW |24805 |18168 |18169 |
+ROW |24806 |18171 |18172 |
+ROW |24807 |18175 |18174 |
+ROW |24808 |14664 |14665 |
+ROW |24809 |17207 |17208 |
+ROW |24810 |16547 |16546 |
+ROW |24811 |17323 |17324 |
+ROW |24812 |17325 |17326 |
+ROW |24813 |17374 |17375 |
+ROW |24814 |17376 |17377 |
+ROW |24815 |17378 |17379 |
+ROW |24816 |17380 |17381 |
+ROW |24817 |17382 |17383 |
+ROW |24818 |17384 |17385 |
+ROW |24819 |17432 |17433 |
+ROW |24820 |17434 |17435 |
+ROW |24821 |17436 |17437 |
+ROW |24822 |17438 |17439 |
+ROW |24823 |17440 |17441 |
+ROW |24824 |17442 |17443 |
+ROW |24825 |17476 |17477 |
+ROW |24826 |17478 |17479 |
+ROW |24827 |17480 |17481 |
+ROW |24828 |17482 |17483 |
+ROW |24829 |17484 |17485 |
+ROW |24830 |17500 |17501 |
+ROW |24831 |17502 |17503 |
+ROW |24832 |17504 |17505 |
+ROW |24833 |17565 |17566 |
+ROW |24834 |17567 |17568 |
+ROW |24835 |17569 |17570 |
+ROW |24836 |17571 |17572 |
+ROW |24837 |17573 |17574 |
+ROW |24838 |17606 |17607 |
+ROW |24839 |17608 |17609 |
+ROW |24840 |17610 |17611 |
+ROW |24841 |17612 |17613 |
+ROW |24842 |17645 |17646 |
+ROW |24843 |17647 |17648 |
+ROW |24844 |17649 |17650 |
+ROW |24845 |17651 |17652 |
+ROW |24846 |17653 |17654 |
+ROW |24847 |17655 |17656 |
+ROW |24848 |17212 |17211 |
+ROW |24849 |16551 |16552 |
+ROW |24850 |17888 |17890 |
+ROW |24851 |17891 |17893 |
+ROW |24852 |17894 |17896 |
+ROW |24853 |17888 |17889 |
+ROW |24854 |17891 |17892 |
+ROW |24855 |17894 |17895 |
+ROW |24856 |16031 |16563 |
+ROW |24857 |16045 |16564 |
+ROW |24858 |16046 |16565 |
+ROW |24859 |16039 |16040 |
+ROW |24860 |16061 |16063 |
+ROW |24861 |16062 |16064 |
+ROW |24862 |16042 |16579 |
+ROW |24863 |16067 |16580 |
+ROW |24864 |16068 |16581 |
+ROW |24865 |16041 |16042 |
+ROW |24866 |16065 |16067 |
+ROW |24867 |16066 |16068 |
+ROW |24868 |16041 |16579 |
+ROW |24869 |16065 |16580 |
+ROW |24870 |16066 |16581 |
+ROW |24871 |17890 |17889 |
+ROW |24872 |17893 |17892 |
+ROW |24873 |17896 |17895 |
+ROW |24874 |16070 |16069 |
+ROW |24875 |16072 |16071 |
+ROW |24876 |16076 |16994 |
+ROW |24877 |17897 |16994 |
+ROW |24878 |16079 |16077 |
+ROW |24879 |16080 |16078 |
+ROW |24880 |16083 |16081 |
+ROW |24881 |16084 |16082 |
+ROW |24882 |16091 |16997 |
+ROW |24883 |16092 |16998 |
+ROW |24884 |17898 |16997 |
+ROW |24885 |17899 |16998 |
+ROW |24886 |17900 |17902 |
+ROW |24887 |17903 |17905 |
+ROW |24888 |17900 |17901 |
+ROW |24889 |17903 |17904 |
+ROW |24890 |16097 |16569 |
+ROW |24891 |16110 |16570 |
+ROW |24892 |16105 |16106 |
+ROW |24893 |16118 |16119 |
+ROW |24894 |16108 |16582 |
+ROW |24895 |16121 |16583 |
+ROW |24896 |16107 |16108 |
+ROW |24897 |16120 |16121 |
+ROW |24898 |16107 |16582 |
+ROW |24899 |16120 |16583 |
+ROW |24900 |17902 |17901 |
+ROW |24901 |17905 |17904 |
+ROW |24902 |16123 |16122 |
+ROW |24903 |16125 |16124 |
+ROW |24904 |16129 |17002 |
+ROW |24905 |17906 |17002 |
+ROW |24906 |16131 |16130 |
+ROW |24907 |16133 |16132 |
+ROW |24908 |16137 |17004 |
+ROW |24909 |17907 |17004 |
+ROW |24910 |17908 |17910 |
+ROW |24911 |17908 |17909 |
+ROW |24912 |16141 |16142 |
+ROW |24913 |16146 |16573 |
+ROW |24914 |16143 |16584 |
+ROW |24915 |17910 |17909 |
+ROW |24916 |16152 |16883 |
+ROW |24917 |16153 |16883 |
+ROW |24918 |17911 |16883 |
+ROW |24919 |17912 |16883 |
+ROW |24920 |16156 |16155 |
+ROW |24921 |16158 |16157 |
+ROW |24922 |17913 |17915 |
+ROW |24923 |17916 |17918 |
+ROW |24924 |17913 |17914 |
+ROW |24925 |17916 |17917 |
+ROW |24926 |17915 |17914 |
+ROW |24927 |17918 |17917 |
+ROW |24928 |16009 |16008 |
+ROW |24929 |16011 |16010 |
+ROW |24930 |16014 |16013 |
+ROW |24931 |16016 |16015 |
+ROW |24932 |17005 |16160 |
+ROW |24933 |17007 |16171 |
+ROW |24934 |17919 |17920 |
+ROW |24935 |17921 |17922 |
+ROW |24936 |16161 |16160 |
+ROW |24937 |16172 |16171 |
+ROW |24938 |16162 |16161 |
+ROW |24939 |16173 |16172 |
+ROW |24940 |16162 |16160 |
+ROW |24941 |16173 |16171 |
+ROW |24942 |16166 |17920 |
+ROW |24943 |16177 |17922 |
+ROW |24944 |16167 |17920 |
+ROW |24945 |16178 |17922 |
+ROW |24946 |16183 |16182 |
+ROW |24947 |17657 |17050 |
+ROW |24948 |17923 |17050 |
+ROW |24949 |17924 |17050 |
+ROW |24950 |17009 |17662 |
+ROW |24951 |17009 |17661 |
+ROW |24952 |16190 |16189 |
+ROW |24953 |17658 |17054 |
+ROW |24954 |17925 |17054 |
+ROW |24955 |17926 |17054 |
+ROW |24956 |17010 |17664 |
+ROW |24957 |17010 |17663 |
+ROW |24958 |17011 |16209 |
+ROW |24959 |17013 |16220 |
+ROW |24960 |17927 |17928 |
+ROW |24961 |17929 |17930 |
+ROW |24962 |16210 |16209 |
+ROW |24963 |16221 |16220 |
+ROW |24964 |16211 |16210 |
+ROW |24965 |16222 |16221 |
+ROW |24966 |16211 |16209 |
+ROW |24967 |16222 |16220 |
+ROW |24968 |16215 |17928 |
+ROW |24969 |16226 |17930 |
+ROW |24970 |16216 |17928 |
+ROW |24971 |16227 |17930 |
+ROW |24972 |16232 |16231 |
+ROW |24973 |17659 |17058 |
+ROW |24974 |17931 |17058 |
+ROW |24975 |17932 |17058 |
+ROW |24976 |17015 |17666 |
+ROW |24977 |17015 |17665 |
+ROW |24978 |16239 |16238 |
+ROW |24979 |17660 |17062 |
+ROW |24980 |17933 |17062 |
+ROW |24981 |17934 |17062 |
+ROW |24982 |17016 |17668 |
+ROW |24983 |17016 |17667 |
+ROW |24984 |18256 |18257 |
+ROW |24985 |18292 |18293 |
+ROW |24986 |18328 |18329 |
+ROW |24987 |18364 |18365 |
+ROW |24988 |18400 |18401 |
+ROW |24989 |18436 |18437 |
+ROW |24990 |18472 |18473 |
+ROW |24991 |18199 |18200 |
+ROW |24992 |18511 |18512 |
+ROW |24993 |18547 |18548 |
+ROW |24994 |18583 |18584 |
+ROW |24995 |16768 |16769 |
+ROW |24996 |16768 |16770 |
+ROW |24997 |16769 |16770 |
+ROW |24998 |16771 |16772 |
+ROW |24999 |16771 |16773 |
+ROW |25000 |16772 |16773 |
+ROW |25001 |16488 |16487 |
+ROW |25002 |16485 |16484 |
+ROW |25003 |16486 |16484 |
+ROW |25004 |16486 |16485 |
+ROW |25005 |16480 |16479 |
+ROW |25006 |16482 |16481 |
+ROW |25007 |16475 |16474 |
+ROW |25008 |16471 |16472 |
+ROW |25009 |16468 |16469 |
+ROW |25010 |16459 |16460 |
+ROW |25011 |16462 |16463 |
+ROW |25012 |16465 |16466 |
+ROW |25013 |16477 |16476 |
+ROW |25014 |15729 |15728 |
+ROW |25015 |15730 |15728 |
+ROW |25016 |15730 |15729 |
+ROW |25017 |15752 |15754 |
+ROW |25018 |15753 |15754 |
+ROW |25019 |15753 |15752 |
+ROW |25020 |15742 |15741 |
+ROW |25021 |15750 |15749 |
+ROW |25022 |15751 |15750 |
+ROW |25023 |15751 |15749 |
+ROW |25024 |15746 |15743 |
+ROW |25025 |15744 |15743 |
+ROW |25026 |15740 |15739 |
+ROW |25027 |17214 |17213 |
+ROW |25028 |17216 |17215 |
+ROW |25029 |15748 |15747 |
+ROW |25030 |16440 |16439 |
+ROW |25031 |17768 |15790 |
+ROW |25032 |17769 |15787 |
+ROW |25033 |17770 |15787 |
+ROW |25034 |17770 |17769 |
+ROW |25035 |15786 |15785 |
+ROW |25036 |15784 |15783 |
+ROW |25037 |15794 |15792 |
+ROW |25038 |15793 |15792 |
+ROW |25039 |15782 |15781 |
+ROW |25040 |15797 |15796 |
+ROW |25041 |15825 |15824 |
+ROW |25042 |15826 |15824 |
+ROW |25043 |15826 |15825 |
+ROW |25044 |15828 |15829 |
+ROW |25045 |15831 |15832 |
+ROW |25046 |15834 |15835 |
+ROW |25047 |15845 |15846 |
+ROW |25048 |17251 |17255 |
+ROW |25049 |17254 |17255 |
TABLE |functions
FIELDS|functionid|itemid|triggerid|name |parameter |
@@ -12792,7 +12920,6 @@ ROW |19553 |30426 |16714 |min |#3
ROW |19556 |30429 |16717 |min |#3 |
ROW |19557 |30430 |16718 |min |#3 |
ROW |19558 |30470 |16719 |min |5m |
-ROW |19559 |30434 |16720 |max |5m |
ROW |19560 |30454 |16721 |last | |
ROW |19562 |30432 |16723 |last | |
ROW |19563 |30445 |16724 |min |5m |
@@ -12807,7 +12934,6 @@ ROW |19572 |30481 |16732 |last |
ROW |19573 |30480 |16733 |diff | |
ROW |19574 |30480 |16733 |strlen | |
ROW |19575 |30505 |16734 |min |5m |
-ROW |19576 |30483 |16735 |max |5m |
ROW |19577 |30514 |16736 |last | |
ROW |19578 |30495 |16737 |min |5m |
ROW |19579 |30519 |16738 |last | |
@@ -12835,7 +12961,6 @@ ROW |19600 |30615 |16754 |last |
ROW |19601 |30636 |16755 |diff | |
ROW |19602 |30636 |16755 |strlen | |
ROW |19603 |30676 |16756 |min |5m |
-ROW |19604 |30640 |16757 |max |5m |
ROW |19605 |30660 |16758 |last | |
ROW |19606 |30638 |16759 |last | |
ROW |19607 |30651 |16760 |min |5m |
@@ -13049,8 +13174,6 @@ ROW |19857 |31082 |16939 |last |
ROW |19858 |31082 |16940 |nodata |30m |
ROW |19859 |31085 |16941 |diff | |
ROW |19860 |31085 |16941 |strlen | |
-ROW |19861 |31086 |16942 |min |5m |
-ROW |19862 |31087 |16943 |min |5m |
ROW |19863 |31088 |16944 |max |5m |
ROW |19865 |31133 |16946 |last | |
ROW |19866 |31135 |16947 |last | |
@@ -15136,6 +15259,42 @@ ROW |22128 |34092 |18605 |diff |
ROW |22129 |34092 |18605 |strlen | |
ROW |22130 |34093 |18606 |diff | |
ROW |22131 |34093 |18606 |strlen | |
+ROW |22132 |34094 |18607 |last | |
+ROW |22133 |34098 |18608 |diff | |
+ROW |22134 |34098 |18608 |strlen | |
+ROW |22135 |34102 |18609 |diff | |
+ROW |22136 |34102 |18609 |strlen | |
+ROW |22137 |34103 |18610 |diff | |
+ROW |22138 |34103 |18610 |strlen | |
+ROW |22139 |34106 |18611 |last | |
+ROW |22140 |34106 |18612 |nodata |15m |
+ROW |22141 |34119 |18613 |diff | |
+ROW |22142 |34119 |18613 |strlen | |
+ROW |22143 |34118 |18614 |str |ok |
+ROW |22144 |34117 |18615 |str |running |
+ROW |22145 |34151 |18616 |last | |
+ROW |22146 |34153 |18617 |min |5m |
+ROW |22147 |34149 |18617 |last | |
+ROW |22148 |34134 |18618 |max |5m |
+ROW |22149 |34151 |18619 |last | |
+ROW |22150 |34150 |18620 |last | |
+ROW |22151 |34148 |18621 |min |5m |
+ROW |22152 |34166 |18622 |last | |
+ROW |22153 |34172 |18623 |diff | |
+ROW |22154 |34172 |18623 |strlen | |
+ROW |22155 |31086 |18624 |min |5m |
+ROW |22156 |31087 |18625 |min |5m |
+ROW |22157 |34177 |18626 |last | |
+ROW |22158 |34177 |18627 |last | |
+ROW |22159 |34180 |18628 |last | |
+ROW |22160 |34180 |18629 |last | |
+ROW |22161 |34178 |18630 |last | |
+ROW |22162 |34178 |18631 |last | |
+ROW |22163 |34185 |18632 |last | |
+ROW |22164 |34186 |18633 |last | |
+ROW |22165 |30434 |18634 |max |5m |
+ROW |22166 |30640 |18635 |max |5m |
+ROW |22167 |30483 |18636 |max |5m |
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|
@@ -15770,6 +15929,11 @@ ROW |1516 |Voltage
ROW |1517 |Capacity of the UPS batteries |900 |200 |0 |100 |NULL |1 |1 |2 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
ROW |1518 |Output |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
ROW |1519 |Voltage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1520 |WildFly {#JMX_DATA_SOURCE}: Cache operations |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1521 |WildFly {#JMX_DATA_SOURCE}: Connections |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1522 |WildFly listener {#HTTP_LISTENER}: Requests |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1523 |WildFly listener {#HTTP_LISTENER}: Throughput |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1524 |WildFly: Transactions |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
TABLE |graphs
FIELDS|graphid|name |width|height|yaxismin|yaxismax|templateid|show_work_period|show_triggers|graphtype|show_legend|show_3d|percent_left|percent_right|ymin_type|ymax_type|ymin_itemid|ymax_itemid|flags|discover|
@@ -16019,2081 +16183,2105 @@ ROW |45178 |1017 |29766 |5 |0 |1A7C11|0 |2 |0 |
ROW |45179 |1024 |29776 |5 |0 |1A7C11|0 |2 |0 |
ROW |45180 |1024 |29777 |0 |1 |2774A4|0 |2 |0 |
ROW |45181 |1026 |29772 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50716 |1374 |32471 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50717 |1375 |32469 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50718 |1375 |32468 |5 |1 |2774A4|0 |2 |0 |
-ROW |50719 |1376 |32472 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50720 |1376 |32467 |5 |1 |2774A4|0 |2 |0 |
-ROW |50721 |1377 |32483 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50722 |1377 |32482 |5 |1 |2774A4|0 |2 |0 |
-ROW |50723 |1378 |32484 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50724 |1378 |32481 |5 |1 |2774A4|0 |2 |0 |
-ROW |50725 |1379 |32476 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50726 |1379 |32478 |5 |1 |2774A4|0 |2 |0 |
-ROW |50727 |1379 |32480 |5 |2 |F63100|0 |2 |0 |
-ROW |50728 |1172 |30918 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50729 |1172 |30919 |0 |1 |2774A4|0 |2 |0 |
-ROW |50730 |1172 |30920 |0 |2 |F63100|0 |2 |0 |
-ROW |50731 |1172 |30921 |2 |3 |A54F10|0 |2 |0 |
-ROW |50732 |1173 |30922 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50733 |835 |28744 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50734 |835 |28745 |0 |1 |2774A4|0 |2 |0 |
-ROW |50735 |1174 |30913 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50736 |1175 |30906 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50737 |1175 |30908 |0 |1 |2774A4|0 |2 |0 |
-ROW |50738 |1175 |30915 |0 |2 |F63100|0 |2 |0 |
-ROW |50739 |1175 |30897 |0 |3 |A54F10|0 |2 |0 |
-ROW |50740 |1175 |30901 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |50741 |1175 |30899 |0 |5 |6C59DC|0 |2 |0 |
-ROW |50742 |1175 |30907 |0 |6 |AC8C14|0 |2 |0 |
-ROW |50743 |1175 |30905 |0 |7 |611F27|0 |2 |0 |
-ROW |50744 |1175 |30904 |0 |8 |F230E0|0 |2 |0 |
-ROW |50745 |1175 |30900 |0 |9 |FFAD40|0 |2 |0 |
-ROW |50746 |1175 |30898 |0 |10 |40CDFF|0 |2 |0 |
-ROW |50747 |1176 |30910 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50748 |1176 |30909 |0 |1 |2774A4|0 |2 |0 |
-ROW |50749 |836 |28798 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50750 |836 |28799 |0 |1 |2774A4|0 |2 |0 |
-ROW |50751 |836 |28800 |0 |2 |F63100|0 |2 |0 |
-ROW |50752 |836 |28801 |2 |3 |A54F10|0 |2 |0 |
-ROW |50753 |837 |28803 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50754 |838 |28793 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50755 |840 |28787 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50756 |840 |28784 |0 |1 |2774A4|0 |2 |0 |
-ROW |50757 |840 |28782 |0 |2 |F63100|0 |2 |0 |
-ROW |50758 |840 |28781 |0 |3 |A54F10|0 |2 |0 |
-ROW |50759 |840 |28780 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |50760 |840 |28778 |0 |5 |6C59DC|0 |2 |0 |
-ROW |50761 |840 |28786 |0 |6 |AC8C14|0 |2 |0 |
-ROW |50762 |840 |28785 |0 |7 |611F27|0 |2 |0 |
-ROW |50763 |840 |28783 |0 |8 |F230E0|0 |2 |0 |
-ROW |50764 |840 |28779 |0 |9 |FFAD40|0 |2 |0 |
-ROW |50765 |840 |28796 |0 |10 |40CDFF|0 |2 |0 |
-ROW |50766 |839 |28789 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50767 |839 |28788 |0 |1 |2774A4|0 |2 |0 |
-ROW |50768 |1278 |31855 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50769 |1278 |31856 |0 |1 |2774A4|0 |2 |0 |
-ROW |50770 |1304 |32007 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50771 |1304 |32010 |0 |1 |2774A4|0 |2 |0 |
-ROW |50772 |1305 |32008 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50773 |1305 |32011 |0 |1 |2774A4|0 |2 |0 |
-ROW |50774 |1306 |32003 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50775 |1306 |32004 |0 |1 |2774A4|0 |2 |0 |
-ROW |50776 |1306 |32009 |0 |2 |F63100|0 |2 |0 |
-ROW |50777 |1282 |31818 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50778 |1282 |31825 |0 |1 |2774A4|0 |2 |0 |
-ROW |50779 |1283 |31850 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50780 |1283 |31819 |0 |1 |2774A4|0 |2 |0 |
-ROW |50781 |1284 |31824 |1 |0 |1A7C11|0 |2 |0 |
-ROW |50782 |1284 |31821 |1 |1 |2774A4|0 |2 |0 |
-ROW |50783 |1285 |31839 |2 |0 |1A7C11|0 |2 |0 |
-ROW |50784 |1285 |31841 |0 |1 |2774A4|0 |2 |0 |
-ROW |50785 |1285 |31842 |0 |2 |F63100|0 |2 |0 |
-ROW |50786 |1285 |31837 |2 |3 |A54F10|0 |2 |0 |
-ROW |50787 |1285 |31838 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |50788 |1285 |31829 |0 |5 |6C59DC|0 |2 |0 |
-ROW |50789 |1286 |31833 |2 |0 |1A7C11|0 |2 |0 |
-ROW |50790 |1286 |31834 |0 |1 |2774A4|0 |2 |0 |
-ROW |50791 |1286 |31835 |0 |2 |F63100|0 |2 |0 |
-ROW |50792 |1121 |30606 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50793 |1121 |30590 |5 |1 |2774A4|0 |2 |0 |
-ROW |50794 |1121 |30582 |5 |2 |F63100|0 |2 |0 |
-ROW |50795 |1122 |30580 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50796 |1122 |30578 |5 |1 |2774A4|0 |2 |0 |
-ROW |50797 |1123 |30586 |2 |0 |1A7C11|0 |2 |0 |
-ROW |50798 |1123 |30608 |2 |1 |2774A4|0 |2 |0 |
-ROW |50799 |1123 |30585 |2 |2 |F63100|0 |2 |0 |
-ROW |50800 |1123 |30589 |2 |3 |A54F10|0 |2 |0 |
-ROW |50801 |1123 |30584 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |50802 |1123 |30588 |2 |5 |6C59DC|0 |2 |0 |
-ROW |50803 |1124 |30583 |2 |0 |1A7C11|0 |2 |0 |
-ROW |50804 |1124 |30587 |2 |1 |2774A4|0 |2 |0 |
-ROW |50805 |1125 |30555 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50806 |1125 |30554 |2 |1 |2774A4|0 |2 |0 |
-ROW |50807 |1125 |30556 |2 |2 |F63100|0 |2 |0 |
-ROW |50808 |1125 |30557 |2 |3 |A54F10|0 |2 |0 |
-ROW |50809 |1126 |30565 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50810 |1127 |30567 |2 |0 |1A7C11|0 |2 |0 |
-ROW |50811 |1127 |30568 |2 |1 |2774A4|0 |2 |0 |
-ROW |50812 |1128 |30536 |2 |0 |1A7C11|0 |2 |0 |
-ROW |50813 |1129 |30566 |2 |0 |1A7C11|0 |2 |0 |
-ROW |50814 |1129 |30549 |2 |1 |2774A4|0 |2 |0 |
-ROW |50815 |1129 |30553 |2 |2 |F63100|0 |2 |0 |
-ROW |50816 |1129 |30570 |2 |3 |A54F10|0 |2 |0 |
-ROW |50817 |1143 |30714 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50818 |1143 |30716 |0 |1 |2774A4|0 |2 |0 |
-ROW |50819 |1143 |30717 |0 |2 |F63100|0 |2 |0 |
-ROW |50820 |1143 |30715 |0 |3 |A54F10|0 |2 |0 |
-ROW |50821 |1144 |30753 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50822 |1144 |30738 |0 |1 |2774A4|0 |2 |0 |
-ROW |50823 |1145 |30718 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50824 |1145 |30737 |0 |1 |2774A4|0 |2 |0 |
-ROW |50825 |1145 |30727 |0 |2 |F63100|0 |2 |0 |
-ROW |50826 |1145 |30729 |0 |3 |A54F10|0 |2 |0 |
-ROW |50827 |1146 |30730 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50828 |1146 |30732 |0 |1 |2774A4|0 |2 |0 |
-ROW |50829 |1146 |30731 |0 |2 |F63100|0 |2 |0 |
-ROW |50830 |1146 |30733 |0 |3 |A54F10|0 |2 |0 |
-ROW |50831 |1147 |30734 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50832 |1147 |30736 |0 |1 |2774A4|0 |2 |0 |
-ROW |50833 |1147 |30735 |0 |2 |F63100|0 |2 |0 |
-ROW |50834 |1147 |30758 |0 |3 |A54F10|0 |2 |0 |
-ROW |50835 |1148 |30711 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50836 |1148 |30706 |0 |1 |2774A4|0 |2 |0 |
-ROW |50837 |1148 |30710 |0 |2 |F63100|0 |2 |0 |
-ROW |50838 |1148 |30712 |0 |3 |A54F10|0 |2 |0 |
-ROW |50839 |1148 |30702 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |50840 |1148 |30707 |0 |5 |6C59DC|0 |2 |0 |
-ROW |50841 |1148 |30704 |0 |6 |AC8C14|0 |2 |0 |
-ROW |50842 |1177 |30927 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50843 |1177 |30944 |2 |1 |2774A4|0 |2 |0 |
-ROW |50844 |1178 |30935 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50845 |1178 |30942 |0 |1 |2774A4|0 |2 |0 |
-ROW |50846 |1179 |30949 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50847 |1179 |30950 |0 |1 |2774A4|0 |2 |0 |
-ROW |50848 |1179 |30951 |0 |2 |F63100|0 |2 |0 |
-ROW |50849 |1180 |30952 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50850 |1180 |30954 |0 |1 |2774A4|0 |2 |0 |
-ROW |50851 |1180 |30955 |0 |2 |F63100|0 |2 |0 |
-ROW |50852 |1181 |30936 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50853 |1181 |30940 |5 |1 |2774A4|0 |2 |0 |
-ROW |50854 |1182 |30930 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50855 |1182 |30929 |0 |1 |2774A4|0 |2 |0 |
-ROW |50856 |1182 |30928 |0 |2 |F63100|0 |2 |0 |
-ROW |50857 |1182 |30931 |2 |3 |A54F10|1 |2 |0 |
-ROW |50858 |1183 |30934 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50859 |1183 |30941 |0 |1 |2774A4|0 |2 |0 |
-ROW |50860 |1380 |32498 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50861 |1380 |32499 |0 |1 |2774A4|0 |2 |0 |
-ROW |50862 |1381 |32505 |0 |0 |1A7C11|1 |2 |0 |
-ROW |50863 |1381 |32508 |0 |1 |2774A4|1 |2 |0 |
-ROW |50864 |1381 |32506 |0 |2 |F63100|0 |2 |0 |
-ROW |50865 |1381 |32507 |0 |3 |A54F10|0 |2 |0 |
-ROW |50866 |1381 |32509 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |50867 |1381 |32510 |0 |5 |6C59DC|0 |2 |0 |
-ROW |50868 |1382 |32488 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50869 |1382 |32491 |0 |1 |2774A4|0 |2 |0 |
-ROW |50870 |1382 |32493 |0 |2 |F63100|0 |2 |0 |
-ROW |50871 |1382 |32494 |0 |3 |A54F10|0 |2 |0 |
-ROW |50872 |1383 |32528 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50873 |1383 |32529 |0 |1 |2774A4|0 |2 |0 |
-ROW |50874 |1384 |32535 |0 |0 |1A7C11|1 |2 |0 |
-ROW |50875 |1384 |32538 |0 |1 |2774A4|1 |2 |0 |
-ROW |50876 |1384 |32536 |0 |2 |F63100|0 |2 |0 |
-ROW |50877 |1384 |32537 |0 |3 |A54F10|0 |2 |0 |
-ROW |50878 |1384 |32539 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |50879 |1384 |32540 |0 |5 |6C59DC|0 |2 |0 |
-ROW |50880 |1385 |32518 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50881 |1385 |32521 |0 |1 |2774A4|0 |2 |0 |
-ROW |50882 |1385 |32523 |0 |2 |F63100|0 |2 |0 |
-ROW |50883 |1385 |32524 |0 |3 |A54F10|0 |2 |0 |
-ROW |50884 |1250 |31527 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50885 |1250 |31529 |0 |1 |2774A4|0 |2 |0 |
-ROW |50886 |1250 |31499 |0 |2 |F63100|0 |2 |0 |
-ROW |50887 |1251 |31532 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50888 |1251 |31534 |0 |1 |2774A4|0 |2 |0 |
-ROW |50889 |1251 |31538 |0 |2 |F63100|0 |2 |0 |
-ROW |50890 |1251 |31536 |0 |3 |A54F10|0 |2 |0 |
-ROW |50891 |1251 |31528 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |50892 |1251 |31542 |0 |5 |6C59DC|0 |2 |0 |
-ROW |50893 |1252 |31552 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50894 |1252 |31551 |0 |1 |2774A4|0 |2 |0 |
-ROW |50895 |1252 |31541 |0 |2 |F63100|0 |2 |0 |
-ROW |50896 |1253 |31513 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50897 |1253 |31526 |0 |1 |2774A4|0 |2 |0 |
-ROW |50898 |1253 |31525 |0 |2 |F63100|0 |2 |0 |
-ROW |50899 |1254 |31502 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50900 |1254 |31501 |0 |1 |2774A4|0 |2 |0 |
-ROW |50901 |1254 |31503 |0 |2 |F63100|0 |2 |0 |
-ROW |50902 |1255 |31505 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50903 |1255 |31504 |0 |1 |2774A4|0 |2 |0 |
-ROW |50904 |1255 |31506 |0 |2 |F63100|0 |2 |0 |
-ROW |50905 |1256 |31508 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50906 |1256 |31507 |0 |1 |2774A4|0 |2 |0 |
-ROW |50907 |1256 |31509 |0 |2 |F63100|0 |2 |0 |
-ROW |50908 |1257 |31511 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50909 |1257 |31510 |0 |1 |2774A4|0 |2 |0 |
-ROW |50910 |1257 |31500 |0 |2 |F63100|0 |2 |0 |
-ROW |50911 |1258 |31514 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50912 |1258 |31512 |0 |1 |2774A4|0 |2 |0 |
-ROW |50913 |1258 |31515 |0 |2 |F63100|0 |2 |0 |
-ROW |50914 |1259 |31516 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50915 |1259 |31517 |0 |1 |2774A4|0 |2 |0 |
-ROW |50916 |1260 |31523 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50917 |1260 |31522 |0 |1 |2774A4|0 |2 |0 |
-ROW |50918 |1260 |31524 |0 |2 |F63100|0 |2 |0 |
-ROW |50919 |1307 |32051 |1 |0 |1A7C11|0 |2 |0 |
-ROW |50920 |1307 |32057 |1 |1 |2774A4|0 |2 |0 |
-ROW |50921 |1149 |30770 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50922 |1149 |30771 |0 |1 |2774A4|0 |2 |0 |
-ROW |50923 |1075 |30204 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50924 |1075 |30205 |0 |1 |2774A4|0 |2 |0 |
-ROW |50925 |1150 |30775 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50926 |1150 |30774 |0 |1 |2774A4|0 |2 |0 |
-ROW |50927 |1151 |30772 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50928 |1151 |30773 |5 |1 |2774A4|0 |2 |0 |
-ROW |50929 |1152 |30777 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50930 |1152 |30776 |0 |1 |2774A4|0 |2 |0 |
-ROW |50931 |1076 |30209 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50932 |1076 |30208 |0 |1 |2774A4|0 |2 |0 |
-ROW |50933 |1077 |30206 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50934 |1077 |30207 |5 |1 |2774A4|0 |2 |0 |
-ROW |50935 |1078 |30216 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50936 |1078 |30215 |0 |1 |2774A4|0 |2 |0 |
-ROW |50937 |1079 |30210 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50938 |1079 |30211 |0 |1 |2774A4|0 |2 |0 |
-ROW |50939 |1079 |30212 |0 |2 |F63100|0 |2 |0 |
-ROW |50940 |1079 |30213 |0 |3 |A54F10|0 |2 |0 |
-ROW |50941 |1079 |30214 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |50942 |1153 |30785 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50943 |1153 |30784 |0 |1 |2774A4|0 |2 |0 |
-ROW |50944 |1080 |30226 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50945 |1080 |30225 |0 |1 |2774A4|0 |2 |0 |
-ROW |50946 |1154 |30802 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50947 |1154 |30803 |0 |1 |2774A4|0 |2 |0 |
-ROW |50948 |1081 |30247 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50949 |1081 |30248 |0 |1 |2774A4|0 |2 |0 |
-ROW |50950 |1155 |30807 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50951 |1155 |30806 |0 |1 |2774A4|0 |2 |0 |
-ROW |50952 |1156 |30804 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50953 |1156 |30805 |5 |1 |2774A4|0 |2 |0 |
-ROW |50954 |1157 |30809 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50955 |1157 |30808 |0 |1 |2774A4|0 |2 |0 |
-ROW |50956 |1082 |30252 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50957 |1082 |30251 |0 |1 |2774A4|0 |2 |0 |
-ROW |50958 |1083 |30249 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50959 |1083 |30250 |5 |1 |2774A4|0 |2 |0 |
-ROW |50960 |1084 |30259 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50961 |1084 |30258 |0 |1 |2774A4|0 |2 |0 |
-ROW |50962 |1085 |30253 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50963 |1085 |30254 |0 |1 |2774A4|0 |2 |0 |
-ROW |50964 |1085 |30255 |0 |2 |F63100|0 |2 |0 |
-ROW |50965 |1085 |30256 |0 |3 |A54F10|0 |2 |0 |
-ROW |50966 |1085 |30257 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |50967 |1158 |30817 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50968 |1158 |30816 |0 |1 |2774A4|0 |2 |0 |
-ROW |50969 |1086 |30269 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50970 |1086 |30268 |0 |1 |2774A4|0 |2 |0 |
-ROW |50971 |1184 |30982 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50972 |1184 |30980 |5 |1 |2774A4|0 |2 |0 |
-ROW |50973 |1185 |30983 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50974 |1185 |30981 |0 |1 |2774A4|0 |2 |0 |
-ROW |50975 |1186 |30976 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50976 |1186 |30985 |0 |1 |2774A4|0 |2 |0 |
-ROW |50977 |1186 |30997 |0 |2 |F63100|0 |2 |0 |
-ROW |50978 |1186 |30970 |0 |3 |A54F10|0 |2 |0 |
-ROW |50979 |1186 |30973 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |50980 |1186 |30995 |0 |5 |6C59DC|0 |2 |0 |
-ROW |50981 |1186 |30998 |0 |6 |AC8C14|0 |2 |0 |
-ROW |50982 |1186 |30978 |0 |7 |611F27|0 |2 |0 |
-ROW |50983 |1187 |31024 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50984 |1187 |31022 |5 |1 |2774A4|0 |2 |0 |
-ROW |50985 |1188 |31025 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50986 |1188 |31023 |0 |1 |2774A4|0 |2 |0 |
-ROW |50987 |1189 |31018 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50988 |1189 |31027 |0 |1 |2774A4|0 |2 |0 |
-ROW |50989 |1189 |31039 |0 |2 |F63100|0 |2 |0 |
-ROW |50990 |1189 |31012 |0 |3 |A54F10|0 |2 |0 |
-ROW |50991 |1189 |31015 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |50992 |1189 |31037 |0 |5 |6C59DC|0 |2 |0 |
-ROW |50993 |1189 |31040 |0 |6 |AC8C14|0 |2 |0 |
-ROW |50994 |1189 |31020 |0 |7 |611F27|0 |2 |0 |
-ROW |50995 |1308 |32078 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50996 |1308 |32077 |0 |1 |2774A4|0 |2 |0 |
-ROW |50997 |1309 |32088 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50998 |1309 |32087 |0 |1 |2774A4|0 |2 |0 |
-ROW |50999 |1310 |32071 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51000 |1310 |32102 |0 |1 |2774A4|0 |2 |0 |
-ROW |51001 |1311 |32108 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51002 |1311 |32109 |0 |1 |2774A4|0 |2 |0 |
-ROW |51003 |1311 |32106 |0 |2 |F63100|0 |2 |0 |
-ROW |51004 |1311 |32107 |0 |3 |A54F10|0 |2 |0 |
-ROW |51005 |1312 |32083 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51006 |1312 |32084 |0 |1 |2774A4|0 |2 |0 |
-ROW |51007 |1313 |32080 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51008 |1313 |32081 |0 |1 |2774A4|0 |2 |0 |
-ROW |51009 |1314 |32086 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51010 |1314 |32100 |2 |1 |2774A4|0 |2 |0 |
-ROW |51011 |1314 |32073 |0 |2 |F63100|0 |2 |0 |
-ROW |51012 |1314 |32131 |0 |3 |A54F10|0 |2 |0 |
-ROW |51013 |1314 |32118 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |51014 |1314 |32101 |0 |5 |6C59DC|0 |2 |0 |
-ROW |51015 |1314 |32125 |0 |6 |AC8C14|0 |2 |0 |
-ROW |51016 |1314 |32126 |2 |7 |611F27|0 |2 |0 |
-ROW |51017 |1314 |32127 |0 |8 |F230E0|0 |2 |0 |
-ROW |51018 |1314 |32128 |0 |9 |FFAD40|0 |2 |0 |
-ROW |51019 |1314 |32129 |2 |10 |40CDFF|0 |2 |0 |
-ROW |51020 |1314 |32130 |0 |11 |40FFA0|0 |2 |0 |
-ROW |51021 |1315 |32124 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51022 |1315 |32123 |2 |1 |2774A4|0 |2 |0 |
-ROW |51023 |1315 |32122 |0 |2 |F63100|0 |2 |0 |
-ROW |51024 |1315 |32121 |0 |3 |A54F10|0 |2 |0 |
-ROW |51025 |1315 |32121 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |51026 |1315 |32120 |0 |5 |6C59DC|0 |2 |0 |
-ROW |51027 |1316 |32098 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51028 |1316 |32099 |0 |1 |2774A4|0 |2 |0 |
-ROW |51029 |1316 |32097 |0 |2 |F63100|0 |2 |0 |
-ROW |51030 |1316 |32096 |0 |3 |A54F10|0 |2 |0 |
-ROW |51031 |1130 |30613 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51032 |1130 |30635 |0 |1 |2774A4|0 |2 |0 |
-ROW |51033 |1130 |30625 |0 |2 |F63100|0 |2 |0 |
-ROW |51034 |1131 |30632 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51035 |1131 |30633 |5 |1 |2774A4|0 |2 |0 |
-ROW |51036 |1131 |30629 |5 |2 |F63100|0 |2 |0 |
-ROW |51037 |1132 |30630 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51038 |1132 |30628 |2 |1 |2774A4|0 |2 |0 |
-ROW |51039 |1132 |30631 |2 |2 |F63100|0 |2 |0 |
-ROW |51040 |1133 |30619 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51041 |1133 |30618 |0 |1 |2774A4|0 |2 |0 |
-ROW |51042 |1134 |30623 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51043 |1134 |30622 |5 |1 |2774A4|0 |2 |0 |
-ROW |51044 |1135 |30615 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51045 |841 |28813 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51046 |841 |28811 |0 |1 |2774A4|0 |2 |0 |
-ROW |51047 |841 |28812 |0 |2 |F63100|0 |2 |0 |
-ROW |51048 |841 |28814 |0 |3 |A54F10|0 |2 |0 |
-ROW |51049 |842 |28817 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51050 |842 |28815 |0 |1 |2774A4|0 |2 |0 |
-ROW |51051 |842 |28816 |0 |2 |F63100|0 |2 |0 |
-ROW |51052 |844 |28808 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51053 |844 |28807 |0 |1 |2774A4|0 |2 |0 |
-ROW |51054 |843 |28818 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51055 |845 |28829 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51056 |845 |28831 |0 |1 |2774A4|0 |2 |0 |
-ROW |51057 |845 |28832 |0 |2 |F63100|0 |2 |0 |
-ROW |51058 |845 |28830 |0 |3 |A54F10|0 |2 |0 |
-ROW |51059 |846 |28826 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51060 |846 |28828 |0 |1 |2774A4|0 |2 |0 |
-ROW |51061 |846 |28827 |0 |2 |F63100|0 |2 |0 |
-ROW |51062 |847 |28825 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51063 |1287 |31890 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51064 |1287 |31882 |0 |1 |2774A4|0 |2 |0 |
-ROW |51065 |1287 |31880 |0 |2 |F63100|0 |2 |0 |
-ROW |51066 |1287 |31883 |0 |3 |A54F10|0 |2 |0 |
-ROW |51067 |1288 |31889 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51068 |1288 |31881 |0 |1 |2774A4|0 |2 |0 |
-ROW |51069 |1288 |31888 |0 |2 |F63100|0 |2 |0 |
-ROW |51070 |1289 |31900 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51071 |1289 |31895 |0 |1 |2774A4|0 |2 |0 |
-ROW |51072 |1289 |31899 |0 |2 |F63100|0 |2 |0 |
-ROW |51073 |1289 |31902 |0 |3 |A54F10|0 |2 |0 |
-ROW |51074 |1290 |31907 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51075 |1290 |31908 |0 |1 |2774A4|0 |2 |0 |
-ROW |51076 |1290 |31906 |0 |2 |F63100|0 |2 |0 |
-ROW |51077 |1412 |32908 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51078 |1412 |32923 |0 |1 |2774A4|0 |2 |0 |
-ROW |51079 |1412 |32921 |0 |2 |F63100|0 |2 |0 |
-ROW |51080 |1412 |32919 |0 |3 |A54F10|0 |2 |0 |
-ROW |51081 |1412 |32917 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51082 |1412 |32911 |0 |5 |6C59DC|0 |2 |0 |
-ROW |51083 |1412 |32914 |0 |6 |AC8C14|0 |2 |0 |
-ROW |51084 |1412 |32909 |0 |7 |611F27|0 |2 |0 |
-ROW |51085 |1413 |32912 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51086 |1413 |32922 |0 |1 |2774A4|0 |2 |0 |
-ROW |51087 |1413 |32920 |0 |2 |F63100|0 |2 |0 |
-ROW |51088 |1413 |32918 |0 |3 |A54F10|0 |2 |0 |
-ROW |51089 |1413 |32915 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51090 |1413 |32910 |0 |5 |6C59DC|0 |2 |0 |
-ROW |51091 |1413 |32913 |0 |6 |AC8C14|0 |2 |0 |
-ROW |51092 |1413 |32924 |0 |7 |611F27|0 |2 |0 |
-ROW |51093 |1414 |32847 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51094 |1414 |32848 |0 |1 |2774A4|0 |2 |0 |
-ROW |51095 |1414 |32846 |0 |2 |F63100|0 |2 |0 |
-ROW |51096 |1415 |32871 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51097 |1415 |32876 |2 |1 |FF0000|0 |2 |0 |
-ROW |51098 |1416 |32875 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51099 |1417 |32839 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51100 |1417 |32838 |0 |1 |2774A4|0 |2 |0 |
-ROW |51101 |1418 |32878 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51102 |1418 |32873 |2 |1 |FF0000|0 |2 |0 |
-ROW |51103 |1419 |32843 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51104 |1419 |32842 |0 |1 |2774A4|0 |2 |0 |
-ROW |51105 |1419 |32841 |0 |2 |F63100|0 |2 |0 |
-ROW |51106 |1420 |32857 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51107 |1420 |32851 |0 |1 |2774A4|0 |2 |0 |
-ROW |51108 |1420 |32861 |0 |2 |F63100|0 |2 |0 |
-ROW |51109 |1420 |32859 |0 |3 |A54F10|0 |2 |0 |
-ROW |51110 |1420 |32855 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51111 |1420 |32853 |0 |5 |6C59DC|0 |2 |0 |
-ROW |51112 |1420 |32863 |0 |6 |AC8C14|0 |2 |0 |
-ROW |51113 |1420 |32849 |0 |7 |611F27|0 |2 |0 |
-ROW |51114 |1421 |32858 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51115 |1421 |32850 |0 |1 |2774A4|0 |2 |0 |
-ROW |51116 |1421 |32862 |0 |2 |F63100|0 |2 |0 |
-ROW |51117 |1421 |32860 |0 |3 |A54F10|0 |2 |0 |
-ROW |51118 |1421 |32856 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51119 |1421 |32854 |0 |5 |6C59DC|0 |2 |0 |
-ROW |51120 |1421 |32852 |0 |6 |AC8C14|0 |2 |0 |
-ROW |51121 |1421 |32840 |0 |7 |611F27|0 |2 |0 |
-ROW |51122 |1422 |32864 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51123 |1423 |32844 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51124 |1424 |32866 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51125 |1424 |32867 |0 |1 |2774A4|0 |2 |0 |
-ROW |51126 |1425 |32865 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51127 |1426 |33000 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51128 |1426 |33015 |0 |1 |2774A4|0 |2 |0 |
-ROW |51129 |1426 |33013 |0 |2 |F63100|0 |2 |0 |
-ROW |51130 |1426 |33011 |0 |3 |A54F10|0 |2 |0 |
-ROW |51131 |1426 |33009 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51132 |1426 |33003 |0 |5 |6C59DC|0 |2 |0 |
-ROW |51133 |1426 |33006 |0 |6 |AC8C14|0 |2 |0 |
-ROW |51134 |1426 |33001 |0 |7 |611F27|0 |2 |0 |
-ROW |51135 |1427 |33004 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51136 |1427 |33014 |0 |1 |2774A4|0 |2 |0 |
-ROW |51137 |1427 |33012 |0 |2 |F63100|0 |2 |0 |
-ROW |51138 |1427 |33010 |0 |3 |A54F10|0 |2 |0 |
-ROW |51139 |1427 |33007 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51140 |1427 |33002 |0 |5 |6C59DC|0 |2 |0 |
-ROW |51141 |1427 |33005 |0 |6 |AC8C14|0 |2 |0 |
-ROW |51142 |1427 |33016 |0 |7 |611F27|0 |2 |0 |
-ROW |51143 |1428 |32937 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51144 |1428 |32938 |0 |1 |2774A4|0 |2 |0 |
-ROW |51145 |1428 |32936 |0 |2 |F63100|0 |2 |0 |
-ROW |51146 |1429 |32969 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51147 |1429 |32967 |2 |1 |FF0000|0 |2 |0 |
-ROW |51148 |1430 |32966 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51149 |1431 |32964 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51150 |1431 |32962 |2 |1 |FF0000|0 |2 |0 |
-ROW |51151 |1432 |32933 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51152 |1432 |32932 |0 |1 |2774A4|0 |2 |0 |
-ROW |51153 |1432 |32955 |0 |2 |F63100|0 |2 |0 |
-ROW |51154 |1433 |32947 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51155 |1433 |32953 |0 |1 |2774A4|0 |2 |0 |
-ROW |51156 |1433 |32951 |0 |2 |F63100|0 |2 |0 |
-ROW |51157 |1433 |32949 |0 |3 |A54F10|0 |2 |0 |
-ROW |51158 |1433 |32945 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51159 |1433 |32943 |0 |5 |6C59DC|0 |2 |0 |
-ROW |51160 |1433 |32941 |0 |6 |AC8C14|0 |2 |0 |
-ROW |51161 |1433 |32939 |0 |7 |611F27|0 |2 |0 |
-ROW |51162 |1434 |32948 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51163 |1434 |32954 |0 |1 |2774A4|0 |2 |0 |
-ROW |51164 |1434 |32952 |0 |2 |F63100|0 |2 |0 |
-ROW |51165 |1434 |32950 |0 |3 |A54F10|0 |2 |0 |
-ROW |51166 |1434 |32946 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51167 |1434 |32944 |0 |5 |6C59DC|0 |2 |0 |
-ROW |51168 |1434 |32942 |0 |6 |AC8C14|0 |2 |0 |
-ROW |51169 |1434 |32940 |0 |7 |611F27|0 |2 |0 |
-ROW |51170 |1435 |32960 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51171 |1436 |32934 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51172 |1437 |32957 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51173 |1437 |32958 |0 |1 |2774A4|0 |2 |0 |
-ROW |51174 |1438 |32970 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51175 |1291 |31947 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51176 |1291 |31946 |0 |1 |2774A4|0 |2 |0 |
-ROW |51177 |1292 |31952 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51178 |1292 |31938 |0 |1 |2774A4|0 |2 |0 |
-ROW |51179 |1292 |31950 |0 |2 |F63100|0 |2 |0 |
-ROW |51180 |1293 |31939 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51181 |1293 |31945 |0 |1 |2774A4|0 |2 |0 |
-ROW |51182 |1293 |31942 |0 |2 |F63100|0 |2 |0 |
-ROW |51183 |1294 |31959 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51184 |1294 |31962 |0 |1 |2774A4|0 |2 |0 |
-ROW |51185 |1295 |31918 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51186 |1295 |31916 |0 |1 |2774A4|0 |2 |0 |
-ROW |51187 |1295 |31917 |0 |2 |F63100|0 |2 |0 |
-ROW |51188 |1296 |31919 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51189 |1296 |31920 |0 |1 |2774A4|0 |2 |0 |
-ROW |51190 |1296 |31921 |0 |2 |F63100|0 |2 |0 |
-ROW |51191 |1297 |31911 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51192 |1297 |31944 |0 |1 |2774A4|0 |2 |0 |
-ROW |51193 |1298 |31953 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51194 |1298 |31954 |0 |1 |2774A4|0 |2 |0 |
-ROW |51195 |1298 |31960 |0 |2 |F63100|0 |2 |0 |
-ROW |51196 |1298 |31961 |0 |3 |A54F10|0 |2 |0 |
-ROW |51197 |1298 |31957 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51198 |1298 |31958 |0 |5 |6C59DC|0 |2 |0 |
-ROW |51199 |1298 |31912 |0 |6 |AC8C14|0 |2 |0 |
-ROW |51200 |1298 |31913 |0 |7 |611F27|0 |2 |0 |
-ROW |51201 |1298 |31914 |0 |8 |F230E0|0 |2 |0 |
-ROW |51202 |1298 |31915 |0 |9 |FFAD40|0 |2 |0 |
-ROW |51203 |1298 |31948 |0 |10 |40CDFF|0 |2 |0 |
-ROW |51204 |1298 |31949 |0 |11 |40FFA0|0 |2 |0 |
-ROW |51205 |1317 |32146 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51206 |1317 |32145 |5 |1 |2774A4|0 |2 |0 |
-ROW |51207 |1318 |32151 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51208 |1318 |32150 |5 |1 |2774A4|0 |2 |0 |
-ROW |51209 |1318 |32153 |5 |2 |F63100|0 |2 |0 |
-ROW |51210 |1318 |32152 |5 |3 |A54F10|0 |2 |0 |
-ROW |51211 |1319 |32157 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51212 |1319 |32155 |5 |1 |2774A4|0 |2 |0 |
-ROW |51213 |1319 |32156 |5 |2 |F63100|0 |2 |0 |
-ROW |51214 |1320 |32196 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51215 |1320 |32197 |0 |1 |2774A4|0 |2 |0 |
-ROW |51216 |1320 |32195 |2 |2 |F63100|0 |2 |0 |
-ROW |51217 |1321 |32200 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51218 |1321 |32199 |0 |1 |2774A4|0 |2 |0 |
-ROW |51219 |1322 |32175 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51220 |1322 |32165 |0 |1 |2774A4|0 |2 |0 |
-ROW |51221 |1323 |32162 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51222 |1323 |32163 |0 |1 |2774A4|0 |2 |0 |
-ROW |51223 |1323 |32190 |2 |2 |F63100|0 |2 |0 |
-ROW |51224 |1324 |32192 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51225 |1324 |32179 |0 |1 |2774A4|0 |2 |0 |
-ROW |51226 |1325 |32168 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51227 |1325 |32166 |0 |1 |2774A4|0 |2 |0 |
-ROW |51228 |803 |28599 |0 |0 |DD0000|0 |2 |0 |
-ROW |51229 |803 |28596 |0 |1 |00DDDD|0 |2 |0 |
-ROW |51230 |803 |28597 |0 |2 |3333FF|0 |2 |0 |
-ROW |51231 |803 |28598 |0 |3 |00FF00|0 |2 |0 |
-ROW |51232 |804 |28602 |0 |0 |990099|0 |2 |0 |
-ROW |51233 |804 |28606 |0 |1 |990000|0 |2 |0 |
-ROW |51234 |804 |28608 |0 |2 |0000EE|0 |2 |0 |
-ROW |51235 |804 |28615 |0 |3 |FF33FF|0 |2 |0 |
-ROW |51236 |804 |28610 |0 |4 |00EE00|0 |2 |0 |
-ROW |51237 |804 |28611 |0 |5 |003300|0 |2 |0 |
-ROW |51238 |804 |28616 |0 |6 |33FFFF|0 |2 |0 |
-ROW |51239 |804 |28607 |0 |7 |DD0000|0 |2 |0 |
-ROW |51240 |804 |28604 |0 |8 |000099|0 |2 |0 |
-ROW |51241 |804 |28588 |0 |9 |00FF00|0 |2 |0 |
-ROW |51242 |805 |28612 |0 |0 |FFAA00|0 |2 |0 |
-ROW |51243 |805 |28600 |0 |1 |990099|0 |2 |0 |
-ROW |51244 |805 |28613 |0 |2 |EE0000|0 |2 |0 |
-ROW |51245 |805 |28605 |0 |3 |FF66FF|0 |2 |0 |
-ROW |51246 |805 |28614 |0 |4 |960000|0 |2 |0 |
-ROW |51247 |805 |28601 |0 |5 |009600|0 |2 |0 |
-ROW |51248 |805 |28603 |0 |6 |009999|0 |2 |0 |
-ROW |51249 |805 |28609 |0 |7 |BBBB00|0 |2 |0 |
-ROW |51250 |806 |28595 |0 |0 |00C800|0 |2 |0 |
-ROW |51251 |806 |28586 |0 |1 |C80000|0 |2 |0 |
-ROW |51252 |797 |28546 |0 |0 |C80000|0 |2 |0 |
-ROW |51253 |797 |28545 |0 |1 |00C800|0 |2 |0 |
-ROW |51254 |798 |28551 |0 |0 |009900|0 |2 |0 |
-ROW |51255 |798 |28543 |0 |1 |DD0000|0 |2 |0 |
-ROW |51256 |798 |28542 |0 |2 |00DDDD|0 |2 |0 |
-ROW |51257 |798 |28549 |0 |3 |3333FF|0 |2 |0 |
-ROW |51258 |798 |28544 |0 |4 |999900|0 |2 |0 |
-ROW |51259 |798 |28548 |0 |5 |00FF00|0 |2 |0 |
-ROW |51260 |799 |28581 |0 |0 |990099|0 |2 |0 |
-ROW |51261 |799 |28574 |0 |1 |990000|0 |2 |0 |
-ROW |51262 |799 |28571 |0 |2 |0000EE|0 |2 |0 |
-ROW |51263 |799 |28565 |0 |3 |FF33FF|0 |2 |0 |
-ROW |51264 |799 |28570 |0 |4 |009600|0 |2 |0 |
-ROW |51265 |799 |28569 |0 |5 |003300|0 |2 |0 |
-ROW |51266 |799 |28577 |0 |6 |CCCC00|0 |2 |0 |
-ROW |51267 |799 |28552 |0 |7 |33FFFF|0 |2 |0 |
-ROW |51268 |799 |28573 |0 |8 |DD0000|0 |2 |0 |
-ROW |51269 |799 |28579 |0 |9 |000099|0 |2 |0 |
-ROW |51270 |799 |28559 |0 |10 |00FF00|0 |2 |0 |
-ROW |51271 |800 |28572 |0 |0 |00EE00|0 |2 |0 |
-ROW |51272 |800 |28566 |0 |1 |0000EE|0 |2 |0 |
-ROW |51273 |800 |28568 |0 |2 |FFAA00|0 |2 |0 |
-ROW |51274 |800 |28561 |0 |3 |00EEEE|0 |2 |0 |
-ROW |51275 |800 |28564 |0 |4 |990099|0 |2 |0 |
-ROW |51276 |800 |28567 |0 |5 |EE0000|0 |2 |0 |
-ROW |51277 |800 |28578 |0 |6 |FF66FF|0 |2 |0 |
-ROW |51278 |800 |28580 |0 |7 |009999|0 |2 |0 |
-ROW |51279 |800 |28562 |0 |8 |BBBB00|0 |2 |0 |
-ROW |51280 |800 |28563 |0 |9 |AA0000|0 |2 |0 |
-ROW |51281 |800 |28575 |0 |10 |990000|0 |2 |0 |
-ROW |51282 |800 |28576 |0 |11 |008800|0 |2 |0 |
-ROW |51283 |800 |28582 |0 |12 |80B0E0|0 |2 |0 |
-ROW |51284 |800 |28583 |0 |13 |4080B0|0 |2 |0 |
-ROW |51285 |800 |29821 |0 |14 |8000FF|0 |2 |0 |
-ROW |51286 |801 |28560 |0 |0 |008800|0 |2 |0 |
-ROW |51287 |801 |28584 |0 |1 |EE0000|0 |2 |0 |
-ROW |51288 |802 |28550 |5 |0 |00C800|0 |2 |0 |
-ROW |51289 |802 |28540 |0 |1 |F63100|0 |2 |0 |
-ROW |51290 |529 |23357 |0 |0 |DD0000|0 |2 |0 |
-ROW |51291 |529 |23341 |0 |1 |00DDDD|0 |2 |0 |
-ROW |51292 |529 |23342 |0 |2 |3333FF|0 |2 |0 |
-ROW |51293 |529 |28251 |0 |3 |00FF00|0 |2 |0 |
-ROW |51294 |530 |23345 |0 |0 |990099|0 |2 |0 |
-ROW |51295 |530 |23348 |0 |1 |990000|0 |2 |0 |
-ROW |51296 |530 |23355 |0 |2 |0000EE|0 |2 |0 |
-ROW |51297 |530 |23352 |0 |3 |FF33FF|0 |2 |0 |
-ROW |51298 |530 |23356 |0 |4 |007700|0 |2 |0 |
-ROW |51299 |530 |23354 |0 |5 |003300|0 |2 |0 |
-ROW |51300 |530 |23346 |0 |6 |33FFFF|0 |2 |0 |
-ROW |51301 |530 |23349 |0 |7 |DD0000|0 |2 |0 |
-ROW |51302 |530 |23344 |0 |8 |000099|0 |7 |0 |
-ROW |51303 |530 |28250 |0 |9 |00FF00|0 |2 |0 |
-ROW |51304 |531 |23353 |0 |0 |FFAA00|0 |2 |0 |
-ROW |51305 |531 |23347 |0 |1 |990099|0 |2 |0 |
-ROW |51306 |531 |23350 |0 |2 |EE0000|0 |2 |0 |
-ROW |51307 |531 |23343 |0 |3 |FF66FF|0 |2 |0 |
-ROW |51308 |531 |23351 |0 |4 |0000EE|0 |2 |0 |
-ROW |51309 |531 |23360 |0 |5 |00EE00|0 |2 |0 |
-ROW |51310 |531 |25369 |0 |6 |009999|0 |2 |0 |
-ROW |51311 |531 |25368 |0 |7 |BBBB00|0 |2 |0 |
-ROW |51312 |531 |28618 |0 |8 |990000|0 |2 |0 |
-ROW |51313 |531 |28619 |0 |9 |008800|0 |2 |0 |
-ROW |51314 |807 |28617 |0 |0 |008800|0 |2 |0 |
-ROW |51315 |532 |23340 |5 |0 |00C800|0 |2 |0 |
-ROW |51316 |532 |23358 |5 |1 |C80000|1 |2 |0 |
-ROW |51317 |527 |22199 |0 |0 |C80000|0 |2 |0 |
-ROW |51318 |527 |22196 |0 |1 |00C800|0 |2 |0 |
-ROW |51319 |528 |23628 |0 |0 |C80000|0 |2 |0 |
-ROW |51320 |528 |23625 |0 |1 |00C800|0 |2 |0 |
-ROW |51321 |410 |22185 |0 |0 |009900|0 |2 |0 |
-ROW |51322 |410 |22189 |0 |1 |DD0000|0 |2 |0 |
-ROW |51323 |410 |22396 |0 |2 |00DDDD|0 |2 |0 |
-ROW |51324 |410 |22183 |0 |3 |3333FF|0 |2 |0 |
-ROW |51325 |410 |22191 |0 |4 |999900|0 |2 |0 |
-ROW |51326 |410 |23634 |0 |5 |00FF00|0 |2 |0 |
-ROW |51327 |520 |23276 |0 |0 |009900|0 |2 |0 |
-ROW |51328 |520 |23273 |0 |1 |DD0000|0 |2 |0 |
-ROW |51329 |520 |23275 |0 |2 |00DDDD|0 |2 |0 |
-ROW |51330 |520 |23274 |0 |3 |3333FF|0 |2 |0 |
-ROW |51331 |520 |23620 |0 |4 |999900|0 |2 |0 |
-ROW |51332 |520 |23635 |0 |5 |00FF00|0 |2 |0 |
-ROW |51333 |404 |22404 |0 |0 |990099|0 |2 |0 |
-ROW |51334 |404 |22399 |0 |1 |990000|0 |2 |0 |
-ROW |51335 |404 |22416 |0 |2 |0000EE|0 |2 |0 |
-ROW |51336 |404 |22430 |0 |3 |FF33FF|0 |2 |0 |
-ROW |51337 |404 |22418 |0 |4 |009600|0 |2 |0 |
-ROW |51338 |404 |22402 |0 |5 |003300|0 |2 |0 |
-ROW |51339 |404 |22420 |0 |6 |CCCC00|0 |2 |0 |
-ROW |51340 |404 |22400 |0 |7 |33FFFF|0 |2 |0 |
-ROW |51341 |404 |22689 |0 |8 |DD0000|0 |2 |0 |
-ROW |51342 |404 |23171 |0 |9 |000099|0 |2 |0 |
-ROW |51343 |404 |22401 |0 |10 |00FF00|0 |2 |0 |
-ROW |51344 |518 |23269 |0 |0 |990099|0 |2 |0 |
-ROW |51345 |518 |23264 |0 |1 |990000|0 |2 |0 |
-ROW |51346 |518 |23261 |0 |2 |0000EE|0 |2 |0 |
-ROW |51347 |518 |23255 |0 |3 |FF33FF|0 |2 |0 |
-ROW |51348 |518 |23260 |0 |4 |009600|0 |2 |0 |
-ROW |51349 |518 |23259 |0 |5 |003300|0 |2 |0 |
-ROW |51350 |518 |23265 |0 |6 |CCCC00|0 |2 |0 |
-ROW |51351 |518 |23270 |0 |7 |33FFFF|0 |2 |0 |
-ROW |51352 |518 |23262 |0 |8 |DD0000|0 |2 |0 |
-ROW |51353 |518 |23267 |0 |9 |000099|0 |2 |0 |
-ROW |51354 |518 |23328 |0 |10 |00FF00|0 |2 |0 |
-ROW |51355 |406 |22426 |0 |0 |00EE00|0 |2 |0 |
-ROW |51356 |406 |22422 |0 |1 |0000EE|0 |2 |0 |
-ROW |51357 |406 |22408 |0 |2 |FFAA00|0 |2 |0 |
-ROW |51358 |406 |22424 |0 |3 |00EEEE|0 |2 |0 |
-ROW |51359 |406 |22412 |0 |4 |990099|0 |2 |0 |
-ROW |51360 |406 |22406 |0 |5 |EE0000|0 |2 |0 |
-ROW |51361 |406 |22414 |0 |6 |FF66FF|0 |2 |0 |
-ROW |51362 |406 |23663 |0 |7 |009999|0 |2 |0 |
-ROW |51363 |406 |25366 |0 |8 |BBBB00|0 |2 |0 |
-ROW |51364 |406 |25370 |0 |9 |AA0000|0 |2 |0 |
-ROW |51365 |406 |25665 |0 |10 |990000|0 |2 |0 |
-ROW |51366 |406 |25666 |0 |11 |008800|0 |2 |0 |
-ROW |51367 |406 |28535 |0 |12 |80B0E0|0 |2 |0 |
-ROW |51368 |406 |28537 |0 |13 |4080B0|0 |2 |0 |
-ROW |51369 |406 |29822 |0 |14 |8000FF|0 |2 |0 |
-ROW |51370 |517 |23268 |0 |0 |00EE00|0 |2 |0 |
-ROW |51371 |517 |23256 |0 |1 |0000EE|0 |2 |0 |
-ROW |51372 |517 |23258 |0 |2 |FFAA00|0 |2 |0 |
-ROW |51373 |517 |23252 |0 |3 |00EEEE|0 |2 |0 |
-ROW |51374 |517 |23253 |0 |4 |990099|0 |2 |0 |
-ROW |51375 |517 |23257 |0 |5 |EE0000|0 |2 |0 |
-ROW |51376 |517 |23266 |0 |6 |FF66FF|0 |2 |0 |
-ROW |51377 |517 |23664 |0 |7 |009999|0 |2 |0 |
-ROW |51378 |517 |25367 |0 |8 |BBBB00|0 |2 |0 |
-ROW |51379 |517 |25371 |0 |9 |AA0000|0 |2 |0 |
-ROW |51380 |517 |25667 |0 |10 |990000|0 |2 |0 |
-ROW |51381 |517 |25668 |0 |11 |008800|0 |2 |0 |
-ROW |51382 |517 |28536 |0 |12 |80B0E0|0 |2 |0 |
-ROW |51383 |517 |28538 |0 |13 |4080B0|0 |2 |0 |
-ROW |51384 |517 |29823 |0 |14 |8000FF|0 |2 |0 |
-ROW |51385 |788 |28248 |0 |0 |008800|0 |2 |0 |
-ROW |51386 |788 |28533 |0 |1 |EE0000|0 |2 |0 |
-ROW |51387 |789 |28249 |0 |0 |008800|0 |2 |0 |
-ROW |51388 |789 |28534 |0 |1 |EE0000|0 |2 |0 |
-ROW |51389 |392 |22187 |5 |0 |00C800|0 |2 |0 |
-ROW |51390 |392 |23251 |5 |1 |C80000|1 |2 |0 |
-ROW |51391 |519 |23277 |5 |0 |00C800|0 |2 |0 |
-ROW |51392 |519 |23272 |5 |1 |C80000|1 |2 |0 |
-ROW |51393 |472 |22945 |5 |0 |00AA00|0 |2 |0 |
-ROW |51394 |472 |22946 |5 |1 |3333FF|0 |2 |0 |
-ROW |51395 |473 |22950 |0 |0 |C80000|0 |2 |2 |
-ROW |51396 |473 |22948 |0 |1 |00C800|0 |2 |0 |
-ROW |51397 |471 |22924 |0 |0 |009900|0 |2 |0 |
-ROW |51398 |471 |22920 |0 |1 |000099|0 |2 |0 |
-ROW |51399 |469 |22922 |0 |0 |009900|0 |2 |0 |
-ROW |51400 |469 |22923 |0 |1 |000099|0 |2 |0 |
-ROW |51401 |469 |22921 |0 |2 |990000|0 |2 |0 |
-ROW |51402 |498 |23109 |0 |0 |009999|0 |2 |0 |
-ROW |51403 |498 |23112 |0 |1 |990099|0 |2 |0 |
-ROW |51404 |498 |23115 |0 |2 |999900|0 |2 |0 |
-ROW |51405 |498 |23113 |0 |3 |990000|0 |2 |0 |
-ROW |51406 |498 |23114 |0 |4 |000099|0 |2 |0 |
-ROW |51407 |498 |23110 |0 |5 |009900|0 |2 |0 |
-ROW |51408 |540 |22942 |5 |0 |00C800|0 |2 |0 |
-ROW |51409 |492 |23073 |5 |0 |00AA00|0 |2 |0 |
-ROW |51410 |492 |23074 |5 |1 |3333FF|0 |2 |0 |
-ROW |51411 |467 |22910 |0 |0 |C80000|0 |2 |2 |
-ROW |51412 |467 |22908 |0 |1 |00C800|0 |2 |0 |
-ROW |51413 |465 |22884 |0 |0 |009900|0 |2 |0 |
-ROW |51414 |465 |22880 |0 |1 |000099|0 |2 |0 |
-ROW |51415 |463 |22882 |0 |0 |009900|0 |2 |0 |
-ROW |51416 |463 |22883 |0 |1 |000099|0 |2 |0 |
-ROW |51417 |463 |22881 |0 |2 |990000|0 |2 |0 |
-ROW |51418 |462 |22886 |1 |0 |009999|0 |2 |0 |
-ROW |51419 |462 |22888 |1 |1 |990099|0 |2 |0 |
-ROW |51420 |462 |22891 |1 |2 |990000|0 |2 |0 |
-ROW |51421 |462 |22892 |1 |3 |000099|0 |2 |0 |
-ROW |51422 |462 |22885 |1 |4 |009900|0 |2 |0 |
-ROW |51423 |541 |22902 |5 |0 |00C800|0 |2 |0 |
-ROW |51424 |464 |22897 |0 |0 |AA0000|0 |2 |2 |
-ROW |51425 |464 |22895 |0 |1 |00AA00|0 |2 |0 |
-ROW |51426 |478 |22985 |5 |0 |00AA00|0 |2 |0 |
-ROW |51427 |478 |22986 |5 |1 |3333FF|0 |2 |0 |
-ROW |51428 |479 |22990 |0 |0 |C80000|0 |2 |2 |
-ROW |51429 |479 |22988 |0 |1 |00C800|0 |2 |0 |
-ROW |51430 |475 |22962 |0 |0 |009900|0 |2 |0 |
-ROW |51431 |475 |22963 |0 |1 |000099|0 |2 |0 |
-ROW |51432 |475 |22961 |0 |2 |990000|0 |2 |0 |
-ROW |51433 |474 |22968 |1 |0 |990099|0 |2 |0 |
-ROW |51434 |474 |22971 |1 |1 |990000|0 |2 |0 |
-ROW |51435 |474 |22972 |1 |2 |000099|0 |2 |0 |
-ROW |51436 |474 |22965 |1 |3 |009900|0 |2 |0 |
-ROW |51437 |542 |22982 |5 |0 |00C800|0 |2 |0 |
-ROW |51438 |491 |23070 |0 |0 |C80000|0 |2 |2 |
-ROW |51439 |491 |23068 |0 |1 |00C800|0 |2 |0 |
-ROW |51440 |487 |23042 |0 |0 |009900|0 |2 |0 |
-ROW |51441 |487 |23043 |0 |1 |000099|0 |2 |0 |
-ROW |51442 |487 |23041 |0 |2 |990000|0 |2 |0 |
-ROW |51443 |543 |23062 |5 |0 |00C800|0 |2 |0 |
-ROW |51444 |494 |23077 |5 |0 |00AA00|0 |2 |0 |
-ROW |51445 |494 |23078 |5 |1 |3333FF|0 |2 |0 |
-ROW |51446 |493 |23075 |5 |0 |00AA00|0 |2 |0 |
-ROW |51447 |493 |23076 |5 |1 |3333FF|0 |2 |0 |
-ROW |51448 |461 |22870 |0 |0 |C80000|0 |2 |2 |
-ROW |51449 |461 |22868 |0 |1 |00C800|0 |2 |0 |
-ROW |51450 |459 |22844 |0 |0 |009900|0 |2 |0 |
-ROW |51451 |459 |22840 |0 |1 |000099|0 |2 |0 |
-ROW |51452 |457 |22842 |0 |0 |009900|0 |2 |0 |
-ROW |51453 |457 |22843 |0 |1 |000099|0 |2 |0 |
-ROW |51454 |457 |22841 |0 |2 |990000|0 |2 |0 |
-ROW |51455 |456 |22846 |1 |0 |009999|0 |2 |0 |
-ROW |51456 |456 |22848 |1 |1 |990099|0 |2 |0 |
-ROW |51457 |456 |22851 |1 |2 |990000|0 |2 |0 |
-ROW |51458 |456 |22852 |1 |3 |000099|0 |2 |0 |
-ROW |51459 |456 |22845 |1 |4 |009900|0 |2 |0 |
-ROW |51460 |544 |22862 |5 |0 |00C800|0 |2 |0 |
-ROW |51461 |458 |22857 |0 |0 |AA0000|0 |2 |2 |
-ROW |51462 |458 |22855 |0 |1 |00AA00|0 |2 |0 |
-ROW |51463 |484 |23025 |5 |0 |00AA00|0 |2 |0 |
-ROW |51464 |484 |23026 |5 |1 |3333FF|0 |2 |0 |
-ROW |51465 |485 |23030 |0 |0 |C80000|0 |2 |2 |
-ROW |51466 |485 |23028 |0 |1 |00C800|0 |2 |0 |
-ROW |51467 |483 |23004 |0 |0 |009900|0 |2 |0 |
-ROW |51468 |483 |23000 |0 |1 |000099|0 |2 |0 |
-ROW |51469 |481 |23002 |0 |0 |009900|0 |2 |0 |
-ROW |51470 |481 |23003 |0 |1 |000099|0 |2 |0 |
-ROW |51471 |481 |23001 |0 |2 |990000|0 |2 |0 |
-ROW |51472 |480 |23007 |1 |0 |999900|0 |2 |0 |
-ROW |51473 |480 |23011 |1 |1 |990000|0 |2 |0 |
-ROW |51474 |480 |23012 |1 |2 |000099|0 |2 |0 |
-ROW |51475 |480 |23005 |1 |3 |009900|0 |2 |0 |
-ROW |51476 |545 |23022 |5 |0 |00C800|0 |2 |0 |
-ROW |51477 |482 |23017 |0 |0 |AA0000|0 |2 |2 |
-ROW |51478 |482 |23015 |0 |1 |00AA00|0 |2 |0 |
-ROW |51479 |651 |26928 |5 |0 |EE0000|0 |2 |0 |
-ROW |51480 |651 |26927 |0 |1 |000000|1 |2 |0 |
-ROW |51481 |652 |26925 |2 |0 |880000|0 |2 |0 |
-ROW |51482 |652 |26932 |0 |1 |009900|0 |2 |0 |
-ROW |51483 |652 |26930 |0 |2 |00CCCC|0 |2 |0 |
-ROW |51484 |652 |26931 |0 |3 |000000|0 |2 |0 |
-ROW |51485 |652 |26929 |0 |4 |3333FF|0 |2 |0 |
-ROW |51486 |652 |26926 |0 |5 |777700|0 |2 |0 |
-ROW |51487 |653 |26933 |2 |0 |EE0000|0 |2 |0 |
-ROW |51488 |653 |26943 |2 |1 |EE00EE|0 |2 |0 |
-ROW |51489 |653 |26935 |0 |2 |000000|1 |2 |0 |
-ROW |51490 |653 |26936 |4 |3 |000000|1 |2 |0 |
-ROW |51491 |654 |26934 |2 |0 |880000|0 |2 |0 |
-ROW |51492 |654 |26939 |0 |1 |009900|0 |2 |0 |
-ROW |51493 |654 |26942 |0 |2 |00CCCC|0 |2 |0 |
-ROW |51494 |654 |26938 |0 |3 |000000|0 |2 |0 |
-ROW |51495 |654 |26937 |0 |4 |3333FF|0 |2 |0 |
-ROW |51496 |1326 |32292 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51497 |1326 |32291 |0 |1 |2774A4|0 |2 |0 |
-ROW |51498 |1326 |32278 |0 |2 |F63100|0 |2 |0 |
-ROW |51499 |1326 |32277 |0 |3 |A54F10|0 |2 |0 |
-ROW |51500 |1327 |32304 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51501 |1327 |32289 |0 |1 |2774A4|0 |2 |0 |
-ROW |51502 |1328 |32259 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51503 |1328 |32260 |2 |1 |2774A4|0 |2 |0 |
-ROW |51504 |1329 |32268 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51505 |1329 |32264 |2 |1 |2774A4|0 |2 |0 |
-ROW |51506 |1330 |32261 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51507 |1330 |32265 |2 |1 |2774A4|0 |2 |0 |
-ROW |51508 |1330 |32262 |0 |2 |F63100|0 |2 |0 |
-ROW |51509 |1330 |32263 |0 |3 |A54F10|0 |2 |0 |
-ROW |51510 |1330 |32266 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51511 |1330 |32267 |0 |5 |6C59DC|0 |2 |0 |
-ROW |51512 |1331 |32272 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51513 |1331 |32271 |2 |1 |2774A4|0 |2 |0 |
-ROW |51514 |1332 |32256 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51515 |1332 |32242 |2 |1 |2774A4|0 |2 |0 |
-ROW |51516 |1333 |32273 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51517 |1333 |32238 |0 |1 |2774A4|0 |2 |0 |
-ROW |51518 |1334 |32245 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51519 |1334 |32250 |2 |1 |2774A4|0 |2 |0 |
-ROW |51520 |1334 |32246 |0 |2 |F63100|0 |2 |0 |
-ROW |51521 |1334 |32247 |0 |3 |A54F10|0 |2 |0 |
-ROW |51522 |1334 |32251 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51523 |1334 |32252 |0 |5 |6C59DC|0 |2 |0 |
-ROW |51524 |1159 |30886 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51525 |1159 |30887 |0 |1 |2774A4|0 |2 |0 |
-ROW |51526 |1160 |30888 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51527 |1160 |30882 |0 |1 |2774A4|0 |2 |0 |
-ROW |51528 |1160 |30890 |0 |2 |F63100|0 |2 |0 |
-ROW |51529 |1160 |30881 |0 |3 |A54F10|0 |2 |0 |
-ROW |51530 |1160 |30889 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51531 |1161 |30847 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51532 |1161 |30872 |2 |1 |2774A4|0 |2 |0 |
-ROW |51533 |1162 |30853 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51534 |1162 |30849 |2 |1 |2774A4|0 |2 |0 |
-ROW |51535 |1162 |30852 |2 |2 |F63100|0 |2 |0 |
-ROW |51536 |1162 |30851 |2 |3 |A54F10|0 |2 |0 |
-ROW |51537 |1162 |30848 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |51538 |1163 |30856 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51539 |1163 |30855 |0 |1 |2774A4|0 |2 |0 |
-ROW |51540 |1163 |30854 |2 |2 |F63100|1 |2 |0 |
-ROW |51541 |1164 |30859 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51542 |1164 |30870 |2 |1 |2774A4|0 |2 |0 |
-ROW |51543 |1165 |30860 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51544 |1165 |30871 |2 |1 |2774A4|0 |2 |0 |
-ROW |51545 |1166 |30868 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51546 |1166 |30869 |0 |1 |2774A4|0 |2 |0 |
-ROW |51547 |1166 |30867 |0 |2 |F63100|0 |2 |0 |
-ROW |51548 |1166 |30866 |0 |3 |A54F10|0 |2 |0 |
-ROW |51549 |1166 |30865 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51550 |1167 |30850 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51551 |1167 |30863 |5 |1 |2774A4|0 |2 |0 |
-ROW |51552 |1167 |30861 |5 |2 |F63100|0 |2 |0 |
-ROW |51553 |1168 |30833 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51554 |1168 |30841 |2 |1 |2774A4|0 |2 |0 |
-ROW |51555 |1168 |30857 |2 |2 |F63100|0 |2 |0 |
-ROW |51556 |1169 |30834 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51557 |1169 |30831 |2 |1 |2774A4|0 |2 |0 |
-ROW |51558 |1170 |30846 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51559 |1488 |30840 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51560 |1488 |30845 |0 |1 |2774A4|0 |2 |0 |
-ROW |51561 |1488 |30842 |0 |2 |F63100|0 |2 |0 |
-ROW |51562 |1488 |30873 |2 |3 |A54F10|1 |2 |0 |
-ROW |51563 |1390 |32665 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51564 |1390 |32668 |0 |1 |2774A4|0 |2 |0 |
-ROW |51565 |1390 |32666 |0 |2 |F63100|0 |2 |0 |
-ROW |51566 |1390 |32667 |0 |3 |A54F10|0 |2 |0 |
-ROW |51567 |1391 |32674 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51568 |1391 |32673 |0 |1 |2774A4|0 |2 |0 |
-ROW |51569 |1391 |32672 |0 |2 |F63100|0 |2 |0 |
-ROW |51570 |1392 |32677 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51571 |1392 |32686 |0 |1 |2774A4|0 |2 |0 |
-ROW |51572 |1393 |32681 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51573 |1393 |32682 |0 |1 |2774A4|0 |2 |0 |
-ROW |51574 |1394 |32687 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51575 |1394 |32692 |0 |1 |2774A4|0 |2 |0 |
-ROW |51576 |1394 |32690 |0 |2 |F63100|0 |2 |0 |
-ROW |51577 |1394 |32688 |0 |3 |A54F10|0 |2 |0 |
-ROW |51578 |1395 |32694 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51579 |1395 |32696 |0 |1 |2774A4|0 |2 |0 |
-ROW |51580 |1395 |32695 |0 |2 |F63100|0 |2 |0 |
-ROW |51581 |1396 |32708 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51582 |1396 |32706 |0 |1 |2774A4|0 |2 |0 |
-ROW |51583 |1397 |32715 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51584 |1397 |32716 |0 |1 |2774A4|0 |2 |0 |
-ROW |51585 |1398 |32718 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51586 |1398 |32720 |0 |1 |2774A4|0 |2 |0 |
-ROW |51587 |1399 |32721 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51588 |1399 |32719 |0 |1 |2774A4|0 |2 |0 |
-ROW |51589 |1400 |32723 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51590 |1400 |32724 |0 |1 |2774A4|0 |2 |0 |
-ROW |51591 |1401 |32722 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51592 |1401 |32725 |0 |1 |2774A4|0 |2 |0 |
-ROW |51593 |1401 |32726 |0 |2 |F63100|0 |2 |0 |
-ROW |51594 |1402 |32728 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51595 |1402 |32729 |0 |1 |2774A4|0 |2 |0 |
-ROW |51596 |1439 |33072 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51597 |1439 |33092 |0 |1 |2774A4|0 |2 |0 |
-ROW |51598 |1440 |33073 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51599 |1440 |33069 |0 |1 |2774A4|0 |2 |0 |
-ROW |51600 |1441 |33079 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51601 |1441 |33084 |0 |1 |2774A4|0 |2 |0 |
-ROW |51602 |1441 |33082 |0 |2 |F63100|0 |2 |0 |
-ROW |51603 |1441 |33074 |0 |3 |A54F10|0 |2 |0 |
-ROW |51604 |1441 |33078 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51605 |1441 |33086 |0 |5 |6C59DC|0 |2 |0 |
-ROW |51606 |1441 |33076 |2 |6 |AC8C14|0 |2 |0 |
-ROW |51607 |1442 |33081 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51608 |1442 |33085 |0 |1 |2774A4|0 |2 |0 |
-ROW |51609 |1442 |33083 |0 |2 |F63100|0 |2 |0 |
-ROW |51610 |1442 |33075 |0 |3 |A54F10|0 |2 |0 |
-ROW |51611 |1442 |33068 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51612 |1442 |33087 |0 |5 |6C59DC|0 |2 |0 |
-ROW |51613 |1442 |33077 |2 |6 |AC8C14|0 |2 |0 |
-ROW |51614 |1443 |33093 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51615 |1443 |33098 |0 |1 |2774A4|0 |2 |0 |
-ROW |51616 |1444 |33097 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51617 |1444 |33100 |0 |1 |2774A4|0 |2 |0 |
-ROW |51618 |1444 |33096 |0 |2 |F63100|0 |2 |0 |
-ROW |51619 |1444 |33094 |0 |3 |A54F10|0 |2 |0 |
-ROW |51620 |1445 |33116 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51621 |1446 |33045 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51622 |1446 |33044 |0 |1 |2774A4|0 |2 |0 |
-ROW |51623 |1446 |33046 |0 |2 |F63100|0 |2 |0 |
-ROW |51624 |1447 |33055 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51625 |1447 |33023 |0 |1 |2774A4|0 |2 |0 |
-ROW |51626 |1448 |33053 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51627 |1448 |33052 |0 |1 |2774A4|0 |2 |0 |
-ROW |51628 |1448 |33054 |0 |2 |F63100|0 |2 |0 |
-ROW |51629 |1449 |33051 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51630 |1449 |33059 |0 |1 |2774A4|0 |2 |0 |
-ROW |51631 |1449 |33027 |0 |2 |F63100|0 |2 |0 |
-ROW |51632 |1450 |33022 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51633 |1450 |33040 |0 |1 |2774A4|0 |2 |0 |
-ROW |51634 |1450 |33042 |0 |2 |F63100|0 |2 |0 |
-ROW |51635 |1450 |33043 |0 |3 |A54F10|0 |2 |0 |
-ROW |51636 |1451 |33038 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51637 |1451 |33025 |0 |1 |2774A4|0 |2 |0 |
-ROW |51638 |1451 |33026 |0 |2 |F63100|0 |2 |0 |
-ROW |51639 |1451 |33024 |0 |3 |A54F10|0 |2 |0 |
-ROW |51640 |1452 |33029 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51641 |1452 |33028 |0 |1 |2774A4|0 |2 |0 |
-ROW |51642 |1453 |33035 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51643 |1453 |33034 |0 |1 |2774A4|0 |2 |0 |
-ROW |51644 |1453 |33033 |0 |2 |F63100|0 |2 |0 |
-ROW |51645 |1453 |33036 |0 |3 |A54F10|0 |2 |0 |
-ROW |51646 |1453 |33030 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51647 |1453 |33031 |0 |5 |6C59DC|0 |2 |0 |
-ROW |51648 |1454 |33057 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51649 |1454 |33056 |2 |1 |2774A4|0 |2 |0 |
-ROW |51650 |1454 |33058 |2 |2 |F63100|0 |2 |0 |
-ROW |51651 |1455 |33190 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51652 |1455 |33193 |0 |1 |2774A4|0 |2 |0 |
-ROW |51653 |1455 |33189 |0 |2 |F63100|0 |2 |0 |
-ROW |51654 |1455 |33187 |0 |3 |A54F10|0 |2 |0 |
-ROW |51655 |1456 |33158 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51656 |1456 |33168 |0 |1 |2774A4|0 |2 |0 |
-ROW |51657 |1456 |33169 |0 |2 |F63100|0 |2 |0 |
-ROW |51658 |1456 |33167 |0 |3 |A54F10|0 |2 |0 |
-ROW |51659 |1456 |33171 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51660 |1457 |33165 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51661 |1457 |33166 |0 |1 |2774A4|0 |2 |0 |
-ROW |51662 |1457 |33164 |0 |2 |F63100|0 |2 |0 |
-ROW |51663 |1457 |33163 |2 |3 |A54F10|1 |2 |0 |
-ROW |51664 |1458 |33161 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51665 |1458 |33162 |0 |1 |2774A4|0 |2 |0 |
-ROW |51666 |1458 |33155 |0 |2 |F63100|0 |2 |0 |
-ROW |51667 |1459 |33146 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51668 |1459 |33145 |0 |1 |2774A4|0 |2 |0 |
-ROW |51669 |1460 |33152 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51670 |1460 |33151 |2 |1 |2774A4|0 |2 |0 |
-ROW |51671 |1460 |33148 |2 |2 |F63100|0 |2 |0 |
-ROW |51672 |1460 |33153 |2 |3 |A54F10|0 |2 |0 |
-ROW |51673 |1460 |33149 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |51674 |1460 |33144 |2 |5 |6C59DC|0 |2 |0 |
-ROW |51675 |1190 |31140 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51676 |1190 |31141 |0 |1 |2774A4|0 |2 |0 |
-ROW |51677 |1261 |31145 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51678 |1261 |31146 |0 |1 |2774A4|0 |2 |0 |
-ROW |51679 |1261 |31147 |0 |2 |F63100|0 |2 |0 |
-ROW |51680 |1191 |31138 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51681 |1192 |31157 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51682 |1192 |31158 |0 |1 |2774A4|0 |2 |0 |
-ROW |51683 |1193 |31092 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51684 |1193 |31108 |0 |1 |2774A4|0 |2 |0 |
-ROW |51685 |1193 |31110 |0 |2 |F63100|0 |2 |0 |
-ROW |51686 |1193 |31067 |0 |3 |A54F10|0 |2 |0 |
-ROW |51687 |1193 |31086 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51688 |1193 |31087 |0 |5 |6C59DC|0 |2 |0 |
-ROW |51689 |1194 |31120 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51690 |1194 |31105 |0 |1 |2774A4|0 |2 |0 |
-ROW |51691 |1194 |31071 |0 |2 |F63100|0 |2 |0 |
-ROW |51692 |1194 |31081 |0 |3 |A54F10|0 |2 |0 |
-ROW |51693 |1195 |31098 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51694 |1195 |31099 |0 |1 |2774A4|0 |2 |0 |
-ROW |51695 |1196 |31072 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51696 |1196 |31072 |0 |1 |2774A4|0 |2 |0 |
-ROW |51697 |1197 |31103 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51698 |1197 |31074 |0 |1 |2774A4|0 |2 |0 |
-ROW |51699 |1198 |31104 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51700 |1198 |31063 |0 |1 |2774A4|0 |2 |0 |
-ROW |51701 |1198 |31111 |0 |2 |F63100|0 |2 |0 |
-ROW |51702 |1198 |31112 |0 |3 |A54F10|0 |2 |0 |
-ROW |51703 |1198 |31084 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51704 |1199 |31115 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51705 |1199 |31116 |0 |1 |2774A4|0 |2 |0 |
-ROW |51706 |1199 |31062 |0 |2 |F63100|0 |2 |0 |
-ROW |51707 |1199 |31118 |0 |3 |A54F10|0 |2 |0 |
-ROW |51708 |1199 |31056 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51709 |1200 |31107 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51710 |1200 |31090 |0 |1 |2774A4|0 |2 |0 |
-ROW |51711 |1201 |31097 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51712 |1201 |31096 |0 |1 |2774A4|0 |2 |0 |
-ROW |51713 |1202 |31089 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51714 |1202 |31061 |0 |1 |2774A4|0 |2 |0 |
-ROW |51715 |1203 |31064 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51716 |1204 |31065 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51717 |1204 |31066 |0 |1 |2774A4|0 |2 |0 |
-ROW |51718 |1204 |31068 |0 |2 |F63100|0 |2 |0 |
-ROW |51719 |1204 |31070 |0 |3 |A54F10|0 |2 |0 |
-ROW |51720 |1204 |31101 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51721 |1204 |31106 |0 |5 |6C59DC|0 |2 |0 |
-ROW |51722 |1204 |31114 |0 |6 |AC8C14|0 |2 |0 |
-ROW |51723 |1205 |31069 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51724 |1206 |31076 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51725 |1206 |31078 |0 |1 |2774A4|0 |2 |0 |
-ROW |51726 |1206 |31109 |0 |2 |F63100|0 |2 |0 |
-ROW |51727 |1206 |31075 |0 |3 |A54F10|0 |2 |0 |
-ROW |51728 |1207 |31080 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51729 |1207 |31095 |0 |1 |2774A4|0 |2 |0 |
-ROW |51730 |1208 |31113 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51731 |1208 |31118 |0 |1 |2774A4|0 |2 |0 |
-ROW |51732 |1209 |31058 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51733 |1209 |31077 |0 |1 |2774A4|0 |2 |0 |
-ROW |51734 |1209 |31056 |0 |2 |F63100|0 |2 |0 |
-ROW |51735 |1209 |31117 |0 |3 |A54F10|0 |2 |0 |
-ROW |51736 |1109 |30453 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51737 |1109 |30455 |5 |1 |2774A4|0 |2 |0 |
-ROW |51738 |1110 |30471 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51739 |1110 |30470 |0 |1 |2774A4|0 |2 |0 |
-ROW |51740 |1110 |30466 |0 |2 |F63100|0 |2 |0 |
-ROW |51741 |1110 |30441 |0 |3 |A54F10|0 |2 |0 |
-ROW |51742 |1111 |30463 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51743 |1111 |30452 |0 |1 |2774A4|0 |2 |0 |
-ROW |51744 |1111 |30451 |0 |2 |F63100|0 |2 |0 |
-ROW |51745 |1111 |30437 |0 |3 |A54F10|0 |2 |0 |
-ROW |51746 |1112 |30456 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51747 |1112 |30457 |0 |1 |2774A4|0 |2 |0 |
-ROW |51748 |1112 |30458 |0 |2 |F63100|0 |2 |0 |
-ROW |51749 |1112 |30459 |0 |3 |A54F10|0 |2 |0 |
-ROW |51750 |1113 |30442 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51751 |1113 |30444 |0 |1 |2774A4|0 |2 |0 |
-ROW |51752 |1113 |30445 |0 |2 |F63100|0 |2 |0 |
-ROW |51753 |1114 |30446 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51754 |1114 |30447 |0 |1 |2774A4|0 |2 |0 |
-ROW |51755 |1114 |31168 |0 |2 |F63100|0 |2 |0 |
-ROW |51756 |1114 |30449 |0 |3 |A54F10|0 |2 |0 |
-ROW |51757 |1136 |30659 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51758 |1136 |30661 |5 |1 |2774A4|0 |2 |0 |
-ROW |51759 |1137 |30677 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51760 |1137 |30676 |0 |1 |2774A4|0 |2 |0 |
-ROW |51761 |1137 |30672 |0 |2 |F63100|0 |2 |0 |
-ROW |51762 |1137 |30647 |0 |3 |A54F10|0 |2 |0 |
-ROW |51763 |1138 |30669 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51764 |1138 |30658 |0 |1 |2774A4|0 |2 |0 |
-ROW |51765 |1138 |30657 |0 |2 |F63100|0 |2 |0 |
-ROW |51766 |1138 |30643 |0 |3 |A54F10|0 |2 |0 |
-ROW |51767 |1139 |30662 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51768 |1139 |30663 |0 |1 |2774A4|0 |2 |0 |
-ROW |51769 |1139 |30664 |0 |2 |F63100|0 |2 |0 |
-ROW |51770 |1139 |30665 |0 |3 |A54F10|0 |2 |0 |
-ROW |51771 |1140 |30648 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51772 |1140 |30650 |0 |1 |2774A4|0 |2 |0 |
-ROW |51773 |1140 |30651 |0 |2 |F63100|0 |2 |0 |
-ROW |51774 |1141 |30652 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51775 |1141 |30653 |0 |1 |2774A4|0 |2 |0 |
-ROW |51776 |1141 |31172 |0 |2 |F63100|0 |2 |0 |
-ROW |51777 |1141 |30655 |0 |3 |A54F10|0 |2 |0 |
-ROW |51778 |1115 |30506 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51779 |1115 |30507 |5 |1 |2774A4|0 |2 |0 |
-ROW |51780 |1116 |30504 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51781 |1116 |30505 |0 |1 |2774A4|0 |2 |0 |
-ROW |51782 |1116 |30518 |0 |2 |F63100|0 |2 |0 |
-ROW |51783 |1116 |30492 |0 |3 |A54F10|0 |2 |0 |
-ROW |51784 |1117 |30493 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51785 |1117 |30500 |0 |1 |2774A4|0 |2 |0 |
-ROW |51786 |1117 |30486 |0 |2 |F63100|0 |2 |0 |
-ROW |51787 |1117 |30488 |0 |3 |A54F10|0 |2 |0 |
-ROW |51788 |1118 |30508 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51789 |1118 |30509 |0 |1 |2774A4|0 |2 |0 |
-ROW |51790 |1118 |30503 |0 |2 |F63100|0 |2 |0 |
-ROW |51791 |1118 |30510 |0 |3 |A54F10|0 |2 |0 |
-ROW |51792 |1119 |30491 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51793 |1119 |30494 |0 |1 |2774A4|0 |2 |0 |
-ROW |51794 |1119 |30495 |0 |2 |F63100|0 |2 |0 |
-ROW |51795 |1120 |30496 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51796 |1120 |30497 |0 |1 |2774A4|0 |2 |0 |
-ROW |51797 |1120 |31176 |0 |2 |F63100|0 |2 |0 |
-ROW |51798 |1120 |30499 |0 |3 |A54F10|0 |2 |0 |
-ROW |51799 |1262 |31718 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51800 |1262 |31719 |0 |1 |2774A4|0 |2 |0 |
-ROW |51801 |1263 |31722 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51802 |1263 |31724 |0 |1 |2774A4|0 |2 |0 |
-ROW |51803 |1263 |32588 |0 |2 |F63100|0 |2 |0 |
-ROW |51804 |1264 |31630 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51805 |1264 |31683 |0 |1 |2774A4|0 |2 |0 |
-ROW |51806 |1265 |31668 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51807 |1265 |31702 |0 |1 |2774A4|0 |2 |0 |
-ROW |51808 |1265 |31666 |0 |2 |F63100|0 |2 |0 |
-ROW |51809 |1266 |31673 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51810 |1266 |31704 |0 |1 |2774A4|0 |2 |0 |
-ROW |51811 |1267 |31690 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51812 |1267 |31672 |0 |1 |2774A4|0 |2 |0 |
-ROW |51813 |1268 |31632 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51814 |1268 |31655 |0 |1 |2774A4|0 |2 |0 |
-ROW |51815 |1269 |31650 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51816 |1269 |31648 |0 |1 |2774A4|0 |2 |0 |
-ROW |51817 |1269 |31651 |0 |2 |F63100|0 |2 |0 |
-ROW |51818 |1269 |31646 |0 |3 |A54F10|0 |2 |0 |
-ROW |51819 |1269 |31653 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51820 |1270 |31660 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51821 |1270 |31671 |0 |1 |2774A4|0 |2 |0 |
-ROW |51822 |1270 |31662 |0 |2 |F63100|0 |2 |0 |
-ROW |51823 |1270 |31661 |0 |3 |A54F10|0 |2 |0 |
-ROW |51824 |1270 |31659 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51825 |1270 |31658 |0 |5 |6C59DC|0 |2 |0 |
-ROW |51826 |1237 |31442 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51827 |1237 |31443 |0 |1 |2774A4|0 |2 |0 |
-ROW |51828 |1238 |31786 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51829 |1238 |31451 |0 |1 |2774A4|0 |2 |0 |
-ROW |51830 |1238 |32590 |0 |2 |F63100|0 |2 |0 |
-ROW |51831 |1271 |31770 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51832 |1271 |31771 |0 |1 |2774A4|0 |2 |0 |
-ROW |51833 |1272 |31755 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51834 |1272 |31774 |0 |1 |2774A4|0 |2 |0 |
-ROW |51835 |1272 |31753 |0 |2 |F63100|0 |2 |0 |
-ROW |51836 |1273 |31730 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51837 |1273 |31759 |0 |1 |2774A4|0 |2 |0 |
-ROW |51838 |1274 |31745 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51839 |1274 |31758 |0 |1 |2774A4|0 |2 |0 |
-ROW |51840 |1275 |31731 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51841 |1275 |31732 |0 |1 |2774A4|0 |2 |0 |
-ROW |51842 |1276 |31739 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51843 |1276 |31736 |0 |1 |2774A4|0 |2 |0 |
-ROW |51844 |1276 |31740 |0 |2 |F63100|0 |2 |0 |
-ROW |51845 |1276 |31737 |0 |3 |A54F10|0 |2 |0 |
-ROW |51846 |1276 |31741 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51847 |1277 |31746 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51848 |1277 |31747 |0 |1 |2774A4|0 |2 |0 |
-ROW |51849 |1277 |31749 |0 |2 |F63100|0 |2 |0 |
-ROW |51850 |1277 |31748 |0 |3 |A54F10|0 |2 |0 |
-ROW |51851 |1277 |31757 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51852 |1277 |31744 |0 |5 |6C59DC|0 |2 |0 |
-ROW |51853 |814 |28730 |0 |0 |66BB6A|0 |2 |0 |
-ROW |51854 |814 |28728 |0 |1 |42A5F5|0 |2 |0 |
-ROW |51855 |815 |28712 |0 |0 |66BB6A|0 |2 |0 |
-ROW |51856 |816 |28733 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51857 |816 |28715 |0 |1 |F63100|0 |2 |0 |
-ROW |51858 |816 |28729 |0 |2 |2774A4|0 |2 |0 |
-ROW |51859 |816 |28732 |0 |3 |A54F10|0 |2 |0 |
-ROW |51860 |817 |28716 |0 |0 |EC407A|0 |2 |0 |
-ROW |51861 |818 |28726 |0 |0 |4CAF50|1 |2 |0 |
-ROW |51862 |818 |28723 |0 |1 |03A9F4|1 |2 |0 |
-ROW |51863 |818 |28720 |0 |2 |9C27B0|1 |2 |0 |
-ROW |51864 |818 |28725 |5 |3 |81C784|0 |2 |0 |
-ROW |51865 |818 |28722 |5 |4 |90CAF9|0 |2 |0 |
-ROW |51866 |818 |28719 |5 |5 |CE93D8|0 |2 |0 |
-ROW |51867 |819 |28727 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51868 |819 |28724 |0 |1 |F63100|0 |2 |0 |
-ROW |51869 |819 |28721 |0 |2 |2774A4|0 |2 |0 |
-ROW |51870 |820 |28740 |5 |0 |66BB6A|0 |2 |0 |
-ROW |51871 |820 |28739 |0 |1 |42A5F5|1 |2 |0 |
-ROW |51872 |821 |28738 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51873 |821 |28737 |0 |1 |F63100|0 |2 |0 |
-ROW |51874 |821 |28736 |0 |2 |2774A4|0 |2 |0 |
-ROW |51875 |821 |28735 |0 |3 |A54F10|0 |2 |0 |
-ROW |51876 |821 |28734 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51877 |822 |28693 |0 |0 |1A7C11|1 |2 |0 |
-ROW |51878 |822 |28698 |0 |1 |F63100|1 |2 |0 |
-ROW |51879 |822 |28694 |0 |2 |2774A4|1 |2 |0 |
-ROW |51880 |822 |28697 |0 |3 |A54F10|1 |2 |0 |
-ROW |51881 |822 |28702 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51882 |822 |28696 |0 |5 |6C59DC|0 |2 |0 |
-ROW |51883 |823 |28700 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51884 |823 |28699 |0 |1 |F63100|0 |2 |0 |
-ROW |51885 |823 |28701 |0 |2 |2774A4|1 |2 |0 |
-ROW |51886 |823 |28695 |0 |3 |A54F10|1 |2 |0 |
-ROW |51887 |824 |28708 |5 |0 |C8E6C9|1 |2 |0 |
-ROW |51888 |824 |28709 |0 |1 |6C59DC|0 |2 |0 |
-ROW |51889 |824 |28704 |0 |2 |1A7C11|1 |2 |0 |
-ROW |51890 |824 |28705 |0 |3 |F63100|1 |2 |0 |
-ROW |51891 |824 |28706 |0 |4 |2774A4|1 |2 |0 |
-ROW |51892 |824 |28707 |0 |5 |A54F10|1 |2 |0 |
-ROW |51893 |824 |28703 |0 |6 |AC8C14|1 |2 |0 |
-ROW |51894 |825 |28674 |5 |1 |A5D6A7|0 |2 |0 |
-ROW |51895 |825 |28673 |0 |2 |039BE5|1 |2 |0 |
-ROW |51896 |826 |28677 |0 |0 |42A5F5|0 |2 |0 |
-ROW |51897 |827 |28689 |0 |0 |1A7C11|1 |2 |0 |
-ROW |51898 |827 |28688 |0 |1 |F63100|1 |2 |0 |
-ROW |51899 |827 |28690 |0 |2 |2774A4|1 |2 |0 |
-ROW |51900 |827 |28691 |0 |3 |A54F10|1 |2 |0 |
-ROW |51901 |828 |28684 |0 |0 |66BB6A|0 |2 |0 |
-ROW |51902 |828 |28681 |0 |1 |03A9F4|1 |2 |0 |
-ROW |51903 |829 |28710 |0 |0 |29B6F6|0 |2 |0 |
-ROW |51904 |829 |28692 |0 |1 |AB47BC|1 |2 |0 |
-ROW |51905 |1210 |31269 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51906 |1210 |31252 |0 |1 |2774A4|0 |2 |0 |
-ROW |51907 |1210 |31251 |0 |2 |F63100|0 |2 |0 |
-ROW |51908 |1210 |31250 |0 |3 |A54F10|0 |2 |0 |
-ROW |51909 |1210 |31249 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51910 |1210 |31248 |0 |5 |6C59DC|0 |2 |0 |
-ROW |51911 |1210 |31246 |0 |6 |AC8C14|0 |2 |0 |
-ROW |51912 |1210 |31245 |0 |7 |611F27|0 |2 |0 |
-ROW |51913 |1210 |31247 |0 |8 |F230E0|0 |2 |0 |
-ROW |51914 |1210 |31247 |0 |9 |FFAD40|0 |2 |0 |
-ROW |51915 |1211 |31243 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51916 |1212 |31266 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51917 |1212 |31265 |0 |1 |2774A4|0 |2 |0 |
-ROW |51918 |1212 |31263 |0 |2 |F63100|0 |2 |0 |
-ROW |51919 |1212 |31262 |0 |3 |A54F10|0 |2 |0 |
-ROW |51920 |1212 |31260 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |51921 |1212 |31259 |0 |5 |6C59DC|0 |2 |0 |
-ROW |51922 |1212 |31258 |0 |6 |AC8C14|0 |2 |0 |
-ROW |51923 |1212 |31256 |0 |7 |611F27|0 |2 |0 |
-ROW |51924 |1212 |31257 |0 |8 |F230E0|0 |2 |0 |
-ROW |51925 |1212 |31244 |0 |9 |FFAD40|0 |2 |0 |
-ROW |51926 |1212 |31255 |0 |10 |40CDFF|0 |2 |0 |
-ROW |51927 |1212 |31254 |0 |11 |40FFA0|0 |2 |0 |
-ROW |51928 |1212 |31253 |0 |12 |AE4500|0 |2 |0 |
-ROW |51929 |1213 |31242 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51930 |1386 |32598 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51931 |1386 |32599 |0 |1 |2774A4|0 |2 |0 |
-ROW |51932 |1386 |32600 |0 |2 |F63100|0 |2 |0 |
-ROW |51933 |1087 |30346 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51934 |1087 |30345 |0 |1 |2774A4|0 |2 |0 |
-ROW |51935 |1088 |30350 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51936 |1088 |30349 |5 |1 |2774A4|0 |2 |0 |
-ROW |51937 |1089 |30396 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51938 |1090 |30398 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51939 |1091 |30322 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51940 |1091 |30277 |5 |1 |2774A4|0 |2 |0 |
-ROW |51941 |1092 |30284 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51942 |1093 |30313 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51943 |1093 |30314 |0 |1 |2774A4|0 |2 |0 |
-ROW |51944 |1093 |30315 |5 |2 |F63100|0 |2 |0 |
-ROW |51945 |1093 |30316 |0 |3 |A54F10|0 |2 |0 |
-ROW |51946 |1094 |30279 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51947 |1094 |30280 |2 |1 |2774A4|0 |2 |0 |
-ROW |51948 |1095 |30290 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51949 |1095 |30293 |0 |1 |2774A4|0 |2 |0 |
-ROW |51950 |1096 |30318 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51951 |1096 |30308 |2 |1 |2774A4|0 |2 |0 |
-ROW |51952 |1096 |30320 |2 |2 |F63100|0 |2 |0 |
-ROW |51953 |1097 |30317 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51954 |1098 |30289 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51955 |1098 |30291 |5 |1 |2774A4|0 |2 |0 |
-ROW |51956 |1099 |30334 |2 |0 |1A7C11|0 |2 |0 |
-ROW |51957 |1099 |30325 |2 |1 |2774A4|0 |2 |0 |
-ROW |51958 |1100 |30306 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51959 |1101 |30274 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51960 |1102 |30281 |0 |0 |1A7C11|0 |2 |0 |
-ROW |51961 |1060 |30159 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51962 |1061 |30165 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51963 |1063 |30177 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51964 |1064 |30183 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51965 |1065 |30161 |0 |0 |969696|0 |9 |2 |
-ROW |51966 |1065 |30162 |0 |1 |C80000|0 |9 |0 |
-ROW |51967 |1066 |30167 |0 |0 |969696|0 |9 |2 |
-ROW |51968 |1066 |30168 |0 |1 |C80000|0 |9 |0 |
-ROW |51969 |1068 |30179 |0 |0 |969696|0 |9 |2 |
-ROW |51970 |1068 |30180 |0 |1 |C80000|0 |9 |0 |
-ROW |51971 |1069 |30185 |0 |0 |969696|0 |9 |2 |
-ROW |51972 |1069 |30186 |0 |1 |C80000|0 |9 |0 |
-ROW |51973 |1070 |30142 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51974 |1071 |30143 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51975 |1073 |30145 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51976 |1074 |30146 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51977 |741 |27084 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51978 |741 |27085 |2 |1 |2774A4|0 |2 |0 |
-ROW |51979 |741 |27083 |0 |2 |F63100|1 |2 |0 |
-ROW |51980 |741 |27086 |0 |3 |A54F10|1 |2 |0 |
-ROW |51981 |741 |27082 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |51982 |741 |27079 |0 |5 |6C59DC|1 |2 |0 |
-ROW |51983 |742 |27622 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51984 |742 |27625 |2 |1 |2774A4|0 |2 |0 |
-ROW |51985 |742 |27624 |0 |2 |F63100|1 |2 |0 |
-ROW |51986 |742 |27621 |0 |3 |A54F10|1 |2 |0 |
-ROW |51987 |742 |27623 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |51988 |742 |27620 |0 |5 |6C59DC|1 |2 |0 |
-ROW |51989 |743 |27979 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51990 |743 |27982 |2 |1 |2774A4|0 |2 |0 |
-ROW |51991 |743 |27981 |0 |2 |F63100|1 |2 |0 |
-ROW |51992 |743 |27978 |0 |3 |A54F10|1 |2 |0 |
-ROW |51993 |743 |27980 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |51994 |743 |27977 |0 |5 |6C59DC|1 |2 |0 |
-ROW |51995 |740 |28008 |5 |0 |1A7C11|0 |2 |0 |
-ROW |51996 |740 |28011 |2 |1 |2774A4|0 |2 |0 |
-ROW |51997 |740 |28010 |0 |2 |F63100|1 |2 |0 |
-ROW |51998 |740 |28007 |0 |3 |A54F10|1 |2 |0 |
-ROW |51999 |740 |28009 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52000 |740 |28006 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52001 |745 |27104 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52002 |745 |27105 |2 |1 |2774A4|0 |2 |0 |
-ROW |52003 |745 |27103 |0 |2 |F63100|1 |2 |0 |
-ROW |52004 |745 |27106 |0 |3 |A54F10|1 |2 |0 |
-ROW |52005 |745 |27102 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52006 |745 |27099 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52007 |746 |27183 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52008 |746 |27186 |2 |1 |2774A4|0 |2 |0 |
-ROW |52009 |746 |27185 |0 |2 |F63100|1 |2 |0 |
-ROW |52010 |746 |27182 |0 |3 |A54F10|1 |2 |0 |
-ROW |52011 |746 |27184 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52012 |746 |27181 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52013 |747 |27218 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52014 |747 |27221 |2 |1 |2774A4|0 |2 |0 |
-ROW |52015 |747 |27220 |0 |2 |F63100|1 |2 |0 |
-ROW |52016 |747 |27217 |0 |3 |A54F10|1 |2 |0 |
-ROW |52017 |747 |27219 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52018 |747 |27216 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52019 |748 |27254 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52020 |748 |27257 |2 |1 |2774A4|0 |2 |0 |
-ROW |52021 |748 |27256 |0 |2 |F63100|1 |2 |0 |
-ROW |52022 |748 |27253 |0 |3 |A54F10|1 |2 |0 |
-ROW |52023 |748 |27255 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52024 |748 |27252 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52025 |749 |27275 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52026 |749 |27278 |2 |1 |2774A4|0 |2 |0 |
-ROW |52027 |749 |27277 |0 |2 |F63100|1 |2 |0 |
-ROW |52028 |749 |27274 |0 |3 |A54F10|1 |2 |0 |
-ROW |52029 |749 |27276 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52030 |749 |27273 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52031 |750 |27324 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52032 |750 |27327 |2 |1 |2774A4|0 |2 |0 |
-ROW |52033 |750 |27326 |0 |2 |F63100|1 |2 |0 |
-ROW |52034 |750 |27323 |0 |3 |A54F10|1 |2 |0 |
-ROW |52035 |750 |27325 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52036 |750 |27322 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52037 |752 |27453 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52038 |752 |27456 |2 |1 |2774A4|0 |2 |0 |
-ROW |52039 |752 |27455 |0 |2 |F63100|1 |2 |0 |
-ROW |52040 |752 |27452 |0 |3 |A54F10|1 |2 |0 |
-ROW |52041 |752 |27454 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52042 |752 |27451 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52043 |753 |27489 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52044 |753 |27492 |2 |1 |2774A4|0 |2 |0 |
-ROW |52045 |753 |27491 |0 |2 |F63100|1 |2 |0 |
-ROW |52046 |753 |27488 |0 |3 |A54F10|1 |2 |0 |
-ROW |52047 |753 |27490 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52048 |753 |27487 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52049 |754 |27523 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52050 |754 |27526 |2 |1 |2774A4|0 |2 |0 |
-ROW |52051 |754 |27525 |0 |2 |F63100|1 |2 |0 |
-ROW |52052 |754 |27522 |0 |3 |A54F10|1 |2 |0 |
-ROW |52053 |754 |27524 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52054 |754 |27521 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52055 |755 |27559 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52056 |755 |27562 |2 |1 |2774A4|0 |2 |0 |
-ROW |52057 |755 |27561 |0 |2 |F63100|1 |2 |0 |
-ROW |52058 |755 |27558 |0 |3 |A54F10|1 |2 |0 |
-ROW |52059 |755 |27560 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52060 |755 |27557 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52061 |756 |27645 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52062 |756 |27648 |2 |1 |2774A4|0 |2 |0 |
-ROW |52063 |756 |27647 |0 |2 |F63100|1 |2 |0 |
-ROW |52064 |756 |27644 |0 |3 |A54F10|1 |2 |0 |
-ROW |52065 |756 |27646 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52066 |756 |27643 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52067 |758 |27725 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52068 |758 |27728 |2 |1 |2774A4|0 |2 |0 |
-ROW |52069 |758 |27727 |0 |2 |F63100|1 |2 |0 |
-ROW |52070 |758 |27724 |0 |3 |A54F10|1 |2 |0 |
-ROW |52071 |758 |27726 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52072 |758 |27723 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52073 |759 |27759 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52074 |759 |27762 |2 |1 |2774A4|0 |2 |0 |
-ROW |52075 |759 |27761 |0 |2 |F63100|1 |2 |0 |
-ROW |52076 |759 |27758 |0 |3 |A54F10|1 |2 |0 |
-ROW |52077 |759 |27760 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52078 |759 |27757 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52079 |760 |27791 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52080 |760 |27794 |2 |1 |2774A4|0 |2 |0 |
-ROW |52081 |760 |27793 |0 |2 |F63100|1 |2 |0 |
-ROW |52082 |760 |27790 |0 |3 |A54F10|1 |2 |0 |
-ROW |52083 |760 |27792 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52084 |760 |27789 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52085 |762 |27875 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52086 |762 |27878 |2 |1 |2774A4|0 |2 |0 |
-ROW |52087 |762 |27877 |0 |2 |F63100|1 |2 |0 |
-ROW |52088 |762 |27874 |0 |3 |A54F10|1 |2 |0 |
-ROW |52089 |762 |27876 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52090 |762 |27873 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52091 |763 |27912 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52092 |763 |27915 |2 |1 |2774A4|0 |2 |0 |
-ROW |52093 |763 |27914 |0 |2 |F63100|1 |2 |0 |
-ROW |52094 |763 |27911 |0 |3 |A54F10|1 |2 |0 |
-ROW |52095 |763 |27913 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52096 |763 |27910 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52097 |764 |27947 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52098 |764 |27950 |2 |1 |2774A4|0 |2 |0 |
-ROW |52099 |764 |27949 |0 |2 |F63100|1 |2 |0 |
-ROW |52100 |764 |27946 |0 |3 |A54F10|1 |2 |0 |
-ROW |52101 |764 |27948 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52102 |764 |27945 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52103 |773 |28121 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52104 |773 |28124 |2 |1 |2774A4|0 |2 |0 |
-ROW |52105 |773 |28123 |0 |2 |F63100|1 |2 |0 |
-ROW |52106 |773 |28120 |0 |3 |A54F10|1 |2 |0 |
-ROW |52107 |773 |28122 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52108 |773 |28119 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52109 |785 |28226 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52110 |785 |28229 |2 |1 |2774A4|0 |2 |0 |
-ROW |52111 |785 |28228 |0 |2 |F63100|1 |2 |0 |
-ROW |52112 |785 |28225 |0 |3 |A54F10|1 |2 |0 |
-ROW |52113 |785 |28227 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52114 |785 |28224 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52115 |790 |28296 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52116 |790 |28299 |2 |1 |2774A4|0 |2 |0 |
-ROW |52117 |790 |28298 |0 |2 |F63100|1 |2 |0 |
-ROW |52118 |790 |28295 |0 |3 |A54F10|1 |2 |0 |
-ROW |52119 |790 |28297 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52120 |790 |28294 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52121 |865 |28971 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52122 |865 |28974 |2 |1 |2774A4|0 |2 |0 |
-ROW |52123 |865 |28973 |0 |2 |F63100|1 |2 |0 |
-ROW |52124 |865 |28970 |0 |3 |A54F10|1 |2 |0 |
-ROW |52125 |865 |28972 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52126 |865 |28969 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52127 |766 |27124 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52128 |766 |27125 |2 |1 |2774A4|0 |2 |0 |
-ROW |52129 |766 |27123 |0 |2 |F63100|1 |2 |0 |
-ROW |52130 |766 |27126 |0 |3 |A54F10|1 |2 |0 |
-ROW |52131 |766 |27122 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52132 |766 |27119 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52133 |886 |29080 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52134 |886 |29083 |2 |1 |2774A4|0 |2 |0 |
-ROW |52135 |886 |29082 |0 |2 |F63100|1 |2 |0 |
-ROW |52136 |886 |29079 |0 |3 |A54F10|1 |2 |0 |
-ROW |52137 |886 |29081 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52138 |886 |29078 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52139 |668 |27208 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52140 |1032 |30088 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52141 |1032 |30087 |5 |1 |2774A4|0 |2 |0 |
-ROW |52142 |1033 |30089 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52143 |671 |27240 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52144 |1034 |30093 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52145 |675 |27294 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52146 |676 |27299 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52147 |677 |27301 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52148 |1035 |30094 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52149 |1036 |30095 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52150 |1037 |30096 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52151 |1461 |33219 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52152 |1462 |33224 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52153 |1463 |33227 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52154 |1463 |33230 |2 |1 |2774A4|0 |2 |0 |
-ROW |52155 |1463 |33229 |0 |2 |F63100|1 |2 |0 |
-ROW |52156 |1463 |33226 |0 |3 |A54F10|1 |2 |0 |
-ROW |52157 |1463 |33228 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52158 |1463 |33225 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52159 |1464 |33260 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52160 |1465 |33265 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52161 |1466 |33268 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52162 |1466 |33271 |2 |1 |2774A4|0 |2 |0 |
-ROW |52163 |1466 |33270 |0 |2 |F63100|1 |2 |0 |
-ROW |52164 |1466 |33267 |0 |3 |A54F10|1 |2 |0 |
-ROW |52165 |1466 |33269 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52166 |1466 |33266 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52167 |1467 |33301 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52168 |1468 |33306 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52169 |1469 |33309 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52170 |1469 |33312 |2 |1 |2774A4|0 |2 |0 |
-ROW |52171 |1469 |33311 |0 |2 |F63100|1 |2 |0 |
-ROW |52172 |1469 |33308 |0 |3 |A54F10|1 |2 |0 |
-ROW |52173 |1469 |33310 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52174 |1469 |33307 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52175 |1470 |33342 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52176 |1471 |33347 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52177 |1472 |33350 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52178 |1472 |33353 |2 |1 |2774A4|0 |2 |0 |
-ROW |52179 |1472 |33352 |0 |2 |F63100|1 |2 |0 |
-ROW |52180 |1472 |33349 |0 |3 |A54F10|1 |2 |0 |
-ROW |52181 |1472 |33351 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52182 |1472 |33348 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52183 |1473 |33383 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52184 |1474 |33388 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52185 |1475 |33391 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52186 |1475 |33394 |2 |1 |2774A4|0 |2 |0 |
-ROW |52187 |1475 |33393 |0 |2 |F63100|1 |2 |0 |
-ROW |52188 |1475 |33390 |0 |3 |A54F10|1 |2 |0 |
-ROW |52189 |1475 |33392 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52190 |1475 |33389 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52191 |1038 |30101 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52192 |1039 |30102 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52193 |1040 |30103 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52194 |1041 |30104 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52195 |786 |28246 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52196 |787 |28247 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52197 |687 |27417 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52198 |688 |27427 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52199 |691 |27376 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52200 |692 |27380 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52201 |694 |27478 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52202 |1042 |30105 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52203 |1043 |30107 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52204 |698 |27511 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52205 |1044 |30108 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52206 |701 |27547 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52207 |1045 |27591 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52208 |1045 |30110 |5 |1 |2774A4|0 |2 |0 |
-ROW |52209 |1046 |30111 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52210 |704 |27586 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52211 |708 |27671 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52212 |1047 |30112 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52213 |1048 |30114 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52214 |1048 |30113 |5 |1 |2774A4|0 |2 |0 |
-ROW |52215 |1049 |30115 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52216 |775 |28143 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52217 |714 |27753 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52218 |1050 |30116 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52219 |856 |28894 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52220 |1051 |30118 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52221 |1476 |33419 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52222 |1476 |33422 |2 |1 |2774A4|0 |2 |0 |
-ROW |52223 |1476 |33421 |0 |2 |F63100|1 |2 |0 |
-ROW |52224 |1476 |33418 |0 |3 |A54F10|1 |2 |0 |
-ROW |52225 |1476 |33420 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52226 |1476 |33417 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52227 |1477 |33427 |0 |0 |969696|0 |9 |2 |
-ROW |52228 |1477 |33428 |0 |1 |C80000|0 |9 |0 |
-ROW |52229 |1478 |33431 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52230 |1479 |33407 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52231 |724 |27904 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52232 |1299 |31968 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52233 |1299 |31966 |0 |1 |2774A4|0 |2 |0 |
-ROW |52234 |1299 |31965 |0 |2 |F63100|0 |2 |0 |
-ROW |52235 |1299 |31967 |0 |3 |A54F10|0 |2 |0 |
-ROW |52236 |1052 |27907 |0 |0 |969696|0 |9 |2 |
-ROW |52237 |1052 |27908 |0 |1 |C80000|0 |9 |0 |
-ROW |52238 |1053 |30120 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52239 |1335 |32330 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52240 |1335 |32317 |5 |1 |2774A4|0 |2 |0 |
-ROW |52241 |1336 |32319 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52242 |1336 |32327 |5 |1 |2774A4|0 |2 |0 |
-ROW |52243 |1336 |32326 |5 |2 |F63100|0 |2 |0 |
-ROW |52244 |1337 |32324 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52245 |1337 |32318 |5 |1 |2774A4|0 |2 |0 |
-ROW |52246 |1338 |32311 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52247 |1338 |32310 |5 |1 |2774A4|0 |2 |0 |
-ROW |52248 |1338 |32328 |5 |2 |F63100|0 |2 |0 |
-ROW |52249 |1339 |32350 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52250 |1339 |32339 |5 |1 |2774A4|0 |2 |0 |
-ROW |52251 |1340 |32331 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52252 |1341 |32347 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52253 |1341 |32342 |5 |1 |2774A4|0 |2 |0 |
-ROW |52254 |1342 |32334 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52255 |1342 |32333 |5 |1 |2774A4|0 |2 |0 |
-ROW |52256 |1342 |32348 |5 |2 |F63100|0 |2 |0 |
-ROW |52257 |1343 |32373 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52258 |1343 |32360 |5 |1 |2774A4|0 |2 |0 |
-ROW |52259 |1344 |32362 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52260 |1344 |32370 |5 |1 |2774A4|0 |2 |0 |
-ROW |52261 |1344 |32369 |5 |2 |F63100|0 |2 |0 |
-ROW |52262 |1345 |32367 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52263 |1345 |32361 |5 |1 |2774A4|0 |2 |0 |
-ROW |52264 |1346 |32354 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52265 |1346 |32353 |5 |1 |2774A4|0 |2 |0 |
-ROW |52266 |1346 |32371 |5 |2 |F63100|0 |2 |0 |
-ROW |52267 |1347 |32382 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52268 |1348 |32375 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52269 |1349 |32380 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52270 |1350 |32401 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52271 |1351 |32398 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52272 |1351 |32397 |5 |1 |2774A4|0 |2 |0 |
-ROW |52273 |1351 |32396 |5 |2 |F63100|0 |2 |0 |
-ROW |52274 |1352 |32394 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52275 |1353 |32393 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52276 |1354 |32385 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52277 |1354 |32399 |5 |1 |2774A4|0 |2 |0 |
-ROW |52278 |1355 |32420 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52279 |1356 |32417 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52280 |1356 |32416 |5 |1 |2774A4|0 |2 |0 |
-ROW |52281 |1356 |32415 |5 |2 |F63100|0 |2 |0 |
-ROW |52282 |1357 |32413 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52283 |1358 |32412 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52284 |1359 |32404 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52285 |1359 |32418 |5 |1 |2774A4|0 |2 |0 |
-ROW |52286 |1360 |32436 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52287 |1361 |32439 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52288 |1362 |32440 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52289 |1363 |32442 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52290 |1364 |32443 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52291 |1365 |32428 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52292 |1365 |32429 |5 |1 |2774A4|0 |2 |0 |
-ROW |52293 |727 |27936 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52294 |1054 |27935 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52295 |1054 |30122 |5 |1 |2774A4|0 |2 |0 |
-ROW |52296 |1055 |30123 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52297 |730 |27975 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52298 |1056 |30126 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52299 |733 |28003 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52300 |1057 |30131 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52301 |736 |28031 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52302 |1058 |30136 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52303 |1214 |31276 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52304 |1214 |31277 |5 |1 |2774A4|0 |2 |0 |
-ROW |52305 |1215 |31279 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52306 |1215 |31280 |5 |1 |2774A4|0 |2 |0 |
-ROW |52307 |1216 |31282 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52308 |1216 |31283 |5 |1 |2774A4|0 |2 |0 |
-ROW |52309 |1217 |31286 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52310 |1217 |31289 |5 |1 |2774A4|0 |2 |0 |
-ROW |52311 |1218 |31292 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52312 |1218 |31295 |5 |1 |2774A4|0 |2 |0 |
-ROW |52313 |1219 |31298 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52314 |1219 |31301 |5 |1 |2774A4|0 |2 |0 |
-ROW |52315 |1220 |31285 |0 |0 |1A7C11|1 |2 |0 |
-ROW |52316 |1220 |31288 |5 |1 |2774A4|0 |2 |0 |
-ROW |52317 |1221 |31291 |0 |0 |1A7C11|1 |2 |0 |
-ROW |52318 |1221 |31294 |5 |1 |2774A4|0 |2 |0 |
-ROW |52319 |1222 |31297 |0 |0 |1A7C11|1 |2 |0 |
-ROW |52320 |1222 |31300 |5 |1 |2774A4|0 |2 |0 |
-ROW |52321 |887 |29211 |0 |0 |969696|0 |9 |2 |
-ROW |52322 |887 |29210 |0 |1 |C80000|0 |9 |0 |
-ROW |52323 |888 |29225 |0 |0 |969696|0 |9 |2 |
-ROW |52324 |888 |29224 |0 |1 |C80000|0 |9 |0 |
-ROW |52325 |889 |29239 |0 |0 |969696|0 |9 |2 |
-ROW |52326 |889 |29238 |0 |1 |C80000|0 |9 |0 |
-ROW |52327 |899 |29216 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52328 |899 |29217 |2 |1 |2774A4|0 |2 |0 |
-ROW |52329 |899 |29218 |0 |2 |F63100|1 |2 |0 |
-ROW |52330 |899 |29219 |0 |3 |A54F10|1 |2 |0 |
-ROW |52331 |899 |29220 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52332 |899 |29221 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52333 |900 |29230 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52334 |900 |29231 |2 |1 |2774A4|0 |2 |0 |
-ROW |52335 |900 |29232 |0 |2 |F63100|1 |2 |0 |
-ROW |52336 |900 |29233 |0 |3 |A54F10|1 |2 |0 |
-ROW |52337 |900 |29234 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52338 |900 |29235 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52339 |901 |29244 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52340 |901 |29245 |2 |1 |2774A4|0 |2 |0 |
-ROW |52341 |901 |29246 |0 |2 |F63100|1 |2 |0 |
-ROW |52342 |901 |29247 |0 |3 |A54F10|1 |2 |0 |
-ROW |52343 |901 |29248 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52344 |901 |29249 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52345 |911 |29089 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52346 |911 |29102 |0 |1 |2774A4|0 |2 |0 |
-ROW |52347 |912 |29126 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52348 |912 |29139 |0 |1 |2774A4|0 |2 |0 |
-ROW |52349 |913 |29163 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52350 |913 |29176 |0 |1 |2774A4|0 |2 |0 |
-ROW |52351 |908 |29098 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52352 |908 |29097 |0 |1 |2774A4|0 |2 |0 |
-ROW |52353 |908 |29095 |0 |2 |F63100|0 |2 |0 |
-ROW |52354 |908 |29088 |0 |3 |A54F10|0 |2 |0 |
-ROW |52355 |908 |29094 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52356 |908 |29093 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52357 |908 |29092 |0 |6 |AC8C14|0 |2 |0 |
-ROW |52358 |908 |29091 |0 |7 |611F27|0 |2 |0 |
-ROW |52359 |908 |29090 |0 |8 |F230E0|0 |2 |0 |
-ROW |52360 |909 |29135 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52361 |909 |29134 |0 |1 |2774A4|0 |2 |0 |
-ROW |52362 |909 |29132 |0 |2 |F63100|0 |2 |0 |
-ROW |52363 |909 |29125 |0 |3 |A54F10|0 |2 |0 |
-ROW |52364 |909 |29131 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52365 |909 |29130 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52366 |909 |29129 |0 |6 |AC8C14|0 |2 |0 |
-ROW |52367 |909 |29128 |0 |7 |611F27|0 |2 |0 |
-ROW |52368 |909 |29127 |0 |8 |F230E0|0 |2 |0 |
-ROW |52369 |910 |29172 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52370 |910 |29171 |0 |1 |2774A4|0 |2 |0 |
-ROW |52371 |910 |29169 |0 |2 |F63100|0 |2 |0 |
-ROW |52372 |910 |29162 |0 |3 |A54F10|0 |2 |0 |
-ROW |52373 |910 |29168 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52374 |910 |29167 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52375 |910 |29166 |0 |6 |AC8C14|0 |2 |0 |
-ROW |52376 |910 |29165 |0 |7 |611F27|0 |2 |0 |
-ROW |52377 |910 |29164 |0 |8 |F230E0|0 |2 |0 |
-ROW |52378 |905 |29198 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52379 |906 |29199 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52380 |907 |29200 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52381 |917 |29104 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52382 |917 |29105 |5 |1 |2774A4|0 |2 |0 |
-ROW |52383 |918 |29141 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52384 |918 |29142 |5 |1 |2774A4|0 |2 |0 |
-ROW |52385 |919 |29178 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52386 |919 |29179 |5 |1 |2774A4|0 |2 |0 |
-ROW |52387 |914 |31270 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52388 |915 |31271 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52389 |916 |31272 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52390 |923 |29118 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52391 |923 |29119 |0 |1 |2774A4|0 |2 |0 |
-ROW |52392 |923 |29117 |0 |2 |F63100|0 |2 |0 |
-ROW |52393 |924 |29155 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52394 |924 |29156 |0 |1 |2774A4|0 |2 |0 |
-ROW |52395 |924 |29154 |0 |2 |F63100|0 |2 |0 |
-ROW |52396 |925 |29192 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52397 |925 |29193 |0 |1 |2774A4|0 |2 |0 |
-ROW |52398 |925 |29191 |0 |2 |F63100|0 |2 |0 |
-ROW |52399 |920 |29107 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52400 |920 |29106 |0 |1 |2774A4|0 |2 |0 |
-ROW |52401 |921 |29144 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52402 |921 |29143 |0 |1 |2774A4|0 |2 |0 |
-ROW |52403 |922 |29181 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52404 |922 |29180 |0 |1 |2774A4|0 |2 |0 |
-ROW |52405 |902 |29096 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52406 |902 |29101 |0 |1 |2774A4|0 |2 |0 |
-ROW |52407 |902 |29100 |0 |2 |F63100|0 |2 |0 |
-ROW |52408 |902 |29087 |0 |3 |A54F10|1 |2 |0 |
-ROW |52409 |903 |29133 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52410 |903 |29138 |0 |1 |2774A4|0 |2 |0 |
-ROW |52411 |903 |29137 |0 |2 |F63100|0 |2 |0 |
-ROW |52412 |903 |29124 |0 |3 |A54F10|1 |2 |0 |
-ROW |52413 |904 |29170 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52414 |904 |29175 |0 |1 |2774A4|0 |2 |0 |
-ROW |52415 |904 |29174 |0 |2 |F63100|0 |2 |0 |
-ROW |52416 |904 |29161 |0 |3 |A54F10|1 |2 |0 |
-ROW |52417 |1223 |31307 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52418 |1223 |31308 |5 |1 |2774A4|0 |2 |0 |
-ROW |52419 |1224 |31310 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52420 |1224 |31311 |5 |1 |2774A4|0 |2 |0 |
-ROW |52421 |1225 |31314 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52422 |1225 |31317 |5 |1 |2774A4|0 |2 |0 |
-ROW |52423 |1226 |31320 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52424 |1226 |31323 |5 |1 |2774A4|0 |2 |0 |
-ROW |52425 |1227 |31313 |0 |0 |1A7C11|1 |2 |0 |
-ROW |52426 |1227 |31316 |5 |1 |2774A4|0 |2 |0 |
-ROW |52427 |1228 |31319 |0 |0 |1A7C11|1 |2 |0 |
-ROW |52428 |1228 |31322 |5 |1 |2774A4|0 |2 |0 |
-ROW |52429 |926 |29356 |0 |0 |969696|0 |9 |2 |
-ROW |52430 |926 |29355 |0 |1 |C80000|0 |9 |0 |
-ROW |52431 |927 |29370 |0 |0 |969696|0 |9 |2 |
-ROW |52432 |927 |29369 |0 |1 |C80000|0 |9 |0 |
-ROW |52433 |934 |29361 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52434 |934 |29362 |2 |1 |2774A4|0 |2 |0 |
-ROW |52435 |934 |29363 |0 |2 |F63100|1 |2 |0 |
-ROW |52436 |934 |29364 |0 |3 |A54F10|1 |2 |0 |
-ROW |52437 |934 |29365 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52438 |934 |29366 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52439 |935 |29375 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52440 |935 |29376 |2 |1 |2774A4|0 |2 |0 |
-ROW |52441 |935 |29377 |0 |2 |F63100|1 |2 |0 |
-ROW |52442 |935 |29378 |0 |3 |A54F10|1 |2 |0 |
-ROW |52443 |935 |29379 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52444 |935 |29380 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52445 |942 |29275 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52446 |942 |29288 |0 |1 |2774A4|0 |2 |0 |
-ROW |52447 |943 |29312 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52448 |943 |29325 |0 |1 |2774A4|0 |2 |0 |
-ROW |52449 |940 |29284 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52450 |940 |29283 |0 |1 |2774A4|0 |2 |0 |
-ROW |52451 |940 |29281 |0 |2 |F63100|0 |2 |0 |
-ROW |52452 |940 |29274 |0 |3 |A54F10|0 |2 |0 |
-ROW |52453 |940 |29280 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52454 |940 |29279 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52455 |940 |29278 |0 |6 |AC8C14|0 |2 |0 |
-ROW |52456 |940 |29277 |0 |7 |611F27|0 |2 |0 |
-ROW |52457 |940 |29276 |0 |8 |F230E0|0 |2 |0 |
-ROW |52458 |941 |29321 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52459 |941 |29320 |0 |1 |2774A4|0 |2 |0 |
-ROW |52460 |941 |29318 |0 |2 |F63100|0 |2 |0 |
-ROW |52461 |941 |29311 |0 |3 |A54F10|0 |2 |0 |
-ROW |52462 |941 |29317 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52463 |941 |29316 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52464 |941 |29315 |0 |6 |AC8C14|0 |2 |0 |
-ROW |52465 |941 |29314 |0 |7 |611F27|0 |2 |0 |
-ROW |52466 |941 |29313 |0 |8 |F230E0|0 |2 |0 |
-ROW |52467 |938 |29347 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52468 |939 |29348 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52469 |946 |29290 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52470 |946 |29291 |5 |1 |2774A4|0 |2 |0 |
-ROW |52471 |947 |29327 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52472 |947 |29328 |5 |1 |2774A4|0 |2 |0 |
-ROW |52473 |944 |31303 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52474 |945 |31304 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52475 |950 |29304 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52476 |950 |29305 |0 |1 |2774A4|0 |2 |0 |
-ROW |52477 |950 |29303 |0 |2 |F63100|0 |2 |0 |
-ROW |52478 |951 |29341 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52479 |951 |29342 |0 |1 |2774A4|0 |2 |0 |
-ROW |52480 |951 |29340 |0 |2 |F63100|0 |2 |0 |
-ROW |52481 |948 |29293 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52482 |948 |29292 |0 |1 |2774A4|0 |2 |0 |
-ROW |52483 |949 |29330 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52484 |949 |29329 |0 |1 |2774A4|0 |2 |0 |
-ROW |52485 |936 |29282 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52486 |936 |29287 |0 |1 |2774A4|0 |2 |0 |
-ROW |52487 |936 |29286 |0 |2 |F63100|0 |2 |0 |
-ROW |52488 |936 |29273 |0 |3 |A54F10|1 |2 |0 |
-ROW |52489 |937 |29319 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52490 |937 |29324 |0 |1 |2774A4|0 |2 |0 |
-ROW |52491 |937 |29323 |0 |2 |F63100|0 |2 |0 |
-ROW |52492 |937 |29310 |0 |3 |A54F10|1 |2 |0 |
-ROW |52493 |952 |29436 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52494 |952 |29437 |2 |1 |2774A4|0 |2 |0 |
-ROW |52495 |952 |29438 |0 |2 |F63100|1 |2 |0 |
-ROW |52496 |952 |29439 |0 |3 |A54F10|1 |2 |0 |
-ROW |52497 |952 |29441 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52498 |952 |29440 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52499 |955 |29434 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52500 |955 |29435 |5 |1 |2774A4|0 |2 |0 |
-ROW |52501 |954 |29448 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52502 |954 |29449 |5 |1 |2774A4|0 |2 |0 |
-ROW |52503 |956 |29452 |0 |0 |1A7C11|1 |2 |0 |
-ROW |52504 |956 |29453 |5 |1 |2774A4|0 |2 |0 |
-ROW |52505 |953 |29446 |0 |0 |969696|0 |9 |2 |
-ROW |52506 |953 |29432 |0 |1 |C80000|0 |9 |0 |
-ROW |52507 |960 |29405 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52508 |960 |29406 |0 |1 |2774A4|0 |2 |0 |
-ROW |52509 |959 |29426 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52510 |959 |29413 |0 |1 |2774A4|0 |2 |0 |
-ROW |52511 |959 |29411 |0 |2 |F63100|0 |2 |0 |
-ROW |52512 |959 |29410 |0 |3 |A54F10|0 |2 |0 |
-ROW |52513 |959 |29399 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52514 |959 |29409 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52515 |959 |29412 |0 |6 |AC8C14|0 |2 |0 |
-ROW |52516 |959 |29408 |0 |7 |611F27|0 |2 |0 |
-ROW |52517 |959 |29407 |0 |8 |F230E0|0 |2 |0 |
-ROW |52518 |958 |29427 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52519 |962 |29403 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52520 |962 |29402 |5 |1 |2774A4|0 |2 |0 |
-ROW |52521 |961 |29396 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52522 |963 |29400 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52523 |963 |29401 |0 |1 |2774A4|0 |2 |0 |
-ROW |52524 |957 |29420 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52525 |957 |29419 |0 |1 |2774A4|0 |2 |0 |
-ROW |52526 |957 |29418 |0 |2 |F63100|0 |2 |0 |
-ROW |52527 |957 |29417 |0 |3 |A54F10|1 |2 |0 |
-ROW |52528 |866 |29014 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52529 |866 |29015 |5 |1 |2774A4|0 |2 |0 |
-ROW |52530 |867 |29031 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52531 |867 |29032 |5 |1 |2774A4|0 |2 |0 |
-ROW |52532 |868 |29018 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52533 |868 |29019 |0 |1 |2774A4|0 |2 |0 |
-ROW |52534 |868 |29022 |0 |2 |F63100|0 |2 |0 |
-ROW |52535 |868 |29023 |0 |3 |A54F10|0 |2 |0 |
-ROW |52536 |868 |29020 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52537 |868 |29024 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52538 |868 |29021 |0 |6 |AC8C14|0 |2 |0 |
-ROW |52539 |868 |29025 |0 |7 |611F27|0 |2 |0 |
-ROW |52540 |868 |29026 |0 |8 |F230E0|0 |2 |0 |
-ROW |52541 |869 |29035 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52542 |869 |29036 |0 |1 |2774A4|0 |2 |0 |
-ROW |52543 |869 |29039 |0 |2 |F63100|0 |2 |0 |
-ROW |52544 |869 |29040 |0 |3 |A54F10|0 |2 |0 |
-ROW |52545 |869 |29037 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52546 |869 |29041 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52547 |869 |29038 |0 |6 |AC8C14|0 |2 |0 |
-ROW |52548 |869 |29042 |0 |7 |611F27|0 |2 |0 |
-ROW |52549 |869 |29043 |0 |8 |F230E0|0 |2 |0 |
-ROW |52550 |870 |29048 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52551 |871 |29049 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52552 |872 |29028 |0 |0 |969696|0 |9 |2 |
-ROW |52553 |872 |29027 |0 |1 |C80000|0 |9 |0 |
-ROW |52554 |873 |29045 |0 |0 |969696|0 |9 |2 |
-ROW |52555 |873 |29044 |0 |1 |C80000|0 |9 |0 |
-ROW |52556 |882 |28992 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52557 |882 |28991 |0 |1 |2774A4|0 |2 |0 |
-ROW |52558 |883 |29007 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52559 |883 |29006 |0 |1 |2774A4|0 |2 |0 |
-ROW |52560 |876 |28982 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52561 |876 |28983 |5 |1 |2774A4|0 |2 |0 |
-ROW |52562 |877 |28997 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52563 |877 |28998 |5 |1 |2774A4|0 |2 |0 |
-ROW |52564 |874 |28978 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52565 |875 |28993 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52566 |878 |28985 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52567 |878 |28984 |0 |1 |2774A4|0 |2 |0 |
-ROW |52568 |879 |29000 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52569 |879 |28999 |0 |1 |2774A4|0 |2 |0 |
-ROW |52570 |880 |28987 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52571 |880 |28988 |0 |1 |2774A4|0 |2 |0 |
-ROW |52572 |880 |28989 |0 |2 |F63100|0 |2 |0 |
-ROW |52573 |880 |28990 |0 |3 |A54F10|1 |2 |0 |
-ROW |52574 |881 |29002 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52575 |881 |29003 |0 |1 |2774A4|0 |2 |0 |
-ROW |52576 |881 |29004 |0 |2 |F63100|0 |2 |0 |
-ROW |52577 |881 |29005 |0 |3 |A54F10|1 |2 |0 |
-ROW |52578 |964 |29513 |0 |0 |969696|0 |9 |2 |
-ROW |52579 |964 |29512 |0 |1 |C80000|0 |9 |0 |
-ROW |52580 |965 |29522 |0 |0 |969696|0 |9 |2 |
-ROW |52581 |965 |29521 |0 |1 |C80000|0 |9 |0 |
-ROW |52582 |1246 |31461 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52583 |1246 |31464 |2 |1 |2774A4|0 |2 |0 |
-ROW |52584 |1246 |31463 |0 |2 |F63100|1 |2 |0 |
-ROW |52585 |1246 |31460 |0 |3 |A54F10|1 |2 |0 |
-ROW |52586 |1246 |31462 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52587 |1246 |31459 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52588 |1247 |31467 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52589 |1247 |31470 |2 |1 |2774A4|0 |2 |0 |
-ROW |52590 |1247 |31469 |0 |2 |F63100|1 |2 |0 |
-ROW |52591 |1247 |31466 |0 |3 |A54F10|1 |2 |0 |
-ROW |52592 |1247 |31468 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52593 |1247 |31465 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52594 |1366 |32445 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52595 |1366 |32448 |0 |1 |2774A4|0 |2 |0 |
-ROW |52596 |1367 |32449 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52597 |1367 |32452 |0 |1 |2774A4|0 |2 |0 |
-ROW |52598 |1368 |32446 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52599 |1368 |32447 |5 |1 |2774A4|0 |2 |0 |
-ROW |52600 |1369 |32450 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52601 |1369 |32451 |5 |1 |2774A4|0 |2 |0 |
-ROW |52602 |1229 |31337 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52603 |1229 |31338 |5 |1 |2774A4|0 |2 |0 |
-ROW |52604 |1230 |31341 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52605 |1230 |31342 |5 |1 |2774A4|0 |2 |0 |
-ROW |52606 |1231 |31336 |0 |0 |1A7C11|1 |2 |0 |
-ROW |52607 |1231 |31335 |5 |1 |2774A4|0 |2 |0 |
-ROW |52608 |1232 |31340 |0 |0 |1A7C11|1 |2 |0 |
-ROW |52609 |1232 |31339 |5 |1 |2774A4|0 |2 |0 |
-ROW |52610 |974 |29456 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52611 |974 |29455 |0 |1 |2774A4|0 |2 |0 |
-ROW |52612 |975 |29482 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52613 |975 |29481 |0 |1 |2774A4|0 |2 |0 |
-ROW |52614 |976 |29458 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52615 |976 |29457 |0 |1 |2774A4|0 |2 |0 |
-ROW |52616 |977 |29484 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52617 |977 |29483 |0 |1 |2774A4|0 |2 |0 |
-ROW |52618 |972 |29454 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52619 |973 |29480 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52620 |978 |29462 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52621 |979 |29488 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52622 |980 |31327 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52623 |980 |29466 |0 |1 |2774A4|0 |2 |0 |
-ROW |52624 |981 |31330 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52625 |981 |29492 |0 |1 |2774A4|0 |2 |0 |
-ROW |52626 |982 |29620 |0 |0 |969696|0 |9 |2 |
-ROW |52627 |982 |29619 |0 |1 |C80000|0 |9 |0 |
-ROW |52628 |983 |29629 |0 |0 |969696|0 |9 |2 |
-ROW |52629 |983 |29628 |0 |1 |C80000|0 |9 |0 |
-ROW |52630 |1248 |31483 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52631 |1248 |31486 |2 |1 |2774A4|0 |2 |0 |
-ROW |52632 |1248 |31485 |0 |2 |F63100|1 |2 |0 |
-ROW |52633 |1248 |31482 |0 |3 |A54F10|1 |2 |0 |
-ROW |52634 |1248 |31484 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52635 |1248 |31481 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52636 |1249 |31489 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52637 |1249 |31492 |2 |1 |2774A4|0 |2 |0 |
-ROW |52638 |1249 |31491 |0 |2 |F63100|1 |2 |0 |
-ROW |52639 |1249 |31488 |0 |3 |A54F10|1 |2 |0 |
-ROW |52640 |1249 |31490 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52641 |1249 |31487 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52642 |1370 |32453 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52643 |1370 |32456 |0 |1 |2774A4|0 |2 |0 |
-ROW |52644 |1371 |32457 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52645 |1371 |32460 |0 |1 |2774A4|0 |2 |0 |
-ROW |52646 |1372 |32454 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52647 |1372 |32455 |5 |1 |2774A4|0 |2 |0 |
-ROW |52648 |1373 |32458 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52649 |1373 |32459 |5 |1 |2774A4|0 |2 |0 |
-ROW |52650 |1233 |31355 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52651 |1233 |31356 |5 |1 |2774A4|0 |2 |0 |
-ROW |52652 |1234 |31359 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52653 |1234 |31360 |5 |1 |2774A4|0 |2 |0 |
-ROW |52654 |1235 |31354 |0 |0 |1A7C11|1 |2 |0 |
-ROW |52655 |1235 |31353 |5 |1 |2774A4|0 |2 |0 |
-ROW |52656 |1236 |31358 |0 |0 |1A7C11|1 |2 |0 |
-ROW |52657 |1236 |31357 |5 |1 |2774A4|0 |2 |0 |
-ROW |52658 |992 |29563 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52659 |992 |29562 |0 |1 |2774A4|0 |2 |0 |
-ROW |52660 |993 |29589 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52661 |993 |29588 |0 |1 |2774A4|0 |2 |0 |
-ROW |52662 |994 |29565 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52663 |994 |29564 |0 |1 |2774A4|0 |2 |0 |
-ROW |52664 |995 |29591 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52665 |995 |29590 |0 |1 |2774A4|0 |2 |0 |
-ROW |52666 |990 |29561 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52667 |991 |29587 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52668 |996 |29569 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52669 |997 |29595 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52670 |998 |31345 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52671 |998 |29573 |0 |1 |2774A4|0 |2 |0 |
-ROW |52672 |999 |31348 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52673 |999 |29599 |0 |1 |2774A4|0 |2 |0 |
-ROW |52674 |1489 |33568 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52675 |1490 |33581 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52676 |1490 |33569 |0 |1 |2774A4|0 |2 |0 |
-ROW |52677 |1491 |33583 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52678 |1491 |33579 |0 |1 |2774A4|0 |2 |0 |
-ROW |52679 |1492 |33619 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52680 |1493 |33632 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52681 |1493 |33620 |0 |1 |2774A4|0 |2 |0 |
-ROW |52682 |1494 |33634 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52683 |1494 |33630 |0 |1 |2774A4|0 |2 |0 |
-ROW |52684 |1495 |33670 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52685 |1496 |33683 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52686 |1496 |33671 |0 |1 |2774A4|0 |2 |0 |
-ROW |52687 |1497 |33685 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52688 |1497 |33681 |0 |1 |2774A4|0 |2 |0 |
-ROW |52689 |1498 |33721 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52690 |1499 |33734 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52691 |1499 |33722 |0 |1 |2774A4|0 |2 |0 |
-ROW |52692 |1500 |33736 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52693 |1500 |33732 |0 |1 |2774A4|0 |2 |0 |
-ROW |52694 |1501 |33772 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52695 |1502 |33785 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52696 |1502 |33773 |0 |1 |2774A4|0 |2 |0 |
-ROW |52697 |1503 |33787 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52698 |1503 |33783 |0 |1 |2774A4|0 |2 |0 |
-ROW |52699 |1504 |33823 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52700 |1505 |33836 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52701 |1505 |33824 |0 |1 |2774A4|0 |2 |0 |
-ROW |52702 |1506 |33838 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52703 |1506 |33834 |0 |1 |2774A4|0 |2 |0 |
-ROW |52704 |1507 |33874 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52705 |1508 |33887 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52706 |1508 |33875 |0 |1 |2774A4|0 |2 |0 |
-ROW |52707 |1509 |33889 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52708 |1509 |33885 |0 |1 |2774A4|0 |2 |0 |
-ROW |52709 |1510 |33925 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52710 |1481 |33445 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52711 |1481 |33433 |0 |1 |2774A4|0 |2 |0 |
-ROW |52712 |1482 |33447 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52713 |1482 |33443 |0 |1 |2774A4|0 |2 |0 |
-ROW |52714 |1511 |33930 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52715 |1512 |33943 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52716 |1512 |33931 |0 |1 |2774A4|0 |2 |0 |
-ROW |52717 |1513 |33945 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52718 |1513 |33941 |0 |1 |2774A4|0 |2 |0 |
-ROW |52719 |1514 |33981 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52720 |1515 |33994 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52721 |1515 |33982 |0 |1 |2774A4|0 |2 |0 |
-ROW |52722 |1516 |33996 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52723 |1516 |33992 |0 |1 |2774A4|0 |2 |0 |
-ROW |52724 |1517 |34032 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52725 |1518 |34045 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52726 |1518 |34033 |0 |1 |2774A4|0 |2 |0 |
-ROW |52727 |1519 |34047 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52728 |1519 |34043 |0 |1 |2774A4|0 |2 |0 |
-ROW |52729 |1403 |32790 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52730 |1404 |32809 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52731 |1404 |32807 |0 |1 |2774A4|0 |2 |0 |
-ROW |52732 |1404 |32811 |0 |2 |F63100|0 |2 |0 |
-ROW |52733 |1405 |32804 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52734 |1405 |32805 |0 |1 |2774A4|0 |2 |0 |
-ROW |52735 |1405 |32806 |0 |2 |F63100|0 |2 |0 |
-ROW |52736 |1406 |32810 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52737 |1406 |32808 |0 |1 |2774A4|0 |2 |0 |
-ROW |52738 |1406 |32812 |0 |2 |F63100|0 |2 |0 |
-ROW |52739 |1407 |32815 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52740 |1408 |32819 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52741 |1408 |32817 |0 |1 |2774A4|0 |2 |0 |
-ROW |52742 |1408 |32821 |0 |2 |F63100|0 |2 |0 |
-ROW |52743 |1409 |32820 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52744 |1409 |32818 |0 |1 |2774A4|0 |2 |0 |
-ROW |52745 |1409 |32822 |0 |2 |F63100|0 |2 |0 |
-ROW |52746 |1410 |32828 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52747 |1410 |32827 |0 |1 |2774A4|0 |2 |0 |
-ROW |52748 |1410 |32823 |0 |2 |F63100|0 |2 |0 |
-ROW |52749 |1411 |32777 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52750 |1411 |32778 |0 |1 |2774A4|0 |2 |0 |
-ROW |52751 |1483 |33525 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52752 |1483 |33524 |0 |1 |2774A4|0 |2 |0 |
-ROW |52753 |1483 |33523 |0 |2 |F63100|0 |2 |0 |
-ROW |52754 |1483 |33522 |0 |3 |A54F10|0 |2 |0 |
-ROW |52755 |1484 |33564 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52756 |1484 |33554 |0 |1 |2774A4|0 |2 |0 |
-ROW |52757 |1485 |33500 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52758 |1485 |33507 |0 |1 |2774A4|0 |2 |0 |
-ROW |52759 |1485 |33509 |0 |2 |F63100|0 |2 |0 |
-ROW |52760 |1485 |33508 |0 |3 |A54F10|0 |2 |0 |
-ROW |52761 |1486 |33480 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52762 |1486 |33491 |0 |1 |2774A4|0 |2 |0 |
-ROW |52763 |1486 |33488 |0 |2 |F63100|0 |2 |0 |
-ROW |52764 |1486 |33489 |0 |3 |A54F10|0 |2 |0 |
-ROW |52765 |1487 |33506 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52766 |1487 |33505 |0 |1 |2774A4|0 |2 |0 |
-ROW |52767 |1487 |33512 |0 |2 |F63100|0 |2 |0 |
-ROW |52768 |1487 |33504 |0 |3 |A54F10|0 |2 |0 |
-ROW |52769 |1387 |32632 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52770 |1388 |32635 |1 |0 |1A7C11|0 |2 |0 |
-ROW |52771 |1388 |32635 |1 |1 |2774A4|0 |2 |0 |
-ROW |52772 |1389 |32643 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52773 |1389 |32646 |2 |1 |2774A4|0 |2 |0 |
-ROW |52774 |1389 |32645 |0 |2 |F63100|1 |2 |0 |
-ROW |52775 |1389 |32642 |0 |3 |A54F10|1 |2 |0 |
-ROW |52776 |1389 |32644 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52777 |1389 |32641 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52778 |1142 |30689 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52779 |1300 |31981 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52780 |1300 |31979 |0 |1 |2774A4|0 |2 |0 |
-ROW |52781 |1300 |31987 |0 |2 |F63100|1 |2 |0 |
-ROW |52782 |1301 |32462 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52783 |1301 |31986 |0 |1 |2774A4|0 |2 |0 |
-ROW |52784 |1301 |31984 |0 |2 |F63100|0 |2 |0 |
-ROW |52785 |1302 |32461 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52786 |1302 |31982 |0 |1 |2774A4|0 |2 |0 |
-ROW |52787 |1303 |31980 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52788 |1303 |31989 |0 |1 |2774A4|0 |2 |0 |
-ROW |52789 |1303 |31977 |0 |2 |F63100|0 |2 |0 |
-ROW |52790 |1303 |31978 |0 |3 |A54F10|0 |2 |0 |
+ROW |52791 |1374 |32471 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52792 |1375 |32469 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52793 |1375 |32468 |5 |1 |2774A4|0 |2 |0 |
+ROW |52794 |1376 |32472 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52795 |1376 |32467 |5 |1 |2774A4|0 |2 |0 |
+ROW |52796 |1377 |32483 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52797 |1377 |32482 |5 |1 |2774A4|0 |2 |0 |
+ROW |52798 |1378 |32484 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52799 |1378 |32481 |5 |1 |2774A4|0 |2 |0 |
+ROW |52800 |1379 |32476 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52801 |1379 |32478 |5 |1 |2774A4|0 |2 |0 |
+ROW |52802 |1379 |32480 |5 |2 |F63100|0 |2 |0 |
+ROW |52803 |1172 |30918 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52804 |1172 |30919 |0 |1 |2774A4|0 |2 |0 |
+ROW |52805 |1172 |30920 |0 |2 |F63100|0 |2 |0 |
+ROW |52806 |1172 |30921 |2 |3 |A54F10|0 |2 |0 |
+ROW |52807 |1173 |30922 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52808 |835 |28744 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52809 |835 |28745 |0 |1 |2774A4|0 |2 |0 |
+ROW |52810 |1174 |30913 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52811 |1175 |30906 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52812 |1175 |30908 |0 |1 |2774A4|0 |2 |0 |
+ROW |52813 |1175 |30915 |0 |2 |F63100|0 |2 |0 |
+ROW |52814 |1175 |30897 |0 |3 |A54F10|0 |2 |0 |
+ROW |52815 |1175 |30901 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |52816 |1175 |30899 |0 |5 |6C59DC|0 |2 |0 |
+ROW |52817 |1175 |30907 |0 |6 |AC8C14|0 |2 |0 |
+ROW |52818 |1175 |30905 |0 |7 |611F27|0 |2 |0 |
+ROW |52819 |1175 |30904 |0 |8 |F230E0|0 |2 |0 |
+ROW |52820 |1175 |30900 |0 |9 |FFAD40|0 |2 |0 |
+ROW |52821 |1175 |30898 |0 |10 |40CDFF|0 |2 |0 |
+ROW |52822 |1176 |30910 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52823 |1176 |30909 |0 |1 |2774A4|0 |2 |0 |
+ROW |52824 |836 |28798 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52825 |836 |28799 |0 |1 |2774A4|0 |2 |0 |
+ROW |52826 |836 |28800 |0 |2 |F63100|0 |2 |0 |
+ROW |52827 |836 |28801 |2 |3 |A54F10|0 |2 |0 |
+ROW |52828 |837 |28803 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52829 |838 |28793 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52830 |840 |28787 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52831 |840 |28784 |0 |1 |2774A4|0 |2 |0 |
+ROW |52832 |840 |28782 |0 |2 |F63100|0 |2 |0 |
+ROW |52833 |840 |28781 |0 |3 |A54F10|0 |2 |0 |
+ROW |52834 |840 |28780 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |52835 |840 |28778 |0 |5 |6C59DC|0 |2 |0 |
+ROW |52836 |840 |28786 |0 |6 |AC8C14|0 |2 |0 |
+ROW |52837 |840 |28785 |0 |7 |611F27|0 |2 |0 |
+ROW |52838 |840 |28783 |0 |8 |F230E0|0 |2 |0 |
+ROW |52839 |840 |28779 |0 |9 |FFAD40|0 |2 |0 |
+ROW |52840 |840 |28796 |0 |10 |40CDFF|0 |2 |0 |
+ROW |52841 |839 |28789 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52842 |839 |28788 |0 |1 |2774A4|0 |2 |0 |
+ROW |52843 |1278 |31855 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52844 |1278 |31856 |0 |1 |2774A4|0 |2 |0 |
+ROW |52845 |1304 |32007 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52846 |1304 |32010 |0 |1 |2774A4|0 |2 |0 |
+ROW |52847 |1305 |32008 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52848 |1305 |32011 |0 |1 |2774A4|0 |2 |0 |
+ROW |52849 |1306 |32003 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52850 |1306 |32004 |0 |1 |2774A4|0 |2 |0 |
+ROW |52851 |1306 |32009 |0 |2 |F63100|0 |2 |0 |
+ROW |52852 |1282 |31818 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52853 |1282 |31825 |0 |1 |2774A4|0 |2 |0 |
+ROW |52854 |1283 |31850 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52855 |1283 |31819 |0 |1 |2774A4|0 |2 |0 |
+ROW |52856 |1284 |31824 |1 |0 |1A7C11|0 |2 |0 |
+ROW |52857 |1284 |31821 |1 |1 |2774A4|0 |2 |0 |
+ROW |52858 |1285 |31839 |2 |0 |1A7C11|0 |2 |0 |
+ROW |52859 |1285 |31841 |0 |1 |2774A4|0 |2 |0 |
+ROW |52860 |1285 |31842 |0 |2 |F63100|0 |2 |0 |
+ROW |52861 |1285 |31837 |2 |3 |A54F10|0 |2 |0 |
+ROW |52862 |1285 |31838 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |52863 |1285 |31829 |0 |5 |6C59DC|0 |2 |0 |
+ROW |52864 |1286 |31833 |2 |0 |1A7C11|0 |2 |0 |
+ROW |52865 |1286 |31834 |0 |1 |2774A4|0 |2 |0 |
+ROW |52866 |1286 |31835 |0 |2 |F63100|0 |2 |0 |
+ROW |52867 |1121 |30606 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52868 |1121 |30590 |5 |1 |2774A4|0 |2 |0 |
+ROW |52869 |1121 |30582 |5 |2 |F63100|0 |2 |0 |
+ROW |52870 |1122 |30580 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52871 |1122 |30578 |5 |1 |2774A4|0 |2 |0 |
+ROW |52872 |1123 |30586 |2 |0 |1A7C11|0 |2 |0 |
+ROW |52873 |1123 |30608 |2 |1 |2774A4|0 |2 |0 |
+ROW |52874 |1123 |30585 |2 |2 |F63100|0 |2 |0 |
+ROW |52875 |1123 |30589 |2 |3 |A54F10|0 |2 |0 |
+ROW |52876 |1123 |30584 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |52877 |1123 |30588 |2 |5 |6C59DC|0 |2 |0 |
+ROW |52878 |1124 |30583 |2 |0 |1A7C11|0 |2 |0 |
+ROW |52879 |1124 |30587 |2 |1 |2774A4|0 |2 |0 |
+ROW |52880 |1125 |30555 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52881 |1125 |30554 |2 |1 |2774A4|0 |2 |0 |
+ROW |52882 |1125 |30556 |2 |2 |F63100|0 |2 |0 |
+ROW |52883 |1125 |30557 |2 |3 |A54F10|0 |2 |0 |
+ROW |52884 |1126 |30565 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52885 |1127 |30567 |2 |0 |1A7C11|0 |2 |0 |
+ROW |52886 |1127 |30568 |2 |1 |2774A4|0 |2 |0 |
+ROW |52887 |1128 |30536 |2 |0 |1A7C11|0 |2 |0 |
+ROW |52888 |1129 |30566 |2 |0 |1A7C11|0 |2 |0 |
+ROW |52889 |1129 |30549 |2 |1 |2774A4|0 |2 |0 |
+ROW |52890 |1129 |30553 |2 |2 |F63100|0 |2 |0 |
+ROW |52891 |1129 |30570 |2 |3 |A54F10|0 |2 |0 |
+ROW |52892 |1143 |30714 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52893 |1143 |30716 |0 |1 |2774A4|0 |2 |0 |
+ROW |52894 |1143 |30717 |0 |2 |F63100|0 |2 |0 |
+ROW |52895 |1143 |30715 |0 |3 |A54F10|0 |2 |0 |
+ROW |52896 |1144 |30753 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52897 |1144 |30738 |0 |1 |2774A4|0 |2 |0 |
+ROW |52898 |1145 |30718 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52899 |1145 |30737 |0 |1 |2774A4|0 |2 |0 |
+ROW |52900 |1145 |30727 |0 |2 |F63100|0 |2 |0 |
+ROW |52901 |1145 |30729 |0 |3 |A54F10|0 |2 |0 |
+ROW |52902 |1146 |30730 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52903 |1146 |30732 |0 |1 |2774A4|0 |2 |0 |
+ROW |52904 |1146 |30731 |0 |2 |F63100|0 |2 |0 |
+ROW |52905 |1146 |30733 |0 |3 |A54F10|0 |2 |0 |
+ROW |52906 |1147 |30734 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52907 |1147 |30736 |0 |1 |2774A4|0 |2 |0 |
+ROW |52908 |1147 |30735 |0 |2 |F63100|0 |2 |0 |
+ROW |52909 |1147 |30758 |0 |3 |A54F10|0 |2 |0 |
+ROW |52910 |1148 |30711 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52911 |1148 |30706 |0 |1 |2774A4|0 |2 |0 |
+ROW |52912 |1148 |30710 |0 |2 |F63100|0 |2 |0 |
+ROW |52913 |1148 |30712 |0 |3 |A54F10|0 |2 |0 |
+ROW |52914 |1148 |30702 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |52915 |1148 |30707 |0 |5 |6C59DC|0 |2 |0 |
+ROW |52916 |1148 |30704 |0 |6 |AC8C14|0 |2 |0 |
+ROW |52917 |1177 |30927 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52918 |1177 |30944 |2 |1 |2774A4|0 |2 |0 |
+ROW |52919 |1178 |30935 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52920 |1178 |30942 |0 |1 |2774A4|0 |2 |0 |
+ROW |52921 |1179 |30949 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52922 |1179 |30950 |0 |1 |2774A4|0 |2 |0 |
+ROW |52923 |1179 |30951 |0 |2 |F63100|0 |2 |0 |
+ROW |52924 |1180 |30952 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52925 |1180 |30954 |0 |1 |2774A4|0 |2 |0 |
+ROW |52926 |1180 |30955 |0 |2 |F63100|0 |2 |0 |
+ROW |52927 |1181 |30936 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52928 |1181 |30940 |5 |1 |2774A4|0 |2 |0 |
+ROW |52929 |1182 |30930 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52930 |1182 |30929 |0 |1 |2774A4|0 |2 |0 |
+ROW |52931 |1182 |30928 |0 |2 |F63100|0 |2 |0 |
+ROW |52932 |1182 |30931 |2 |3 |A54F10|1 |2 |0 |
+ROW |52933 |1183 |30934 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52934 |1183 |30941 |0 |1 |2774A4|0 |2 |0 |
+ROW |52935 |1380 |32498 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52936 |1380 |32499 |0 |1 |2774A4|0 |2 |0 |
+ROW |52937 |1381 |32505 |0 |0 |1A7C11|1 |2 |0 |
+ROW |52938 |1381 |32508 |0 |1 |2774A4|1 |2 |0 |
+ROW |52939 |1381 |32506 |0 |2 |F63100|0 |2 |0 |
+ROW |52940 |1381 |32507 |0 |3 |A54F10|0 |2 |0 |
+ROW |52941 |1381 |32509 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |52942 |1381 |32510 |0 |5 |6C59DC|0 |2 |0 |
+ROW |52943 |1382 |32488 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52944 |1382 |32491 |0 |1 |2774A4|0 |2 |0 |
+ROW |52945 |1382 |32493 |0 |2 |F63100|0 |2 |0 |
+ROW |52946 |1382 |32494 |0 |3 |A54F10|0 |2 |0 |
+ROW |52947 |1383 |32528 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52948 |1383 |32529 |0 |1 |2774A4|0 |2 |0 |
+ROW |52949 |1384 |32535 |0 |0 |1A7C11|1 |2 |0 |
+ROW |52950 |1384 |32538 |0 |1 |2774A4|1 |2 |0 |
+ROW |52951 |1384 |32536 |0 |2 |F63100|0 |2 |0 |
+ROW |52952 |1384 |32537 |0 |3 |A54F10|0 |2 |0 |
+ROW |52953 |1384 |32539 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |52954 |1384 |32540 |0 |5 |6C59DC|0 |2 |0 |
+ROW |52955 |1385 |32518 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52956 |1385 |32521 |0 |1 |2774A4|0 |2 |0 |
+ROW |52957 |1385 |32523 |0 |2 |F63100|0 |2 |0 |
+ROW |52958 |1385 |32524 |0 |3 |A54F10|0 |2 |0 |
+ROW |52959 |1250 |31527 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52960 |1250 |31529 |0 |1 |2774A4|0 |2 |0 |
+ROW |52961 |1250 |31499 |0 |2 |F63100|0 |2 |0 |
+ROW |52962 |1251 |31532 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52963 |1251 |31534 |0 |1 |2774A4|0 |2 |0 |
+ROW |52964 |1251 |31538 |0 |2 |F63100|0 |2 |0 |
+ROW |52965 |1251 |31536 |0 |3 |A54F10|0 |2 |0 |
+ROW |52966 |1251 |31528 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |52967 |1251 |31542 |0 |5 |6C59DC|0 |2 |0 |
+ROW |52968 |1252 |31552 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52969 |1252 |31551 |0 |1 |2774A4|0 |2 |0 |
+ROW |52970 |1252 |31541 |0 |2 |F63100|0 |2 |0 |
+ROW |52971 |1253 |31513 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52972 |1253 |31526 |0 |1 |2774A4|0 |2 |0 |
+ROW |52973 |1253 |31525 |0 |2 |F63100|0 |2 |0 |
+ROW |52974 |1254 |31502 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52975 |1254 |31501 |0 |1 |2774A4|0 |2 |0 |
+ROW |52976 |1254 |31503 |0 |2 |F63100|0 |2 |0 |
+ROW |52977 |1255 |31505 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52978 |1255 |31504 |0 |1 |2774A4|0 |2 |0 |
+ROW |52979 |1255 |31506 |0 |2 |F63100|0 |2 |0 |
+ROW |52980 |1256 |31508 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52981 |1256 |31507 |0 |1 |2774A4|0 |2 |0 |
+ROW |52982 |1256 |31509 |0 |2 |F63100|0 |2 |0 |
+ROW |52983 |1257 |31511 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52984 |1257 |31510 |0 |1 |2774A4|0 |2 |0 |
+ROW |52985 |1257 |31500 |0 |2 |F63100|0 |2 |0 |
+ROW |52986 |1258 |31514 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52987 |1258 |31512 |0 |1 |2774A4|0 |2 |0 |
+ROW |52988 |1258 |31515 |0 |2 |F63100|0 |2 |0 |
+ROW |52989 |1259 |31516 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52990 |1259 |31517 |0 |1 |2774A4|0 |2 |0 |
+ROW |52991 |1260 |31523 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52992 |1260 |31522 |0 |1 |2774A4|0 |2 |0 |
+ROW |52993 |1260 |31524 |0 |2 |F63100|0 |2 |0 |
+ROW |52994 |1307 |32051 |1 |0 |1A7C11|0 |2 |0 |
+ROW |52995 |1307 |32057 |1 |1 |2774A4|0 |2 |0 |
+ROW |52996 |1149 |30770 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52997 |1149 |30771 |0 |1 |2774A4|0 |2 |0 |
+ROW |52998 |1075 |30204 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52999 |1075 |30205 |0 |1 |2774A4|0 |2 |0 |
+ROW |53000 |1150 |30775 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53001 |1150 |30774 |0 |1 |2774A4|0 |2 |0 |
+ROW |53002 |1151 |30772 |5 |0 |1A7C11|0 |2 |0 |
+ROW |53003 |1151 |30773 |5 |1 |2774A4|0 |2 |0 |
+ROW |53004 |1152 |30777 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53005 |1152 |30776 |0 |1 |2774A4|0 |2 |0 |
+ROW |53006 |1076 |30209 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53007 |1076 |30208 |0 |1 |2774A4|0 |2 |0 |
+ROW |53008 |1077 |30206 |5 |0 |1A7C11|0 |2 |0 |
+ROW |53009 |1077 |30207 |5 |1 |2774A4|0 |2 |0 |
+ROW |53010 |1078 |30216 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53011 |1078 |30215 |0 |1 |2774A4|0 |2 |0 |
+ROW |53012 |1079 |30210 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53013 |1079 |30211 |0 |1 |2774A4|0 |2 |0 |
+ROW |53014 |1079 |30212 |0 |2 |F63100|0 |2 |0 |
+ROW |53015 |1079 |30213 |0 |3 |A54F10|0 |2 |0 |
+ROW |53016 |1079 |30214 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53017 |1153 |30785 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53018 |1153 |30784 |0 |1 |2774A4|0 |2 |0 |
+ROW |53019 |1080 |30226 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53020 |1080 |30225 |0 |1 |2774A4|0 |2 |0 |
+ROW |53021 |1154 |30802 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53022 |1154 |30803 |0 |1 |2774A4|0 |2 |0 |
+ROW |53023 |1081 |30247 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53024 |1081 |30248 |0 |1 |2774A4|0 |2 |0 |
+ROW |53025 |1155 |30807 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53026 |1155 |30806 |0 |1 |2774A4|0 |2 |0 |
+ROW |53027 |1156 |30804 |5 |0 |1A7C11|0 |2 |0 |
+ROW |53028 |1156 |30805 |5 |1 |2774A4|0 |2 |0 |
+ROW |53029 |1157 |30809 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53030 |1157 |30808 |0 |1 |2774A4|0 |2 |0 |
+ROW |53031 |1082 |30252 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53032 |1082 |30251 |0 |1 |2774A4|0 |2 |0 |
+ROW |53033 |1083 |30249 |5 |0 |1A7C11|0 |2 |0 |
+ROW |53034 |1083 |30250 |5 |1 |2774A4|0 |2 |0 |
+ROW |53035 |1084 |30259 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53036 |1084 |30258 |0 |1 |2774A4|0 |2 |0 |
+ROW |53037 |1085 |30253 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53038 |1085 |30254 |0 |1 |2774A4|0 |2 |0 |
+ROW |53039 |1085 |30255 |0 |2 |F63100|0 |2 |0 |
+ROW |53040 |1085 |30256 |0 |3 |A54F10|0 |2 |0 |
+ROW |53041 |1085 |30257 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53042 |1158 |30817 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53043 |1158 |30816 |0 |1 |2774A4|0 |2 |0 |
+ROW |53044 |1086 |30269 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53045 |1086 |30268 |0 |1 |2774A4|0 |2 |0 |
+ROW |53046 |1184 |30982 |5 |0 |1A7C11|0 |2 |0 |
+ROW |53047 |1184 |30980 |5 |1 |2774A4|0 |2 |0 |
+ROW |53048 |1185 |30983 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53049 |1185 |30981 |0 |1 |2774A4|0 |2 |0 |
+ROW |53050 |1186 |30976 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53051 |1186 |30985 |0 |1 |2774A4|0 |2 |0 |
+ROW |53052 |1186 |30997 |0 |2 |F63100|0 |2 |0 |
+ROW |53053 |1186 |30970 |0 |3 |A54F10|0 |2 |0 |
+ROW |53054 |1186 |30973 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53055 |1186 |30995 |0 |5 |6C59DC|0 |2 |0 |
+ROW |53056 |1186 |30998 |0 |6 |AC8C14|0 |2 |0 |
+ROW |53057 |1186 |30978 |0 |7 |611F27|0 |2 |0 |
+ROW |53058 |1187 |31024 |5 |0 |1A7C11|0 |2 |0 |
+ROW |53059 |1187 |31022 |5 |1 |2774A4|0 |2 |0 |
+ROW |53060 |1188 |31025 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53061 |1188 |31023 |0 |1 |2774A4|0 |2 |0 |
+ROW |53062 |1189 |31018 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53063 |1189 |31027 |0 |1 |2774A4|0 |2 |0 |
+ROW |53064 |1189 |31039 |0 |2 |F63100|0 |2 |0 |
+ROW |53065 |1189 |31012 |0 |3 |A54F10|0 |2 |0 |
+ROW |53066 |1189 |31015 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53067 |1189 |31037 |0 |5 |6C59DC|0 |2 |0 |
+ROW |53068 |1189 |31040 |0 |6 |AC8C14|0 |2 |0 |
+ROW |53069 |1189 |31020 |0 |7 |611F27|0 |2 |0 |
+ROW |53070 |1308 |32078 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53071 |1308 |32077 |0 |1 |2774A4|0 |2 |0 |
+ROW |53072 |1309 |32088 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53073 |1309 |32087 |0 |1 |2774A4|0 |2 |0 |
+ROW |53074 |1310 |32071 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53075 |1310 |32102 |0 |1 |2774A4|0 |2 |0 |
+ROW |53076 |1311 |32108 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53077 |1311 |32109 |0 |1 |2774A4|0 |2 |0 |
+ROW |53078 |1311 |32106 |0 |2 |F63100|0 |2 |0 |
+ROW |53079 |1311 |32107 |0 |3 |A54F10|0 |2 |0 |
+ROW |53080 |1312 |32083 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53081 |1312 |32084 |0 |1 |2774A4|0 |2 |0 |
+ROW |53082 |1313 |32080 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53083 |1313 |32081 |0 |1 |2774A4|0 |2 |0 |
+ROW |53084 |1314 |32086 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53085 |1314 |32100 |2 |1 |2774A4|0 |2 |0 |
+ROW |53086 |1314 |32073 |0 |2 |F63100|0 |2 |0 |
+ROW |53087 |1314 |32131 |0 |3 |A54F10|0 |2 |0 |
+ROW |53088 |1314 |32118 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |53089 |1314 |32101 |0 |5 |6C59DC|0 |2 |0 |
+ROW |53090 |1314 |32125 |0 |6 |AC8C14|0 |2 |0 |
+ROW |53091 |1314 |32126 |2 |7 |611F27|0 |2 |0 |
+ROW |53092 |1314 |32127 |0 |8 |F230E0|0 |2 |0 |
+ROW |53093 |1314 |32128 |0 |9 |FFAD40|0 |2 |0 |
+ROW |53094 |1314 |32129 |2 |10 |40CDFF|0 |2 |0 |
+ROW |53095 |1314 |32130 |0 |11 |40FFA0|0 |2 |0 |
+ROW |53096 |1315 |32124 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53097 |1315 |32123 |2 |1 |2774A4|0 |2 |0 |
+ROW |53098 |1315 |32122 |0 |2 |F63100|0 |2 |0 |
+ROW |53099 |1315 |32121 |0 |3 |A54F10|0 |2 |0 |
+ROW |53100 |1315 |32121 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |53101 |1315 |32120 |0 |5 |6C59DC|0 |2 |0 |
+ROW |53102 |1316 |32098 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53103 |1316 |32099 |0 |1 |2774A4|0 |2 |0 |
+ROW |53104 |1316 |32097 |0 |2 |F63100|0 |2 |0 |
+ROW |53105 |1316 |32096 |0 |3 |A54F10|0 |2 |0 |
+ROW |53106 |1130 |30613 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53107 |1130 |30635 |0 |1 |2774A4|0 |2 |0 |
+ROW |53108 |1130 |30625 |0 |2 |F63100|0 |2 |0 |
+ROW |53109 |1131 |30632 |5 |0 |1A7C11|0 |2 |0 |
+ROW |53110 |1131 |30633 |5 |1 |2774A4|0 |2 |0 |
+ROW |53111 |1131 |30629 |5 |2 |F63100|0 |2 |0 |
+ROW |53112 |1132 |30630 |2 |0 |1A7C11|0 |2 |0 |
+ROW |53113 |1132 |30628 |2 |1 |2774A4|0 |2 |0 |
+ROW |53114 |1132 |30631 |2 |2 |F63100|0 |2 |0 |
+ROW |53115 |1133 |30619 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53116 |1133 |30618 |0 |1 |2774A4|0 |2 |0 |
+ROW |53117 |1134 |30623 |5 |0 |1A7C11|0 |2 |0 |
+ROW |53118 |1134 |30622 |5 |1 |2774A4|0 |2 |0 |
+ROW |53119 |1135 |30615 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53120 |841 |28813 |2 |0 |1A7C11|0 |2 |0 |
+ROW |53121 |841 |28811 |0 |1 |2774A4|0 |2 |0 |
+ROW |53122 |841 |28812 |0 |2 |F63100|0 |2 |0 |
+ROW |53123 |841 |28814 |0 |3 |A54F10|0 |2 |0 |
+ROW |53124 |842 |28817 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53125 |842 |28815 |0 |1 |2774A4|0 |2 |0 |
+ROW |53126 |842 |28816 |0 |2 |F63100|0 |2 |0 |
+ROW |53127 |844 |28808 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53128 |844 |28807 |0 |1 |2774A4|0 |2 |0 |
+ROW |53129 |843 |28818 |5 |0 |1A7C11|0 |2 |0 |
+ROW |53130 |845 |28829 |2 |0 |1A7C11|0 |2 |0 |
+ROW |53131 |845 |28831 |0 |1 |2774A4|0 |2 |0 |
+ROW |53132 |845 |28832 |0 |2 |F63100|0 |2 |0 |
+ROW |53133 |845 |28830 |0 |3 |A54F10|0 |2 |0 |
+ROW |53134 |846 |28826 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53135 |846 |28828 |0 |1 |2774A4|0 |2 |0 |
+ROW |53136 |846 |28827 |0 |2 |F63100|0 |2 |0 |
+ROW |53137 |847 |28825 |5 |0 |1A7C11|0 |2 |0 |
+ROW |53138 |1287 |31890 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53139 |1287 |31882 |0 |1 |2774A4|0 |2 |0 |
+ROW |53140 |1287 |31880 |0 |2 |F63100|0 |2 |0 |
+ROW |53141 |1287 |31883 |0 |3 |A54F10|0 |2 |0 |
+ROW |53142 |1288 |31889 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53143 |1288 |31881 |0 |1 |2774A4|0 |2 |0 |
+ROW |53144 |1288 |31888 |0 |2 |F63100|0 |2 |0 |
+ROW |53145 |1289 |31900 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53146 |1289 |31895 |0 |1 |2774A4|0 |2 |0 |
+ROW |53147 |1289 |31899 |0 |2 |F63100|0 |2 |0 |
+ROW |53148 |1289 |31902 |0 |3 |A54F10|0 |2 |0 |
+ROW |53149 |1290 |31907 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53150 |1290 |31908 |0 |1 |2774A4|0 |2 |0 |
+ROW |53151 |1290 |31906 |0 |2 |F63100|0 |2 |0 |
+ROW |53152 |1412 |32908 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53153 |1412 |32923 |0 |1 |2774A4|0 |2 |0 |
+ROW |53154 |1412 |32921 |0 |2 |F63100|0 |2 |0 |
+ROW |53155 |1412 |32919 |0 |3 |A54F10|0 |2 |0 |
+ROW |53156 |1412 |32917 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53157 |1412 |32911 |0 |5 |6C59DC|0 |2 |0 |
+ROW |53158 |1412 |32914 |0 |6 |AC8C14|0 |2 |0 |
+ROW |53159 |1412 |32909 |0 |7 |611F27|0 |2 |0 |
+ROW |53160 |1413 |32912 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53161 |1413 |32922 |0 |1 |2774A4|0 |2 |0 |
+ROW |53162 |1413 |32920 |0 |2 |F63100|0 |2 |0 |
+ROW |53163 |1413 |32918 |0 |3 |A54F10|0 |2 |0 |
+ROW |53164 |1413 |32915 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53165 |1413 |32910 |0 |5 |6C59DC|0 |2 |0 |
+ROW |53166 |1413 |32913 |0 |6 |AC8C14|0 |2 |0 |
+ROW |53167 |1413 |32924 |0 |7 |611F27|0 |2 |0 |
+ROW |53168 |1414 |32847 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53169 |1414 |32848 |0 |1 |2774A4|0 |2 |0 |
+ROW |53170 |1414 |32846 |0 |2 |F63100|0 |2 |0 |
+ROW |53171 |1415 |32871 |5 |0 |1A7C11|0 |2 |0 |
+ROW |53172 |1415 |32876 |2 |1 |FF0000|0 |2 |0 |
+ROW |53173 |1416 |32875 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53174 |1417 |32839 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53175 |1417 |32838 |0 |1 |2774A4|0 |2 |0 |
+ROW |53176 |1418 |32878 |5 |0 |1A7C11|0 |2 |0 |
+ROW |53177 |1418 |32873 |2 |1 |FF0000|0 |2 |0 |
+ROW |53178 |1419 |32843 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53179 |1419 |32842 |0 |1 |2774A4|0 |2 |0 |
+ROW |53180 |1419 |32841 |0 |2 |F63100|0 |2 |0 |
+ROW |53181 |1420 |32857 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53182 |1420 |32851 |0 |1 |2774A4|0 |2 |0 |
+ROW |53183 |1420 |32861 |0 |2 |F63100|0 |2 |0 |
+ROW |53184 |1420 |32859 |0 |3 |A54F10|0 |2 |0 |
+ROW |53185 |1420 |32855 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53186 |1420 |32853 |0 |5 |6C59DC|0 |2 |0 |
+ROW |53187 |1420 |32863 |0 |6 |AC8C14|0 |2 |0 |
+ROW |53188 |1420 |32849 |0 |7 |611F27|0 |2 |0 |
+ROW |53189 |1421 |32858 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53190 |1421 |32850 |0 |1 |2774A4|0 |2 |0 |
+ROW |53191 |1421 |32862 |0 |2 |F63100|0 |2 |0 |
+ROW |53192 |1421 |32860 |0 |3 |A54F10|0 |2 |0 |
+ROW |53193 |1421 |32856 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53194 |1421 |32854 |0 |5 |6C59DC|0 |2 |0 |
+ROW |53195 |1421 |32852 |0 |6 |AC8C14|0 |2 |0 |
+ROW |53196 |1421 |32840 |0 |7 |611F27|0 |2 |0 |
+ROW |53197 |1422 |32864 |2 |0 |1A7C11|0 |2 |0 |
+ROW |53198 |1423 |32844 |5 |0 |1A7C11|0 |2 |0 |
+ROW |53199 |1424 |32866 |5 |0 |1A7C11|0 |2 |0 |
+ROW |53200 |1424 |32867 |0 |1 |2774A4|0 |2 |0 |
+ROW |53201 |1425 |32865 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53202 |1426 |33000 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53203 |1426 |33015 |0 |1 |2774A4|0 |2 |0 |
+ROW |53204 |1426 |33013 |0 |2 |F63100|0 |2 |0 |
+ROW |53205 |1426 |33011 |0 |3 |A54F10|0 |2 |0 |
+ROW |53206 |1426 |33009 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53207 |1426 |33003 |0 |5 |6C59DC|0 |2 |0 |
+ROW |53208 |1426 |33006 |0 |6 |AC8C14|0 |2 |0 |
+ROW |53209 |1426 |33001 |0 |7 |611F27|0 |2 |0 |
+ROW |53210 |1427 |33004 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53211 |1427 |33014 |0 |1 |2774A4|0 |2 |0 |
+ROW |53212 |1427 |33012 |0 |2 |F63100|0 |2 |0 |
+ROW |53213 |1427 |33010 |0 |3 |A54F10|0 |2 |0 |
+ROW |53214 |1427 |33007 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53215 |1427 |33002 |0 |5 |6C59DC|0 |2 |0 |
+ROW |53216 |1427 |33005 |0 |6 |AC8C14|0 |2 |0 |
+ROW |53217 |1427 |33016 |0 |7 |611F27|0 |2 |0 |
+ROW |53218 |1428 |32937 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53219 |1428 |32938 |0 |1 |2774A4|0 |2 |0 |
+ROW |53220 |1428 |32936 |0 |2 |F63100|0 |2 |0 |
+ROW |53221 |1429 |32969 |5 |0 |1A7C11|0 |2 |0 |
+ROW |53222 |1429 |32967 |2 |1 |FF0000|0 |2 |0 |
+ROW |53223 |1430 |32966 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53224 |1431 |32964 |5 |0 |1A7C11|0 |2 |0 |
+ROW |53225 |1431 |32962 |2 |1 |FF0000|0 |2 |0 |
+ROW |53226 |1432 |32933 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53227 |1432 |32932 |0 |1 |2774A4|0 |2 |0 |
+ROW |53228 |1432 |32955 |0 |2 |F63100|0 |2 |0 |
+ROW |53229 |1433 |32947 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53230 |1433 |32953 |0 |1 |2774A4|0 |2 |0 |
+ROW |53231 |1433 |32951 |0 |2 |F63100|0 |2 |0 |
+ROW |53232 |1433 |32949 |0 |3 |A54F10|0 |2 |0 |
+ROW |53233 |1433 |32945 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53234 |1433 |32943 |0 |5 |6C59DC|0 |2 |0 |
+ROW |53235 |1433 |32941 |0 |6 |AC8C14|0 |2 |0 |
+ROW |53236 |1433 |32939 |0 |7 |611F27|0 |2 |0 |
+ROW |53237 |1434 |32948 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53238 |1434 |32954 |0 |1 |2774A4|0 |2 |0 |
+ROW |53239 |1434 |32952 |0 |2 |F63100|0 |2 |0 |
+ROW |53240 |1434 |32950 |0 |3 |A54F10|0 |2 |0 |
+ROW |53241 |1434 |32946 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53242 |1434 |32944 |0 |5 |6C59DC|0 |2 |0 |
+ROW |53243 |1434 |32942 |0 |6 |AC8C14|0 |2 |0 |
+ROW |53244 |1434 |32940 |0 |7 |611F27|0 |2 |0 |
+ROW |53245 |1435 |32960 |2 |0 |1A7C11|0 |2 |0 |
+ROW |53246 |1436 |32934 |5 |0 |1A7C11|0 |2 |0 |
+ROW |53247 |1437 |32957 |5 |0 |1A7C11|0 |2 |0 |
+ROW |53248 |1437 |32958 |0 |1 |2774A4|0 |2 |0 |
+ROW |53249 |1438 |32970 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53250 |1291 |31947 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53251 |1291 |31946 |0 |1 |2774A4|0 |2 |0 |
+ROW |53252 |1292 |31952 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53253 |1292 |31938 |0 |1 |2774A4|0 |2 |0 |
+ROW |53254 |1292 |31950 |0 |2 |F63100|0 |2 |0 |
+ROW |53255 |1293 |31939 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53256 |1293 |31945 |0 |1 |2774A4|0 |2 |0 |
+ROW |53257 |1293 |31942 |0 |2 |F63100|0 |2 |0 |
+ROW |53258 |1294 |31959 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53259 |1294 |31962 |0 |1 |2774A4|0 |2 |0 |
+ROW |53260 |1295 |31918 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53261 |1295 |31916 |0 |1 |2774A4|0 |2 |0 |
+ROW |53262 |1295 |31917 |0 |2 |F63100|0 |2 |0 |
+ROW |53263 |1296 |31919 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53264 |1296 |31920 |0 |1 |2774A4|0 |2 |0 |
+ROW |53265 |1296 |31921 |0 |2 |F63100|0 |2 |0 |
+ROW |53266 |1297 |31911 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53267 |1297 |31944 |0 |1 |2774A4|0 |2 |0 |
+ROW |53268 |1298 |31953 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53269 |1298 |31954 |0 |1 |2774A4|0 |2 |0 |
+ROW |53270 |1298 |31960 |0 |2 |F63100|0 |2 |0 |
+ROW |53271 |1298 |31961 |0 |3 |A54F10|0 |2 |0 |
+ROW |53272 |1298 |31957 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53273 |1298 |31958 |0 |5 |6C59DC|0 |2 |0 |
+ROW |53274 |1298 |31912 |0 |6 |AC8C14|0 |2 |0 |
+ROW |53275 |1298 |31913 |0 |7 |611F27|0 |2 |0 |
+ROW |53276 |1298 |31914 |0 |8 |F230E0|0 |2 |0 |
+ROW |53277 |1298 |31915 |0 |9 |FFAD40|0 |2 |0 |
+ROW |53278 |1298 |31948 |0 |10 |40CDFF|0 |2 |0 |
+ROW |53279 |1298 |31949 |0 |11 |40FFA0|0 |2 |0 |
+ROW |53280 |1317 |32146 |5 |0 |1A7C11|0 |2 |0 |
+ROW |53281 |1317 |32145 |5 |1 |2774A4|0 |2 |0 |
+ROW |53282 |1318 |32151 |5 |0 |1A7C11|0 |2 |0 |
+ROW |53283 |1318 |32150 |5 |1 |2774A4|0 |2 |0 |
+ROW |53284 |1318 |32153 |5 |2 |F63100|0 |2 |0 |
+ROW |53285 |1318 |32152 |5 |3 |A54F10|0 |2 |0 |
+ROW |53286 |1319 |32157 |5 |0 |1A7C11|0 |2 |0 |
+ROW |53287 |1319 |32155 |5 |1 |2774A4|0 |2 |0 |
+ROW |53288 |1319 |32156 |5 |2 |F63100|0 |2 |0 |
+ROW |53289 |1520 |34128 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53290 |1520 |34127 |0 |1 |2774A4|0 |2 |0 |
+ROW |53291 |1520 |34130 |0 |2 |F63100|0 |2 |0 |
+ROW |53292 |1520 |34131 |0 |3 |A54F10|0 |2 |0 |
+ROW |53293 |1520 |34132 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53294 |1521 |34134 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53295 |1521 |34149 |0 |1 |2774A4|0 |2 |0 |
+ROW |53296 |1521 |34153 |0 |2 |F63100|0 |2 |0 |
+ROW |53297 |1521 |34152 |0 |3 |A54F10|0 |2 |0 |
+ROW |53298 |1521 |34150 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53299 |1521 |34148 |0 |5 |6C59DC|0 |2 |0 |
+ROW |53300 |1522 |34167 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53301 |1522 |34166 |0 |1 |2774A4|0 |2 |0 |
+ROW |53302 |1523 |34164 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53303 |1523 |34165 |0 |1 |2774A4|0 |2 |0 |
+ROW |53304 |1524 |34108 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53305 |1524 |34109 |0 |1 |2774A4|0 |2 |0 |
+ROW |53306 |1524 |34110 |0 |2 |F63100|0 |2 |0 |
+ROW |53307 |1524 |34111 |0 |3 |A54F10|0 |2 |0 |
+ROW |53308 |1524 |34113 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53309 |1524 |34107 |0 |5 |6C59DC|0 |2 |0 |
+ROW |53310 |1524 |34114 |0 |6 |AC8C14|0 |2 |0 |
+ROW |53311 |1524 |34116 |0 |7 |611F27|0 |2 |0 |
+ROW |53312 |1524 |34122 |0 |8 |F230E0|0 |2 |0 |
+ROW |53313 |1320 |32196 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53314 |1320 |32197 |0 |1 |2774A4|0 |2 |0 |
+ROW |53315 |1320 |32195 |2 |2 |F63100|0 |2 |0 |
+ROW |53316 |1321 |32200 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53317 |1321 |32199 |0 |1 |2774A4|0 |2 |0 |
+ROW |53318 |1322 |32175 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53319 |1322 |32165 |0 |1 |2774A4|0 |2 |0 |
+ROW |53320 |1323 |32162 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53321 |1323 |32163 |0 |1 |2774A4|0 |2 |0 |
+ROW |53322 |1323 |32190 |2 |2 |F63100|0 |2 |0 |
+ROW |53323 |1324 |32192 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53324 |1324 |32179 |0 |1 |2774A4|0 |2 |0 |
+ROW |53325 |1325 |32168 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53326 |1325 |32166 |0 |1 |2774A4|0 |2 |0 |
+ROW |53327 |803 |28599 |0 |0 |DD0000|0 |2 |0 |
+ROW |53328 |803 |28596 |0 |1 |00DDDD|0 |2 |0 |
+ROW |53329 |803 |28597 |0 |2 |3333FF|0 |2 |0 |
+ROW |53330 |803 |28598 |0 |3 |00FF00|0 |2 |0 |
+ROW |53331 |804 |28602 |0 |0 |990099|0 |2 |0 |
+ROW |53332 |804 |28606 |0 |1 |990000|0 |2 |0 |
+ROW |53333 |804 |28608 |0 |2 |0000EE|0 |2 |0 |
+ROW |53334 |804 |28615 |0 |3 |FF33FF|0 |2 |0 |
+ROW |53335 |804 |28610 |0 |4 |00EE00|0 |2 |0 |
+ROW |53336 |804 |28611 |0 |5 |003300|0 |2 |0 |
+ROW |53337 |804 |28616 |0 |6 |33FFFF|0 |2 |0 |
+ROW |53338 |804 |28607 |0 |7 |DD0000|0 |2 |0 |
+ROW |53339 |804 |28604 |0 |8 |000099|0 |2 |0 |
+ROW |53340 |804 |28588 |0 |9 |00FF00|0 |2 |0 |
+ROW |53341 |805 |28612 |0 |0 |FFAA00|0 |2 |0 |
+ROW |53342 |805 |28600 |0 |1 |990099|0 |2 |0 |
+ROW |53343 |805 |28613 |0 |2 |EE0000|0 |2 |0 |
+ROW |53344 |805 |28605 |0 |3 |FF66FF|0 |2 |0 |
+ROW |53345 |805 |28614 |0 |4 |960000|0 |2 |0 |
+ROW |53346 |805 |28601 |0 |5 |009600|0 |2 |0 |
+ROW |53347 |805 |28603 |0 |6 |009999|0 |2 |0 |
+ROW |53348 |805 |28609 |0 |7 |BBBB00|0 |2 |0 |
+ROW |53349 |806 |28595 |0 |0 |00C800|0 |2 |0 |
+ROW |53350 |806 |28586 |0 |1 |C80000|0 |2 |0 |
+ROW |53351 |797 |28546 |0 |0 |C80000|0 |2 |0 |
+ROW |53352 |797 |28545 |0 |1 |00C800|0 |2 |0 |
+ROW |53353 |798 |28551 |0 |0 |009900|0 |2 |0 |
+ROW |53354 |798 |28543 |0 |1 |DD0000|0 |2 |0 |
+ROW |53355 |798 |28542 |0 |2 |00DDDD|0 |2 |0 |
+ROW |53356 |798 |28549 |0 |3 |3333FF|0 |2 |0 |
+ROW |53357 |798 |28544 |0 |4 |999900|0 |2 |0 |
+ROW |53358 |798 |28548 |0 |5 |00FF00|0 |2 |0 |
+ROW |53359 |799 |28581 |0 |0 |990099|0 |2 |0 |
+ROW |53360 |799 |28574 |0 |1 |990000|0 |2 |0 |
+ROW |53361 |799 |28571 |0 |2 |0000EE|0 |2 |0 |
+ROW |53362 |799 |28565 |0 |3 |FF33FF|0 |2 |0 |
+ROW |53363 |799 |28570 |0 |4 |009600|0 |2 |0 |
+ROW |53364 |799 |28569 |0 |5 |003300|0 |2 |0 |
+ROW |53365 |799 |28577 |0 |6 |CCCC00|0 |2 |0 |
+ROW |53366 |799 |28552 |0 |7 |33FFFF|0 |2 |0 |
+ROW |53367 |799 |28573 |0 |8 |DD0000|0 |2 |0 |
+ROW |53368 |799 |28579 |0 |9 |000099|0 |2 |0 |
+ROW |53369 |799 |28559 |0 |10 |00FF00|0 |2 |0 |
+ROW |53370 |800 |28572 |0 |0 |00EE00|0 |2 |0 |
+ROW |53371 |800 |28566 |0 |1 |0000EE|0 |2 |0 |
+ROW |53372 |800 |28568 |0 |2 |FFAA00|0 |2 |0 |
+ROW |53373 |800 |28561 |0 |3 |00EEEE|0 |2 |0 |
+ROW |53374 |800 |28564 |0 |4 |990099|0 |2 |0 |
+ROW |53375 |800 |28567 |0 |5 |EE0000|0 |2 |0 |
+ROW |53376 |800 |28578 |0 |6 |FF66FF|0 |2 |0 |
+ROW |53377 |800 |28580 |0 |7 |009999|0 |2 |0 |
+ROW |53378 |800 |28562 |0 |8 |BBBB00|0 |2 |0 |
+ROW |53379 |800 |28563 |0 |9 |AA0000|0 |2 |0 |
+ROW |53380 |800 |28575 |0 |10 |990000|0 |2 |0 |
+ROW |53381 |800 |28576 |0 |11 |008800|0 |2 |0 |
+ROW |53382 |800 |28582 |0 |12 |80B0E0|0 |2 |0 |
+ROW |53383 |800 |28583 |0 |13 |4080B0|0 |2 |0 |
+ROW |53384 |800 |29821 |0 |14 |8000FF|0 |2 |0 |
+ROW |53385 |801 |28560 |0 |0 |008800|0 |2 |0 |
+ROW |53386 |801 |28584 |0 |1 |EE0000|0 |2 |0 |
+ROW |53387 |802 |28550 |5 |0 |00C800|0 |2 |0 |
+ROW |53388 |802 |28540 |0 |1 |F63100|0 |2 |0 |
+ROW |53389 |529 |23357 |0 |0 |DD0000|0 |2 |0 |
+ROW |53390 |529 |23341 |0 |1 |00DDDD|0 |2 |0 |
+ROW |53391 |529 |23342 |0 |2 |3333FF|0 |2 |0 |
+ROW |53392 |529 |28251 |0 |3 |00FF00|0 |2 |0 |
+ROW |53393 |530 |23345 |0 |0 |990099|0 |2 |0 |
+ROW |53394 |530 |23348 |0 |1 |990000|0 |2 |0 |
+ROW |53395 |530 |23355 |0 |2 |0000EE|0 |2 |0 |
+ROW |53396 |530 |23352 |0 |3 |FF33FF|0 |2 |0 |
+ROW |53397 |530 |23356 |0 |4 |007700|0 |2 |0 |
+ROW |53398 |530 |23354 |0 |5 |003300|0 |2 |0 |
+ROW |53399 |530 |23346 |0 |6 |33FFFF|0 |2 |0 |
+ROW |53400 |530 |23349 |0 |7 |DD0000|0 |2 |0 |
+ROW |53401 |530 |23344 |0 |8 |000099|0 |7 |0 |
+ROW |53402 |530 |28250 |0 |9 |00FF00|0 |2 |0 |
+ROW |53403 |531 |23353 |0 |0 |FFAA00|0 |2 |0 |
+ROW |53404 |531 |23347 |0 |1 |990099|0 |2 |0 |
+ROW |53405 |531 |23350 |0 |2 |EE0000|0 |2 |0 |
+ROW |53406 |531 |23343 |0 |3 |FF66FF|0 |2 |0 |
+ROW |53407 |531 |23351 |0 |4 |0000EE|0 |2 |0 |
+ROW |53408 |531 |23360 |0 |5 |00EE00|0 |2 |0 |
+ROW |53409 |531 |25369 |0 |6 |009999|0 |2 |0 |
+ROW |53410 |531 |25368 |0 |7 |BBBB00|0 |2 |0 |
+ROW |53411 |531 |28618 |0 |8 |990000|0 |2 |0 |
+ROW |53412 |531 |28619 |0 |9 |008800|0 |2 |0 |
+ROW |53413 |807 |28617 |0 |0 |008800|0 |2 |0 |
+ROW |53414 |532 |23340 |5 |0 |00C800|0 |2 |0 |
+ROW |53415 |532 |23358 |5 |1 |C80000|1 |2 |0 |
+ROW |53416 |527 |22199 |0 |0 |C80000|0 |2 |0 |
+ROW |53417 |527 |22196 |0 |1 |00C800|0 |2 |0 |
+ROW |53418 |528 |23628 |0 |0 |C80000|0 |2 |0 |
+ROW |53419 |528 |23625 |0 |1 |00C800|0 |2 |0 |
+ROW |53420 |410 |22185 |0 |0 |009900|0 |2 |0 |
+ROW |53421 |410 |22189 |0 |1 |DD0000|0 |2 |0 |
+ROW |53422 |410 |22396 |0 |2 |00DDDD|0 |2 |0 |
+ROW |53423 |410 |22183 |0 |3 |3333FF|0 |2 |0 |
+ROW |53424 |410 |22191 |0 |4 |999900|0 |2 |0 |
+ROW |53425 |410 |23634 |0 |5 |00FF00|0 |2 |0 |
+ROW |53426 |520 |23276 |0 |0 |009900|0 |2 |0 |
+ROW |53427 |520 |23273 |0 |1 |DD0000|0 |2 |0 |
+ROW |53428 |520 |23275 |0 |2 |00DDDD|0 |2 |0 |
+ROW |53429 |520 |23274 |0 |3 |3333FF|0 |2 |0 |
+ROW |53430 |520 |23620 |0 |4 |999900|0 |2 |0 |
+ROW |53431 |520 |23635 |0 |5 |00FF00|0 |2 |0 |
+ROW |53432 |404 |22404 |0 |0 |990099|0 |2 |0 |
+ROW |53433 |404 |22399 |0 |1 |990000|0 |2 |0 |
+ROW |53434 |404 |22416 |0 |2 |0000EE|0 |2 |0 |
+ROW |53435 |404 |22430 |0 |3 |FF33FF|0 |2 |0 |
+ROW |53436 |404 |22418 |0 |4 |009600|0 |2 |0 |
+ROW |53437 |404 |22402 |0 |5 |003300|0 |2 |0 |
+ROW |53438 |404 |22420 |0 |6 |CCCC00|0 |2 |0 |
+ROW |53439 |404 |22400 |0 |7 |33FFFF|0 |2 |0 |
+ROW |53440 |404 |22689 |0 |8 |DD0000|0 |2 |0 |
+ROW |53441 |404 |23171 |0 |9 |000099|0 |2 |0 |
+ROW |53442 |404 |22401 |0 |10 |00FF00|0 |2 |0 |
+ROW |53443 |518 |23269 |0 |0 |990099|0 |2 |0 |
+ROW |53444 |518 |23264 |0 |1 |990000|0 |2 |0 |
+ROW |53445 |518 |23261 |0 |2 |0000EE|0 |2 |0 |
+ROW |53446 |518 |23255 |0 |3 |FF33FF|0 |2 |0 |
+ROW |53447 |518 |23260 |0 |4 |009600|0 |2 |0 |
+ROW |53448 |518 |23259 |0 |5 |003300|0 |2 |0 |
+ROW |53449 |518 |23265 |0 |6 |CCCC00|0 |2 |0 |
+ROW |53450 |518 |23270 |0 |7 |33FFFF|0 |2 |0 |
+ROW |53451 |518 |23262 |0 |8 |DD0000|0 |2 |0 |
+ROW |53452 |518 |23267 |0 |9 |000099|0 |2 |0 |
+ROW |53453 |518 |23328 |0 |10 |00FF00|0 |2 |0 |
+ROW |53454 |406 |22426 |0 |0 |00EE00|0 |2 |0 |
+ROW |53455 |406 |22422 |0 |1 |0000EE|0 |2 |0 |
+ROW |53456 |406 |22408 |0 |2 |FFAA00|0 |2 |0 |
+ROW |53457 |406 |22424 |0 |3 |00EEEE|0 |2 |0 |
+ROW |53458 |406 |22412 |0 |4 |990099|0 |2 |0 |
+ROW |53459 |406 |22406 |0 |5 |EE0000|0 |2 |0 |
+ROW |53460 |406 |22414 |0 |6 |FF66FF|0 |2 |0 |
+ROW |53461 |406 |23663 |0 |7 |009999|0 |2 |0 |
+ROW |53462 |406 |25366 |0 |8 |BBBB00|0 |2 |0 |
+ROW |53463 |406 |25370 |0 |9 |AA0000|0 |2 |0 |
+ROW |53464 |406 |25665 |0 |10 |990000|0 |2 |0 |
+ROW |53465 |406 |25666 |0 |11 |008800|0 |2 |0 |
+ROW |53466 |406 |28535 |0 |12 |80B0E0|0 |2 |0 |
+ROW |53467 |406 |28537 |0 |13 |4080B0|0 |2 |0 |
+ROW |53468 |406 |29822 |0 |14 |8000FF|0 |2 |0 |
+ROW |53469 |517 |23268 |0 |0 |00EE00|0 |2 |0 |
+ROW |53470 |517 |23256 |0 |1 |0000EE|0 |2 |0 |
+ROW |53471 |517 |23258 |0 |2 |FFAA00|0 |2 |0 |
+ROW |53472 |517 |23252 |0 |3 |00EEEE|0 |2 |0 |
+ROW |53473 |517 |23253 |0 |4 |990099|0 |2 |0 |
+ROW |53474 |517 |23257 |0 |5 |EE0000|0 |2 |0 |
+ROW |53475 |517 |23266 |0 |6 |FF66FF|0 |2 |0 |
+ROW |53476 |517 |23664 |0 |7 |009999|0 |2 |0 |
+ROW |53477 |517 |25367 |0 |8 |BBBB00|0 |2 |0 |
+ROW |53478 |517 |25371 |0 |9 |AA0000|0 |2 |0 |
+ROW |53479 |517 |25667 |0 |10 |990000|0 |2 |0 |
+ROW |53480 |517 |25668 |0 |11 |008800|0 |2 |0 |
+ROW |53481 |517 |28536 |0 |12 |80B0E0|0 |2 |0 |
+ROW |53482 |517 |28538 |0 |13 |4080B0|0 |2 |0 |
+ROW |53483 |517 |29823 |0 |14 |8000FF|0 |2 |0 |
+ROW |53484 |788 |28248 |0 |0 |008800|0 |2 |0 |
+ROW |53485 |788 |28533 |0 |1 |EE0000|0 |2 |0 |
+ROW |53486 |789 |28249 |0 |0 |008800|0 |2 |0 |
+ROW |53487 |789 |28534 |0 |1 |EE0000|0 |2 |0 |
+ROW |53488 |392 |22187 |5 |0 |00C800|0 |2 |0 |
+ROW |53489 |392 |23251 |5 |1 |C80000|1 |2 |0 |
+ROW |53490 |519 |23277 |5 |0 |00C800|0 |2 |0 |
+ROW |53491 |519 |23272 |5 |1 |C80000|1 |2 |0 |
+ROW |53492 |472 |22945 |5 |0 |00AA00|0 |2 |0 |
+ROW |53493 |472 |22946 |5 |1 |3333FF|0 |2 |0 |
+ROW |53494 |473 |22950 |0 |0 |C80000|0 |2 |2 |
+ROW |53495 |473 |22948 |0 |1 |00C800|0 |2 |0 |
+ROW |53496 |471 |22924 |0 |0 |009900|0 |2 |0 |
+ROW |53497 |471 |22920 |0 |1 |000099|0 |2 |0 |
+ROW |53498 |469 |22922 |0 |0 |009900|0 |2 |0 |
+ROW |53499 |469 |22923 |0 |1 |000099|0 |2 |0 |
+ROW |53500 |469 |22921 |0 |2 |990000|0 |2 |0 |
+ROW |53501 |498 |23109 |0 |0 |009999|0 |2 |0 |
+ROW |53502 |498 |23112 |0 |1 |990099|0 |2 |0 |
+ROW |53503 |498 |23115 |0 |2 |999900|0 |2 |0 |
+ROW |53504 |498 |23113 |0 |3 |990000|0 |2 |0 |
+ROW |53505 |498 |23114 |0 |4 |000099|0 |2 |0 |
+ROW |53506 |498 |23110 |0 |5 |009900|0 |2 |0 |
+ROW |53507 |540 |22942 |5 |0 |00C800|0 |2 |0 |
+ROW |53508 |492 |23073 |5 |0 |00AA00|0 |2 |0 |
+ROW |53509 |492 |23074 |5 |1 |3333FF|0 |2 |0 |
+ROW |53510 |467 |22910 |0 |0 |C80000|0 |2 |2 |
+ROW |53511 |467 |22908 |0 |1 |00C800|0 |2 |0 |
+ROW |53512 |465 |22884 |0 |0 |009900|0 |2 |0 |
+ROW |53513 |465 |22880 |0 |1 |000099|0 |2 |0 |
+ROW |53514 |463 |22882 |0 |0 |009900|0 |2 |0 |
+ROW |53515 |463 |22883 |0 |1 |000099|0 |2 |0 |
+ROW |53516 |463 |22881 |0 |2 |990000|0 |2 |0 |
+ROW |53517 |462 |22886 |1 |0 |009999|0 |2 |0 |
+ROW |53518 |462 |22888 |1 |1 |990099|0 |2 |0 |
+ROW |53519 |462 |22891 |1 |2 |990000|0 |2 |0 |
+ROW |53520 |462 |22892 |1 |3 |000099|0 |2 |0 |
+ROW |53521 |462 |22885 |1 |4 |009900|0 |2 |0 |
+ROW |53522 |541 |22902 |5 |0 |00C800|0 |2 |0 |
+ROW |53523 |464 |22897 |0 |0 |AA0000|0 |2 |2 |
+ROW |53524 |464 |22895 |0 |1 |00AA00|0 |2 |0 |
+ROW |53525 |478 |22985 |5 |0 |00AA00|0 |2 |0 |
+ROW |53526 |478 |22986 |5 |1 |3333FF|0 |2 |0 |
+ROW |53527 |479 |22990 |0 |0 |C80000|0 |2 |2 |
+ROW |53528 |479 |22988 |0 |1 |00C800|0 |2 |0 |
+ROW |53529 |475 |22962 |0 |0 |009900|0 |2 |0 |
+ROW |53530 |475 |22963 |0 |1 |000099|0 |2 |0 |
+ROW |53531 |475 |22961 |0 |2 |990000|0 |2 |0 |
+ROW |53532 |474 |22968 |1 |0 |990099|0 |2 |0 |
+ROW |53533 |474 |22971 |1 |1 |990000|0 |2 |0 |
+ROW |53534 |474 |22972 |1 |2 |000099|0 |2 |0 |
+ROW |53535 |474 |22965 |1 |3 |009900|0 |2 |0 |
+ROW |53536 |542 |22982 |5 |0 |00C800|0 |2 |0 |
+ROW |53537 |491 |23070 |0 |0 |C80000|0 |2 |2 |
+ROW |53538 |491 |23068 |0 |1 |00C800|0 |2 |0 |
+ROW |53539 |487 |23042 |0 |0 |009900|0 |2 |0 |
+ROW |53540 |487 |23043 |0 |1 |000099|0 |2 |0 |
+ROW |53541 |487 |23041 |0 |2 |990000|0 |2 |0 |
+ROW |53542 |543 |23062 |5 |0 |00C800|0 |2 |0 |
+ROW |53543 |494 |23077 |5 |0 |00AA00|0 |2 |0 |
+ROW |53544 |494 |23078 |5 |1 |3333FF|0 |2 |0 |
+ROW |53545 |493 |23075 |5 |0 |00AA00|0 |2 |0 |
+ROW |53546 |493 |23076 |5 |1 |3333FF|0 |2 |0 |
+ROW |53547 |461 |22870 |0 |0 |C80000|0 |2 |2 |
+ROW |53548 |461 |22868 |0 |1 |00C800|0 |2 |0 |
+ROW |53549 |459 |22844 |0 |0 |009900|0 |2 |0 |
+ROW |53550 |459 |22840 |0 |1 |000099|0 |2 |0 |
+ROW |53551 |457 |22842 |0 |0 |009900|0 |2 |0 |
+ROW |53552 |457 |22843 |0 |1 |000099|0 |2 |0 |
+ROW |53553 |457 |22841 |0 |2 |990000|0 |2 |0 |
+ROW |53554 |456 |22846 |1 |0 |009999|0 |2 |0 |
+ROW |53555 |456 |22848 |1 |1 |990099|0 |2 |0 |
+ROW |53556 |456 |22851 |1 |2 |990000|0 |2 |0 |
+ROW |53557 |456 |22852 |1 |3 |000099|0 |2 |0 |
+ROW |53558 |456 |22845 |1 |4 |009900|0 |2 |0 |
+ROW |53559 |544 |22862 |5 |0 |00C800|0 |2 |0 |
+ROW |53560 |458 |22857 |0 |0 |AA0000|0 |2 |2 |
+ROW |53561 |458 |22855 |0 |1 |00AA00|0 |2 |0 |
+ROW |53562 |484 |23025 |5 |0 |00AA00|0 |2 |0 |
+ROW |53563 |484 |23026 |5 |1 |3333FF|0 |2 |0 |
+ROW |53564 |485 |23030 |0 |0 |C80000|0 |2 |2 |
+ROW |53565 |485 |23028 |0 |1 |00C800|0 |2 |0 |
+ROW |53566 |483 |23004 |0 |0 |009900|0 |2 |0 |
+ROW |53567 |483 |23000 |0 |1 |000099|0 |2 |0 |
+ROW |53568 |481 |23002 |0 |0 |009900|0 |2 |0 |
+ROW |53569 |481 |23003 |0 |1 |000099|0 |2 |0 |
+ROW |53570 |481 |23001 |0 |2 |990000|0 |2 |0 |
+ROW |53571 |480 |23007 |1 |0 |999900|0 |2 |0 |
+ROW |53572 |480 |23011 |1 |1 |990000|0 |2 |0 |
+ROW |53573 |480 |23012 |1 |2 |000099|0 |2 |0 |
+ROW |53574 |480 |23005 |1 |3 |009900|0 |2 |0 |
+ROW |53575 |545 |23022 |5 |0 |00C800|0 |2 |0 |
+ROW |53576 |482 |23017 |0 |0 |AA0000|0 |2 |2 |
+ROW |53577 |482 |23015 |0 |1 |00AA00|0 |2 |0 |
+ROW |53578 |651 |26928 |5 |0 |EE0000|0 |2 |0 |
+ROW |53579 |651 |26927 |0 |1 |000000|1 |2 |0 |
+ROW |53580 |652 |26925 |2 |0 |880000|0 |2 |0 |
+ROW |53581 |652 |26932 |0 |1 |009900|0 |2 |0 |
+ROW |53582 |652 |26930 |0 |2 |00CCCC|0 |2 |0 |
+ROW |53583 |652 |26931 |0 |3 |000000|0 |2 |0 |
+ROW |53584 |652 |26929 |0 |4 |3333FF|0 |2 |0 |
+ROW |53585 |652 |26926 |0 |5 |777700|0 |2 |0 |
+ROW |53586 |653 |26933 |2 |0 |EE0000|0 |2 |0 |
+ROW |53587 |653 |26943 |2 |1 |EE00EE|0 |2 |0 |
+ROW |53588 |653 |26935 |0 |2 |000000|1 |2 |0 |
+ROW |53589 |653 |26936 |4 |3 |000000|1 |2 |0 |
+ROW |53590 |654 |26934 |2 |0 |880000|0 |2 |0 |
+ROW |53591 |654 |26939 |0 |1 |009900|0 |2 |0 |
+ROW |53592 |654 |26942 |0 |2 |00CCCC|0 |2 |0 |
+ROW |53593 |654 |26938 |0 |3 |000000|0 |2 |0 |
+ROW |53594 |654 |26937 |0 |4 |3333FF|0 |2 |0 |
+ROW |53595 |1326 |32292 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53596 |1326 |32291 |0 |1 |2774A4|0 |2 |0 |
+ROW |53597 |1326 |32278 |0 |2 |F63100|0 |2 |0 |
+ROW |53598 |1326 |32277 |0 |3 |A54F10|0 |2 |0 |
+ROW |53599 |1327 |32304 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53600 |1327 |32289 |0 |1 |2774A4|0 |2 |0 |
+ROW |53601 |1328 |32259 |2 |0 |1A7C11|0 |2 |0 |
+ROW |53602 |1328 |32260 |2 |1 |2774A4|0 |2 |0 |
+ROW |53603 |1329 |32268 |2 |0 |1A7C11|0 |2 |0 |
+ROW |53604 |1329 |32264 |2 |1 |2774A4|0 |2 |0 |
+ROW |53605 |1330 |32261 |2 |0 |1A7C11|0 |2 |0 |
+ROW |53606 |1330 |32265 |2 |1 |2774A4|0 |2 |0 |
+ROW |53607 |1330 |32262 |0 |2 |F63100|0 |2 |0 |
+ROW |53608 |1330 |32263 |0 |3 |A54F10|0 |2 |0 |
+ROW |53609 |1330 |32266 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53610 |1330 |32267 |0 |5 |6C59DC|0 |2 |0 |
+ROW |53611 |1331 |32272 |2 |0 |1A7C11|0 |2 |0 |
+ROW |53612 |1331 |32271 |2 |1 |2774A4|0 |2 |0 |
+ROW |53613 |1332 |32256 |2 |0 |1A7C11|0 |2 |0 |
+ROW |53614 |1332 |32242 |2 |1 |2774A4|0 |2 |0 |
+ROW |53615 |1333 |32273 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53616 |1333 |32238 |0 |1 |2774A4|0 |2 |0 |
+ROW |53617 |1334 |32245 |2 |0 |1A7C11|0 |2 |0 |
+ROW |53618 |1334 |32250 |2 |1 |2774A4|0 |2 |0 |
+ROW |53619 |1334 |32246 |0 |2 |F63100|0 |2 |0 |
+ROW |53620 |1334 |32247 |0 |3 |A54F10|0 |2 |0 |
+ROW |53621 |1334 |32251 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53622 |1334 |32252 |0 |5 |6C59DC|0 |2 |0 |
+ROW |53623 |1159 |30886 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53624 |1159 |30887 |0 |1 |2774A4|0 |2 |0 |
+ROW |53625 |1160 |30888 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53626 |1160 |30882 |0 |1 |2774A4|0 |2 |0 |
+ROW |53627 |1160 |30890 |0 |2 |F63100|0 |2 |0 |
+ROW |53628 |1160 |30881 |0 |3 |A54F10|0 |2 |0 |
+ROW |53629 |1160 |30889 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53630 |1161 |30847 |2 |0 |1A7C11|0 |2 |0 |
+ROW |53631 |1161 |30872 |2 |1 |2774A4|0 |2 |0 |
+ROW |53632 |1162 |30853 |2 |0 |1A7C11|0 |2 |0 |
+ROW |53633 |1162 |30849 |2 |1 |2774A4|0 |2 |0 |
+ROW |53634 |1162 |30852 |2 |2 |F63100|0 |2 |0 |
+ROW |53635 |1162 |30851 |2 |3 |A54F10|0 |2 |0 |
+ROW |53636 |1162 |30848 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |53637 |1163 |30856 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53638 |1163 |30855 |0 |1 |2774A4|0 |2 |0 |
+ROW |53639 |1163 |30854 |2 |2 |F63100|1 |2 |0 |
+ROW |53640 |1164 |30859 |2 |0 |1A7C11|0 |2 |0 |
+ROW |53641 |1164 |30870 |2 |1 |2774A4|0 |2 |0 |
+ROW |53642 |1165 |30860 |2 |0 |1A7C11|0 |2 |0 |
+ROW |53643 |1165 |30871 |2 |1 |2774A4|0 |2 |0 |
+ROW |53644 |1166 |30868 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53645 |1166 |30869 |0 |1 |2774A4|0 |2 |0 |
+ROW |53646 |1166 |30867 |0 |2 |F63100|0 |2 |0 |
+ROW |53647 |1166 |30866 |0 |3 |A54F10|0 |2 |0 |
+ROW |53648 |1166 |30865 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53649 |1167 |30850 |5 |0 |1A7C11|0 |2 |0 |
+ROW |53650 |1167 |30863 |5 |1 |2774A4|0 |2 |0 |
+ROW |53651 |1167 |30861 |5 |2 |F63100|0 |2 |0 |
+ROW |53652 |1168 |30833 |2 |0 |1A7C11|0 |2 |0 |
+ROW |53653 |1168 |30841 |2 |1 |2774A4|0 |2 |0 |
+ROW |53654 |1168 |30857 |2 |2 |F63100|0 |2 |0 |
+ROW |53655 |1169 |30834 |2 |0 |1A7C11|0 |2 |0 |
+ROW |53656 |1169 |30831 |2 |1 |2774A4|0 |2 |0 |
+ROW |53657 |1170 |30846 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53658 |1488 |30840 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53659 |1488 |30845 |0 |1 |2774A4|0 |2 |0 |
+ROW |53660 |1488 |30842 |0 |2 |F63100|0 |2 |0 |
+ROW |53661 |1488 |30873 |2 |3 |A54F10|1 |2 |0 |
+ROW |53662 |1390 |32665 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53663 |1390 |32668 |0 |1 |2774A4|0 |2 |0 |
+ROW |53664 |1390 |32666 |0 |2 |F63100|0 |2 |0 |
+ROW |53665 |1390 |32667 |0 |3 |A54F10|0 |2 |0 |
+ROW |53666 |1391 |32674 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53667 |1391 |32673 |0 |1 |2774A4|0 |2 |0 |
+ROW |53668 |1391 |32672 |0 |2 |F63100|0 |2 |0 |
+ROW |53669 |1392 |32677 |2 |0 |1A7C11|0 |2 |0 |
+ROW |53670 |1392 |32686 |0 |1 |2774A4|0 |2 |0 |
+ROW |53671 |1393 |32681 |2 |0 |1A7C11|0 |2 |0 |
+ROW |53672 |1393 |32682 |0 |1 |2774A4|0 |2 |0 |
+ROW |53673 |1394 |32687 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53674 |1394 |32692 |0 |1 |2774A4|0 |2 |0 |
+ROW |53675 |1394 |32690 |0 |2 |F63100|0 |2 |0 |
+ROW |53676 |1394 |32688 |0 |3 |A54F10|0 |2 |0 |
+ROW |53677 |1395 |32694 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53678 |1395 |32696 |0 |1 |2774A4|0 |2 |0 |
+ROW |53679 |1395 |32695 |0 |2 |F63100|0 |2 |0 |
+ROW |53680 |1396 |32708 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53681 |1396 |32706 |0 |1 |2774A4|0 |2 |0 |
+ROW |53682 |1397 |32715 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53683 |1397 |32716 |0 |1 |2774A4|0 |2 |0 |
+ROW |53684 |1398 |32718 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53685 |1398 |32720 |0 |1 |2774A4|0 |2 |0 |
+ROW |53686 |1399 |32721 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53687 |1399 |32719 |0 |1 |2774A4|0 |2 |0 |
+ROW |53688 |1400 |32723 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53689 |1400 |32724 |0 |1 |2774A4|0 |2 |0 |
+ROW |53690 |1401 |32722 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53691 |1401 |32725 |0 |1 |2774A4|0 |2 |0 |
+ROW |53692 |1401 |32726 |0 |2 |F63100|0 |2 |0 |
+ROW |53693 |1402 |32728 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53694 |1402 |32729 |0 |1 |2774A4|0 |2 |0 |
+ROW |53695 |1439 |33072 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53696 |1439 |33092 |0 |1 |2774A4|0 |2 |0 |
+ROW |53697 |1440 |33073 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53698 |1440 |33069 |0 |1 |2774A4|0 |2 |0 |
+ROW |53699 |1441 |33079 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53700 |1441 |33084 |0 |1 |2774A4|0 |2 |0 |
+ROW |53701 |1441 |33082 |0 |2 |F63100|0 |2 |0 |
+ROW |53702 |1441 |33074 |0 |3 |A54F10|0 |2 |0 |
+ROW |53703 |1441 |33078 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53704 |1441 |33086 |0 |5 |6C59DC|0 |2 |0 |
+ROW |53705 |1441 |33076 |2 |6 |AC8C14|0 |2 |0 |
+ROW |53706 |1442 |33081 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53707 |1442 |33085 |0 |1 |2774A4|0 |2 |0 |
+ROW |53708 |1442 |33083 |0 |2 |F63100|0 |2 |0 |
+ROW |53709 |1442 |33075 |0 |3 |A54F10|0 |2 |0 |
+ROW |53710 |1442 |33068 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53711 |1442 |33087 |0 |5 |6C59DC|0 |2 |0 |
+ROW |53712 |1442 |33077 |2 |6 |AC8C14|0 |2 |0 |
+ROW |53713 |1443 |33093 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53714 |1443 |33098 |0 |1 |2774A4|0 |2 |0 |
+ROW |53715 |1444 |33097 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53716 |1444 |33100 |0 |1 |2774A4|0 |2 |0 |
+ROW |53717 |1444 |33096 |0 |2 |F63100|0 |2 |0 |
+ROW |53718 |1444 |33094 |0 |3 |A54F10|0 |2 |0 |
+ROW |53719 |1445 |33116 |2 |0 |1A7C11|0 |2 |0 |
+ROW |53720 |1446 |33045 |2 |0 |1A7C11|0 |2 |0 |
+ROW |53721 |1446 |33044 |0 |1 |2774A4|0 |2 |0 |
+ROW |53722 |1446 |33046 |0 |2 |F63100|0 |2 |0 |
+ROW |53723 |1447 |33055 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53724 |1447 |33023 |0 |1 |2774A4|0 |2 |0 |
+ROW |53725 |1448 |33053 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53726 |1448 |33052 |0 |1 |2774A4|0 |2 |0 |
+ROW |53727 |1448 |33054 |0 |2 |F63100|0 |2 |0 |
+ROW |53728 |1449 |33051 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53729 |1449 |33059 |0 |1 |2774A4|0 |2 |0 |
+ROW |53730 |1449 |33027 |0 |2 |F63100|0 |2 |0 |
+ROW |53731 |1450 |33022 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53732 |1450 |33040 |0 |1 |2774A4|0 |2 |0 |
+ROW |53733 |1450 |33042 |0 |2 |F63100|0 |2 |0 |
+ROW |53734 |1450 |33043 |0 |3 |A54F10|0 |2 |0 |
+ROW |53735 |1451 |33038 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53736 |1451 |33025 |0 |1 |2774A4|0 |2 |0 |
+ROW |53737 |1451 |33026 |0 |2 |F63100|0 |2 |0 |
+ROW |53738 |1451 |33024 |0 |3 |A54F10|0 |2 |0 |
+ROW |53739 |1452 |33029 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53740 |1452 |33028 |0 |1 |2774A4|0 |2 |0 |
+ROW |53741 |1453 |33035 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53742 |1453 |33034 |0 |1 |2774A4|0 |2 |0 |
+ROW |53743 |1453 |33033 |0 |2 |F63100|0 |2 |0 |
+ROW |53744 |1453 |33036 |0 |3 |A54F10|0 |2 |0 |
+ROW |53745 |1453 |33030 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53746 |1453 |33031 |0 |5 |6C59DC|0 |2 |0 |
+ROW |53747 |1454 |33057 |2 |0 |1A7C11|0 |2 |0 |
+ROW |53748 |1454 |33056 |2 |1 |2774A4|0 |2 |0 |
+ROW |53749 |1454 |33058 |2 |2 |F63100|0 |2 |0 |
+ROW |53750 |1455 |33190 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53751 |1455 |33193 |0 |1 |2774A4|0 |2 |0 |
+ROW |53752 |1455 |33189 |0 |2 |F63100|0 |2 |0 |
+ROW |53753 |1455 |33187 |0 |3 |A54F10|0 |2 |0 |
+ROW |53754 |1456 |33158 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53755 |1456 |33168 |0 |1 |2774A4|0 |2 |0 |
+ROW |53756 |1456 |33169 |0 |2 |F63100|0 |2 |0 |
+ROW |53757 |1456 |33167 |0 |3 |A54F10|0 |2 |0 |
+ROW |53758 |1456 |33171 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53759 |1457 |33165 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53760 |1457 |33166 |0 |1 |2774A4|0 |2 |0 |
+ROW |53761 |1457 |33164 |0 |2 |F63100|0 |2 |0 |
+ROW |53762 |1457 |33163 |2 |3 |A54F10|1 |2 |0 |
+ROW |53763 |1458 |33161 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53764 |1458 |33162 |0 |1 |2774A4|0 |2 |0 |
+ROW |53765 |1458 |33155 |0 |2 |F63100|0 |2 |0 |
+ROW |53766 |1459 |33146 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53767 |1459 |33145 |0 |1 |2774A4|0 |2 |0 |
+ROW |53768 |1460 |33152 |2 |0 |1A7C11|0 |2 |0 |
+ROW |53769 |1460 |33151 |2 |1 |2774A4|0 |2 |0 |
+ROW |53770 |1460 |33148 |2 |2 |F63100|0 |2 |0 |
+ROW |53771 |1460 |33153 |2 |3 |A54F10|0 |2 |0 |
+ROW |53772 |1460 |33149 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |53773 |1460 |33144 |2 |5 |6C59DC|0 |2 |0 |
+ROW |53774 |1190 |31140 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53775 |1190 |31141 |0 |1 |2774A4|0 |2 |0 |
+ROW |53776 |1261 |31145 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53777 |1261 |31146 |0 |1 |2774A4|0 |2 |0 |
+ROW |53778 |1261 |31147 |0 |2 |F63100|0 |2 |0 |
+ROW |53779 |1191 |31138 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53780 |1192 |31157 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53781 |1192 |31158 |0 |1 |2774A4|0 |2 |0 |
+ROW |53782 |1193 |31092 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53783 |1193 |31108 |0 |1 |2774A4|0 |2 |0 |
+ROW |53784 |1193 |31110 |0 |2 |F63100|0 |2 |0 |
+ROW |53785 |1193 |31067 |0 |3 |A54F10|0 |2 |0 |
+ROW |53786 |1193 |31086 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53787 |1193 |31087 |0 |5 |6C59DC|0 |2 |0 |
+ROW |53788 |1194 |31120 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53789 |1194 |31105 |0 |1 |2774A4|0 |2 |0 |
+ROW |53790 |1194 |31071 |0 |2 |F63100|0 |2 |0 |
+ROW |53791 |1194 |31081 |0 |3 |A54F10|0 |2 |0 |
+ROW |53792 |1195 |31098 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53793 |1195 |31099 |0 |1 |2774A4|0 |2 |0 |
+ROW |53794 |1196 |31072 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53795 |1196 |31072 |0 |1 |2774A4|0 |2 |0 |
+ROW |53796 |1197 |31103 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53797 |1197 |31074 |0 |1 |2774A4|0 |2 |0 |
+ROW |53798 |1198 |31104 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53799 |1198 |31063 |0 |1 |2774A4|0 |2 |0 |
+ROW |53800 |1198 |31111 |0 |2 |F63100|0 |2 |0 |
+ROW |53801 |1198 |31112 |0 |3 |A54F10|0 |2 |0 |
+ROW |53802 |1198 |31084 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53803 |1199 |31115 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53804 |1199 |31116 |0 |1 |2774A4|0 |2 |0 |
+ROW |53805 |1199 |31062 |0 |2 |F63100|0 |2 |0 |
+ROW |53806 |1199 |31118 |0 |3 |A54F10|0 |2 |0 |
+ROW |53807 |1199 |31056 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53808 |1200 |31107 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53809 |1200 |31090 |0 |1 |2774A4|0 |2 |0 |
+ROW |53810 |1201 |31097 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53811 |1201 |31096 |0 |1 |2774A4|0 |2 |0 |
+ROW |53812 |1202 |31089 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53813 |1202 |31061 |0 |1 |2774A4|0 |2 |0 |
+ROW |53814 |1203 |31064 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53815 |1204 |31065 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53816 |1204 |31066 |0 |1 |2774A4|0 |2 |0 |
+ROW |53817 |1204 |31068 |0 |2 |F63100|0 |2 |0 |
+ROW |53818 |1204 |31070 |0 |3 |A54F10|0 |2 |0 |
+ROW |53819 |1204 |31101 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53820 |1204 |31106 |0 |5 |6C59DC|0 |2 |0 |
+ROW |53821 |1204 |31114 |0 |6 |AC8C14|0 |2 |0 |
+ROW |53822 |1205 |31069 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53823 |1206 |31076 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53824 |1206 |31078 |0 |1 |2774A4|0 |2 |0 |
+ROW |53825 |1206 |31109 |0 |2 |F63100|0 |2 |0 |
+ROW |53826 |1206 |31075 |0 |3 |A54F10|0 |2 |0 |
+ROW |53827 |1207 |31080 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53828 |1207 |31095 |0 |1 |2774A4|0 |2 |0 |
+ROW |53829 |1208 |31113 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53830 |1208 |31118 |0 |1 |2774A4|0 |2 |0 |
+ROW |53831 |1209 |31058 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53832 |1209 |31077 |0 |1 |2774A4|0 |2 |0 |
+ROW |53833 |1209 |31056 |0 |2 |F63100|0 |2 |0 |
+ROW |53834 |1209 |31117 |0 |3 |A54F10|0 |2 |0 |
+ROW |53835 |1109 |30453 |5 |0 |1A7C11|0 |2 |0 |
+ROW |53836 |1109 |30455 |5 |1 |2774A4|0 |2 |0 |
+ROW |53837 |1110 |30471 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53838 |1110 |30470 |0 |1 |2774A4|0 |2 |0 |
+ROW |53839 |1110 |30466 |0 |2 |F63100|0 |2 |0 |
+ROW |53840 |1110 |30441 |0 |3 |A54F10|0 |2 |0 |
+ROW |53841 |1111 |30463 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53842 |1111 |30452 |0 |1 |2774A4|0 |2 |0 |
+ROW |53843 |1111 |30451 |0 |2 |F63100|0 |2 |0 |
+ROW |53844 |1111 |30437 |0 |3 |A54F10|0 |2 |0 |
+ROW |53845 |1112 |30456 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53846 |1112 |30457 |0 |1 |2774A4|0 |2 |0 |
+ROW |53847 |1112 |30458 |0 |2 |F63100|0 |2 |0 |
+ROW |53848 |1112 |30459 |0 |3 |A54F10|0 |2 |0 |
+ROW |53849 |1113 |30442 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53850 |1113 |30444 |0 |1 |2774A4|0 |2 |0 |
+ROW |53851 |1113 |30445 |0 |2 |F63100|0 |2 |0 |
+ROW |53852 |1114 |30446 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53853 |1114 |30447 |0 |1 |2774A4|0 |2 |0 |
+ROW |53854 |1114 |31168 |0 |2 |F63100|0 |2 |0 |
+ROW |53855 |1114 |30449 |0 |3 |A54F10|0 |2 |0 |
+ROW |53856 |1136 |30659 |5 |0 |1A7C11|0 |2 |0 |
+ROW |53857 |1136 |30661 |5 |1 |2774A4|0 |2 |0 |
+ROW |53858 |1137 |30677 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53859 |1137 |30676 |0 |1 |2774A4|0 |2 |0 |
+ROW |53860 |1137 |30672 |0 |2 |F63100|0 |2 |0 |
+ROW |53861 |1137 |30647 |0 |3 |A54F10|0 |2 |0 |
+ROW |53862 |1138 |30669 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53863 |1138 |30658 |0 |1 |2774A4|0 |2 |0 |
+ROW |53864 |1138 |30657 |0 |2 |F63100|0 |2 |0 |
+ROW |53865 |1138 |30643 |0 |3 |A54F10|0 |2 |0 |
+ROW |53866 |1139 |30662 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53867 |1139 |30663 |0 |1 |2774A4|0 |2 |0 |
+ROW |53868 |1139 |30664 |0 |2 |F63100|0 |2 |0 |
+ROW |53869 |1139 |30665 |0 |3 |A54F10|0 |2 |0 |
+ROW |53870 |1140 |30648 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53871 |1140 |30650 |0 |1 |2774A4|0 |2 |0 |
+ROW |53872 |1140 |30651 |0 |2 |F63100|0 |2 |0 |
+ROW |53873 |1141 |30652 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53874 |1141 |30653 |0 |1 |2774A4|0 |2 |0 |
+ROW |53875 |1141 |31172 |0 |2 |F63100|0 |2 |0 |
+ROW |53876 |1141 |30655 |0 |3 |A54F10|0 |2 |0 |
+ROW |53877 |1115 |30506 |5 |0 |1A7C11|0 |2 |0 |
+ROW |53878 |1115 |30507 |5 |1 |2774A4|0 |2 |0 |
+ROW |53879 |1116 |30504 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53880 |1116 |30505 |0 |1 |2774A4|0 |2 |0 |
+ROW |53881 |1116 |30518 |0 |2 |F63100|0 |2 |0 |
+ROW |53882 |1116 |30492 |0 |3 |A54F10|0 |2 |0 |
+ROW |53883 |1117 |30493 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53884 |1117 |30500 |0 |1 |2774A4|0 |2 |0 |
+ROW |53885 |1117 |30486 |0 |2 |F63100|0 |2 |0 |
+ROW |53886 |1117 |30488 |0 |3 |A54F10|0 |2 |0 |
+ROW |53887 |1118 |30508 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53888 |1118 |30509 |0 |1 |2774A4|0 |2 |0 |
+ROW |53889 |1118 |30503 |0 |2 |F63100|0 |2 |0 |
+ROW |53890 |1118 |30510 |0 |3 |A54F10|0 |2 |0 |
+ROW |53891 |1119 |30491 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53892 |1119 |30494 |0 |1 |2774A4|0 |2 |0 |
+ROW |53893 |1119 |30495 |0 |2 |F63100|0 |2 |0 |
+ROW |53894 |1120 |30496 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53895 |1120 |30497 |0 |1 |2774A4|0 |2 |0 |
+ROW |53896 |1120 |31176 |0 |2 |F63100|0 |2 |0 |
+ROW |53897 |1120 |30499 |0 |3 |A54F10|0 |2 |0 |
+ROW |53898 |1262 |31718 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53899 |1262 |31719 |0 |1 |2774A4|0 |2 |0 |
+ROW |53900 |1263 |31722 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53901 |1263 |31724 |0 |1 |2774A4|0 |2 |0 |
+ROW |53902 |1263 |32588 |0 |2 |F63100|0 |2 |0 |
+ROW |53903 |1264 |31630 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53904 |1264 |31683 |0 |1 |2774A4|0 |2 |0 |
+ROW |53905 |1265 |31668 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53906 |1265 |31702 |0 |1 |2774A4|0 |2 |0 |
+ROW |53907 |1265 |31666 |0 |2 |F63100|0 |2 |0 |
+ROW |53908 |1266 |31673 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53909 |1266 |31704 |0 |1 |2774A4|0 |2 |0 |
+ROW |53910 |1267 |31690 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53911 |1267 |31672 |0 |1 |2774A4|0 |2 |0 |
+ROW |53912 |1268 |31632 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53913 |1268 |31655 |0 |1 |2774A4|0 |2 |0 |
+ROW |53914 |1269 |31650 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53915 |1269 |31648 |0 |1 |2774A4|0 |2 |0 |
+ROW |53916 |1269 |31651 |0 |2 |F63100|0 |2 |0 |
+ROW |53917 |1269 |31646 |0 |3 |A54F10|0 |2 |0 |
+ROW |53918 |1269 |31653 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53919 |1270 |31660 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53920 |1270 |31671 |0 |1 |2774A4|0 |2 |0 |
+ROW |53921 |1270 |31662 |0 |2 |F63100|0 |2 |0 |
+ROW |53922 |1270 |31661 |0 |3 |A54F10|0 |2 |0 |
+ROW |53923 |1270 |31659 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53924 |1270 |31658 |0 |5 |6C59DC|0 |2 |0 |
+ROW |53925 |1237 |31442 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53926 |1237 |31443 |0 |1 |2774A4|0 |2 |0 |
+ROW |53927 |1238 |31786 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53928 |1238 |31451 |0 |1 |2774A4|0 |2 |0 |
+ROW |53929 |1238 |32590 |0 |2 |F63100|0 |2 |0 |
+ROW |53930 |1271 |31770 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53931 |1271 |31771 |0 |1 |2774A4|0 |2 |0 |
+ROW |53932 |1272 |31755 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53933 |1272 |31774 |0 |1 |2774A4|0 |2 |0 |
+ROW |53934 |1272 |31753 |0 |2 |F63100|0 |2 |0 |
+ROW |53935 |1273 |31730 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53936 |1273 |31759 |0 |1 |2774A4|0 |2 |0 |
+ROW |53937 |1274 |31745 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53938 |1274 |31758 |0 |1 |2774A4|0 |2 |0 |
+ROW |53939 |1275 |31731 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53940 |1275 |31732 |0 |1 |2774A4|0 |2 |0 |
+ROW |53941 |1276 |31739 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53942 |1276 |31736 |0 |1 |2774A4|0 |2 |0 |
+ROW |53943 |1276 |31740 |0 |2 |F63100|0 |2 |0 |
+ROW |53944 |1276 |31737 |0 |3 |A54F10|0 |2 |0 |
+ROW |53945 |1276 |31741 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53946 |1277 |31746 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53947 |1277 |31747 |0 |1 |2774A4|0 |2 |0 |
+ROW |53948 |1277 |31749 |0 |2 |F63100|0 |2 |0 |
+ROW |53949 |1277 |31748 |0 |3 |A54F10|0 |2 |0 |
+ROW |53950 |1277 |31757 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53951 |1277 |31744 |0 |5 |6C59DC|0 |2 |0 |
+ROW |53952 |814 |28730 |0 |0 |66BB6A|0 |2 |0 |
+ROW |53953 |814 |28728 |0 |1 |42A5F5|0 |2 |0 |
+ROW |53954 |815 |28712 |0 |0 |66BB6A|0 |2 |0 |
+ROW |53955 |816 |28733 |5 |0 |1A7C11|0 |2 |0 |
+ROW |53956 |816 |28715 |0 |1 |F63100|0 |2 |0 |
+ROW |53957 |816 |28729 |0 |2 |2774A4|0 |2 |0 |
+ROW |53958 |816 |28732 |0 |3 |A54F10|0 |2 |0 |
+ROW |53959 |817 |28716 |0 |0 |EC407A|0 |2 |0 |
+ROW |53960 |818 |28726 |0 |0 |4CAF50|1 |2 |0 |
+ROW |53961 |818 |28723 |0 |1 |03A9F4|1 |2 |0 |
+ROW |53962 |818 |28720 |0 |2 |9C27B0|1 |2 |0 |
+ROW |53963 |818 |28725 |5 |3 |81C784|0 |2 |0 |
+ROW |53964 |818 |28722 |5 |4 |90CAF9|0 |2 |0 |
+ROW |53965 |818 |28719 |5 |5 |CE93D8|0 |2 |0 |
+ROW |53966 |819 |28727 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53967 |819 |28724 |0 |1 |F63100|0 |2 |0 |
+ROW |53968 |819 |28721 |0 |2 |2774A4|0 |2 |0 |
+ROW |53969 |820 |28740 |5 |0 |66BB6A|0 |2 |0 |
+ROW |53970 |820 |28739 |0 |1 |42A5F5|1 |2 |0 |
+ROW |53971 |821 |28738 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53972 |821 |28737 |0 |1 |F63100|0 |2 |0 |
+ROW |53973 |821 |28736 |0 |2 |2774A4|0 |2 |0 |
+ROW |53974 |821 |28735 |0 |3 |A54F10|0 |2 |0 |
+ROW |53975 |821 |28734 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53976 |822 |28693 |0 |0 |1A7C11|1 |2 |0 |
+ROW |53977 |822 |28698 |0 |1 |F63100|1 |2 |0 |
+ROW |53978 |822 |28694 |0 |2 |2774A4|1 |2 |0 |
+ROW |53979 |822 |28697 |0 |3 |A54F10|1 |2 |0 |
+ROW |53980 |822 |28702 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |53981 |822 |28696 |0 |5 |6C59DC|0 |2 |0 |
+ROW |53982 |823 |28700 |0 |0 |1A7C11|0 |2 |0 |
+ROW |53983 |823 |28699 |0 |1 |F63100|0 |2 |0 |
+ROW |53984 |823 |28701 |0 |2 |2774A4|1 |2 |0 |
+ROW |53985 |823 |28695 |0 |3 |A54F10|1 |2 |0 |
+ROW |53986 |824 |28708 |5 |0 |C8E6C9|1 |2 |0 |
+ROW |53987 |824 |28709 |0 |1 |6C59DC|0 |2 |0 |
+ROW |53988 |824 |28704 |0 |2 |1A7C11|1 |2 |0 |
+ROW |53989 |824 |28705 |0 |3 |F63100|1 |2 |0 |
+ROW |53990 |824 |28706 |0 |4 |2774A4|1 |2 |0 |
+ROW |53991 |824 |28707 |0 |5 |A54F10|1 |2 |0 |
+ROW |53992 |824 |28703 |0 |6 |AC8C14|1 |2 |0 |
+ROW |53993 |825 |28674 |5 |1 |A5D6A7|0 |2 |0 |
+ROW |53994 |825 |28673 |0 |2 |039BE5|1 |2 |0 |
+ROW |53995 |826 |28677 |0 |0 |42A5F5|0 |2 |0 |
+ROW |53996 |827 |28689 |0 |0 |1A7C11|1 |2 |0 |
+ROW |53997 |827 |28688 |0 |1 |F63100|1 |2 |0 |
+ROW |53998 |827 |28690 |0 |2 |2774A4|1 |2 |0 |
+ROW |53999 |827 |28691 |0 |3 |A54F10|1 |2 |0 |
+ROW |54000 |828 |28684 |0 |0 |66BB6A|0 |2 |0 |
+ROW |54001 |828 |28681 |0 |1 |03A9F4|1 |2 |0 |
+ROW |54002 |829 |28710 |0 |0 |29B6F6|0 |2 |0 |
+ROW |54003 |829 |28692 |0 |1 |AB47BC|1 |2 |0 |
+ROW |54004 |1210 |31269 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54005 |1210 |31252 |0 |1 |2774A4|0 |2 |0 |
+ROW |54006 |1210 |31251 |0 |2 |F63100|0 |2 |0 |
+ROW |54007 |1210 |31250 |0 |3 |A54F10|0 |2 |0 |
+ROW |54008 |1210 |31249 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54009 |1210 |31248 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54010 |1210 |31246 |0 |6 |AC8C14|0 |2 |0 |
+ROW |54011 |1210 |31245 |0 |7 |611F27|0 |2 |0 |
+ROW |54012 |1210 |31247 |0 |8 |F230E0|0 |2 |0 |
+ROW |54013 |1210 |31247 |0 |9 |FFAD40|0 |2 |0 |
+ROW |54014 |1211 |31243 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54015 |1212 |31266 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54016 |1212 |31265 |0 |1 |2774A4|0 |2 |0 |
+ROW |54017 |1212 |31263 |0 |2 |F63100|0 |2 |0 |
+ROW |54018 |1212 |31262 |0 |3 |A54F10|0 |2 |0 |
+ROW |54019 |1212 |31260 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54020 |1212 |31259 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54021 |1212 |31258 |0 |6 |AC8C14|0 |2 |0 |
+ROW |54022 |1212 |31256 |0 |7 |611F27|0 |2 |0 |
+ROW |54023 |1212 |31257 |0 |8 |F230E0|0 |2 |0 |
+ROW |54024 |1212 |31244 |0 |9 |FFAD40|0 |2 |0 |
+ROW |54025 |1212 |31255 |0 |10 |40CDFF|0 |2 |0 |
+ROW |54026 |1212 |31254 |0 |11 |40FFA0|0 |2 |0 |
+ROW |54027 |1212 |31253 |0 |12 |AE4500|0 |2 |0 |
+ROW |54028 |1213 |31242 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54029 |1386 |32598 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54030 |1386 |32599 |0 |1 |2774A4|0 |2 |0 |
+ROW |54031 |1386 |32600 |0 |2 |F63100|0 |2 |0 |
+ROW |54032 |1087 |30346 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54033 |1087 |30345 |0 |1 |2774A4|0 |2 |0 |
+ROW |54034 |1088 |30350 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54035 |1088 |30349 |5 |1 |2774A4|0 |2 |0 |
+ROW |54036 |1089 |30396 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54037 |1090 |30398 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54038 |1091 |30322 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54039 |1091 |30277 |5 |1 |2774A4|0 |2 |0 |
+ROW |54040 |1092 |30284 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54041 |1093 |30313 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54042 |1093 |30314 |0 |1 |2774A4|0 |2 |0 |
+ROW |54043 |1093 |30315 |5 |2 |F63100|0 |2 |0 |
+ROW |54044 |1093 |30316 |0 |3 |A54F10|0 |2 |0 |
+ROW |54045 |1094 |30279 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54046 |1094 |30280 |2 |1 |2774A4|0 |2 |0 |
+ROW |54047 |1095 |30290 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54048 |1095 |30293 |0 |1 |2774A4|0 |2 |0 |
+ROW |54049 |1096 |30318 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54050 |1096 |30308 |2 |1 |2774A4|0 |2 |0 |
+ROW |54051 |1096 |30320 |2 |2 |F63100|0 |2 |0 |
+ROW |54052 |1097 |30317 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54053 |1098 |30289 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54054 |1098 |30291 |5 |1 |2774A4|0 |2 |0 |
+ROW |54055 |1099 |30334 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54056 |1099 |30325 |2 |1 |2774A4|0 |2 |0 |
+ROW |54057 |1100 |30306 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54058 |1101 |30274 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54059 |1102 |30281 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54060 |1060 |30159 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54061 |1061 |30165 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54062 |1063 |30177 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54063 |1064 |30183 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54064 |1065 |30161 |0 |0 |969696|0 |9 |2 |
+ROW |54065 |1065 |30162 |0 |1 |C80000|0 |9 |0 |
+ROW |54066 |1066 |30167 |0 |0 |969696|0 |9 |2 |
+ROW |54067 |1066 |30168 |0 |1 |C80000|0 |9 |0 |
+ROW |54068 |1068 |30179 |0 |0 |969696|0 |9 |2 |
+ROW |54069 |1068 |30180 |0 |1 |C80000|0 |9 |0 |
+ROW |54070 |1069 |30185 |0 |0 |969696|0 |9 |2 |
+ROW |54071 |1069 |30186 |0 |1 |C80000|0 |9 |0 |
+ROW |54072 |1070 |30142 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54073 |1071 |30143 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54074 |1073 |30145 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54075 |1074 |30146 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54076 |741 |27084 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54077 |741 |27085 |2 |1 |2774A4|0 |2 |0 |
+ROW |54078 |741 |27083 |0 |2 |F63100|1 |2 |0 |
+ROW |54079 |741 |27086 |0 |3 |A54F10|1 |2 |0 |
+ROW |54080 |741 |27082 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54081 |741 |27079 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54082 |742 |27622 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54083 |742 |27625 |2 |1 |2774A4|0 |2 |0 |
+ROW |54084 |742 |27624 |0 |2 |F63100|1 |2 |0 |
+ROW |54085 |742 |27621 |0 |3 |A54F10|1 |2 |0 |
+ROW |54086 |742 |27623 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54087 |742 |27620 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54088 |743 |27979 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54089 |743 |27982 |2 |1 |2774A4|0 |2 |0 |
+ROW |54090 |743 |27981 |0 |2 |F63100|1 |2 |0 |
+ROW |54091 |743 |27978 |0 |3 |A54F10|1 |2 |0 |
+ROW |54092 |743 |27980 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54093 |743 |27977 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54094 |740 |28008 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54095 |740 |28011 |2 |1 |2774A4|0 |2 |0 |
+ROW |54096 |740 |28010 |0 |2 |F63100|1 |2 |0 |
+ROW |54097 |740 |28007 |0 |3 |A54F10|1 |2 |0 |
+ROW |54098 |740 |28009 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54099 |740 |28006 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54100 |745 |27104 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54101 |745 |27105 |2 |1 |2774A4|0 |2 |0 |
+ROW |54102 |745 |27103 |0 |2 |F63100|1 |2 |0 |
+ROW |54103 |745 |27106 |0 |3 |A54F10|1 |2 |0 |
+ROW |54104 |745 |27102 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54105 |745 |27099 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54106 |746 |27183 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54107 |746 |27186 |2 |1 |2774A4|0 |2 |0 |
+ROW |54108 |746 |27185 |0 |2 |F63100|1 |2 |0 |
+ROW |54109 |746 |27182 |0 |3 |A54F10|1 |2 |0 |
+ROW |54110 |746 |27184 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54111 |746 |27181 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54112 |747 |27218 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54113 |747 |27221 |2 |1 |2774A4|0 |2 |0 |
+ROW |54114 |747 |27220 |0 |2 |F63100|1 |2 |0 |
+ROW |54115 |747 |27217 |0 |3 |A54F10|1 |2 |0 |
+ROW |54116 |747 |27219 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54117 |747 |27216 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54118 |748 |27254 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54119 |748 |27257 |2 |1 |2774A4|0 |2 |0 |
+ROW |54120 |748 |27256 |0 |2 |F63100|1 |2 |0 |
+ROW |54121 |748 |27253 |0 |3 |A54F10|1 |2 |0 |
+ROW |54122 |748 |27255 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54123 |748 |27252 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54124 |749 |27275 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54125 |749 |27278 |2 |1 |2774A4|0 |2 |0 |
+ROW |54126 |749 |27277 |0 |2 |F63100|1 |2 |0 |
+ROW |54127 |749 |27274 |0 |3 |A54F10|1 |2 |0 |
+ROW |54128 |749 |27276 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54129 |749 |27273 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54130 |750 |27324 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54131 |750 |27327 |2 |1 |2774A4|0 |2 |0 |
+ROW |54132 |750 |27326 |0 |2 |F63100|1 |2 |0 |
+ROW |54133 |750 |27323 |0 |3 |A54F10|1 |2 |0 |
+ROW |54134 |750 |27325 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54135 |750 |27322 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54136 |752 |27453 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54137 |752 |27456 |2 |1 |2774A4|0 |2 |0 |
+ROW |54138 |752 |27455 |0 |2 |F63100|1 |2 |0 |
+ROW |54139 |752 |27452 |0 |3 |A54F10|1 |2 |0 |
+ROW |54140 |752 |27454 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54141 |752 |27451 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54142 |753 |27489 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54143 |753 |27492 |2 |1 |2774A4|0 |2 |0 |
+ROW |54144 |753 |27491 |0 |2 |F63100|1 |2 |0 |
+ROW |54145 |753 |27488 |0 |3 |A54F10|1 |2 |0 |
+ROW |54146 |753 |27490 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54147 |753 |27487 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54148 |754 |27523 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54149 |754 |27526 |2 |1 |2774A4|0 |2 |0 |
+ROW |54150 |754 |27525 |0 |2 |F63100|1 |2 |0 |
+ROW |54151 |754 |27522 |0 |3 |A54F10|1 |2 |0 |
+ROW |54152 |754 |27524 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54153 |754 |27521 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54154 |755 |27559 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54155 |755 |27562 |2 |1 |2774A4|0 |2 |0 |
+ROW |54156 |755 |27561 |0 |2 |F63100|1 |2 |0 |
+ROW |54157 |755 |27558 |0 |3 |A54F10|1 |2 |0 |
+ROW |54158 |755 |27560 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54159 |755 |27557 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54160 |756 |27645 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54161 |756 |27648 |2 |1 |2774A4|0 |2 |0 |
+ROW |54162 |756 |27647 |0 |2 |F63100|1 |2 |0 |
+ROW |54163 |756 |27644 |0 |3 |A54F10|1 |2 |0 |
+ROW |54164 |756 |27646 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54165 |756 |27643 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54166 |758 |27725 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54167 |758 |27728 |2 |1 |2774A4|0 |2 |0 |
+ROW |54168 |758 |27727 |0 |2 |F63100|1 |2 |0 |
+ROW |54169 |758 |27724 |0 |3 |A54F10|1 |2 |0 |
+ROW |54170 |758 |27726 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54171 |758 |27723 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54172 |759 |27759 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54173 |759 |27762 |2 |1 |2774A4|0 |2 |0 |
+ROW |54174 |759 |27761 |0 |2 |F63100|1 |2 |0 |
+ROW |54175 |759 |27758 |0 |3 |A54F10|1 |2 |0 |
+ROW |54176 |759 |27760 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54177 |759 |27757 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54178 |760 |27791 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54179 |760 |27794 |2 |1 |2774A4|0 |2 |0 |
+ROW |54180 |760 |27793 |0 |2 |F63100|1 |2 |0 |
+ROW |54181 |760 |27790 |0 |3 |A54F10|1 |2 |0 |
+ROW |54182 |760 |27792 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54183 |760 |27789 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54184 |762 |27875 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54185 |762 |27878 |2 |1 |2774A4|0 |2 |0 |
+ROW |54186 |762 |27877 |0 |2 |F63100|1 |2 |0 |
+ROW |54187 |762 |27874 |0 |3 |A54F10|1 |2 |0 |
+ROW |54188 |762 |27876 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54189 |762 |27873 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54190 |763 |27912 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54191 |763 |27915 |2 |1 |2774A4|0 |2 |0 |
+ROW |54192 |763 |27914 |0 |2 |F63100|1 |2 |0 |
+ROW |54193 |763 |27911 |0 |3 |A54F10|1 |2 |0 |
+ROW |54194 |763 |27913 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54195 |763 |27910 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54196 |764 |27947 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54197 |764 |27950 |2 |1 |2774A4|0 |2 |0 |
+ROW |54198 |764 |27949 |0 |2 |F63100|1 |2 |0 |
+ROW |54199 |764 |27946 |0 |3 |A54F10|1 |2 |0 |
+ROW |54200 |764 |27948 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54201 |764 |27945 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54202 |773 |28121 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54203 |773 |28124 |2 |1 |2774A4|0 |2 |0 |
+ROW |54204 |773 |28123 |0 |2 |F63100|1 |2 |0 |
+ROW |54205 |773 |28120 |0 |3 |A54F10|1 |2 |0 |
+ROW |54206 |773 |28122 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54207 |773 |28119 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54208 |785 |28226 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54209 |785 |28229 |2 |1 |2774A4|0 |2 |0 |
+ROW |54210 |785 |28228 |0 |2 |F63100|1 |2 |0 |
+ROW |54211 |785 |28225 |0 |3 |A54F10|1 |2 |0 |
+ROW |54212 |785 |28227 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54213 |785 |28224 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54214 |790 |28296 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54215 |790 |28299 |2 |1 |2774A4|0 |2 |0 |
+ROW |54216 |790 |28298 |0 |2 |F63100|1 |2 |0 |
+ROW |54217 |790 |28295 |0 |3 |A54F10|1 |2 |0 |
+ROW |54218 |790 |28297 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54219 |790 |28294 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54220 |865 |28971 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54221 |865 |28974 |2 |1 |2774A4|0 |2 |0 |
+ROW |54222 |865 |28973 |0 |2 |F63100|1 |2 |0 |
+ROW |54223 |865 |28970 |0 |3 |A54F10|1 |2 |0 |
+ROW |54224 |865 |28972 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54225 |865 |28969 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54226 |766 |27124 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54227 |766 |27125 |2 |1 |2774A4|0 |2 |0 |
+ROW |54228 |766 |27123 |0 |2 |F63100|1 |2 |0 |
+ROW |54229 |766 |27126 |0 |3 |A54F10|1 |2 |0 |
+ROW |54230 |766 |27122 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54231 |766 |27119 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54232 |886 |29080 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54233 |886 |29083 |2 |1 |2774A4|0 |2 |0 |
+ROW |54234 |886 |29082 |0 |2 |F63100|1 |2 |0 |
+ROW |54235 |886 |29079 |0 |3 |A54F10|1 |2 |0 |
+ROW |54236 |886 |29081 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54237 |886 |29078 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54238 |668 |27208 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54239 |1032 |30088 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54240 |1032 |30087 |5 |1 |2774A4|0 |2 |0 |
+ROW |54241 |1033 |30089 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54242 |671 |27240 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54243 |1034 |30093 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54244 |675 |27294 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54245 |676 |27299 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54246 |677 |27301 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54247 |1035 |30094 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54248 |1036 |30095 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54249 |1037 |30096 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54250 |1461 |33219 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54251 |1462 |33224 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54252 |1463 |33227 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54253 |1463 |33230 |2 |1 |2774A4|0 |2 |0 |
+ROW |54254 |1463 |33229 |0 |2 |F63100|1 |2 |0 |
+ROW |54255 |1463 |33226 |0 |3 |A54F10|1 |2 |0 |
+ROW |54256 |1463 |33228 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54257 |1463 |33225 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54258 |1464 |33260 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54259 |1465 |33265 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54260 |1466 |33268 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54261 |1466 |33271 |2 |1 |2774A4|0 |2 |0 |
+ROW |54262 |1466 |33270 |0 |2 |F63100|1 |2 |0 |
+ROW |54263 |1466 |33267 |0 |3 |A54F10|1 |2 |0 |
+ROW |54264 |1466 |33269 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54265 |1466 |33266 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54266 |1467 |33301 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54267 |1468 |33306 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54268 |1469 |33309 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54269 |1469 |33312 |2 |1 |2774A4|0 |2 |0 |
+ROW |54270 |1469 |33311 |0 |2 |F63100|1 |2 |0 |
+ROW |54271 |1469 |33308 |0 |3 |A54F10|1 |2 |0 |
+ROW |54272 |1469 |33310 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54273 |1469 |33307 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54274 |1470 |33342 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54275 |1471 |33347 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54276 |1472 |33350 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54277 |1472 |33353 |2 |1 |2774A4|0 |2 |0 |
+ROW |54278 |1472 |33352 |0 |2 |F63100|1 |2 |0 |
+ROW |54279 |1472 |33349 |0 |3 |A54F10|1 |2 |0 |
+ROW |54280 |1472 |33351 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54281 |1472 |33348 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54282 |1473 |33383 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54283 |1474 |33388 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54284 |1475 |33391 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54285 |1475 |33394 |2 |1 |2774A4|0 |2 |0 |
+ROW |54286 |1475 |33393 |0 |2 |F63100|1 |2 |0 |
+ROW |54287 |1475 |33390 |0 |3 |A54F10|1 |2 |0 |
+ROW |54288 |1475 |33392 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54289 |1475 |33389 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54290 |1038 |30101 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54291 |1039 |30102 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54292 |1040 |30103 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54293 |1041 |30104 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54294 |786 |28246 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54295 |787 |28247 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54296 |687 |27417 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54297 |688 |27427 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54298 |691 |27376 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54299 |692 |27380 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54300 |694 |27478 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54301 |1042 |30105 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54302 |1043 |30107 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54303 |698 |27511 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54304 |1044 |30108 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54305 |701 |27547 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54306 |1045 |27591 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54307 |1045 |30110 |5 |1 |2774A4|0 |2 |0 |
+ROW |54308 |1046 |30111 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54309 |704 |27586 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54310 |708 |27671 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54311 |1047 |30112 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54312 |1048 |30114 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54313 |1048 |30113 |5 |1 |2774A4|0 |2 |0 |
+ROW |54314 |1049 |30115 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54315 |775 |28143 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54316 |714 |27753 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54317 |1050 |30116 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54318 |856 |28894 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54319 |1051 |30118 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54320 |1476 |33419 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54321 |1476 |33422 |2 |1 |2774A4|0 |2 |0 |
+ROW |54322 |1476 |33421 |0 |2 |F63100|1 |2 |0 |
+ROW |54323 |1476 |33418 |0 |3 |A54F10|1 |2 |0 |
+ROW |54324 |1476 |33420 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54325 |1476 |33417 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54326 |1477 |33427 |0 |0 |969696|0 |9 |2 |
+ROW |54327 |1477 |33428 |0 |1 |C80000|0 |9 |0 |
+ROW |54328 |1478 |33431 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54329 |1479 |33407 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54330 |724 |27904 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54331 |1299 |31968 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54332 |1299 |31966 |0 |1 |2774A4|0 |2 |0 |
+ROW |54333 |1299 |31965 |0 |2 |F63100|0 |2 |0 |
+ROW |54334 |1299 |31967 |0 |3 |A54F10|0 |2 |0 |
+ROW |54335 |1052 |27907 |0 |0 |969696|0 |9 |2 |
+ROW |54336 |1052 |27908 |0 |1 |C80000|0 |9 |0 |
+ROW |54337 |1053 |30120 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54338 |1335 |32330 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54339 |1335 |32317 |5 |1 |2774A4|0 |2 |0 |
+ROW |54340 |1336 |32319 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54341 |1336 |32327 |5 |1 |2774A4|0 |2 |0 |
+ROW |54342 |1336 |32326 |5 |2 |F63100|0 |2 |0 |
+ROW |54343 |1337 |32324 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54344 |1337 |32318 |5 |1 |2774A4|0 |2 |0 |
+ROW |54345 |1338 |32311 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54346 |1338 |32310 |5 |1 |2774A4|0 |2 |0 |
+ROW |54347 |1338 |32328 |5 |2 |F63100|0 |2 |0 |
+ROW |54348 |1339 |32350 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54349 |1339 |32339 |5 |1 |2774A4|0 |2 |0 |
+ROW |54350 |1340 |32331 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54351 |1341 |32347 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54352 |1341 |32342 |5 |1 |2774A4|0 |2 |0 |
+ROW |54353 |1342 |32334 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54354 |1342 |32333 |5 |1 |2774A4|0 |2 |0 |
+ROW |54355 |1342 |32348 |5 |2 |F63100|0 |2 |0 |
+ROW |54356 |1343 |32373 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54357 |1343 |32360 |5 |1 |2774A4|0 |2 |0 |
+ROW |54358 |1344 |32362 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54359 |1344 |32370 |5 |1 |2774A4|0 |2 |0 |
+ROW |54360 |1344 |32369 |5 |2 |F63100|0 |2 |0 |
+ROW |54361 |1345 |32367 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54362 |1345 |32361 |5 |1 |2774A4|0 |2 |0 |
+ROW |54363 |1346 |32354 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54364 |1346 |32353 |5 |1 |2774A4|0 |2 |0 |
+ROW |54365 |1346 |32371 |5 |2 |F63100|0 |2 |0 |
+ROW |54366 |1347 |32382 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54367 |1348 |32375 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54368 |1349 |32380 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54369 |1350 |32401 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54370 |1351 |32398 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54371 |1351 |32397 |5 |1 |2774A4|0 |2 |0 |
+ROW |54372 |1351 |32396 |5 |2 |F63100|0 |2 |0 |
+ROW |54373 |1352 |32394 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54374 |1353 |32393 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54375 |1354 |32385 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54376 |1354 |32399 |5 |1 |2774A4|0 |2 |0 |
+ROW |54377 |1355 |32420 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54378 |1356 |32417 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54379 |1356 |32416 |5 |1 |2774A4|0 |2 |0 |
+ROW |54380 |1356 |32415 |5 |2 |F63100|0 |2 |0 |
+ROW |54381 |1357 |32413 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54382 |1358 |32412 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54383 |1359 |32404 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54384 |1359 |32418 |5 |1 |2774A4|0 |2 |0 |
+ROW |54385 |1360 |32436 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54386 |1361 |32439 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54387 |1362 |32440 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54388 |1363 |32442 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54389 |1364 |32443 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54390 |1365 |32428 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54391 |1365 |32429 |5 |1 |2774A4|0 |2 |0 |
+ROW |54392 |727 |27936 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54393 |1054 |27935 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54394 |1054 |30122 |5 |1 |2774A4|0 |2 |0 |
+ROW |54395 |1055 |30123 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54396 |730 |27975 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54397 |1056 |30126 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54398 |733 |28003 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54399 |1057 |30131 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54400 |736 |28031 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54401 |1058 |30136 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54402 |1214 |31276 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54403 |1214 |31277 |5 |1 |2774A4|0 |2 |0 |
+ROW |54404 |1215 |31279 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54405 |1215 |31280 |5 |1 |2774A4|0 |2 |0 |
+ROW |54406 |1216 |31282 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54407 |1216 |31283 |5 |1 |2774A4|0 |2 |0 |
+ROW |54408 |1217 |31286 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54409 |1217 |31289 |5 |1 |2774A4|0 |2 |0 |
+ROW |54410 |1218 |31292 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54411 |1218 |31295 |5 |1 |2774A4|0 |2 |0 |
+ROW |54412 |1219 |31298 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54413 |1219 |31301 |5 |1 |2774A4|0 |2 |0 |
+ROW |54414 |1220 |31285 |0 |0 |1A7C11|1 |2 |0 |
+ROW |54415 |1220 |31288 |5 |1 |2774A4|0 |2 |0 |
+ROW |54416 |1221 |31291 |0 |0 |1A7C11|1 |2 |0 |
+ROW |54417 |1221 |31294 |5 |1 |2774A4|0 |2 |0 |
+ROW |54418 |1222 |31297 |0 |0 |1A7C11|1 |2 |0 |
+ROW |54419 |1222 |31300 |5 |1 |2774A4|0 |2 |0 |
+ROW |54420 |887 |29211 |0 |0 |969696|0 |9 |2 |
+ROW |54421 |887 |29210 |0 |1 |C80000|0 |9 |0 |
+ROW |54422 |888 |29225 |0 |0 |969696|0 |9 |2 |
+ROW |54423 |888 |29224 |0 |1 |C80000|0 |9 |0 |
+ROW |54424 |889 |29239 |0 |0 |969696|0 |9 |2 |
+ROW |54425 |889 |29238 |0 |1 |C80000|0 |9 |0 |
+ROW |54426 |899 |29216 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54427 |899 |29217 |2 |1 |2774A4|0 |2 |0 |
+ROW |54428 |899 |29218 |0 |2 |F63100|1 |2 |0 |
+ROW |54429 |899 |29219 |0 |3 |A54F10|1 |2 |0 |
+ROW |54430 |899 |29220 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54431 |899 |29221 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54432 |900 |29230 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54433 |900 |29231 |2 |1 |2774A4|0 |2 |0 |
+ROW |54434 |900 |29232 |0 |2 |F63100|1 |2 |0 |
+ROW |54435 |900 |29233 |0 |3 |A54F10|1 |2 |0 |
+ROW |54436 |900 |29234 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54437 |900 |29235 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54438 |901 |29244 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54439 |901 |29245 |2 |1 |2774A4|0 |2 |0 |
+ROW |54440 |901 |29246 |0 |2 |F63100|1 |2 |0 |
+ROW |54441 |901 |29247 |0 |3 |A54F10|1 |2 |0 |
+ROW |54442 |901 |29248 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54443 |901 |29249 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54444 |911 |29089 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54445 |911 |29102 |0 |1 |2774A4|0 |2 |0 |
+ROW |54446 |912 |29126 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54447 |912 |29139 |0 |1 |2774A4|0 |2 |0 |
+ROW |54448 |913 |29163 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54449 |913 |29176 |0 |1 |2774A4|0 |2 |0 |
+ROW |54450 |908 |29098 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54451 |908 |29097 |0 |1 |2774A4|0 |2 |0 |
+ROW |54452 |908 |29095 |0 |2 |F63100|0 |2 |0 |
+ROW |54453 |908 |29088 |0 |3 |A54F10|0 |2 |0 |
+ROW |54454 |908 |29094 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54455 |908 |29093 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54456 |908 |29092 |0 |6 |AC8C14|0 |2 |0 |
+ROW |54457 |908 |29091 |0 |7 |611F27|0 |2 |0 |
+ROW |54458 |908 |29090 |0 |8 |F230E0|0 |2 |0 |
+ROW |54459 |909 |29135 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54460 |909 |29134 |0 |1 |2774A4|0 |2 |0 |
+ROW |54461 |909 |29132 |0 |2 |F63100|0 |2 |0 |
+ROW |54462 |909 |29125 |0 |3 |A54F10|0 |2 |0 |
+ROW |54463 |909 |29131 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54464 |909 |29130 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54465 |909 |29129 |0 |6 |AC8C14|0 |2 |0 |
+ROW |54466 |909 |29128 |0 |7 |611F27|0 |2 |0 |
+ROW |54467 |909 |29127 |0 |8 |F230E0|0 |2 |0 |
+ROW |54468 |910 |29172 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54469 |910 |29171 |0 |1 |2774A4|0 |2 |0 |
+ROW |54470 |910 |29169 |0 |2 |F63100|0 |2 |0 |
+ROW |54471 |910 |29162 |0 |3 |A54F10|0 |2 |0 |
+ROW |54472 |910 |29168 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54473 |910 |29167 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54474 |910 |29166 |0 |6 |AC8C14|0 |2 |0 |
+ROW |54475 |910 |29165 |0 |7 |611F27|0 |2 |0 |
+ROW |54476 |910 |29164 |0 |8 |F230E0|0 |2 |0 |
+ROW |54477 |905 |29198 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54478 |906 |29199 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54479 |907 |29200 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54480 |917 |29104 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54481 |917 |29105 |5 |1 |2774A4|0 |2 |0 |
+ROW |54482 |918 |29141 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54483 |918 |29142 |5 |1 |2774A4|0 |2 |0 |
+ROW |54484 |919 |29178 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54485 |919 |29179 |5 |1 |2774A4|0 |2 |0 |
+ROW |54486 |914 |31270 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54487 |915 |31271 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54488 |916 |31272 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54489 |923 |29118 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54490 |923 |29119 |0 |1 |2774A4|0 |2 |0 |
+ROW |54491 |923 |29117 |0 |2 |F63100|0 |2 |0 |
+ROW |54492 |924 |29155 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54493 |924 |29156 |0 |1 |2774A4|0 |2 |0 |
+ROW |54494 |924 |29154 |0 |2 |F63100|0 |2 |0 |
+ROW |54495 |925 |29192 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54496 |925 |29193 |0 |1 |2774A4|0 |2 |0 |
+ROW |54497 |925 |29191 |0 |2 |F63100|0 |2 |0 |
+ROW |54498 |920 |29107 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54499 |920 |29106 |0 |1 |2774A4|0 |2 |0 |
+ROW |54500 |921 |29144 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54501 |921 |29143 |0 |1 |2774A4|0 |2 |0 |
+ROW |54502 |922 |29181 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54503 |922 |29180 |0 |1 |2774A4|0 |2 |0 |
+ROW |54504 |902 |29096 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54505 |902 |29101 |0 |1 |2774A4|0 |2 |0 |
+ROW |54506 |902 |29100 |0 |2 |F63100|0 |2 |0 |
+ROW |54507 |902 |29087 |0 |3 |A54F10|1 |2 |0 |
+ROW |54508 |903 |29133 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54509 |903 |29138 |0 |1 |2774A4|0 |2 |0 |
+ROW |54510 |903 |29137 |0 |2 |F63100|0 |2 |0 |
+ROW |54511 |903 |29124 |0 |3 |A54F10|1 |2 |0 |
+ROW |54512 |904 |29170 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54513 |904 |29175 |0 |1 |2774A4|0 |2 |0 |
+ROW |54514 |904 |29174 |0 |2 |F63100|0 |2 |0 |
+ROW |54515 |904 |29161 |0 |3 |A54F10|1 |2 |0 |
+ROW |54516 |1223 |31307 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54517 |1223 |31308 |5 |1 |2774A4|0 |2 |0 |
+ROW |54518 |1224 |31310 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54519 |1224 |31311 |5 |1 |2774A4|0 |2 |0 |
+ROW |54520 |1225 |31314 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54521 |1225 |31317 |5 |1 |2774A4|0 |2 |0 |
+ROW |54522 |1226 |31320 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54523 |1226 |31323 |5 |1 |2774A4|0 |2 |0 |
+ROW |54524 |1227 |31313 |0 |0 |1A7C11|1 |2 |0 |
+ROW |54525 |1227 |31316 |5 |1 |2774A4|0 |2 |0 |
+ROW |54526 |1228 |31319 |0 |0 |1A7C11|1 |2 |0 |
+ROW |54527 |1228 |31322 |5 |1 |2774A4|0 |2 |0 |
+ROW |54528 |926 |29356 |0 |0 |969696|0 |9 |2 |
+ROW |54529 |926 |29355 |0 |1 |C80000|0 |9 |0 |
+ROW |54530 |927 |29370 |0 |0 |969696|0 |9 |2 |
+ROW |54531 |927 |29369 |0 |1 |C80000|0 |9 |0 |
+ROW |54532 |934 |29361 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54533 |934 |29362 |2 |1 |2774A4|0 |2 |0 |
+ROW |54534 |934 |29363 |0 |2 |F63100|1 |2 |0 |
+ROW |54535 |934 |29364 |0 |3 |A54F10|1 |2 |0 |
+ROW |54536 |934 |29365 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54537 |934 |29366 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54538 |935 |29375 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54539 |935 |29376 |2 |1 |2774A4|0 |2 |0 |
+ROW |54540 |935 |29377 |0 |2 |F63100|1 |2 |0 |
+ROW |54541 |935 |29378 |0 |3 |A54F10|1 |2 |0 |
+ROW |54542 |935 |29379 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54543 |935 |29380 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54544 |942 |29275 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54545 |942 |29288 |0 |1 |2774A4|0 |2 |0 |
+ROW |54546 |943 |29312 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54547 |943 |29325 |0 |1 |2774A4|0 |2 |0 |
+ROW |54548 |940 |29284 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54549 |940 |29283 |0 |1 |2774A4|0 |2 |0 |
+ROW |54550 |940 |29281 |0 |2 |F63100|0 |2 |0 |
+ROW |54551 |940 |29274 |0 |3 |A54F10|0 |2 |0 |
+ROW |54552 |940 |29280 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54553 |940 |29279 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54554 |940 |29278 |0 |6 |AC8C14|0 |2 |0 |
+ROW |54555 |940 |29277 |0 |7 |611F27|0 |2 |0 |
+ROW |54556 |940 |29276 |0 |8 |F230E0|0 |2 |0 |
+ROW |54557 |941 |29321 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54558 |941 |29320 |0 |1 |2774A4|0 |2 |0 |
+ROW |54559 |941 |29318 |0 |2 |F63100|0 |2 |0 |
+ROW |54560 |941 |29311 |0 |3 |A54F10|0 |2 |0 |
+ROW |54561 |941 |29317 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54562 |941 |29316 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54563 |941 |29315 |0 |6 |AC8C14|0 |2 |0 |
+ROW |54564 |941 |29314 |0 |7 |611F27|0 |2 |0 |
+ROW |54565 |941 |29313 |0 |8 |F230E0|0 |2 |0 |
+ROW |54566 |938 |29347 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54567 |939 |29348 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54568 |946 |29290 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54569 |946 |29291 |5 |1 |2774A4|0 |2 |0 |
+ROW |54570 |947 |29327 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54571 |947 |29328 |5 |1 |2774A4|0 |2 |0 |
+ROW |54572 |944 |31303 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54573 |945 |31304 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54574 |950 |29304 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54575 |950 |29305 |0 |1 |2774A4|0 |2 |0 |
+ROW |54576 |950 |29303 |0 |2 |F63100|0 |2 |0 |
+ROW |54577 |951 |29341 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54578 |951 |29342 |0 |1 |2774A4|0 |2 |0 |
+ROW |54579 |951 |29340 |0 |2 |F63100|0 |2 |0 |
+ROW |54580 |948 |29293 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54581 |948 |29292 |0 |1 |2774A4|0 |2 |0 |
+ROW |54582 |949 |29330 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54583 |949 |29329 |0 |1 |2774A4|0 |2 |0 |
+ROW |54584 |936 |29282 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54585 |936 |29287 |0 |1 |2774A4|0 |2 |0 |
+ROW |54586 |936 |29286 |0 |2 |F63100|0 |2 |0 |
+ROW |54587 |936 |29273 |0 |3 |A54F10|1 |2 |0 |
+ROW |54588 |937 |29319 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54589 |937 |29324 |0 |1 |2774A4|0 |2 |0 |
+ROW |54590 |937 |29323 |0 |2 |F63100|0 |2 |0 |
+ROW |54591 |937 |29310 |0 |3 |A54F10|1 |2 |0 |
+ROW |54592 |952 |29436 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54593 |952 |29437 |2 |1 |2774A4|0 |2 |0 |
+ROW |54594 |952 |29438 |0 |2 |F63100|1 |2 |0 |
+ROW |54595 |952 |29439 |0 |3 |A54F10|1 |2 |0 |
+ROW |54596 |952 |29441 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54597 |952 |29440 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54598 |955 |29434 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54599 |955 |29435 |5 |1 |2774A4|0 |2 |0 |
+ROW |54600 |954 |29448 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54601 |954 |29449 |5 |1 |2774A4|0 |2 |0 |
+ROW |54602 |956 |29452 |0 |0 |1A7C11|1 |2 |0 |
+ROW |54603 |956 |29453 |5 |1 |2774A4|0 |2 |0 |
+ROW |54604 |953 |29446 |0 |0 |969696|0 |9 |2 |
+ROW |54605 |953 |29432 |0 |1 |C80000|0 |9 |0 |
+ROW |54606 |960 |29405 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54607 |960 |29406 |0 |1 |2774A4|0 |2 |0 |
+ROW |54608 |959 |29426 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54609 |959 |29413 |0 |1 |2774A4|0 |2 |0 |
+ROW |54610 |959 |29411 |0 |2 |F63100|0 |2 |0 |
+ROW |54611 |959 |29410 |0 |3 |A54F10|0 |2 |0 |
+ROW |54612 |959 |29399 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54613 |959 |29409 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54614 |959 |29412 |0 |6 |AC8C14|0 |2 |0 |
+ROW |54615 |959 |29408 |0 |7 |611F27|0 |2 |0 |
+ROW |54616 |959 |29407 |0 |8 |F230E0|0 |2 |0 |
+ROW |54617 |958 |29427 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54618 |962 |29403 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54619 |962 |29402 |5 |1 |2774A4|0 |2 |0 |
+ROW |54620 |961 |29396 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54621 |963 |29400 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54622 |963 |29401 |0 |1 |2774A4|0 |2 |0 |
+ROW |54623 |957 |29420 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54624 |957 |29419 |0 |1 |2774A4|0 |2 |0 |
+ROW |54625 |957 |29418 |0 |2 |F63100|0 |2 |0 |
+ROW |54626 |957 |29417 |0 |3 |A54F10|1 |2 |0 |
+ROW |54627 |866 |29014 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54628 |866 |29015 |5 |1 |2774A4|0 |2 |0 |
+ROW |54629 |867 |29031 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54630 |867 |29032 |5 |1 |2774A4|0 |2 |0 |
+ROW |54631 |868 |29018 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54632 |868 |29019 |0 |1 |2774A4|0 |2 |0 |
+ROW |54633 |868 |29022 |0 |2 |F63100|0 |2 |0 |
+ROW |54634 |868 |29023 |0 |3 |A54F10|0 |2 |0 |
+ROW |54635 |868 |29020 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54636 |868 |29024 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54637 |868 |29021 |0 |6 |AC8C14|0 |2 |0 |
+ROW |54638 |868 |29025 |0 |7 |611F27|0 |2 |0 |
+ROW |54639 |868 |29026 |0 |8 |F230E0|0 |2 |0 |
+ROW |54640 |869 |29035 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54641 |869 |29036 |0 |1 |2774A4|0 |2 |0 |
+ROW |54642 |869 |29039 |0 |2 |F63100|0 |2 |0 |
+ROW |54643 |869 |29040 |0 |3 |A54F10|0 |2 |0 |
+ROW |54644 |869 |29037 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54645 |869 |29041 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54646 |869 |29038 |0 |6 |AC8C14|0 |2 |0 |
+ROW |54647 |869 |29042 |0 |7 |611F27|0 |2 |0 |
+ROW |54648 |869 |29043 |0 |8 |F230E0|0 |2 |0 |
+ROW |54649 |870 |29048 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54650 |871 |29049 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54651 |872 |29028 |0 |0 |969696|0 |9 |2 |
+ROW |54652 |872 |29027 |0 |1 |C80000|0 |9 |0 |
+ROW |54653 |873 |29045 |0 |0 |969696|0 |9 |2 |
+ROW |54654 |873 |29044 |0 |1 |C80000|0 |9 |0 |
+ROW |54655 |882 |28992 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54656 |882 |28991 |0 |1 |2774A4|0 |2 |0 |
+ROW |54657 |883 |29007 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54658 |883 |29006 |0 |1 |2774A4|0 |2 |0 |
+ROW |54659 |876 |28982 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54660 |876 |28983 |5 |1 |2774A4|0 |2 |0 |
+ROW |54661 |877 |28997 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54662 |877 |28998 |5 |1 |2774A4|0 |2 |0 |
+ROW |54663 |874 |28978 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54664 |875 |28993 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54665 |878 |28985 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54666 |878 |28984 |0 |1 |2774A4|0 |2 |0 |
+ROW |54667 |879 |29000 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54668 |879 |28999 |0 |1 |2774A4|0 |2 |0 |
+ROW |54669 |880 |28987 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54670 |880 |28988 |0 |1 |2774A4|0 |2 |0 |
+ROW |54671 |880 |28989 |0 |2 |F63100|0 |2 |0 |
+ROW |54672 |880 |28990 |0 |3 |A54F10|1 |2 |0 |
+ROW |54673 |881 |29002 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54674 |881 |29003 |0 |1 |2774A4|0 |2 |0 |
+ROW |54675 |881 |29004 |0 |2 |F63100|0 |2 |0 |
+ROW |54676 |881 |29005 |0 |3 |A54F10|1 |2 |0 |
+ROW |54677 |964 |29513 |0 |0 |969696|0 |9 |2 |
+ROW |54678 |964 |29512 |0 |1 |C80000|0 |9 |0 |
+ROW |54679 |965 |29522 |0 |0 |969696|0 |9 |2 |
+ROW |54680 |965 |29521 |0 |1 |C80000|0 |9 |0 |
+ROW |54681 |1246 |31461 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54682 |1246 |31464 |2 |1 |2774A4|0 |2 |0 |
+ROW |54683 |1246 |31463 |0 |2 |F63100|1 |2 |0 |
+ROW |54684 |1246 |31460 |0 |3 |A54F10|1 |2 |0 |
+ROW |54685 |1246 |31462 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54686 |1246 |31459 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54687 |1247 |31467 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54688 |1247 |31470 |2 |1 |2774A4|0 |2 |0 |
+ROW |54689 |1247 |31469 |0 |2 |F63100|1 |2 |0 |
+ROW |54690 |1247 |31466 |0 |3 |A54F10|1 |2 |0 |
+ROW |54691 |1247 |31468 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54692 |1247 |31465 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54693 |1366 |32445 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54694 |1366 |32448 |0 |1 |2774A4|0 |2 |0 |
+ROW |54695 |1367 |32449 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54696 |1367 |32452 |0 |1 |2774A4|0 |2 |0 |
+ROW |54697 |1368 |32446 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54698 |1368 |32447 |5 |1 |2774A4|0 |2 |0 |
+ROW |54699 |1369 |32450 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54700 |1369 |32451 |5 |1 |2774A4|0 |2 |0 |
+ROW |54701 |1229 |31337 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54702 |1229 |31338 |5 |1 |2774A4|0 |2 |0 |
+ROW |54703 |1230 |31341 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54704 |1230 |31342 |5 |1 |2774A4|0 |2 |0 |
+ROW |54705 |1231 |31336 |0 |0 |1A7C11|1 |2 |0 |
+ROW |54706 |1231 |31335 |5 |1 |2774A4|0 |2 |0 |
+ROW |54707 |1232 |31340 |0 |0 |1A7C11|1 |2 |0 |
+ROW |54708 |1232 |31339 |5 |1 |2774A4|0 |2 |0 |
+ROW |54709 |974 |29456 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54710 |974 |29455 |0 |1 |2774A4|0 |2 |0 |
+ROW |54711 |975 |29482 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54712 |975 |29481 |0 |1 |2774A4|0 |2 |0 |
+ROW |54713 |976 |29458 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54714 |976 |29457 |0 |1 |2774A4|0 |2 |0 |
+ROW |54715 |977 |29484 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54716 |977 |29483 |0 |1 |2774A4|0 |2 |0 |
+ROW |54717 |972 |29454 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54718 |973 |29480 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54719 |978 |29462 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54720 |979 |29488 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54721 |980 |31327 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54722 |980 |29466 |0 |1 |2774A4|0 |2 |0 |
+ROW |54723 |981 |31330 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54724 |981 |29492 |0 |1 |2774A4|0 |2 |0 |
+ROW |54725 |982 |29620 |0 |0 |969696|0 |9 |2 |
+ROW |54726 |982 |29619 |0 |1 |C80000|0 |9 |0 |
+ROW |54727 |983 |29629 |0 |0 |969696|0 |9 |2 |
+ROW |54728 |983 |29628 |0 |1 |C80000|0 |9 |0 |
+ROW |54729 |1248 |31483 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54730 |1248 |31486 |2 |1 |2774A4|0 |2 |0 |
+ROW |54731 |1248 |31485 |0 |2 |F63100|1 |2 |0 |
+ROW |54732 |1248 |31482 |0 |3 |A54F10|1 |2 |0 |
+ROW |54733 |1248 |31484 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54734 |1248 |31481 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54735 |1249 |31489 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54736 |1249 |31492 |2 |1 |2774A4|0 |2 |0 |
+ROW |54737 |1249 |31491 |0 |2 |F63100|1 |2 |0 |
+ROW |54738 |1249 |31488 |0 |3 |A54F10|1 |2 |0 |
+ROW |54739 |1249 |31490 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54740 |1249 |31487 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54741 |1370 |32453 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54742 |1370 |32456 |0 |1 |2774A4|0 |2 |0 |
+ROW |54743 |1371 |32457 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54744 |1371 |32460 |0 |1 |2774A4|0 |2 |0 |
+ROW |54745 |1372 |32454 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54746 |1372 |32455 |5 |1 |2774A4|0 |2 |0 |
+ROW |54747 |1373 |32458 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54748 |1373 |32459 |5 |1 |2774A4|0 |2 |0 |
+ROW |54749 |1233 |31355 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54750 |1233 |31356 |5 |1 |2774A4|0 |2 |0 |
+ROW |54751 |1234 |31359 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54752 |1234 |31360 |5 |1 |2774A4|0 |2 |0 |
+ROW |54753 |1235 |31354 |0 |0 |1A7C11|1 |2 |0 |
+ROW |54754 |1235 |31353 |5 |1 |2774A4|0 |2 |0 |
+ROW |54755 |1236 |31358 |0 |0 |1A7C11|1 |2 |0 |
+ROW |54756 |1236 |31357 |5 |1 |2774A4|0 |2 |0 |
+ROW |54757 |992 |29563 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54758 |992 |29562 |0 |1 |2774A4|0 |2 |0 |
+ROW |54759 |993 |29589 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54760 |993 |29588 |0 |1 |2774A4|0 |2 |0 |
+ROW |54761 |994 |29565 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54762 |994 |29564 |0 |1 |2774A4|0 |2 |0 |
+ROW |54763 |995 |29591 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54764 |995 |29590 |0 |1 |2774A4|0 |2 |0 |
+ROW |54765 |990 |29561 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54766 |991 |29587 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54767 |996 |29569 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54768 |997 |29595 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54769 |998 |31345 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54770 |998 |29573 |0 |1 |2774A4|0 |2 |0 |
+ROW |54771 |999 |31348 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54772 |999 |29599 |0 |1 |2774A4|0 |2 |0 |
+ROW |54773 |1489 |33568 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54774 |1490 |33581 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54775 |1490 |33569 |0 |1 |2774A4|0 |2 |0 |
+ROW |54776 |1491 |33583 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54777 |1491 |33579 |0 |1 |2774A4|0 |2 |0 |
+ROW |54778 |1492 |33619 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54779 |1493 |33632 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54780 |1493 |33620 |0 |1 |2774A4|0 |2 |0 |
+ROW |54781 |1494 |33634 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54782 |1494 |33630 |0 |1 |2774A4|0 |2 |0 |
+ROW |54783 |1495 |33670 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54784 |1496 |33683 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54785 |1496 |33671 |0 |1 |2774A4|0 |2 |0 |
+ROW |54786 |1497 |33685 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54787 |1497 |33681 |0 |1 |2774A4|0 |2 |0 |
+ROW |54788 |1498 |33721 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54789 |1499 |33734 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54790 |1499 |33722 |0 |1 |2774A4|0 |2 |0 |
+ROW |54791 |1500 |33736 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54792 |1500 |33732 |0 |1 |2774A4|0 |2 |0 |
+ROW |54793 |1501 |33772 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54794 |1502 |33785 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54795 |1502 |33773 |0 |1 |2774A4|0 |2 |0 |
+ROW |54796 |1503 |33787 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54797 |1503 |33783 |0 |1 |2774A4|0 |2 |0 |
+ROW |54798 |1504 |33823 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54799 |1505 |33836 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54800 |1505 |33824 |0 |1 |2774A4|0 |2 |0 |
+ROW |54801 |1506 |33838 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54802 |1506 |33834 |0 |1 |2774A4|0 |2 |0 |
+ROW |54803 |1507 |33874 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54804 |1508 |33887 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54805 |1508 |33875 |0 |1 |2774A4|0 |2 |0 |
+ROW |54806 |1509 |33889 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54807 |1509 |33885 |0 |1 |2774A4|0 |2 |0 |
+ROW |54808 |1510 |33925 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54809 |1481 |33445 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54810 |1481 |33433 |0 |1 |2774A4|0 |2 |0 |
+ROW |54811 |1482 |33447 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54812 |1482 |33443 |0 |1 |2774A4|0 |2 |0 |
+ROW |54813 |1511 |33930 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54814 |1512 |33943 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54815 |1512 |33931 |0 |1 |2774A4|0 |2 |0 |
+ROW |54816 |1513 |33945 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54817 |1513 |33941 |0 |1 |2774A4|0 |2 |0 |
+ROW |54818 |1514 |33981 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54819 |1515 |33994 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54820 |1515 |33982 |0 |1 |2774A4|0 |2 |0 |
+ROW |54821 |1516 |33996 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54822 |1516 |33992 |0 |1 |2774A4|0 |2 |0 |
+ROW |54823 |1517 |34032 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54824 |1518 |34045 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54825 |1518 |34033 |0 |1 |2774A4|0 |2 |0 |
+ROW |54826 |1519 |34047 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54827 |1519 |34043 |0 |1 |2774A4|0 |2 |0 |
+ROW |54828 |1403 |32790 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54829 |1404 |32809 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54830 |1404 |32807 |0 |1 |2774A4|0 |2 |0 |
+ROW |54831 |1404 |32811 |0 |2 |F63100|0 |2 |0 |
+ROW |54832 |1405 |32804 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54833 |1405 |32805 |0 |1 |2774A4|0 |2 |0 |
+ROW |54834 |1405 |32806 |0 |2 |F63100|0 |2 |0 |
+ROW |54835 |1406 |32810 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54836 |1406 |32808 |0 |1 |2774A4|0 |2 |0 |
+ROW |54837 |1406 |32812 |0 |2 |F63100|0 |2 |0 |
+ROW |54838 |1407 |32815 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54839 |1408 |32819 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54840 |1408 |32817 |0 |1 |2774A4|0 |2 |0 |
+ROW |54841 |1408 |32821 |0 |2 |F63100|0 |2 |0 |
+ROW |54842 |1409 |32820 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54843 |1409 |32818 |0 |1 |2774A4|0 |2 |0 |
+ROW |54844 |1409 |32822 |0 |2 |F63100|0 |2 |0 |
+ROW |54845 |1410 |32828 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54846 |1410 |32827 |0 |1 |2774A4|0 |2 |0 |
+ROW |54847 |1410 |32823 |0 |2 |F63100|0 |2 |0 |
+ROW |54848 |1411 |32777 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54849 |1411 |32778 |0 |1 |2774A4|0 |2 |0 |
+ROW |54850 |1483 |33525 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54851 |1483 |33524 |0 |1 |2774A4|0 |2 |0 |
+ROW |54852 |1483 |33523 |0 |2 |F63100|0 |2 |0 |
+ROW |54853 |1483 |33522 |0 |3 |A54F10|0 |2 |0 |
+ROW |54854 |1484 |33564 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54855 |1484 |33554 |0 |1 |2774A4|0 |2 |0 |
+ROW |54856 |1485 |33500 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54857 |1485 |33507 |0 |1 |2774A4|0 |2 |0 |
+ROW |54858 |1485 |33509 |0 |2 |F63100|0 |2 |0 |
+ROW |54859 |1485 |33508 |0 |3 |A54F10|0 |2 |0 |
+ROW |54860 |1486 |33480 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54861 |1486 |33491 |0 |1 |2774A4|0 |2 |0 |
+ROW |54862 |1486 |33488 |0 |2 |F63100|0 |2 |0 |
+ROW |54863 |1486 |33489 |0 |3 |A54F10|0 |2 |0 |
+ROW |54864 |1487 |33506 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54865 |1487 |33505 |0 |1 |2774A4|0 |2 |0 |
+ROW |54866 |1487 |33512 |0 |2 |F63100|0 |2 |0 |
+ROW |54867 |1487 |33504 |0 |3 |A54F10|0 |2 |0 |
+ROW |54868 |1387 |32632 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54869 |1388 |32635 |1 |0 |1A7C11|0 |2 |0 |
+ROW |54870 |1388 |32635 |1 |1 |2774A4|0 |2 |0 |
+ROW |54871 |1389 |32643 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54872 |1389 |32646 |2 |1 |2774A4|0 |2 |0 |
+ROW |54873 |1389 |32645 |0 |2 |F63100|1 |2 |0 |
+ROW |54874 |1389 |32642 |0 |3 |A54F10|1 |2 |0 |
+ROW |54875 |1389 |32644 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54876 |1389 |32641 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54877 |1142 |30689 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54878 |1300 |31981 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54879 |1300 |31979 |0 |1 |2774A4|0 |2 |0 |
+ROW |54880 |1300 |31987 |0 |2 |F63100|1 |2 |0 |
+ROW |54881 |1301 |32462 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54882 |1301 |31986 |0 |1 |2774A4|0 |2 |0 |
+ROW |54883 |1301 |31984 |0 |2 |F63100|0 |2 |0 |
+ROW |54884 |1302 |32461 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54885 |1302 |31982 |0 |1 |2774A4|0 |2 |0 |
+ROW |54886 |1303 |31980 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54887 |1303 |31989 |0 |1 |2774A4|0 |2 |0 |
+ROW |54888 |1303 |31977 |0 |2 |F63100|0 |2 |0 |
+ROW |54889 |1303 |31978 |0 |3 |A54F10|0 |2 |0 |
TABLE |hostmacro
FIELDS|hostmacroid|hostid|macro |value |description |type|
@@ -18704,17 +18892,17 @@ ROW |1239 |10298 |{$IF.ERRORS.WARN}
ROW |1240 |10298 |{$IF.UTIL.MAX} |90 | |0 |
ROW |1241 |10298 |{$IFCONTROL} |1 | |0 |
ROW |1242 |10316 |{$MYSQL.ABORTED_CONN.MAX.WARN} |3 |The number of failed attempts to connect to the MySQL server for trigger expression. |0 |
-ROW |1243 |10316 |{$MYSQL.BUFF_UTIL.MIN.WARN} |50 |The minimum buffer pool utilization in percent for trigger expression. |0 |
+ROW |1243 |10316 |{$MYSQL.BUFF_UTIL.MIN.WARN} |50 |The minimum buffer pool utilization in percentage for trigger expression. |0 |
ROW |1244 |10316 |{$MYSQL.HOST} |localhost |Hostname or IP of MySQL host or container. |0 |
ROW |1245 |10316 |{$MYSQL.PORT} |3306 |MySQL service port. |0 |
ROW |1246 |10316 |{$MYSQL.REPL_LAG.MAX.WARN} |30m |The lag of slave from master for trigger expression. |0 |
ROW |1247 |10316 |{$MYSQL.SLOW_QUERIES.MAX.WARN} |3 |The number of slow queries for trigger expression. |0 |
-ROW |1248 |10317 |{$MYSQL.ABORTED_CONN.MAX.WARN} |3 |The number of failed attempts to connect to the MySQL server for trigger expression. |0 |
-ROW |1249 |10317 |{$MYSQL.BUFF_UTIL.MIN.WARN} |50 |The minimum buffer pool utilization in percent for trigger expression. |0 |
+ROW |1248 |10317 |{$MYSQL.ABORTED_CONN.MAX.WARN} |3 |Number of failed attempts to connect to the MySQL server for trigger expression. |0 |
+ROW |1249 |10317 |{$MYSQL.BUFF_UTIL.MIN.WARN} |50 |The minimum buffer pool utilization in percentage for trigger expression. |0 |
ROW |1250 |10317 |{$MYSQL.DSN} |<Put your DSN here> |System data source name. |0 |
ROW |1251 |10317 |{$MYSQL.PASSWORD} |<Put your password here> |MySQL user password. |0 |
ROW |1252 |10317 |{$MYSQL.REPL_LAG.MAX.WARN} |30m |The lag of slave from master for trigger expression. |0 |
-ROW |1253 |10317 |{$MYSQL.SLOW_QUERIES.MAX.WARN} |3 |The number of slow queries for trigger expression. |0 |
+ROW |1253 |10317 |{$MYSQL.SLOW_QUERIES.MAX.WARN} |3 |Number of slow queries for trigger expression. |0 |
ROW |1254 |10317 |{$MYSQL.USER} |<Put your username here> |MySQL username. |0 |
ROW |1255 |10318 |{$DOCKER.LLD.FILTER.CONTAINER.MATCHES} |.* |Filter of discoverable containers |0 |
ROW |1256 |10318 |{$DOCKER.LLD.FILTER.CONTAINER.NOT_MATCHES} |CHANGE_IF_NEEDED |Filter to exclude discovered containers |0 |
@@ -18725,7 +18913,7 @@ ROW |1260 |10319 |{$MEMCACHED.CONN.QUEUED.MAX.WARN}
ROW |1261 |10319 |{$MEMCACHED.CONN.THROTTLED.MAX.WARN} |1 |Maximum number of throttled connections per second |0 |
ROW |1262 |10319 |{$MEMCACHED.CONN.URI} |tcp://localhost:11211 |Connection string in the URI format (password is not used). This param overwrites a value configured in the "Plugins.Memcached.Uri" option of the configuration file (if it's set), otherwise, the plugin's default value is used: "tcp://localhost:11211" |0 |
ROW |1263 |10319 |{$MEMCACHED.MEM.PUSED.MAX.WARN} |90 |Maximum percentage of memory used |0 |
-ROW |1264 |10320 |{$MYSQL.ABORTED_CONN.MAX.WARN} |3 |The number of failed attempts to connect to the MySQL server for trigger expression. |0 |
+ROW |1264 |10320 |{$MYSQL.ABORTED_CONN.MAX.WARN} |3 |Number of failed attempts to connect to the MySQL server for trigger expression. |0 |
ROW |1265 |10320 |{$MYSQL.BUFF_UTIL.MIN.WARN} |50 |The minimum buffer pool utilization percentage for trigger expression. |0 |
ROW |1266 |10320 |{$MYSQL.DSN} |<Put your DSN> |System data source name such as <tcp://host:port or unix:/path/to/socket)/>. |0 |
ROW |1267 |10320 |{$MYSQL.PASSWORD} | |MySQL user password. |0 |
@@ -18791,32 +18979,32 @@ ROW |1326 |10326 |{$IIS.PORT}
ROW |1327 |10326 |{$IIS.QUEUE.MAX.TIME} |5m |The time during which the queue length may exceed the threshold. |0 |
ROW |1328 |10326 |{$IIS.QUEUE.MAX.WARN} | |Maximum application pool's request queue length for trigger expression. |0 |
ROW |1329 |10326 |{$IIS.SERVICE} |http |The service (http/https/etc) for port check. See "net.tcp.service" documentation page for more information: https://www.zabbix.com/documentation/5.0/manual/config/items/itemtypes/simple_checks |0 |
-ROW |1330 |10327 |{$MSSQL.AVERAGE_WAIT_TIME.MAX} |500 |The maximum average wait time in ms for trigger expression. |0 |
-ROW |1331 |10327 |{$MSSQL.BUFFER_CACHE_RATIO.MIN.CRIT} |30 |The minimum % buffer cache hit ratio for high trigger expression. |0 |
-ROW |1332 |10327 |{$MSSQL.BUFFER_CACHE_RATIO.MIN.WARN} |50 |The minimum % buffer cache hit ratio for warning trigger expression. |0 |
-ROW |1333 |10327 |{$MSSQL.DBNAME.MATCHES} |.* |This macro is used in database discovery. It can be overridden on the host or linked template level. |0 |
-ROW |1334 |10327 |{$MSSQL.DBNAME.NOT_MATCHES} |master&pipe;tempdb&pipe;model&pipe;msdb |This macro is used in database discovery. It can be overridden on the host or linked template level. |0 |
-ROW |1335 |10327 |{$MSSQL.DEADLOCKS.MAX} |1 |The maximum deadlocks per second for trigger expression. |0 |
+ROW |1330 |10327 |{$MSSQL.AVERAGE_WAIT_TIME.MAX} |500 |The maximum average wait time in ms - for the trigger expression. |0 |
+ROW |1331 |10327 |{$MSSQL.BUFFER_CACHE_RATIO.MIN.CRIT} |30 |The minimum % buffer cache hit ratio - for the High trigger expression. |0 |
+ROW |1332 |10327 |{$MSSQL.BUFFER_CACHE_RATIO.MIN.WARN} |50 |The minimum % buffer cache hit ratio - for the Warning trigger expression. |0 |
+ROW |1333 |10327 |{$MSSQL.DBNAME.MATCHES} |.* |This macro is used in database discovery. It can be overridden on a host or linked template level. |0 |
+ROW |1334 |10327 |{$MSSQL.DBNAME.NOT_MATCHES} |master&pipe;tempdb&pipe;model&pipe;msdb |This macro is used in database discovery. It can be overridden on a host or linked template level. |0 |
+ROW |1335 |10327 |{$MSSQL.DEADLOCKS.MAX} |1 |The maximum deadlocks per second - for the trigger expression. |0 |
ROW |1336 |10327 |{$MSSQL.DSN} |<Put your DSN here> |System data source name. |0 |
-ROW |1337 |10327 |{$MSSQL.FREE_LIST_STALLS.MAX} |2 |The maximum free list stalls per second for trigger expression. |0 |
-ROW |1338 |10327 |{$MSSQL.LAZY_WRITES.MAX} |20 |The maximum lazy writes per second for trigger expression. |0 |
-ROW |1339 |10327 |{$MSSQL.LOCK_REQUESTS.MAX} |1000 |The maximum lock requests per second for trigger expression. |0 |
-ROW |1340 |10327 |{$MSSQL.LOCK_TIMEOUTS.MAX} |1 |The maximum lock timeouts per second for trigger expression. |0 |
-ROW |1341 |10327 |{$MSSQL.LOG_FLUSH_WAIT_TIME.MAX} |1 |The maximum log flush wait time in ms for trigger expression. |0 |
-ROW |1342 |10327 |{$MSSQL.LOG_FLUSH_WAITS.MAX} |1 |The maximum log flush waits per second for trigger expression. |0 |
-ROW |1345 |10327 |{$MSSQL.PAGE_LIFE_EXPECTANCY.MIN} |300 |The minimum page life expectancy for trigger expression. |0 |
-ROW |1346 |10327 |{$MSSQL.PAGE_READS.MAX} |90 |The maximum page reads per second for trigger expression. |0 |
-ROW |1347 |10327 |{$MSSQL.PAGE_WRITES.MAX} |90 |The maximum page writes per second for trigger expression. |0 |
+ROW |1337 |10327 |{$MSSQL.FREE_LIST_STALLS.MAX} |2 |The maximum free list stalls per second - for the trigger expression. |0 |
+ROW |1338 |10327 |{$MSSQL.LAZY_WRITES.MAX} |20 |The maximum lazy writes per second - for the trigger expression. |0 |
+ROW |1339 |10327 |{$MSSQL.LOCK_REQUESTS.MAX} |1000 |The maximum lock requests per second - for the trigger expression. |0 |
+ROW |1340 |10327 |{$MSSQL.LOCK_TIMEOUTS.MAX} |1 |The maximum lock timeouts per second - for the trigger expression. |0 |
+ROW |1341 |10327 |{$MSSQL.LOG_FLUSH_WAIT_TIME.MAX} |1 |The maximum log flush wait time in ms - for the trigger expression. |0 |
+ROW |1342 |10327 |{$MSSQL.LOG_FLUSH_WAITS.MAX} |1 |The maximum log flush waits per second - for the trigger expression. |0 |
+ROW |1345 |10327 |{$MSSQL.PAGE_LIFE_EXPECTANCY.MIN} |300 |The minimum page life expectancy - for the trigger expression. |0 |
+ROW |1346 |10327 |{$MSSQL.PAGE_READS.MAX} |90 |The maximum page reads per second - for the trigger expression. |0 |
+ROW |1347 |10327 |{$MSSQL.PAGE_WRITES.MAX} |90 |The maximum page writes per second - for the trigger expression. |0 |
ROW |1348 |10327 |{$MSSQL.PASSWORD} |<Put your password here> |MSSQL user password. |0 |
-ROW |1349 |10327 |{$MSSQL.PERCENT_COMPILATIONS.MAX} |10 |The maximum percent of Transact-SQL compilations for trigger expression. |0 |
-ROW |1350 |10327 |{$MSSQL.PERCENT_LOG_USED.MAX} |80 |The maximum percent log used for trigger expression. |0 |
-ROW |1351 |10327 |{$MSSQL.PERCENT_READAHEAD.MAX} |20 |The maximum percent of pages read/sec in anticipation of use for trigger expression. |0 |
-ROW |1352 |10327 |{$MSSQL.PERCENT_RECOMPILATIONS.MAX} |10 |The maximum percent of Transact-SQL recompilations for trigger expression. |0 |
+ROW |1349 |10327 |{$MSSQL.PERCENT_COMPILATIONS.MAX} |10 |The maximum percentage of Transact-SQL compilations - for the trigger expression. |0 |
+ROW |1350 |10327 |{$MSSQL.PERCENT_LOG_USED.MAX} |80 |The maximum percentage of log used - for the trigger expression. |0 |
+ROW |1351 |10327 |{$MSSQL.PERCENT_READAHEAD.MAX} |20 |The maximum percentage of pages read/sec in anticipation of use - for the trigger expression. |0 |
+ROW |1352 |10327 |{$MSSQL.PERCENT_RECOMPILATIONS.MAX} |10 |The maximum percentage of Transact-SQL recompilations - for the trigger expression. |0 |
ROW |1353 |10327 |{$MSSQL.PORT} |1433 |MSSQL TCP port. |0 |
ROW |1354 |10327 |{$MSSQL.USER} |<Put your username here> |MSSQL username. |0 |
-ROW |1355 |10327 |{$MSSQL.WORK_FILES.MAX} |20 |The maximum number of work files created per second for trigger expression. |0 |
-ROW |1356 |10327 |{$MSSQL.WORK_TABLES.MAX} |20 |The maximum number of work tables created per second for trigger expression. |0 |
-ROW |1357 |10327 |{$MSSQL.WORKTABLES_FROM_CACHE_RATIO.MIN.CRIT} |90 |The minimum % worktables from cache ratio for high trigger expression. |0 |
+ROW |1355 |10327 |{$MSSQL.WORK_FILES.MAX} |20 |The maximum number of work files created per second - for the trigger expression. |0 |
+ROW |1356 |10327 |{$MSSQL.WORK_TABLES.MAX} |20 |The maximum number of work tables created per second - for the trigger expression. |0 |
+ROW |1357 |10327 |{$MSSQL.WORKTABLES_FROM_CACHE_RATIO.MIN.CRIT} |90 |The minimum percentage of the worktables from cache ratio - for the High trigger expression. |0 |
ROW |1358 |10316 |{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN} |10 |The maximum number of created tmp tables on a disk per second for trigger expressions. |0 |
ROW |1359 |10316 |{$MYSQL.CREATED_TMP_FILES.MAX.WARN} |10 |The maximum number of created tmp files on a disk per second for trigger expressions. |0 |
ROW |1360 |10316 |{$MYSQL.CREATED_TMP_TABLES.MAX.WARN} |30 |The maximum number of created tmp tables in memory per second for trigger expressions. |0 |
@@ -18833,7 +19021,7 @@ ROW |1370 |10328 |{$PG.LLD.FILTER.DBNAME}
ROW |1371 |10328 |{$PG.PASSWORD} |postgres | |0 |
ROW |1372 |10328 |{$PG.URI} |tcp://localhost:5432 | |0 |
ROW |1373 |10328 |{$PG.USER} |postgres | |0 |
-ROW |1374 |10327 |{$MSSQL.INSTANCE} |SQLServer |The instance name for the default instance is SQLServer. For named instance set macro value as MSSQL$instance name. |0 |
+ROW |1374 |10327 |{$MSSQL.INSTANCE} |SQLServer |The instance name for the default instance is SQLServer. For named instance set the macro value as MSSQL$instance name. |0 |
ROW |1375 |10329 |{$ORACLE.ASM.USED.PCT.MAX.HIGH} |95 |Maximum percentage of used ASM disk group for high trigger expression. |0 |
ROW |1376 |10329 |{$ORACLE.ASM.USED.PCT.MAX.WARN} |90 |Maximum percentage of used ASM disk group for warning trigger expression. |0 |
ROW |1377 |10329 |{$ORACLE.CONCURRENCY.MAX.WARN} |80 |Maximum percentage of sessions concurrency usage for trigger expression. |0 |
@@ -19508,6 +19696,29 @@ ROW |2067 |10382 |{$UPS.INPUT_FREQ.MIN.WARN}
ROW |2068 |10382 |{$UPS.INPUT_VOLT.MAX.WARN} |243 |Maximum input voltage for trigger expression. |0 |
ROW |2069 |10382 |{$UPS.INPUT_VOLT.MIN.WARN} |197 |Minimum input voltage for trigger expression. |0 |
ROW |2070 |10382 |{$UPS.OUTPUT.MAX.WARN} |80 |Maximum output load in % for trigger expression. |0 |
+ROW |2071 |10383 |{$WILDFLY.DEPLOYMENT.MATCHES} |.* |Filter of discoverable deployments |0 |
+ROW |2072 |10383 |{$WILDFLY.DEPLOYMENT.NOT_MATCHES} |CHANGE_IF_NEEDED |Filter to exclude discovered deployments |0 |
+ROW |2073 |10383 |{$WILDFLY.JMX.PROTOCOL} |remote+http | |0 |
+ROW |2074 |10383 |{$WILDFLY.PASSWORD} |zabbix | |0 |
+ROW |2075 |10383 |{$WILDFLY.SERVER.MATCHES} |.* |Filter of discoverable servers |0 |
+ROW |2076 |10383 |{$WILDFLY.SERVER.NOT_MATCHES} |CHANGE_IF_NEEDED |Filter to exclude discovered servers |0 |
+ROW |2077 |10383 |{$WILDFLY.USER} |zabbix | |0 |
+ROW |2078 |10384 |{$WILDFLY.CONN.USAGE.WARN.MAX} |80 |The maximum connection usage percent for trigger expression. |0 |
+ROW |2079 |10384 |{$WILDFLY.CONN.WAIT.MAX.WARN} |300 |The maximum number of waiting connections for trigger expression. |0 |
+ROW |2080 |10384 |{$WILDFLY.DEPLOYMENT.MATCHES} |.* |Filter of discoverable deployments |0 |
+ROW |2081 |10384 |{$WILDFLY.DEPLOYMENT.NOT_MATCHES} |CHANGE_IF_NEEDED |Filter to exclude discovered deployments |0 |
+ROW |2082 |10384 |{$WILDFLY.JMX.PROTOCOL} |remote+http | |0 |
+ROW |2083 |10384 |{$WILDFLY.PASSWORD} |zabbix | |0 |
+ROW |2084 |10384 |{$WILDFLY.USER} |zabbix | |0 |
+ROW |2085 |10327 |{$MSSQL.BACKUP_DIFF.CRIT} |6d |The maximum days without a differential backup - for the High trigger expression. |0 |
+ROW |2086 |10327 |{$MSSQL.BACKUP_DIFF.WARN} |3d |The maximum days without a differential backup - for the Warning trigger expression. |0 |
+ROW |2087 |10327 |{$MSSQL.BACKUP_DURATION.WARN} |1h |The maximum job duration - for the Warning trigger expression. |0 |
+ROW |2088 |10327 |{$MSSQL.BACKUP_FULL.CRIT} |10d |The maximum days without a full backup - for the High trigger expression. |0 |
+ROW |2089 |10327 |{$MSSQL.BACKUP_FULL.WARN} |9d |The maximum days without a full backup - for the Warning trigger expression. |0 |
+ROW |2090 |10327 |{$MSSQL.BACKUP_LOG.CRIT} |8h |The maximum days without a log backup - for the High trigger expression. |0 |
+ROW |2091 |10327 |{$MSSQL.BACKUP_LOG.WARN} |4h |The maximum days without a log backup - for the Warning trigger expression. |0 |
+ROW |2092 |10327 |{$MSSQL.JOB.MATCHES} |.* |This macro is used in job discovery. It can be overridden on a host or linked template level. |0 |
+ROW |2093 |10327 |{$MSSQL.JOB.NOT_MATCHES} |CHANGE_IF_NEEDED |This macro is used in job discovery. It can be overridden on a host or linked template level. |0 |
TABLE |hosts_groups
FIELDS|hostgroupid|hostid|groupid|
@@ -19701,6 +19912,8 @@ ROW |404 |10379 |17 |
ROW |405 |10380 |17 |
ROW |406 |10381 |17 |
ROW |407 |10382 |17 |
+ROW |408 |10383 |12 |
+ROW |409 |10384 |12 |
TABLE |hosts_templates
FIELDS|hosttemplateid|hostid|templateid|
@@ -19987,4200 +20200,4224 @@ ROW |95602 |1267 |29783 |
ROW |95603 |1267 |29784 |
ROW |95604 |1267 |30044 |
ROW |95605 |1267 |30045 |
-ROW |106402 |1116 |28743 |
-ROW |106403 |1116 |28744 |
-ROW |106404 |1116 |28745 |
-ROW |106405 |1116 |28746 |
-ROW |106406 |1116 |28747 |
-ROW |106407 |1116 |28748 |
-ROW |106408 |1117 |30896 |
-ROW |106409 |1116 |30897 |
-ROW |106410 |1116 |30898 |
-ROW |106411 |1116 |30899 |
-ROW |106412 |1116 |30900 |
-ROW |106413 |1116 |30901 |
-ROW |106414 |1116 |30902 |
-ROW |106415 |1116 |30903 |
-ROW |106416 |1116 |30904 |
-ROW |106417 |1116 |30905 |
-ROW |106418 |1116 |30906 |
-ROW |106419 |1116 |30907 |
-ROW |106420 |1116 |30908 |
-ROW |106421 |1116 |30909 |
-ROW |106422 |1116 |30910 |
-ROW |106423 |1116 |30911 |
-ROW |106424 |1116 |30912 |
-ROW |106425 |1116 |30913 |
-ROW |106426 |1116 |30914 |
-ROW |106427 |1116 |30915 |
-ROW |106428 |1116 |30917 |
-ROW |106429 |1116 |30918 |
-ROW |106430 |1116 |30919 |
-ROW |106431 |1116 |30920 |
-ROW |106432 |1116 |30921 |
-ROW |106433 |1116 |30922 |
-ROW |106434 |1119 |28775 |
-ROW |106435 |1118 |28776 |
-ROW |106436 |1118 |28777 |
-ROW |106437 |1118 |28778 |
-ROW |106438 |1118 |28779 |
-ROW |106439 |1118 |28780 |
-ROW |106440 |1118 |28781 |
-ROW |106441 |1118 |28782 |
-ROW |106442 |1118 |28783 |
-ROW |106443 |1118 |28784 |
-ROW |106444 |1118 |28785 |
-ROW |106445 |1118 |28786 |
-ROW |106446 |1118 |28787 |
-ROW |106447 |1118 |28788 |
-ROW |106448 |1118 |28789 |
-ROW |106449 |1118 |28790 |
-ROW |106450 |1118 |28791 |
-ROW |106451 |1118 |28792 |
-ROW |106452 |1118 |28793 |
-ROW |106453 |1118 |28794 |
-ROW |106454 |1118 |28795 |
-ROW |106455 |1118 |28796 |
-ROW |106456 |1118 |28798 |
-ROW |106457 |1118 |28799 |
-ROW |106458 |1118 |28800 |
-ROW |106459 |1118 |28801 |
-ROW |106460 |1118 |28802 |
-ROW |106461 |1118 |28803 |
-ROW |106462 |1349 |31800 |
-ROW |106463 |1349 |31801 |
-ROW |106464 |1349 |31802 |
-ROW |106465 |1348 |31803 |
-ROW |106466 |1349 |31804 |
-ROW |106467 |1348 |31805 |
-ROW |106468 |1348 |31806 |
-ROW |106469 |1348 |31807 |
-ROW |106470 |1348 |31808 |
-ROW |106471 |1348 |31809 |
-ROW |106472 |1348 |31810 |
-ROW |106473 |1348 |31811 |
-ROW |106474 |1348 |31812 |
-ROW |106475 |1348 |31813 |
-ROW |106476 |1348 |31814 |
-ROW |106477 |1348 |31815 |
-ROW |106478 |1348 |31816 |
-ROW |106479 |1348 |31817 |
-ROW |106480 |1348 |31818 |
-ROW |106481 |1348 |31819 |
-ROW |106482 |1348 |31820 |
-ROW |106483 |1348 |31821 |
-ROW |106484 |1348 |31822 |
-ROW |106485 |1348 |31823 |
-ROW |106486 |1348 |31824 |
-ROW |106487 |1348 |31825 |
-ROW |106488 |1348 |31826 |
-ROW |106489 |1348 |31827 |
-ROW |106490 |1348 |31828 |
-ROW |106491 |1348 |31829 |
-ROW |106492 |1348 |31830 |
-ROW |106493 |1348 |31831 |
-ROW |106494 |1348 |31832 |
-ROW |106495 |1348 |31833 |
-ROW |106496 |1348 |31834 |
-ROW |106497 |1348 |31835 |
-ROW |106498 |1348 |31836 |
-ROW |106499 |1348 |31837 |
-ROW |106500 |1348 |31838 |
-ROW |106501 |1348 |31839 |
-ROW |106502 |1348 |31840 |
-ROW |106503 |1348 |31841 |
-ROW |106504 |1348 |31842 |
-ROW |106505 |1348 |31843 |
-ROW |106506 |1348 |31844 |
-ROW |106507 |1348 |31845 |
-ROW |106508 |1348 |31846 |
-ROW |106509 |1348 |31847 |
-ROW |106510 |1348 |31848 |
-ROW |106511 |1348 |31849 |
-ROW |106512 |1348 |31850 |
-ROW |106513 |1319 |30527 |
-ROW |106514 |1319 |30528 |
-ROW |106515 |1319 |30529 |
-ROW |106516 |1318 |30530 |
-ROW |106517 |1319 |30531 |
-ROW |106518 |1318 |30532 |
-ROW |106519 |1318 |30533 |
-ROW |106520 |1318 |30534 |
-ROW |106521 |1318 |30535 |
-ROW |106522 |1318 |30536 |
-ROW |106523 |1318 |30537 |
-ROW |106524 |1318 |30538 |
-ROW |106525 |1318 |30539 |
-ROW |106526 |1318 |30540 |
-ROW |106527 |1318 |30541 |
-ROW |106528 |1318 |30542 |
-ROW |106529 |1318 |30543 |
-ROW |106530 |1318 |30544 |
-ROW |106531 |1318 |30545 |
-ROW |106532 |1318 |30546 |
-ROW |106533 |1318 |30547 |
-ROW |106534 |1318 |30548 |
-ROW |106535 |1318 |30549 |
-ROW |106536 |1318 |30550 |
-ROW |106537 |1318 |30551 |
-ROW |106538 |1318 |30552 |
-ROW |106539 |1318 |30553 |
-ROW |106540 |1318 |30554 |
-ROW |106541 |1318 |30555 |
-ROW |106542 |1318 |30556 |
-ROW |106543 |1318 |30557 |
-ROW |106544 |1318 |30558 |
-ROW |106545 |1318 |30559 |
-ROW |106546 |1318 |30560 |
-ROW |106547 |1318 |30561 |
-ROW |106548 |1318 |30562 |
-ROW |106549 |1318 |30563 |
-ROW |106550 |1318 |30564 |
-ROW |106551 |1318 |30565 |
-ROW |106552 |1318 |30566 |
-ROW |106553 |1318 |30567 |
-ROW |106554 |1318 |30568 |
-ROW |106555 |1318 |30569 |
-ROW |106556 |1318 |30570 |
-ROW |106557 |1326 |30690 |
-ROW |106558 |1327 |30691 |
-ROW |106559 |1326 |30692 |
-ROW |106560 |1327 |30693 |
-ROW |106561 |1327 |30694 |
-ROW |106562 |1326 |30695 |
-ROW |106563 |1326 |30696 |
-ROW |106564 |1326 |30697 |
-ROW |106565 |1326 |30698 |
-ROW |106566 |1326 |30699 |
-ROW |106567 |1326 |30700 |
-ROW |106568 |1326 |30701 |
-ROW |106569 |1326 |30702 |
-ROW |106570 |1326 |30703 |
-ROW |106571 |1326 |30704 |
-ROW |106572 |1326 |30705 |
-ROW |106573 |1326 |30706 |
-ROW |106574 |1326 |30707 |
-ROW |106575 |1326 |30708 |
-ROW |106576 |1326 |30709 |
-ROW |106577 |1326 |30710 |
-ROW |106578 |1326 |30711 |
-ROW |106579 |1326 |30712 |
-ROW |106580 |1327 |30719 |
-ROW |106581 |1327 |30739 |
-ROW |106582 |1327 |30743 |
-ROW |106583 |1327 |30744 |
-ROW |106584 |1327 |30746 |
-ROW |106585 |1327 |30747 |
-ROW |106586 |1327 |30754 |
-ROW |106587 |1327 |30756 |
-ROW |106588 |1331 |30923 |
-ROW |106589 |1331 |30924 |
-ROW |106590 |1332 |30925 |
-ROW |106591 |1332 |30926 |
-ROW |106592 |1331 |30927 |
-ROW |106593 |1331 |30928 |
-ROW |106594 |1331 |30929 |
-ROW |106595 |1331 |30930 |
-ROW |106596 |1331 |30931 |
-ROW |106597 |1331 |30932 |
-ROW |106598 |1331 |30933 |
-ROW |106599 |1331 |30934 |
-ROW |106600 |1331 |30935 |
-ROW |106601 |1331 |30936 |
-ROW |106602 |1331 |30937 |
-ROW |106603 |1331 |30938 |
-ROW |106604 |1331 |30939 |
-ROW |106605 |1331 |30940 |
-ROW |106606 |1331 |30941 |
-ROW |106607 |1331 |30942 |
-ROW |106608 |1331 |30943 |
-ROW |106609 |1331 |30944 |
-ROW |106610 |1331 |30945 |
-ROW |106611 |1331 |30946 |
-ROW |106612 |1331 |30947 |
-ROW |106613 |1331 |30948 |
-ROW |106614 |1331 |30949 |
-ROW |106615 |1331 |30950 |
-ROW |106616 |1331 |30951 |
-ROW |106617 |1331 |30952 |
-ROW |106618 |1331 |30953 |
-ROW |106619 |1331 |30954 |
-ROW |106620 |1331 |30955 |
-ROW |106621 |1331 |30956 |
-ROW |106622 |1331 |30957 |
-ROW |106623 |1331 |30958 |
-ROW |106624 |1331 |30959 |
-ROW |106625 |1331 |30960 |
-ROW |106626 |1331 |30963 |
-ROW |106627 |1411 |32486 |
-ROW |106628 |1411 |32487 |
-ROW |106629 |1411 |32488 |
-ROW |106630 |1411 |32489 |
-ROW |106631 |1411 |32490 |
-ROW |106632 |1411 |32491 |
-ROW |106633 |1411 |32492 |
-ROW |106634 |1411 |32493 |
-ROW |106635 |1411 |32494 |
-ROW |106636 |1411 |32498 |
-ROW |106637 |1411 |32499 |
-ROW |106638 |1411 |32500 |
-ROW |106639 |1412 |32516 |
-ROW |106640 |1412 |32517 |
-ROW |106641 |1412 |32518 |
-ROW |106642 |1412 |32519 |
-ROW |106643 |1412 |32520 |
-ROW |106644 |1412 |32521 |
-ROW |106645 |1412 |32522 |
-ROW |106646 |1412 |32523 |
-ROW |106647 |1412 |32524 |
-ROW |106648 |1412 |32528 |
-ROW |106649 |1412 |32529 |
-ROW |106650 |1412 |32530 |
-ROW |106651 |1341 |31499 |
-ROW |106652 |1341 |31500 |
-ROW |106653 |1341 |31501 |
-ROW |106654 |1341 |31502 |
-ROW |106655 |1341 |31503 |
-ROW |106656 |1341 |31504 |
-ROW |106657 |1341 |31505 |
-ROW |106658 |1341 |31506 |
-ROW |106659 |1341 |31507 |
-ROW |106660 |1341 |31508 |
-ROW |106661 |1341 |31509 |
-ROW |106662 |1341 |31510 |
-ROW |106663 |1341 |31511 |
-ROW |106664 |1341 |31512 |
-ROW |106665 |1341 |31513 |
-ROW |106666 |1341 |31514 |
-ROW |106667 |1341 |31515 |
-ROW |106668 |1341 |31516 |
-ROW |106669 |1341 |31517 |
-ROW |106670 |1341 |31518 |
-ROW |106671 |1341 |31519 |
-ROW |106672 |1341 |31520 |
-ROW |106673 |1341 |31521 |
-ROW |106674 |1341 |31522 |
-ROW |106675 |1341 |31523 |
-ROW |106676 |1341 |31524 |
-ROW |106677 |1341 |31525 |
-ROW |106678 |1341 |31526 |
-ROW |106679 |1341 |31527 |
-ROW |106680 |1341 |31528 |
-ROW |106681 |1341 |31529 |
-ROW |106682 |1341 |31530 |
-ROW |106683 |1341 |31531 |
-ROW |106684 |1341 |31532 |
-ROW |106685 |1341 |31533 |
-ROW |106686 |1341 |31534 |
-ROW |106687 |1341 |31535 |
-ROW |106688 |1341 |31536 |
-ROW |106689 |1341 |31537 |
-ROW |106690 |1341 |31538 |
-ROW |106691 |1341 |31539 |
-ROW |106692 |1341 |31540 |
-ROW |106693 |1341 |31541 |
-ROW |106694 |1341 |31542 |
-ROW |106695 |1341 |31543 |
-ROW |106696 |1341 |31544 |
-ROW |106697 |1341 |31545 |
-ROW |106698 |1341 |31546 |
-ROW |106699 |1341 |31547 |
-ROW |106700 |1341 |31548 |
-ROW |106701 |1341 |31549 |
-ROW |106702 |1341 |31550 |
-ROW |106703 |1341 |31551 |
-ROW |106704 |1341 |31552 |
-ROW |106705 |1341 |31553 |
-ROW |106706 |1358 |32012 |
-ROW |106707 |1358 |32013 |
-ROW |106708 |1357 |32014 |
-ROW |106709 |1357 |32015 |
-ROW |106710 |1357 |32016 |
-ROW |106711 |1358 |32017 |
-ROW |106712 |1357 |32018 |
-ROW |106713 |1358 |32019 |
-ROW |106714 |1357 |32020 |
-ROW |106715 |1357 |32021 |
-ROW |106716 |1357 |32022 |
-ROW |106717 |1357 |32023 |
-ROW |106718 |1357 |32024 |
-ROW |106719 |1357 |32025 |
-ROW |106720 |1357 |32026 |
-ROW |106721 |1357 |32027 |
-ROW |106722 |1357 |32028 |
-ROW |106723 |1357 |32029 |
-ROW |106724 |1357 |32030 |
-ROW |106725 |1357 |32031 |
-ROW |106726 |1357 |32032 |
-ROW |106727 |1357 |32033 |
-ROW |106728 |1357 |32034 |
-ROW |106729 |1357 |32035 |
-ROW |106730 |1357 |32036 |
-ROW |106731 |1357 |32037 |
-ROW |106732 |1357 |32038 |
-ROW |106733 |1357 |32039 |
-ROW |106734 |1357 |32040 |
-ROW |106735 |1357 |32041 |
-ROW |106736 |1357 |32042 |
-ROW |106737 |1357 |32043 |
-ROW |106738 |1357 |32044 |
-ROW |106739 |1357 |32045 |
-ROW |106740 |1358 |32048 |
-ROW |106741 |1358 |32049 |
-ROW |106742 |1298 |30187 |
-ROW |106743 |1298 |30188 |
-ROW |106744 |1299 |30189 |
-ROW |106745 |1299 |30190 |
-ROW |106746 |1298 |30191 |
-ROW |106747 |1298 |30192 |
-ROW |106748 |1301 |30230 |
-ROW |106749 |1301 |30231 |
-ROW |106750 |1300 |30789 |
-ROW |106751 |1300 |30790 |
-ROW |106752 |1300 |30234 |
-ROW |106753 |1300 |30235 |
-ROW |106754 |1333 |30968 |
-ROW |106755 |1333 |30969 |
-ROW |106756 |1333 |30970 |
-ROW |106757 |1333 |30971 |
-ROW |106758 |1333 |30972 |
-ROW |106759 |1333 |30973 |
-ROW |106760 |1333 |30974 |
-ROW |106761 |1333 |30975 |
-ROW |106762 |1333 |30976 |
-ROW |106763 |1333 |30977 |
-ROW |106764 |1333 |30978 |
-ROW |106765 |1333 |30979 |
-ROW |106766 |1333 |30980 |
-ROW |106767 |1333 |30981 |
-ROW |106768 |1333 |30982 |
-ROW |106769 |1333 |30983 |
-ROW |106770 |1333 |30984 |
-ROW |106771 |1333 |30985 |
-ROW |106772 |1333 |30986 |
-ROW |106773 |1333 |30987 |
-ROW |106774 |1333 |30988 |
-ROW |106775 |1333 |30989 |
-ROW |106776 |1333 |30990 |
-ROW |106777 |1333 |30991 |
-ROW |106778 |1333 |30992 |
-ROW |106779 |1333 |30993 |
-ROW |106780 |1333 |30994 |
-ROW |106781 |1333 |30995 |
-ROW |106782 |1333 |30996 |
-ROW |106783 |1333 |30997 |
-ROW |106784 |1333 |30998 |
-ROW |106785 |1333 |30999 |
-ROW |106786 |1333 |31000 |
-ROW |106787 |1333 |31001 |
-ROW |106788 |1333 |31002 |
-ROW |106789 |1333 |31003 |
-ROW |106790 |1333 |31004 |
-ROW |106791 |1334 |31010 |
-ROW |106792 |1334 |31011 |
-ROW |106793 |1334 |31012 |
-ROW |106794 |1334 |31013 |
-ROW |106795 |1334 |31014 |
-ROW |106796 |1334 |31015 |
-ROW |106797 |1334 |31016 |
-ROW |106798 |1334 |31017 |
-ROW |106799 |1334 |31018 |
-ROW |106800 |1334 |31019 |
-ROW |106801 |1334 |31020 |
-ROW |106802 |1334 |31021 |
-ROW |106803 |1334 |31022 |
-ROW |106804 |1334 |31023 |
-ROW |106805 |1334 |31024 |
-ROW |106806 |1334 |31025 |
-ROW |106807 |1334 |31026 |
-ROW |106808 |1334 |31027 |
-ROW |106809 |1334 |31028 |
-ROW |106810 |1334 |31029 |
-ROW |106811 |1334 |31030 |
-ROW |106812 |1334 |31031 |
-ROW |106813 |1334 |31032 |
-ROW |106814 |1334 |31033 |
-ROW |106815 |1334 |31034 |
-ROW |106816 |1334 |31035 |
-ROW |106817 |1334 |31036 |
-ROW |106818 |1334 |31037 |
-ROW |106819 |1334 |31038 |
-ROW |106820 |1334 |31039 |
-ROW |106821 |1334 |31040 |
-ROW |106822 |1334 |31041 |
-ROW |106823 |1334 |31042 |
-ROW |106824 |1334 |31043 |
-ROW |106825 |1334 |31044 |
-ROW |106826 |1334 |31045 |
-ROW |106827 |1334 |31046 |
-ROW |106828 |1359 |32071 |
-ROW |106829 |1359 |32072 |
-ROW |106830 |1359 |32073 |
-ROW |106831 |1359 |32074 |
-ROW |106832 |1359 |32075 |
-ROW |106833 |1359 |32076 |
-ROW |106834 |1359 |32077 |
-ROW |106835 |1359 |32078 |
-ROW |106836 |1359 |32079 |
-ROW |106837 |1359 |32080 |
-ROW |106838 |1359 |32081 |
-ROW |106839 |1359 |32082 |
-ROW |106840 |1359 |32083 |
-ROW |106841 |1359 |32084 |
-ROW |106842 |1359 |32085 |
-ROW |106843 |1359 |32086 |
-ROW |106844 |1359 |32087 |
-ROW |106845 |1359 |32088 |
-ROW |106846 |1359 |32089 |
-ROW |106847 |1359 |32090 |
-ROW |106848 |1359 |32091 |
-ROW |106849 |1359 |32092 |
-ROW |106850 |1359 |32093 |
-ROW |106851 |1359 |32094 |
-ROW |106852 |1359 |32095 |
-ROW |106853 |1359 |32096 |
-ROW |106854 |1359 |32097 |
-ROW |106855 |1359 |32098 |
-ROW |106856 |1359 |32099 |
-ROW |106857 |1359 |32100 |
-ROW |106858 |1359 |32101 |
-ROW |106859 |1359 |32102 |
-ROW |106860 |1359 |32103 |
-ROW |106861 |1359 |32104 |
-ROW |106862 |1359 |32105 |
-ROW |106863 |1359 |32106 |
-ROW |106864 |1359 |32107 |
-ROW |106865 |1359 |32108 |
-ROW |106866 |1359 |32109 |
-ROW |106867 |1359 |32110 |
-ROW |106868 |1359 |32111 |
-ROW |106869 |1359 |32112 |
-ROW |106870 |1359 |32113 |
-ROW |106871 |1359 |32114 |
-ROW |106872 |1359 |32115 |
-ROW |106873 |1359 |32116 |
-ROW |106874 |1359 |32117 |
-ROW |106875 |1359 |32118 |
-ROW |106876 |1359 |32119 |
-ROW |106877 |1359 |32120 |
-ROW |106878 |1359 |32121 |
-ROW |106879 |1359 |32122 |
-ROW |106880 |1359 |32123 |
-ROW |106881 |1359 |32124 |
-ROW |106882 |1359 |32125 |
-ROW |106883 |1359 |32126 |
-ROW |106884 |1359 |32127 |
-ROW |106885 |1359 |32128 |
-ROW |106886 |1359 |32129 |
-ROW |106887 |1359 |32130 |
-ROW |106888 |1359 |32131 |
-ROW |106889 |1359 |32132 |
-ROW |106890 |1320 |30611 |
-ROW |106891 |1321 |30612 |
-ROW |106892 |1320 |30613 |
-ROW |106893 |1320 |30614 |
-ROW |106894 |1320 |30615 |
-ROW |106895 |1320 |30616 |
-ROW |106896 |1320 |30617 |
-ROW |106897 |1320 |30618 |
-ROW |106898 |1320 |30619 |
-ROW |106899 |1320 |30620 |
-ROW |106900 |1320 |30621 |
-ROW |106901 |1320 |30622 |
-ROW |106902 |1320 |30623 |
-ROW |106903 |1320 |30624 |
-ROW |106904 |1320 |30625 |
-ROW |106905 |1320 |30626 |
-ROW |106906 |1320 |30627 |
-ROW |106907 |1320 |30628 |
-ROW |106908 |1320 |30629 |
-ROW |106909 |1320 |30630 |
-ROW |106910 |1320 |30631 |
-ROW |106911 |1320 |30632 |
-ROW |106912 |1320 |30633 |
-ROW |106913 |1320 |30634 |
-ROW |106914 |1320 |30635 |
-ROW |106915 |1320 |30636 |
-ROW |106916 |1121 |28804 |
-ROW |106917 |1120 |28805 |
-ROW |106918 |1120 |28806 |
-ROW |106919 |1120 |28807 |
-ROW |106920 |1120 |28808 |
-ROW |106921 |1120 |28809 |
-ROW |106922 |1120 |28810 |
-ROW |106923 |1120 |28811 |
-ROW |106924 |1120 |28812 |
-ROW |106925 |1120 |28813 |
-ROW |106926 |1120 |28814 |
-ROW |106927 |1120 |28815 |
-ROW |106928 |1120 |28816 |
-ROW |106929 |1120 |28817 |
-ROW |106930 |1120 |28818 |
-ROW |106931 |1120 |28819 |
-ROW |106932 |1120 |28820 |
-ROW |106933 |1123 |28821 |
-ROW |106934 |1122 |28822 |
-ROW |106935 |1122 |28823 |
-ROW |106936 |1122 |28824 |
-ROW |106937 |1122 |28825 |
-ROW |106938 |1122 |28826 |
-ROW |106939 |1122 |28827 |
-ROW |106940 |1122 |28828 |
-ROW |106941 |1122 |28829 |
-ROW |106942 |1122 |28830 |
-ROW |106943 |1122 |28831 |
-ROW |106944 |1122 |28832 |
-ROW |106945 |1122 |28833 |
-ROW |106946 |1351 |31868 |
-ROW |106947 |1351 |31869 |
-ROW |106948 |1350 |31870 |
-ROW |106949 |1350 |31871 |
-ROW |106950 |1350 |31872 |
-ROW |106951 |1350 |31873 |
-ROW |106952 |1350 |31874 |
-ROW |106953 |1350 |31875 |
-ROW |106954 |1350 |31876 |
-ROW |106955 |1350 |31877 |
-ROW |106956 |1350 |31878 |
-ROW |106957 |1350 |31879 |
-ROW |106958 |1350 |31880 |
-ROW |106959 |1350 |31881 |
-ROW |106960 |1350 |31882 |
-ROW |106961 |1350 |31883 |
-ROW |106962 |1350 |31884 |
-ROW |106963 |1350 |31885 |
-ROW |106964 |1350 |31886 |
-ROW |106965 |1350 |31887 |
-ROW |106966 |1350 |31888 |
-ROW |106967 |1350 |31889 |
-ROW |106968 |1350 |31890 |
-ROW |106969 |1352 |31891 |
-ROW |106970 |1353 |31892 |
-ROW |106971 |1353 |31893 |
-ROW |106972 |1352 |31894 |
-ROW |106973 |1352 |31895 |
-ROW |106974 |1352 |31896 |
-ROW |106975 |1352 |31897 |
-ROW |106976 |1352 |31898 |
-ROW |106977 |1352 |31899 |
-ROW |106978 |1352 |31900 |
-ROW |106979 |1352 |31901 |
-ROW |106980 |1352 |31902 |
-ROW |106981 |1352 |31903 |
-ROW |106982 |1352 |31904 |
-ROW |106983 |1352 |31905 |
-ROW |106984 |1352 |31906 |
-ROW |106985 |1352 |31907 |
-ROW |106986 |1352 |31908 |
-ROW |106987 |1352 |31909 |
-ROW |106988 |1426 |32829 |
-ROW |106989 |1426 |32830 |
-ROW |106990 |1427 |32831 |
-ROW |106991 |1427 |32832 |
-ROW |106992 |1428 |32833 |
-ROW |106993 |1428 |32834 |
-ROW |106994 |1428 |32835 |
-ROW |106995 |1427 |32836 |
-ROW |106996 |1427 |32837 |
-ROW |106997 |1427 |32838 |
-ROW |106998 |1427 |32839 |
-ROW |106999 |1425 |32840 |
-ROW |107000 |1425 |32841 |
-ROW |107001 |1425 |32842 |
-ROW |107002 |1425 |32843 |
-ROW |107003 |1425 |32844 |
-ROW |107004 |1425 |32845 |
-ROW |107005 |1425 |32846 |
-ROW |107006 |1425 |32847 |
-ROW |107007 |1425 |32848 |
-ROW |107008 |1425 |32849 |
-ROW |107009 |1425 |32850 |
-ROW |107010 |1425 |32851 |
-ROW |107011 |1425 |32852 |
-ROW |107012 |1425 |32853 |
-ROW |107013 |1425 |32854 |
-ROW |107014 |1425 |32855 |
-ROW |107015 |1425 |32856 |
-ROW |107016 |1425 |32857 |
-ROW |107017 |1425 |32858 |
-ROW |107018 |1425 |32859 |
-ROW |107019 |1425 |32860 |
-ROW |107020 |1425 |32861 |
-ROW |107021 |1425 |32862 |
-ROW |107022 |1425 |32863 |
-ROW |107023 |1427 |32864 |
-ROW |107024 |1427 |32865 |
-ROW |107025 |1427 |32866 |
-ROW |107026 |1427 |32867 |
-ROW |107027 |1427 |32868 |
-ROW |107028 |1427 |32869 |
-ROW |107029 |1427 |32870 |
-ROW |107030 |1427 |32871 |
-ROW |107031 |1427 |32872 |
-ROW |107032 |1427 |32873 |
-ROW |107033 |1427 |32874 |
-ROW |107034 |1427 |32875 |
-ROW |107035 |1427 |32876 |
-ROW |107036 |1427 |32877 |
-ROW |107037 |1427 |32878 |
-ROW |107038 |1425 |32884 |
-ROW |107039 |1427 |32885 |
-ROW |107040 |1427 |32886 |
-ROW |107041 |1427 |32887 |
-ROW |107042 |1427 |32888 |
-ROW |107043 |1427 |32889 |
-ROW |107044 |1427 |32890 |
-ROW |107045 |1430 |32925 |
-ROW |107046 |1430 |32926 |
-ROW |107047 |1431 |32927 |
-ROW |107048 |1432 |32928 |
-ROW |107049 |1432 |32929 |
-ROW |107050 |1432 |32930 |
-ROW |107051 |1431 |32931 |
-ROW |107052 |1429 |32932 |
-ROW |107053 |1429 |32933 |
-ROW |107054 |1429 |32934 |
-ROW |107055 |1429 |32935 |
-ROW |107056 |1429 |32936 |
-ROW |107057 |1429 |32937 |
-ROW |107058 |1429 |32938 |
-ROW |107059 |1429 |32939 |
-ROW |107060 |1429 |32940 |
-ROW |107061 |1429 |32941 |
-ROW |107062 |1429 |32942 |
-ROW |107063 |1429 |32943 |
-ROW |107064 |1429 |32944 |
-ROW |107065 |1429 |32945 |
-ROW |107066 |1429 |32946 |
-ROW |107067 |1429 |32947 |
-ROW |107068 |1429 |32948 |
-ROW |107069 |1429 |32949 |
-ROW |107070 |1429 |32950 |
-ROW |107071 |1429 |32951 |
-ROW |107072 |1429 |32952 |
-ROW |107073 |1429 |32953 |
-ROW |107074 |1429 |32954 |
-ROW |107075 |1429 |32955 |
-ROW |107076 |1431 |32956 |
-ROW |107077 |1431 |32957 |
-ROW |107078 |1431 |32958 |
-ROW |107079 |1431 |32959 |
-ROW |107080 |1431 |32960 |
-ROW |107081 |1431 |32961 |
-ROW |107082 |1431 |32962 |
-ROW |107083 |1431 |32963 |
-ROW |107084 |1431 |32964 |
-ROW |107085 |1431 |32965 |
-ROW |107086 |1431 |32966 |
-ROW |107087 |1431 |32967 |
-ROW |107088 |1431 |32968 |
-ROW |107089 |1431 |32969 |
-ROW |107090 |1431 |32970 |
-ROW |107091 |1429 |32976 |
-ROW |107092 |1431 |32977 |
-ROW |107093 |1431 |32978 |
-ROW |107094 |1431 |32979 |
-ROW |107095 |1431 |32980 |
-ROW |107096 |1431 |32981 |
-ROW |107097 |1431 |32982 |
-ROW |107098 |1354 |31910 |
-ROW |107099 |1354 |31911 |
-ROW |107100 |1354 |31912 |
-ROW |107101 |1354 |31913 |
-ROW |107102 |1354 |31914 |
-ROW |107103 |1354 |31915 |
-ROW |107104 |1354 |31916 |
-ROW |107105 |1354 |31917 |
-ROW |107106 |1354 |31918 |
-ROW |107107 |1354 |31919 |
-ROW |107108 |1354 |31920 |
-ROW |107109 |1354 |31921 |
-ROW |107110 |1354 |31922 |
-ROW |107111 |1354 |31923 |
-ROW |107112 |1354 |31924 |
-ROW |107113 |1354 |31925 |
-ROW |107114 |1354 |31926 |
-ROW |107115 |1354 |31927 |
-ROW |107116 |1354 |31928 |
-ROW |107117 |1354 |31929 |
-ROW |107118 |1354 |31930 |
-ROW |107119 |1354 |31931 |
-ROW |107120 |1354 |31932 |
-ROW |107121 |1354 |31933 |
-ROW |107122 |1354 |31934 |
-ROW |107123 |1354 |31935 |
-ROW |107124 |1354 |31936 |
-ROW |107125 |1354 |31937 |
-ROW |107126 |1354 |31938 |
-ROW |107127 |1354 |31939 |
-ROW |107128 |1354 |31940 |
-ROW |107129 |1354 |31941 |
-ROW |107130 |1354 |31942 |
-ROW |107131 |1354 |31943 |
-ROW |107132 |1354 |31944 |
-ROW |107133 |1354 |31945 |
-ROW |107134 |1354 |31946 |
-ROW |107135 |1354 |31947 |
-ROW |107136 |1354 |31948 |
-ROW |107137 |1354 |31949 |
-ROW |107138 |1354 |31950 |
-ROW |107139 |1354 |31951 |
-ROW |107140 |1354 |31952 |
-ROW |107141 |1354 |31953 |
-ROW |107142 |1354 |31954 |
-ROW |107143 |1354 |31955 |
-ROW |107144 |1354 |31956 |
-ROW |107145 |1354 |31957 |
-ROW |107146 |1354 |31958 |
-ROW |107147 |1354 |31959 |
-ROW |107148 |1354 |31960 |
-ROW |107149 |1354 |31961 |
-ROW |107150 |1354 |31962 |
-ROW |107151 |1354 |31963 |
-ROW |107152 |1109 |28511 |
-ROW |107153 |1342 |31554 |
-ROW |107154 |1342 |31555 |
-ROW |107155 |1342 |31556 |
-ROW |107156 |1343 |31557 |
-ROW |107157 |1343 |31558 |
-ROW |107158 |1343 |31559 |
-ROW |107159 |1343 |31560 |
-ROW |107160 |1343 |31561 |
-ROW |107161 |1343 |31562 |
-ROW |107162 |1343 |31563 |
-ROW |107163 |1343 |31564 |
-ROW |107164 |1343 |31565 |
-ROW |107165 |1343 |31566 |
-ROW |107166 |1343 |31567 |
-ROW |107167 |1343 |31568 |
-ROW |107168 |1343 |31569 |
-ROW |107169 |1343 |31570 |
-ROW |107170 |1343 |31571 |
-ROW |107171 |1343 |31572 |
-ROW |107172 |1343 |31573 |
-ROW |107173 |1343 |31574 |
-ROW |107174 |1343 |31575 |
-ROW |107175 |1344 |31576 |
-ROW |107176 |1344 |31577 |
-ROW |107177 |1344 |31578 |
-ROW |107178 |1344 |31579 |
-ROW |107179 |1344 |31580 |
-ROW |107180 |1344 |31581 |
-ROW |107181 |1344 |31582 |
-ROW |107182 |1344 |31583 |
-ROW |107183 |1344 |31584 |
-ROW |107184 |1344 |31585 |
-ROW |107185 |1344 |31586 |
-ROW |107186 |1344 |31587 |
-ROW |107187 |1344 |31588 |
-ROW |107188 |1344 |31589 |
-ROW |107189 |1344 |31590 |
-ROW |107190 |1344 |31591 |
-ROW |107191 |1344 |31592 |
-ROW |107192 |1344 |31593 |
-ROW |107193 |1344 |31594 |
-ROW |107194 |1344 |31595 |
-ROW |107195 |1344 |31596 |
-ROW |107196 |1342 |31605 |
-ROW |107197 |1342 |31606 |
-ROW |107198 |1342 |31607 |
-ROW |107199 |1342 |31608 |
-ROW |107200 |1342 |31609 |
-ROW |107201 |1343 |31610 |
-ROW |107202 |1343 |31611 |
-ROW |107203 |1343 |31612 |
-ROW |107204 |1343 |31613 |
-ROW |107205 |1343 |31614 |
-ROW |107206 |1343 |31615 |
-ROW |107207 |1343 |31616 |
-ROW |107208 |1343 |31617 |
-ROW |107209 |1343 |31618 |
-ROW |107210 |1343 |31619 |
-ROW |107211 |1343 |31620 |
-ROW |107212 |1343 |31621 |
-ROW |107213 |1344 |31622 |
-ROW |107214 |1344 |31623 |
-ROW |107215 |1344 |31624 |
-ROW |107216 |1344 |31625 |
-ROW |107217 |1360 |32158 |
-ROW |107218 |1360 |32159 |
-ROW |107219 |1361 |32160 |
-ROW |107220 |1361 |32161 |
-ROW |107221 |1361 |32162 |
-ROW |107222 |1361 |32163 |
-ROW |107223 |1361 |32164 |
-ROW |107224 |1361 |32165 |
-ROW |107225 |1361 |32166 |
-ROW |107226 |1361 |32167 |
-ROW |107227 |1361 |32168 |
-ROW |107228 |1361 |32169 |
-ROW |107229 |1361 |32170 |
-ROW |107230 |1361 |32171 |
-ROW |107231 |1361 |32172 |
-ROW |107232 |1361 |32173 |
-ROW |107233 |1361 |32174 |
-ROW |107234 |1361 |32175 |
-ROW |107235 |1361 |32176 |
-ROW |107236 |1361 |32177 |
-ROW |107237 |1361 |32178 |
-ROW |107238 |1361 |32179 |
-ROW |107239 |1361 |32180 |
-ROW |107240 |1361 |32181 |
-ROW |107241 |1361 |32182 |
-ROW |107242 |1361 |32183 |
-ROW |107243 |1361 |32184 |
-ROW |107244 |1361 |32185 |
-ROW |107245 |1361 |32186 |
-ROW |107246 |1361 |32187 |
-ROW |107247 |1361 |32188 |
-ROW |107248 |1361 |32189 |
-ROW |107249 |1361 |32190 |
-ROW |107250 |1361 |32191 |
-ROW |107251 |1361 |32192 |
-ROW |107252 |1361 |32201 |
-ROW |107253 |1361 |32202 |
-ROW |107254 |1361 |32203 |
-ROW |107255 |1361 |32204 |
-ROW |107256 |1361 |32205 |
-ROW |107257 |1361 |32206 |
-ROW |107258 |446 |23644 |
-ROW |107259 |447 |23645 |
-ROW |107260 |448 |23646 |
-ROW |107261 |449 |23647 |
-ROW |107262 |450 |23648 |
-ROW |107263 |451 |23649 |
-ROW |107264 |452 |23650 |
-ROW |107265 |453 |23651 |
-ROW |107266 |1111 |28585 |
-ROW |107267 |1111 |28586 |
-ROW |107268 |1111 |28587 |
-ROW |107269 |1111 |28588 |
-ROW |107270 |1111 |28589 |
-ROW |107271 |1111 |28590 |
-ROW |107272 |1111 |28591 |
-ROW |107273 |1111 |28592 |
-ROW |107274 |1111 |28593 |
-ROW |107275 |1111 |28594 |
-ROW |107276 |1111 |28595 |
-ROW |107277 |1111 |28596 |
-ROW |107278 |1111 |28597 |
-ROW |107279 |1111 |28598 |
-ROW |107280 |1111 |28599 |
-ROW |107281 |1111 |28600 |
-ROW |107282 |1111 |28601 |
-ROW |107283 |1111 |28602 |
-ROW |107284 |1111 |28603 |
-ROW |107285 |1111 |28604 |
-ROW |107286 |1111 |28605 |
-ROW |107287 |1111 |28606 |
-ROW |107288 |1111 |28607 |
-ROW |107289 |1111 |28608 |
-ROW |107290 |1111 |28609 |
-ROW |107291 |1111 |28610 |
-ROW |107292 |1111 |28611 |
-ROW |107293 |1111 |28612 |
-ROW |107294 |1111 |28613 |
-ROW |107295 |1111 |28614 |
-ROW |107296 |1111 |28615 |
-ROW |107297 |1111 |28616 |
-ROW |107298 |1111 |31052 |
-ROW |107299 |1110 |28539 |
-ROW |107300 |1110 |28540 |
-ROW |107301 |1110 |28541 |
-ROW |107302 |1110 |28542 |
-ROW |107303 |1110 |28543 |
-ROW |107304 |1110 |28544 |
-ROW |107305 |1110 |28545 |
-ROW |107306 |1110 |28546 |
-ROW |107307 |1110 |28547 |
-ROW |107308 |1110 |28548 |
-ROW |107309 |1110 |28549 |
-ROW |107310 |1110 |28550 |
-ROW |107311 |1110 |28551 |
-ROW |107312 |1110 |28552 |
-ROW |107313 |1110 |28553 |
-ROW |107314 |1110 |28554 |
-ROW |107315 |1110 |28555 |
-ROW |107316 |1110 |28556 |
-ROW |107317 |1110 |28557 |
-ROW |107318 |1110 |28558 |
-ROW |107319 |1110 |28559 |
-ROW |107320 |1110 |28560 |
-ROW |107321 |1110 |28561 |
-ROW |107322 |1110 |28562 |
-ROW |107323 |1110 |28563 |
-ROW |107324 |1110 |28564 |
-ROW |107325 |1110 |28565 |
-ROW |107326 |1110 |28566 |
-ROW |107327 |1110 |28567 |
-ROW |107328 |1110 |28568 |
-ROW |107329 |1110 |28569 |
-ROW |107330 |1110 |28570 |
-ROW |107331 |1110 |28571 |
-ROW |107332 |1110 |28572 |
-ROW |107333 |1110 |28573 |
-ROW |107334 |1110 |28574 |
-ROW |107335 |1110 |28575 |
-ROW |107336 |1110 |28576 |
-ROW |107337 |1110 |28577 |
-ROW |107338 |1110 |28578 |
-ROW |107339 |1110 |28579 |
-ROW |107340 |1110 |28580 |
-ROW |107341 |1110 |28581 |
-ROW |107342 |1110 |28582 |
-ROW |107343 |1110 |28583 |
-ROW |107344 |1110 |28584 |
-ROW |107345 |1110 |29821 |
-ROW |107346 |1110 |31053 |
-ROW |107347 |454 |23652 |
-ROW |107348 |455 |23653 |
-ROW |107349 |456 |23654 |
-ROW |107350 |356 |10067 |
-ROW |107351 |356 |10068 |
-ROW |107352 |356 |10069 |
-ROW |107353 |356 |10070 |
-ROW |107354 |356 |10071 |
-ROW |107355 |356 |10072 |
-ROW |107356 |356 |23340 |
-ROW |107357 |356 |23341 |
-ROW |107358 |356 |23342 |
-ROW |107359 |356 |23343 |
-ROW |107360 |356 |23344 |
-ROW |107361 |356 |23345 |
-ROW |107362 |356 |23346 |
-ROW |107363 |356 |23347 |
-ROW |107364 |356 |23348 |
-ROW |107365 |356 |23349 |
-ROW |107366 |356 |23350 |
-ROW |107367 |356 |23351 |
-ROW |107368 |356 |23352 |
-ROW |107369 |356 |23353 |
-ROW |107370 |356 |23354 |
-ROW |107371 |356 |23355 |
-ROW |107372 |356 |23356 |
-ROW |107373 |356 |23357 |
-ROW |107374 |356 |23358 |
-ROW |107375 |356 |23359 |
-ROW |107376 |356 |23360 |
-ROW |107377 |356 |25368 |
-ROW |107378 |356 |25369 |
-ROW |107379 |356 |28250 |
-ROW |107380 |356 |28251 |
-ROW |107381 |356 |28617 |
-ROW |107382 |356 |28618 |
-ROW |107383 |356 |28619 |
-ROW |107384 |179 |10061 |
-ROW |107385 |179 |10062 |
-ROW |107386 |179 |10063 |
-ROW |107387 |179 |10064 |
-ROW |107388 |179 |10065 |
-ROW |107389 |179 |10066 |
-ROW |107390 |179 |22183 |
-ROW |107391 |179 |22185 |
-ROW |107392 |179 |22187 |
-ROW |107393 |179 |22189 |
-ROW |107394 |179 |22191 |
-ROW |107395 |179 |22196 |
-ROW |107396 |179 |22199 |
-ROW |107397 |179 |22219 |
-ROW |107398 |179 |22396 |
-ROW |107399 |179 |22399 |
-ROW |107400 |179 |22400 |
-ROW |107401 |179 |22401 |
-ROW |107402 |179 |22402 |
-ROW |107403 |179 |22404 |
-ROW |107404 |179 |22406 |
-ROW |107405 |179 |22408 |
-ROW |107406 |179 |22412 |
-ROW |107407 |179 |22414 |
-ROW |107408 |179 |22416 |
-ROW |107409 |179 |22418 |
-ROW |107410 |179 |22420 |
-ROW |107411 |179 |22422 |
-ROW |107412 |179 |22424 |
-ROW |107413 |179 |22426 |
-ROW |107414 |179 |22430 |
-ROW |107415 |179 |22689 |
-ROW |107416 |179 |23171 |
-ROW |107417 |179 |23251 |
-ROW |107418 |179 |23634 |
-ROW |107419 |179 |23661 |
-ROW |107420 |179 |23663 |
-ROW |107421 |179 |25366 |
-ROW |107422 |179 |25370 |
-ROW |107423 |179 |25665 |
-ROW |107424 |179 |25666 |
-ROW |107425 |179 |28248 |
-ROW |107426 |179 |28533 |
-ROW |107427 |179 |28535 |
-ROW |107428 |179 |28537 |
-ROW |107429 |179 |29822 |
-ROW |107430 |345 |10073 |
-ROW |107431 |345 |10074 |
-ROW |107432 |345 |10075 |
-ROW |107433 |345 |10076 |
-ROW |107434 |345 |10077 |
-ROW |107435 |345 |10078 |
-ROW |107436 |345 |23252 |
-ROW |107437 |345 |23253 |
-ROW |107438 |345 |23255 |
-ROW |107439 |345 |23256 |
-ROW |107440 |345 |23257 |
-ROW |107441 |345 |23258 |
-ROW |107442 |345 |23259 |
-ROW |107443 |345 |23260 |
-ROW |107444 |345 |23261 |
-ROW |107445 |345 |23262 |
-ROW |107446 |345 |23264 |
-ROW |107447 |345 |23265 |
-ROW |107448 |345 |23266 |
-ROW |107449 |345 |23267 |
-ROW |107450 |345 |23268 |
-ROW |107451 |345 |23269 |
-ROW |107452 |345 |23270 |
-ROW |107453 |345 |23271 |
-ROW |107454 |345 |23272 |
-ROW |107455 |345 |23273 |
-ROW |107456 |345 |23274 |
-ROW |107457 |345 |23275 |
-ROW |107458 |345 |23276 |
-ROW |107459 |345 |23277 |
-ROW |107460 |345 |23328 |
-ROW |107461 |345 |23620 |
-ROW |107462 |345 |23625 |
-ROW |107463 |345 |23628 |
-ROW |107464 |345 |23635 |
-ROW |107465 |345 |23662 |
-ROW |107466 |345 |23664 |
-ROW |107467 |345 |25367 |
-ROW |107468 |345 |25371 |
-ROW |107469 |345 |25667 |
-ROW |107470 |345 |25668 |
-ROW |107471 |345 |28249 |
-ROW |107472 |345 |28534 |
-ROW |107473 |345 |28536 |
-ROW |107474 |345 |28538 |
-ROW |107475 |345 |29823 |
-ROW |107476 |280 |22917 |
-ROW |107477 |280 |22918 |
-ROW |107478 |273 |22920 |
-ROW |107479 |279 |22920 |
-ROW |107480 |273 |22921 |
-ROW |107481 |279 |22921 |
-ROW |107482 |273 |22922 |
-ROW |107483 |279 |22922 |
-ROW |107484 |273 |22923 |
-ROW |107485 |279 |22923 |
-ROW |107486 |273 |22924 |
-ROW |107487 |279 |22924 |
-ROW |107488 |275 |22933 |
-ROW |107489 |278 |22933 |
-ROW |107490 |275 |22934 |
-ROW |107491 |278 |22934 |
-ROW |107492 |275 |22938 |
-ROW |107493 |278 |22938 |
-ROW |107494 |275 |22939 |
-ROW |107495 |278 |22939 |
-ROW |107496 |278 |22940 |
-ROW |107497 |281 |22940 |
-ROW |107498 |281 |22941 |
-ROW |107499 |276 |22942 |
-ROW |107500 |276 |22943 |
-ROW |107501 |273 |23108 |
-ROW |107502 |331 |23108 |
-ROW |107503 |279 |23108 |
-ROW |107504 |273 |23109 |
-ROW |107505 |331 |23109 |
-ROW |107506 |279 |23109 |
-ROW |107507 |273 |23110 |
-ROW |107508 |279 |23110 |
-ROW |107509 |273 |23111 |
-ROW |107510 |331 |23111 |
-ROW |107511 |279 |23111 |
-ROW |107512 |273 |23112 |
-ROW |107513 |331 |23112 |
-ROW |107514 |279 |23112 |
-ROW |107515 |273 |23113 |
-ROW |107516 |279 |23113 |
-ROW |107517 |273 |23114 |
-ROW |107518 |279 |23114 |
-ROW |107519 |273 |23115 |
-ROW |107520 |279 |23115 |
-ROW |107521 |274 |23116 |
-ROW |107522 |279 |23116 |
-ROW |107523 |274 |23117 |
-ROW |107524 |279 |23117 |
-ROW |107525 |273 |23118 |
-ROW |107526 |331 |23118 |
-ROW |107527 |273 |23119 |
-ROW |107528 |279 |23119 |
-ROW |107529 |273 |23120 |
-ROW |107530 |279 |23120 |
-ROW |107531 |273 |23121 |
-ROW |107532 |279 |23121 |
-ROW |107533 |276 |23122 |
-ROW |107534 |279 |23122 |
-ROW |107535 |273 |23123 |
-ROW |107536 |279 |23123 |
-ROW |107537 |276 |23124 |
-ROW |107538 |276 |23125 |
-ROW |107539 |276 |23126 |
-ROW |107540 |276 |23127 |
-ROW |107541 |276 |23128 |
-ROW |107542 |276 |23129 |
-ROW |107543 |276 |23130 |
-ROW |107544 |276 |23131 |
-ROW |107545 |277 |22945 |
-ROW |107546 |277 |22946 |
-ROW |107547 |274 |22948 |
-ROW |107548 |274 |22949 |
-ROW |107549 |274 |22950 |
-ROW |107550 |274 |22951 |
-ROW |107551 |274 |22952 |
-ROW |107552 |268 |22875 |
-ROW |107553 |268 |22876 |
-ROW |107554 |270 |22877 |
-ROW |107555 |270 |22878 |
-ROW |107556 |265 |22879 |
-ROW |107557 |268 |22879 |
-ROW |107558 |263 |22880 |
-ROW |107559 |269 |22880 |
-ROW |107560 |263 |22881 |
-ROW |107561 |269 |22881 |
-ROW |107562 |263 |22882 |
-ROW |107563 |269 |22882 |
-ROW |107564 |263 |22883 |
-ROW |107565 |269 |22883 |
-ROW |107566 |263 |22884 |
-ROW |107567 |269 |22884 |
-ROW |107568 |263 |22885 |
-ROW |107569 |269 |22885 |
-ROW |107570 |263 |22886 |
-ROW |107571 |269 |22886 |
-ROW |107572 |263 |22888 |
-ROW |107573 |269 |22888 |
-ROW |107574 |263 |22891 |
-ROW |107575 |269 |22891 |
-ROW |107576 |263 |22892 |
-ROW |107577 |269 |22892 |
-ROW |107578 |265 |22893 |
-ROW |107579 |268 |22893 |
-ROW |107580 |265 |22894 |
-ROW |107581 |268 |22894 |
-ROW |107582 |266 |22895 |
-ROW |107583 |266 |22896 |
-ROW |107584 |266 |22897 |
-ROW |107585 |265 |22898 |
-ROW |107586 |268 |22898 |
-ROW |107587 |265 |22899 |
-ROW |107588 |268 |22899 |
-ROW |107589 |268 |22900 |
-ROW |107590 |271 |22900 |
-ROW |107591 |271 |22901 |
-ROW |107592 |266 |22902 |
-ROW |107593 |266 |22903 |
-ROW |107594 |264 |22908 |
-ROW |107595 |264 |22909 |
-ROW |107596 |264 |22910 |
-ROW |107597 |264 |22911 |
-ROW |107598 |264 |22912 |
-ROW |107599 |267 |23073 |
-ROW |107600 |267 |23074 |
-ROW |107601 |283 |22961 |
-ROW |107602 |289 |22961 |
-ROW |107603 |283 |22962 |
-ROW |107604 |289 |22962 |
-ROW |107605 |283 |22963 |
-ROW |107606 |289 |22963 |
-ROW |107607 |283 |22965 |
-ROW |107608 |289 |22965 |
-ROW |107609 |283 |22968 |
-ROW |107610 |289 |22968 |
-ROW |107611 |283 |22971 |
-ROW |107612 |289 |22971 |
-ROW |107613 |283 |22972 |
-ROW |107614 |289 |22972 |
-ROW |107615 |285 |22973 |
-ROW |107616 |288 |22973 |
-ROW |107617 |285 |22974 |
-ROW |107618 |288 |22974 |
-ROW |107619 |285 |22978 |
-ROW |107620 |288 |22978 |
-ROW |107621 |288 |22980 |
-ROW |107622 |291 |22980 |
-ROW |107623 |291 |22981 |
-ROW |107624 |286 |22982 |
-ROW |107625 |286 |22983 |
-ROW |107626 |287 |22985 |
-ROW |107627 |287 |22986 |
-ROW |107628 |284 |22988 |
-ROW |107629 |284 |22989 |
-ROW |107630 |284 |22990 |
-ROW |107631 |284 |22991 |
-ROW |107632 |284 |22992 |
-ROW |107633 |308 |23035 |
-ROW |107634 |308 |23036 |
-ROW |107635 |305 |23039 |
-ROW |107636 |308 |23039 |
-ROW |107637 |303 |23041 |
-ROW |107638 |309 |23041 |
-ROW |107639 |303 |23042 |
-ROW |107640 |309 |23042 |
-ROW |107641 |303 |23043 |
-ROW |107642 |309 |23043 |
-ROW |107643 |305 |23053 |
-ROW |107644 |308 |23053 |
-ROW |107645 |305 |23054 |
-ROW |107646 |308 |23054 |
-ROW |107647 |305 |23058 |
-ROW |107648 |308 |23058 |
-ROW |107649 |305 |23059 |
-ROW |107650 |308 |23059 |
-ROW |107651 |308 |23060 |
-ROW |107652 |311 |23060 |
-ROW |107653 |311 |23061 |
-ROW |107654 |306 |23062 |
-ROW |107655 |306 |23063 |
-ROW |107656 |307 |23077 |
-ROW |107657 |307 |23078 |
-ROW |107658 |304 |23068 |
-ROW |107659 |304 |23069 |
-ROW |107660 |304 |23070 |
-ROW |107661 |304 |23071 |
-ROW |107662 |304 |23072 |
-ROW |107663 |258 |22835 |
-ROW |107664 |258 |22836 |
-ROW |107665 |260 |22837 |
-ROW |107666 |260 |22838 |
-ROW |107667 |255 |22839 |
-ROW |107668 |258 |22839 |
-ROW |107669 |253 |22840 |
-ROW |107670 |259 |22840 |
-ROW |107671 |253 |22841 |
-ROW |107672 |259 |22841 |
-ROW |107673 |253 |22842 |
-ROW |107674 |259 |22842 |
-ROW |107675 |253 |22843 |
-ROW |107676 |259 |22843 |
-ROW |107677 |253 |22844 |
-ROW |107678 |259 |22844 |
-ROW |107679 |253 |22845 |
-ROW |107680 |259 |22845 |
-ROW |107681 |253 |22846 |
-ROW |107682 |259 |22846 |
-ROW |107683 |253 |22848 |
-ROW |107684 |259 |22848 |
-ROW |107685 |253 |22851 |
-ROW |107686 |259 |22851 |
-ROW |107687 |253 |22852 |
-ROW |107688 |259 |22852 |
-ROW |107689 |255 |22853 |
-ROW |107690 |258 |22853 |
-ROW |107691 |255 |22854 |
-ROW |107692 |258 |22854 |
-ROW |107693 |256 |22855 |
-ROW |107694 |256 |22856 |
-ROW |107695 |256 |22857 |
-ROW |107696 |255 |22858 |
-ROW |107697 |258 |22858 |
-ROW |107698 |255 |22859 |
-ROW |107699 |258 |22859 |
-ROW |107700 |258 |22860 |
-ROW |107701 |261 |22860 |
-ROW |107702 |261 |22861 |
-ROW |107703 |256 |22862 |
-ROW |107704 |256 |22863 |
-ROW |107705 |254 |22868 |
-ROW |107706 |254 |22869 |
-ROW |107707 |254 |22870 |
-ROW |107708 |254 |22871 |
-ROW |107709 |254 |22872 |
-ROW |107710 |257 |23075 |
-ROW |107711 |257 |23076 |
-ROW |107712 |298 |22996 |
-ROW |107713 |300 |22997 |
-ROW |107714 |300 |22998 |
-ROW |107715 |295 |22999 |
-ROW |107716 |298 |22999 |
-ROW |107717 |293 |23000 |
-ROW |107718 |299 |23000 |
-ROW |107719 |293 |23001 |
-ROW |107720 |299 |23001 |
-ROW |107721 |293 |23002 |
-ROW |107722 |299 |23002 |
-ROW |107723 |293 |23003 |
-ROW |107724 |299 |23003 |
-ROW |107725 |293 |23004 |
-ROW |107726 |299 |23004 |
-ROW |107727 |293 |23005 |
-ROW |107728 |299 |23005 |
-ROW |107729 |293 |23007 |
-ROW |107730 |299 |23007 |
-ROW |107731 |293 |23011 |
-ROW |107732 |299 |23011 |
-ROW |107733 |293 |23012 |
-ROW |107734 |299 |23012 |
-ROW |107735 |295 |23013 |
-ROW |107736 |298 |23013 |
-ROW |107737 |295 |23014 |
-ROW |107738 |298 |23014 |
-ROW |107739 |296 |23015 |
-ROW |107740 |296 |23016 |
-ROW |107741 |296 |23017 |
-ROW |107742 |295 |23018 |
-ROW |107743 |298 |23018 |
-ROW |107744 |295 |23019 |
-ROW |107745 |298 |23019 |
-ROW |107746 |298 |23020 |
-ROW |107747 |301 |23020 |
-ROW |107748 |301 |23021 |
-ROW |107749 |296 |23022 |
-ROW |107750 |296 |23023 |
-ROW |107751 |297 |23025 |
-ROW |107752 |297 |23026 |
-ROW |107753 |294 |23028 |
-ROW |107754 |294 |23029 |
-ROW |107755 |294 |23030 |
-ROW |107756 |294 |23031 |
-ROW |107757 |294 |23032 |
-ROW |107758 |743 |26925 |
-ROW |107759 |743 |26926 |
-ROW |107760 |741 |26927 |
-ROW |107761 |742 |26928 |
-ROW |107762 |743 |26929 |
-ROW |107763 |743 |26930 |
-ROW |107764 |743 |26931 |
-ROW |107765 |743 |26932 |
-ROW |107766 |745 |26933 |
-ROW |107767 |746 |26934 |
-ROW |107768 |744 |26935 |
-ROW |107769 |744 |26936 |
-ROW |107770 |746 |26937 |
-ROW |107771 |746 |26938 |
-ROW |107772 |746 |26939 |
-ROW |107773 |746 |26940 |
-ROW |107774 |746 |26941 |
-ROW |107775 |746 |26942 |
-ROW |107776 |745 |26943 |
-ROW |107777 |1362 |32207 |
-ROW |107778 |1362 |32208 |
-ROW |107779 |1362 |32209 |
-ROW |107780 |1362 |32210 |
-ROW |107781 |1362 |32211 |
-ROW |107782 |1362 |32212 |
-ROW |107783 |1362 |32213 |
-ROW |107784 |1362 |32214 |
-ROW |107785 |1362 |32215 |
-ROW |107786 |1362 |32216 |
-ROW |107787 |1362 |32217 |
-ROW |107788 |1362 |32218 |
-ROW |107789 |1362 |32219 |
-ROW |107790 |1362 |32220 |
-ROW |107791 |1362 |32221 |
-ROW |107792 |1362 |32222 |
-ROW |107793 |1362 |32223 |
-ROW |107794 |1362 |32224 |
-ROW |107795 |1362 |32225 |
-ROW |107796 |1362 |32226 |
-ROW |107797 |1362 |32227 |
-ROW |107798 |1362 |32228 |
-ROW |107799 |1362 |32229 |
-ROW |107800 |1362 |32230 |
-ROW |107801 |1362 |32231 |
-ROW |107802 |1362 |32232 |
-ROW |107803 |1362 |32233 |
-ROW |107804 |1362 |32234 |
-ROW |107805 |1362 |32235 |
-ROW |107806 |1362 |32236 |
-ROW |107807 |1362 |32237 |
-ROW |107808 |1362 |32238 |
-ROW |107809 |1362 |32239 |
-ROW |107810 |1362 |32240 |
-ROW |107811 |1362 |32241 |
-ROW |107812 |1362 |32242 |
-ROW |107813 |1362 |32243 |
-ROW |107814 |1362 |32244 |
-ROW |107815 |1362 |32245 |
-ROW |107816 |1362 |32246 |
-ROW |107817 |1362 |32247 |
-ROW |107818 |1362 |32248 |
-ROW |107819 |1362 |32249 |
-ROW |107820 |1362 |32250 |
-ROW |107821 |1362 |32251 |
-ROW |107822 |1362 |32252 |
-ROW |107823 |1362 |32253 |
-ROW |107824 |1362 |32254 |
-ROW |107825 |1362 |32255 |
-ROW |107826 |1362 |32256 |
-ROW |107827 |1362 |32257 |
-ROW |107828 |1362 |32258 |
-ROW |107829 |1362 |32259 |
-ROW |107830 |1362 |32260 |
-ROW |107831 |1362 |32261 |
-ROW |107832 |1362 |32262 |
-ROW |107833 |1362 |32263 |
-ROW |107834 |1362 |32264 |
-ROW |107835 |1362 |32265 |
-ROW |107836 |1362 |32266 |
-ROW |107837 |1362 |32267 |
-ROW |107838 |1362 |32268 |
-ROW |107839 |1362 |32269 |
-ROW |107840 |1362 |32270 |
-ROW |107841 |1362 |32271 |
-ROW |107842 |1362 |32272 |
-ROW |107843 |1362 |32273 |
-ROW |107844 |1328 |30821 |
-ROW |107845 |1328 |30822 |
-ROW |107846 |1330 |30823 |
-ROW |107847 |1330 |30824 |
-ROW |107848 |1330 |30825 |
-ROW |107849 |1330 |30826 |
-ROW |107850 |1328 |30827 |
-ROW |107851 |1330 |30828 |
-ROW |107852 |1330 |30829 |
-ROW |107853 |1330 |30830 |
-ROW |107854 |1328 |31054 |
-ROW |107855 |1328 |30831 |
-ROW |107856 |1328 |30832 |
-ROW |107857 |1328 |30833 |
-ROW |107858 |1328 |30834 |
-ROW |107859 |1328 |30835 |
-ROW |107860 |1329 |30836 |
-ROW |107861 |1328 |30837 |
-ROW |107862 |1328 |30838 |
-ROW |107863 |1328 |30839 |
-ROW |107864 |1329 |30840 |
-ROW |107865 |1328 |30841 |
-ROW |107866 |1329 |30842 |
-ROW |107867 |1329 |30843 |
-ROW |107868 |1329 |30844 |
-ROW |107869 |1329 |30845 |
-ROW |107870 |1328 |30846 |
-ROW |107871 |1328 |30847 |
-ROW |107872 |1328 |30848 |
-ROW |107873 |1328 |30849 |
-ROW |107874 |1328 |30850 |
-ROW |107875 |1328 |30851 |
-ROW |107876 |1328 |30852 |
-ROW |107877 |1328 |30853 |
-ROW |107878 |1328 |30854 |
-ROW |107879 |1328 |30855 |
-ROW |107880 |1328 |30856 |
-ROW |107881 |1328 |30857 |
-ROW |107882 |1328 |30858 |
-ROW |107883 |1328 |30859 |
-ROW |107884 |1328 |30860 |
-ROW |107885 |1328 |30861 |
-ROW |107886 |1328 |30862 |
-ROW |107887 |1328 |30863 |
-ROW |107888 |1328 |30864 |
-ROW |107889 |1328 |30865 |
-ROW |107890 |1328 |30866 |
-ROW |107891 |1328 |30867 |
-ROW |107892 |1328 |30868 |
-ROW |107893 |1328 |30869 |
-ROW |107894 |1328 |30870 |
-ROW |107895 |1328 |30871 |
-ROW |107896 |1328 |30872 |
-ROW |107897 |1329 |30873 |
-ROW |107898 |1434 |33017 |
-ROW |107899 |1434 |33018 |
-ROW |107900 |1433 |33019 |
-ROW |107901 |1434 |33020 |
-ROW |107902 |1434 |33021 |
-ROW |107903 |1433 |33022 |
-ROW |107904 |1433 |33023 |
-ROW |107905 |1433 |33024 |
-ROW |107906 |1433 |33025 |
-ROW |107907 |1433 |33026 |
-ROW |107908 |1433 |33027 |
-ROW |107909 |1433 |33028 |
-ROW |107910 |1433 |33029 |
-ROW |107911 |1433 |33030 |
-ROW |107912 |1433 |33031 |
-ROW |107913 |1433 |33032 |
-ROW |107914 |1433 |33033 |
-ROW |107915 |1433 |33034 |
-ROW |107916 |1433 |33035 |
-ROW |107917 |1433 |33036 |
-ROW |107918 |1433 |33037 |
-ROW |107919 |1433 |33038 |
-ROW |107920 |1433 |33039 |
-ROW |107921 |1433 |33040 |
-ROW |107922 |1433 |33041 |
-ROW |107923 |1433 |33042 |
-ROW |107924 |1433 |33043 |
-ROW |107925 |1433 |33044 |
-ROW |107926 |1433 |33045 |
-ROW |107927 |1433 |33046 |
-ROW |107928 |1433 |33047 |
-ROW |107929 |1433 |33048 |
-ROW |107930 |1433 |33049 |
-ROW |107931 |1433 |33050 |
-ROW |107932 |1433 |33051 |
-ROW |107933 |1433 |33052 |
-ROW |107934 |1433 |33053 |
-ROW |107935 |1433 |33054 |
-ROW |107936 |1433 |33055 |
-ROW |107937 |1433 |33056 |
-ROW |107938 |1433 |33057 |
-ROW |107939 |1433 |33058 |
-ROW |107940 |1433 |33059 |
-ROW |107941 |1433 |33060 |
-ROW |107942 |1434 |33065 |
-ROW |107943 |1434 |33066 |
-ROW |107944 |1433 |33122 |
-ROW |107945 |1433 |33123 |
-ROW |107946 |1433 |33124 |
-ROW |107947 |1433 |33125 |
-ROW |107948 |1433 |33126 |
-ROW |107949 |1433 |33127 |
-ROW |107950 |1433 |33128 |
-ROW |107951 |1433 |33129 |
-ROW |107952 |1433 |33130 |
-ROW |107953 |1433 |33131 |
-ROW |107954 |1433 |33132 |
-ROW |107955 |1433 |33133 |
-ROW |107956 |1433 |33134 |
-ROW |107957 |1433 |33135 |
-ROW |107958 |1433 |33136 |
-ROW |107959 |1433 |33137 |
-ROW |107960 |1433 |33138 |
-ROW |107961 |1435 |33139 |
-ROW |107962 |1436 |33140 |
-ROW |107963 |1435 |33141 |
-ROW |107964 |1436 |33142 |
-ROW |107965 |1435 |33144 |
-ROW |107966 |1435 |33145 |
-ROW |107967 |1435 |33146 |
-ROW |107968 |1435 |33147 |
-ROW |107969 |1435 |33148 |
-ROW |107970 |1435 |33149 |
-ROW |107971 |1435 |33150 |
-ROW |107972 |1435 |33151 |
-ROW |107973 |1435 |33152 |
-ROW |107974 |1435 |33153 |
-ROW |107975 |1435 |33154 |
-ROW |107976 |1435 |33155 |
-ROW |107977 |1435 |33156 |
-ROW |107978 |1435 |33157 |
-ROW |107979 |1435 |33158 |
-ROW |107980 |1435 |33159 |
-ROW |107981 |1435 |33160 |
-ROW |107982 |1435 |33161 |
-ROW |107983 |1435 |33162 |
-ROW |107984 |1435 |33163 |
-ROW |107985 |1435 |33164 |
-ROW |107986 |1435 |33165 |
-ROW |107987 |1435 |33166 |
-ROW |107988 |1435 |33167 |
-ROW |107989 |1435 |33168 |
-ROW |107990 |1435 |33169 |
-ROW |107991 |1435 |33170 |
-ROW |107992 |1435 |33171 |
-ROW |107993 |1435 |33172 |
-ROW |107994 |1435 |33567 |
-ROW |107995 |1436 |33177 |
-ROW |107996 |1436 |33178 |
-ROW |107997 |1336 |31055 |
-ROW |107998 |1335 |31056 |
-ROW |107999 |1335 |31057 |
-ROW |108000 |1335 |31058 |
-ROW |108001 |1335 |31626 |
-ROW |108002 |1335 |31627 |
-ROW |108003 |1335 |31628 |
-ROW |108004 |1336 |31059 |
-ROW |108005 |1335 |31060 |
-ROW |108006 |1335 |31061 |
-ROW |108007 |1335 |31062 |
-ROW |108008 |1335 |31063 |
-ROW |108009 |1335 |31064 |
-ROW |108010 |1335 |31065 |
-ROW |108011 |1335 |31066 |
-ROW |108012 |1335 |31067 |
-ROW |108013 |1335 |31068 |
-ROW |108014 |1335 |31069 |
-ROW |108015 |1335 |31070 |
-ROW |108016 |1335 |31071 |
-ROW |108017 |1335 |31072 |
-ROW |108018 |1335 |31073 |
-ROW |108019 |1335 |31074 |
-ROW |108020 |1335 |31075 |
-ROW |108021 |1335 |31076 |
-ROW |108022 |1335 |31077 |
-ROW |108023 |1335 |31078 |
-ROW |108024 |1335 |31079 |
-ROW |108025 |1335 |31080 |
-ROW |108026 |1335 |31081 |
-ROW |108027 |1335 |31082 |
-ROW |108028 |1335 |31083 |
-ROW |108029 |1335 |31084 |
-ROW |108030 |1335 |31085 |
-ROW |108031 |1335 |31086 |
-ROW |108032 |1335 |31087 |
-ROW |108033 |1335 |31088 |
-ROW |108034 |1335 |31089 |
-ROW |108035 |1335 |31090 |
-ROW |108036 |1336 |31091 |
-ROW |108037 |1335 |31092 |
-ROW |108038 |1336 |31093 |
-ROW |108039 |1336 |31094 |
-ROW |108040 |1335 |31095 |
-ROW |108041 |1335 |31096 |
-ROW |108042 |1335 |31097 |
-ROW |108043 |1335 |31098 |
-ROW |108044 |1335 |31099 |
-ROW |108045 |1335 |31100 |
-ROW |108046 |1335 |31101 |
-ROW |108047 |1335 |31102 |
-ROW |108048 |1335 |31103 |
-ROW |108049 |1335 |31104 |
-ROW |108050 |1335 |31105 |
-ROW |108051 |1335 |31106 |
-ROW |108052 |1335 |31107 |
-ROW |108053 |1335 |31108 |
-ROW |108054 |1335 |31109 |
-ROW |108055 |1335 |31110 |
-ROW |108056 |1335 |31111 |
-ROW |108057 |1335 |31112 |
-ROW |108058 |1335 |31113 |
-ROW |108059 |1335 |31114 |
-ROW |108060 |1335 |31115 |
-ROW |108061 |1335 |31116 |
-ROW |108062 |1335 |31117 |
-ROW |108063 |1335 |31118 |
-ROW |108064 |1335 |31119 |
-ROW |108065 |1335 |31120 |
-ROW |108066 |1335 |31121 |
-ROW |108067 |1336 |31128 |
-ROW |108068 |1336 |31129 |
-ROW |108069 |1336 |31130 |
-ROW |108070 |1336 |31132 |
-ROW |108071 |1336 |33194 |
-ROW |108072 |1314 |30431 |
-ROW |108073 |1314 |30432 |
-ROW |108074 |1315 |30433 |
-ROW |108075 |1314 |30434 |
-ROW |108076 |1314 |30435 |
-ROW |108077 |1314 |32546 |
-ROW |108078 |1315 |30436 |
-ROW |108079 |1314 |30437 |
-ROW |108080 |1314 |30438 |
-ROW |108081 |1314 |30439 |
-ROW |108082 |1314 |30440 |
-ROW |108083 |1314 |30441 |
-ROW |108084 |1314 |30442 |
-ROW |108085 |1315 |30443 |
-ROW |108086 |1314 |30444 |
-ROW |108087 |1314 |30445 |
-ROW |108088 |1314 |30446 |
-ROW |108089 |1314 |30447 |
-ROW |108090 |1314 |30449 |
-ROW |108091 |1314 |30450 |
-ROW |108092 |1314 |30451 |
-ROW |108093 |1314 |30452 |
-ROW |108094 |1314 |30453 |
-ROW |108095 |1314 |30454 |
-ROW |108096 |1314 |30455 |
-ROW |108097 |1314 |30456 |
-ROW |108098 |1314 |30457 |
-ROW |108099 |1314 |30458 |
-ROW |108100 |1314 |30459 |
-ROW |108101 |1314 |30460 |
-ROW |108102 |1314 |30461 |
-ROW |108103 |1314 |30462 |
-ROW |108104 |1314 |30463 |
-ROW |108105 |1314 |30464 |
-ROW |108106 |1314 |30465 |
-ROW |108107 |1314 |30466 |
-ROW |108108 |1314 |30470 |
-ROW |108109 |1314 |30471 |
-ROW |108110 |1314 |31168 |
-ROW |108111 |1314 |31169 |
-ROW |108112 |1314 |31170 |
-ROW |108113 |1314 |31171 |
-ROW |108114 |1314 |32547 |
-ROW |108115 |1314 |32548 |
-ROW |108116 |1314 |32549 |
-ROW |108117 |1314 |32550 |
-ROW |108118 |1314 |32551 |
-ROW |108119 |1314 |32552 |
-ROW |108120 |1314 |30474 |
-ROW |108121 |1315 |30475 |
-ROW |108122 |1314 |30476 |
-ROW |108123 |1314 |30477 |
-ROW |108124 |1314 |30478 |
-ROW |108125 |1314 |32554 |
-ROW |108126 |1314 |32555 |
-ROW |108127 |1314 |32556 |
-ROW |108128 |1314 |32557 |
-ROW |108129 |1314 |32558 |
-ROW |108130 |1314 |32559 |
-ROW |108131 |1322 |30637 |
-ROW |108132 |1322 |30638 |
-ROW |108133 |1323 |30639 |
-ROW |108134 |1322 |30640 |
-ROW |108135 |1322 |30641 |
-ROW |108136 |1322 |32560 |
-ROW |108137 |1323 |30642 |
-ROW |108138 |1322 |30643 |
-ROW |108139 |1322 |30644 |
-ROW |108140 |1322 |30645 |
-ROW |108141 |1322 |30646 |
-ROW |108142 |1322 |30647 |
-ROW |108143 |1322 |30648 |
-ROW |108144 |1323 |30649 |
-ROW |108145 |1322 |30650 |
-ROW |108146 |1322 |30651 |
-ROW |108147 |1322 |30652 |
-ROW |108148 |1322 |30653 |
-ROW |108149 |1322 |30655 |
-ROW |108150 |1322 |30656 |
-ROW |108151 |1322 |30657 |
-ROW |108152 |1322 |30658 |
-ROW |108153 |1322 |30659 |
-ROW |108154 |1322 |30660 |
-ROW |108155 |1322 |30661 |
-ROW |108156 |1322 |30662 |
-ROW |108157 |1322 |30663 |
-ROW |108158 |1322 |30664 |
-ROW |108159 |1322 |30665 |
-ROW |108160 |1322 |30666 |
-ROW |108161 |1322 |30667 |
-ROW |108162 |1322 |30668 |
-ROW |108163 |1322 |30669 |
-ROW |108164 |1322 |30670 |
-ROW |108165 |1322 |30671 |
-ROW |108166 |1322 |30672 |
-ROW |108167 |1322 |30676 |
-ROW |108168 |1322 |30677 |
-ROW |108169 |1322 |31172 |
-ROW |108170 |1322 |31173 |
-ROW |108171 |1322 |31174 |
-ROW |108172 |1322 |31175 |
-ROW |108173 |1322 |32561 |
-ROW |108174 |1322 |32562 |
-ROW |108175 |1322 |32563 |
-ROW |108176 |1322 |32564 |
-ROW |108177 |1322 |32565 |
-ROW |108178 |1322 |32566 |
-ROW |108179 |1322 |30680 |
-ROW |108180 |1323 |30681 |
-ROW |108181 |1322 |30682 |
-ROW |108182 |1322 |30683 |
-ROW |108183 |1322 |30684 |
-ROW |108184 |1322 |32568 |
-ROW |108185 |1322 |32569 |
-ROW |108186 |1322 |32570 |
-ROW |108187 |1322 |32571 |
-ROW |108188 |1322 |32572 |
-ROW |108189 |1322 |32573 |
-ROW |108190 |1317 |30479 |
-ROW |108191 |1316 |30480 |
-ROW |108192 |1316 |30481 |
-ROW |108193 |1316 |30482 |
-ROW |108194 |1316 |30483 |
-ROW |108195 |1316 |32574 |
-ROW |108196 |1316 |30484 |
-ROW |108197 |1317 |30485 |
-ROW |108198 |1316 |30486 |
-ROW |108199 |1317 |30487 |
-ROW |108200 |1316 |30488 |
-ROW |108201 |1316 |30489 |
-ROW |108202 |1316 |30490 |
-ROW |108203 |1316 |30491 |
-ROW |108204 |1316 |30492 |
-ROW |108205 |1316 |30493 |
-ROW |108206 |1316 |30494 |
-ROW |108207 |1316 |30495 |
-ROW |108208 |1316 |30496 |
-ROW |108209 |1316 |30497 |
-ROW |108210 |1316 |30499 |
-ROW |108211 |1316 |30500 |
-ROW |108212 |1316 |30503 |
-ROW |108213 |1316 |30504 |
-ROW |108214 |1316 |30505 |
-ROW |108215 |1316 |30506 |
-ROW |108216 |1316 |30507 |
-ROW |108217 |1316 |30508 |
-ROW |108218 |1316 |30509 |
-ROW |108219 |1316 |30510 |
-ROW |108220 |1316 |30512 |
-ROW |108221 |1316 |30513 |
-ROW |108222 |1316 |30514 |
-ROW |108223 |1316 |30515 |
-ROW |108224 |1316 |30516 |
-ROW |108225 |1316 |30517 |
-ROW |108226 |1316 |30518 |
-ROW |108227 |1316 |30519 |
-ROW |108228 |1316 |31176 |
-ROW |108229 |1316 |31177 |
-ROW |108230 |1316 |31178 |
-ROW |108231 |1316 |31179 |
-ROW |108232 |1316 |32575 |
-ROW |108233 |1316 |32576 |
-ROW |108234 |1316 |32577 |
-ROW |108235 |1316 |32578 |
-ROW |108236 |1316 |32579 |
-ROW |108237 |1316 |32580 |
-ROW |108238 |1316 |30522 |
-ROW |108239 |1317 |30523 |
-ROW |108240 |1316 |30524 |
-ROW |108241 |1316 |30525 |
-ROW |108242 |1316 |30526 |
-ROW |108243 |1316 |32582 |
-ROW |108244 |1316 |32583 |
-ROW |108245 |1316 |32584 |
-ROW |108246 |1316 |32585 |
-ROW |108247 |1316 |32586 |
-ROW |108248 |1316 |32587 |
-ROW |108249 |1345 |31629 |
-ROW |108250 |1345 |31630 |
-ROW |108251 |1346 |31631 |
-ROW |108252 |1345 |31632 |
-ROW |108253 |1346 |31633 |
-ROW |108254 |1346 |31634 |
-ROW |108255 |1346 |31635 |
-ROW |108256 |1346 |31636 |
-ROW |108257 |1346 |31637 |
-ROW |108258 |1346 |31638 |
-ROW |108259 |1346 |31639 |
-ROW |108260 |1345 |31640 |
-ROW |108261 |1345 |31641 |
-ROW |108262 |1346 |31642 |
-ROW |108263 |1346 |31643 |
-ROW |108264 |1346 |31644 |
-ROW |108265 |1346 |31645 |
-ROW |108266 |1345 |31646 |
-ROW |108267 |1345 |31647 |
-ROW |108268 |1345 |31648 |
-ROW |108269 |1345 |31649 |
-ROW |108270 |1345 |31650 |
-ROW |108271 |1345 |31651 |
-ROW |108272 |1345 |31652 |
-ROW |108273 |1345 |31653 |
-ROW |108274 |1345 |31654 |
-ROW |108275 |1345 |31655 |
-ROW |108276 |1345 |31656 |
-ROW |108277 |1345 |31657 |
-ROW |108278 |1345 |31658 |
-ROW |108279 |1345 |31659 |
-ROW |108280 |1345 |31660 |
-ROW |108281 |1345 |31661 |
-ROW |108282 |1345 |31662 |
-ROW |108283 |1345 |31663 |
-ROW |108284 |1345 |31664 |
-ROW |108285 |1345 |31665 |
-ROW |108286 |1345 |31666 |
-ROW |108287 |1345 |31667 |
-ROW |108288 |1345 |31668 |
-ROW |108289 |1345 |31669 |
-ROW |108290 |1345 |31670 |
-ROW |108291 |1345 |31671 |
-ROW |108292 |1345 |31672 |
-ROW |108293 |1345 |31673 |
-ROW |108294 |1345 |31674 |
-ROW |108295 |1345 |31675 |
-ROW |108296 |1345 |31676 |
-ROW |108297 |1345 |31677 |
-ROW |108298 |1345 |31678 |
-ROW |108299 |1345 |31679 |
-ROW |108300 |1345 |31680 |
-ROW |108301 |1345 |31681 |
-ROW |108302 |1345 |31682 |
-ROW |108303 |1345 |31683 |
-ROW |108304 |1345 |31684 |
-ROW |108305 |1345 |31685 |
-ROW |108306 |1345 |31686 |
-ROW |108307 |1345 |31687 |
-ROW |108308 |1345 |31688 |
-ROW |108309 |1345 |31689 |
-ROW |108310 |1345 |31690 |
-ROW |108311 |1345 |31691 |
-ROW |108312 |1345 |31692 |
-ROW |108313 |1345 |31693 |
-ROW |108314 |1345 |31694 |
-ROW |108315 |1345 |31695 |
-ROW |108316 |1345 |31696 |
-ROW |108317 |1345 |31697 |
-ROW |108318 |1345 |31698 |
-ROW |108319 |1345 |31699 |
-ROW |108320 |1345 |31700 |
-ROW |108321 |1345 |31701 |
-ROW |108322 |1345 |31702 |
-ROW |108323 |1345 |31703 |
-ROW |108324 |1345 |31704 |
-ROW |108325 |1345 |31705 |
-ROW |108326 |1340 |31361 |
-ROW |108327 |1340 |31362 |
-ROW |108328 |1340 |31363 |
-ROW |108329 |1339 |31364 |
-ROW |108330 |1339 |31365 |
-ROW |108331 |1340 |31367 |
-ROW |108332 |1340 |31368 |
-ROW |108333 |1340 |31369 |
-ROW |108334 |1340 |31727 |
-ROW |108335 |1340 |31728 |
-ROW |108336 |1339 |31370 |
-ROW |108337 |1339 |31398 |
-ROW |108338 |1339 |31407 |
-ROW |108339 |1339 |31425 |
-ROW |108340 |1339 |31426 |
-ROW |108341 |1339 |31427 |
-ROW |108342 |1339 |31428 |
-ROW |108343 |1339 |31729 |
-ROW |108344 |1339 |31730 |
-ROW |108345 |1339 |31731 |
-ROW |108346 |1339 |31732 |
-ROW |108347 |1339 |31733 |
-ROW |108348 |1339 |31734 |
-ROW |108349 |1339 |31735 |
-ROW |108350 |1339 |31736 |
-ROW |108351 |1339 |31737 |
-ROW |108352 |1339 |31738 |
-ROW |108353 |1339 |31739 |
-ROW |108354 |1339 |31740 |
-ROW |108355 |1339 |31741 |
-ROW |108356 |1339 |31742 |
-ROW |108357 |1339 |31743 |
-ROW |108358 |1339 |31744 |
-ROW |108359 |1339 |31745 |
-ROW |108360 |1339 |31746 |
-ROW |108361 |1339 |31747 |
-ROW |108362 |1339 |31748 |
-ROW |108363 |1339 |31749 |
-ROW |108364 |1339 |31750 |
-ROW |108365 |1339 |31751 |
-ROW |108366 |1339 |31752 |
-ROW |108367 |1339 |31753 |
-ROW |108368 |1339 |31754 |
-ROW |108369 |1339 |31755 |
-ROW |108370 |1339 |31756 |
-ROW |108371 |1339 |31757 |
-ROW |108372 |1339 |31758 |
-ROW |108373 |1339 |31759 |
-ROW |108374 |1339 |31760 |
-ROW |108375 |1339 |31761 |
-ROW |108376 |1339 |31762 |
-ROW |108377 |1339 |31763 |
-ROW |108378 |1339 |31764 |
-ROW |108379 |1339 |31765 |
-ROW |108380 |1339 |31766 |
-ROW |108381 |1339 |31767 |
-ROW |108382 |1339 |31768 |
-ROW |108383 |1339 |31769 |
-ROW |108384 |1339 |31770 |
-ROW |108385 |1339 |31771 |
-ROW |108386 |1339 |31772 |
-ROW |108387 |1339 |31773 |
-ROW |108388 |1339 |31774 |
-ROW |108389 |1339 |31775 |
-ROW |108390 |1339 |31776 |
-ROW |108391 |1339 |31777 |
-ROW |108392 |1339 |31778 |
-ROW |108393 |1339 |31779 |
-ROW |108394 |1339 |31780 |
-ROW |108395 |1339 |31781 |
-ROW |108396 |1339 |31782 |
-ROW |108397 |1339 |31783 |
-ROW |108398 |1339 |31784 |
-ROW |108399 |1339 |31785 |
-ROW |108400 |1115 |28671 |
-ROW |108401 |1115 |28672 |
-ROW |108402 |1114 |28673 |
-ROW |108403 |1114 |28674 |
-ROW |108404 |1115 |28675 |
-ROW |108405 |1114 |28676 |
-ROW |108406 |1114 |28677 |
-ROW |108407 |1114 |28678 |
-ROW |108408 |1114 |28679 |
-ROW |108409 |1114 |28680 |
-ROW |108410 |1114 |28681 |
-ROW |108411 |1115 |28682 |
-ROW |108412 |1115 |28683 |
-ROW |108413 |1114 |28684 |
-ROW |108414 |1114 |28685 |
-ROW |108415 |1115 |28686 |
-ROW |108416 |1115 |28687 |
-ROW |108417 |1114 |28688 |
-ROW |108418 |1114 |28689 |
-ROW |108419 |1114 |28690 |
-ROW |108420 |1114 |28691 |
-ROW |108421 |1114 |28692 |
-ROW |108422 |1114 |28693 |
-ROW |108423 |1114 |28694 |
-ROW |108424 |1114 |28695 |
-ROW |108425 |1114 |28696 |
-ROW |108426 |1114 |28697 |
-ROW |108427 |1114 |28698 |
-ROW |108428 |1114 |28699 |
-ROW |108429 |1114 |28700 |
-ROW |108430 |1114 |28701 |
-ROW |108431 |1114 |28702 |
-ROW |108432 |1114 |28703 |
-ROW |108433 |1114 |28704 |
-ROW |108434 |1114 |28705 |
-ROW |108435 |1114 |28706 |
-ROW |108436 |1114 |28707 |
-ROW |108437 |1114 |28708 |
-ROW |108438 |1114 |28709 |
-ROW |108439 |1114 |28710 |
-ROW |108440 |1115 |28713 |
-ROW |108441 |1115 |28714 |
-ROW |108442 |1338 |31180 |
-ROW |108443 |1337 |31181 |
-ROW |108444 |1338 |31182 |
-ROW |108445 |1338 |31183 |
-ROW |108446 |1338 |31185 |
-ROW |108447 |1338 |31186 |
-ROW |108448 |1337 |31188 |
-ROW |108449 |1337 |31189 |
-ROW |108450 |1337 |31190 |
-ROW |108451 |1337 |31191 |
-ROW |108452 |1337 |31192 |
-ROW |108453 |1337 |31193 |
-ROW |108454 |1337 |31194 |
-ROW |108455 |1338 |31195 |
-ROW |108456 |1338 |31196 |
-ROW |108457 |1337 |32592 |
-ROW |108458 |1337 |32593 |
-ROW |108459 |1337 |32594 |
-ROW |108460 |1338 |32595 |
-ROW |108461 |1337 |31197 |
-ROW |108462 |1337 |31199 |
-ROW |108463 |1337 |31200 |
-ROW |108464 |1337 |31201 |
-ROW |108465 |1337 |31202 |
-ROW |108466 |1337 |31203 |
-ROW |108467 |1337 |31204 |
-ROW |108468 |1337 |31205 |
-ROW |108469 |1337 |31206 |
-ROW |108470 |1337 |31207 |
-ROW |108471 |1337 |31208 |
-ROW |108472 |1337 |31209 |
-ROW |108473 |1337 |31210 |
-ROW |108474 |1337 |31211 |
-ROW |108475 |1337 |31212 |
-ROW |108476 |1337 |31213 |
-ROW |108477 |1337 |31215 |
-ROW |108478 |1337 |31216 |
-ROW |108479 |1337 |31217 |
-ROW |108480 |1337 |31218 |
-ROW |108481 |1337 |31219 |
-ROW |108482 |1337 |31220 |
-ROW |108483 |1337 |31221 |
-ROW |108484 |1337 |31222 |
-ROW |108485 |1337 |31223 |
-ROW |108486 |1337 |31224 |
-ROW |108487 |1337 |31225 |
-ROW |108488 |1337 |31226 |
-ROW |108489 |1337 |31227 |
-ROW |108490 |1337 |31228 |
-ROW |108491 |1337 |31229 |
-ROW |108492 |1337 |31230 |
-ROW |108493 |1337 |31231 |
-ROW |108494 |1337 |31232 |
-ROW |108495 |1337 |31233 |
-ROW |108496 |1337 |31234 |
-ROW |108497 |1337 |31235 |
-ROW |108498 |1337 |31236 |
-ROW |108499 |1337 |31237 |
-ROW |108500 |1337 |31238 |
-ROW |108501 |1337 |31239 |
-ROW |108502 |1337 |32596 |
-ROW |108503 |1302 |30273 |
-ROW |108504 |1302 |30274 |
-ROW |108505 |1303 |30275 |
-ROW |108506 |1303 |30276 |
-ROW |108507 |1302 |30277 |
-ROW |108508 |1302 |30278 |
-ROW |108509 |1302 |30279 |
-ROW |108510 |1302 |30280 |
-ROW |108511 |1302 |30281 |
-ROW |108512 |1302 |30282 |
-ROW |108513 |1302 |30283 |
-ROW |108514 |1302 |30284 |
-ROW |108515 |1302 |30285 |
-ROW |108516 |1302 |30286 |
-ROW |108517 |1302 |30287 |
-ROW |108518 |1302 |30288 |
-ROW |108519 |1302 |30289 |
-ROW |108520 |1302 |30290 |
-ROW |108521 |1302 |30291 |
-ROW |108522 |1302 |30292 |
-ROW |108523 |1302 |30293 |
-ROW |108524 |1302 |30294 |
-ROW |108525 |1302 |30295 |
-ROW |108526 |1302 |30296 |
-ROW |108527 |1302 |30297 |
-ROW |108528 |1302 |30298 |
-ROW |108529 |1302 |30299 |
-ROW |108530 |1302 |30300 |
-ROW |108531 |1302 |30301 |
-ROW |108532 |1302 |30302 |
-ROW |108533 |1302 |30303 |
-ROW |108534 |1302 |30304 |
-ROW |108535 |1302 |30305 |
-ROW |108536 |1302 |30306 |
-ROW |108537 |1302 |30307 |
-ROW |108538 |1302 |30308 |
-ROW |108539 |1302 |30309 |
-ROW |108540 |1302 |30310 |
-ROW |108541 |1302 |30311 |
-ROW |108542 |1302 |30312 |
-ROW |108543 |1302 |30313 |
-ROW |108544 |1302 |30314 |
-ROW |108545 |1302 |30315 |
-ROW |108546 |1302 |30316 |
-ROW |108547 |1302 |30317 |
-ROW |108548 |1302 |30318 |
-ROW |108549 |1302 |30319 |
-ROW |108550 |1302 |30320 |
-ROW |108551 |1302 |30321 |
-ROW |108552 |1302 |30322 |
-ROW |108553 |1302 |30323 |
-ROW |108554 |1302 |30324 |
-ROW |108555 |1302 |30325 |
-ROW |108556 |1302 |30326 |
-ROW |108557 |1302 |30327 |
-ROW |108558 |1302 |30328 |
-ROW |108559 |1302 |30329 |
-ROW |108560 |1302 |30330 |
-ROW |108561 |1302 |30331 |
-ROW |108562 |1302 |30332 |
-ROW |108563 |1302 |30333 |
-ROW |108564 |1302 |30334 |
-ROW |108565 |1302 |30335 |
-ROW |108566 |1302 |30336 |
-ROW |108567 |1302 |30344 |
-ROW |108568 |1302 |30345 |
-ROW |108569 |1302 |30346 |
-ROW |108570 |1302 |30347 |
-ROW |108571 |1302 |30351 |
-ROW |108572 |1302 |30352 |
-ROW |108573 |1302 |30353 |
-ROW |108574 |1302 |30354 |
-ROW |108575 |1302 |30355 |
-ROW |108576 |1302 |30356 |
-ROW |108577 |1302 |30357 |
-ROW |108578 |1302 |30358 |
-ROW |108579 |1302 |30359 |
-ROW |108580 |1302 |30360 |
-ROW |108581 |1302 |30361 |
-ROW |108582 |1302 |30362 |
-ROW |108583 |1302 |30363 |
-ROW |108584 |1302 |30364 |
-ROW |108585 |1302 |30365 |
-ROW |108586 |1302 |30366 |
-ROW |108587 |1302 |30367 |
-ROW |108588 |1302 |30368 |
-ROW |108589 |1302 |30369 |
-ROW |108590 |1302 |30370 |
-ROW |108591 |1302 |30371 |
-ROW |108592 |1302 |30372 |
-ROW |108593 |1302 |30373 |
-ROW |108594 |1302 |30374 |
-ROW |108595 |1302 |30375 |
-ROW |108596 |1302 |30376 |
-ROW |108597 |1302 |30377 |
-ROW |108598 |1302 |30378 |
-ROW |108599 |1302 |30379 |
-ROW |108600 |1302 |30380 |
-ROW |108601 |1302 |30381 |
-ROW |108602 |1302 |30382 |
-ROW |108603 |1302 |30383 |
-ROW |108604 |1302 |30384 |
-ROW |108605 |1302 |30385 |
-ROW |108606 |1302 |30386 |
-ROW |108607 |1302 |30387 |
-ROW |108608 |1302 |30388 |
-ROW |108609 |1302 |30389 |
-ROW |108610 |1302 |30390 |
-ROW |108611 |1302 |30391 |
-ROW |108612 |1302 |30392 |
-ROW |108613 |1302 |30393 |
-ROW |108614 |1302 |30394 |
-ROW |108615 |1302 |30395 |
-ROW |108616 |1302 |30397 |
-ROW |108617 |1302 |30398 |
-ROW |108618 |1302 |30399 |
-ROW |108619 |1302 |30400 |
-ROW |108620 |1302 |30401 |
-ROW |108621 |1302 |30402 |
-ROW |108622 |1302 |30403 |
-ROW |108623 |1302 |30404 |
-ROW |108624 |780 |27065 |
-ROW |108625 |780 |27066 |
-ROW |108626 |780 |27067 |
-ROW |108627 |799 |27149 |
-ROW |108628 |799 |27150 |
-ROW |108629 |799 |27151 |
-ROW |108630 |805 |27192 |
-ROW |108631 |805 |27193 |
-ROW |108632 |805 |27194 |
-ROW |108633 |813 |27225 |
-ROW |108634 |813 |27226 |
-ROW |108635 |813 |27227 |
-ROW |108636 |822 |27261 |
-ROW |108637 |822 |27262 |
-ROW |108638 |822 |27263 |
-ROW |108639 |825 |27282 |
-ROW |108640 |825 |27283 |
-ROW |108641 |825 |27284 |
-ROW |108642 |842 |27333 |
-ROW |108643 |842 |27334 |
-ROW |108644 |842 |27335 |
-ROW |108645 |847 |27365 |
-ROW |108646 |847 |27366 |
-ROW |108647 |847 |27367 |
-ROW |108648 |876 |27462 |
-ROW |108649 |876 |27463 |
-ROW |108650 |876 |27464 |
-ROW |108651 |885 |27496 |
-ROW |108652 |885 |27497 |
-ROW |108653 |885 |27498 |
-ROW |108654 |894 |27532 |
-ROW |108655 |894 |27533 |
-ROW |108656 |894 |27534 |
-ROW |108657 |903 |27568 |
-ROW |108658 |903 |27569 |
-ROW |108659 |903 |27570 |
-ROW |108660 |915 |27631 |
-ROW |108661 |915 |27632 |
-ROW |108662 |915 |27633 |
-ROW |108663 |918 |27654 |
-ROW |108664 |918 |27655 |
-ROW |108665 |918 |27656 |
-ROW |108666 |936 |27734 |
-ROW |108667 |936 |27735 |
-ROW |108668 |936 |27736 |
-ROW |108669 |944 |27766 |
-ROW |108670 |944 |27767 |
-ROW |108671 |944 |27768 |
-ROW |108672 |951 |27800 |
-ROW |108673 |951 |27801 |
-ROW |108674 |951 |27802 |
-ROW |108675 |971 |27882 |
-ROW |108676 |971 |27883 |
-ROW |108677 |971 |27884 |
-ROW |108678 |979 |27919 |
-ROW |108679 |979 |27920 |
-ROW |108680 |979 |27921 |
-ROW |108681 |988 |27956 |
-ROW |108682 |988 |27957 |
-ROW |108683 |988 |27958 |
-ROW |108684 |994 |27986 |
-ROW |108685 |994 |27987 |
-ROW |108686 |994 |27988 |
-ROW |108687 |1000 |28015 |
-ROW |108688 |1000 |28016 |
-ROW |108689 |1000 |28017 |
-ROW |108690 |1030 |28130 |
-ROW |108691 |1030 |28131 |
-ROW |108692 |1030 |28132 |
-ROW |108693 |1055 |28233 |
-ROW |108694 |1055 |28234 |
-ROW |108695 |1055 |28235 |
-ROW |108696 |1060 |28282 |
-ROW |108697 |1060 |28283 |
-ROW |108698 |1060 |28284 |
-ROW |108699 |1070 |28330 |
-ROW |108700 |1070 |28331 |
-ROW |108701 |1070 |28332 |
-ROW |108702 |1079 |28377 |
-ROW |108703 |1079 |28378 |
-ROW |108704 |1079 |28379 |
-ROW |108705 |1095 |28454 |
-ROW |108706 |1095 |28455 |
-ROW |108707 |1095 |28456 |
-ROW |108708 |1102 |28482 |
-ROW |108709 |1102 |28483 |
-ROW |108710 |1102 |28484 |
-ROW |108711 |1127 |28957 |
-ROW |108712 |1127 |28958 |
-ROW |108713 |1127 |28959 |
-ROW |108714 |1136 |29050 |
-ROW |108715 |1136 |29051 |
-ROW |108716 |1136 |29052 |
-ROW |108717 |1271 |30046 |
-ROW |108718 |1271 |30047 |
-ROW |108719 |1271 |30048 |
-ROW |108720 |1414 |32601 |
-ROW |108721 |1414 |32602 |
-ROW |108722 |1414 |32603 |
-ROW |108723 |1422 |32765 |
-ROW |108724 |1422 |32766 |
-ROW |108725 |1422 |32767 |
-ROW |108726 |800 |27152 |
-ROW |108727 |799 |27154 |
-ROW |108728 |800 |27157 |
-ROW |108729 |799 |29844 |
-ROW |108730 |800 |29845 |
-ROW |108731 |800 |29846 |
-ROW |108732 |800 |29847 |
-ROW |108733 |800 |29848 |
-ROW |108734 |804 |27195 |
-ROW |108735 |804 |27199 |
-ROW |108736 |805 |27202 |
-ROW |108737 |812 |27228 |
-ROW |108738 |812 |27232 |
-ROW |108739 |813 |27235 |
-ROW |108740 |821 |27264 |
-ROW |108741 |821 |27268 |
-ROW |108742 |822 |27271 |
-ROW |108743 |824 |27285 |
-ROW |108744 |824 |27289 |
-ROW |108745 |825 |27292 |
-ROW |108746 |841 |27336 |
-ROW |108747 |841 |27340 |
-ROW |108748 |842 |27343 |
-ROW |108749 |846 |27368 |
-ROW |108750 |846 |27372 |
-ROW |108751 |847 |27375 |
-ROW |108752 |875 |27465 |
-ROW |108753 |875 |27469 |
-ROW |108754 |876 |27472 |
-ROW |108755 |884 |27499 |
-ROW |108756 |884 |27503 |
-ROW |108757 |885 |27506 |
-ROW |108758 |893 |27535 |
-ROW |108759 |893 |27539 |
-ROW |108760 |894 |27542 |
-ROW |108761 |902 |27571 |
-ROW |108762 |902 |27575 |
-ROW |108763 |903 |27578 |
-ROW |108764 |914 |27634 |
-ROW |108765 |914 |27638 |
-ROW |108766 |915 |27641 |
-ROW |108767 |917 |27657 |
-ROW |108768 |917 |27661 |
-ROW |108769 |918 |27664 |
-ROW |108770 |935 |27737 |
-ROW |108771 |935 |27741 |
-ROW |108772 |936 |27744 |
-ROW |108773 |943 |27769 |
-ROW |108774 |943 |27773 |
-ROW |108775 |944 |27776 |
-ROW |108776 |950 |27803 |
-ROW |108777 |950 |27807 |
-ROW |108778 |951 |27810 |
-ROW |108779 |970 |27885 |
-ROW |108780 |970 |27889 |
-ROW |108781 |971 |27892 |
-ROW |108782 |978 |27922 |
-ROW |108783 |978 |27926 |
-ROW |108784 |979 |27929 |
-ROW |108785 |987 |27959 |
-ROW |108786 |987 |27963 |
-ROW |108787 |988 |27966 |
-ROW |108788 |993 |27989 |
-ROW |108789 |993 |27993 |
-ROW |108790 |994 |27996 |
-ROW |108791 |999 |28018 |
-ROW |108792 |999 |28022 |
-ROW |108793 |1000 |28025 |
-ROW |108794 |1029 |28133 |
-ROW |108795 |1029 |28137 |
-ROW |108796 |1030 |28140 |
-ROW |108797 |1054 |28236 |
-ROW |108798 |1054 |28240 |
-ROW |108799 |1055 |28243 |
-ROW |108800 |1059 |28285 |
-ROW |108801 |1059 |28289 |
-ROW |108802 |1060 |28292 |
-ROW |108803 |1069 |28333 |
-ROW |108804 |1069 |28337 |
-ROW |108805 |1070 |28340 |
-ROW |108806 |1078 |28380 |
-ROW |108807 |1078 |28384 |
-ROW |108808 |1079 |28387 |
-ROW |108809 |1094 |28457 |
-ROW |108810 |1094 |28461 |
-ROW |108811 |1095 |28464 |
-ROW |108812 |1101 |28485 |
-ROW |108813 |1101 |28489 |
-ROW |108814 |1102 |28492 |
-ROW |108815 |1126 |28960 |
-ROW |108816 |1126 |28964 |
-ROW |108817 |1127 |28967 |
-ROW |108818 |1135 |29053 |
-ROW |108819 |1135 |29057 |
-ROW |108820 |1136 |29060 |
-ROW |108821 |1000 |29834 |
-ROW |108822 |999 |29835 |
-ROW |108823 |999 |29836 |
-ROW |108824 |999 |29837 |
-ROW |108825 |999 |29838 |
-ROW |108826 |805 |29849 |
-ROW |108827 |804 |29850 |
-ROW |108828 |804 |29851 |
-ROW |108829 |804 |29852 |
-ROW |108830 |804 |29853 |
-ROW |108831 |813 |29854 |
-ROW |108832 |812 |29855 |
-ROW |108833 |812 |29856 |
-ROW |108834 |812 |29857 |
-ROW |108835 |812 |29858 |
-ROW |108836 |822 |29859 |
-ROW |108837 |821 |29860 |
-ROW |108838 |821 |29861 |
-ROW |108839 |821 |29862 |
-ROW |108840 |821 |29863 |
-ROW |108841 |825 |29864 |
-ROW |108842 |824 |29865 |
-ROW |108843 |824 |29866 |
-ROW |108844 |824 |29867 |
-ROW |108845 |824 |29868 |
-ROW |108846 |842 |29869 |
-ROW |108847 |841 |29870 |
-ROW |108848 |841 |29871 |
-ROW |108849 |841 |29872 |
-ROW |108850 |841 |29873 |
-ROW |108851 |847 |29874 |
-ROW |108852 |846 |29875 |
-ROW |108853 |846 |29876 |
-ROW |108854 |846 |29877 |
-ROW |108855 |846 |29878 |
-ROW |108856 |876 |29879 |
-ROW |108857 |875 |29880 |
-ROW |108858 |875 |29881 |
-ROW |108859 |875 |29882 |
-ROW |108860 |875 |29883 |
-ROW |108861 |885 |29884 |
-ROW |108862 |884 |29885 |
-ROW |108863 |884 |29886 |
-ROW |108864 |884 |29887 |
-ROW |108865 |884 |29888 |
-ROW |108866 |894 |29889 |
-ROW |108867 |893 |29890 |
-ROW |108868 |893 |29891 |
-ROW |108869 |893 |29892 |
-ROW |108870 |893 |29893 |
-ROW |108871 |903 |29894 |
-ROW |108872 |902 |29895 |
-ROW |108873 |902 |29896 |
-ROW |108874 |902 |29897 |
-ROW |108875 |902 |29898 |
-ROW |108876 |915 |29899 |
-ROW |108877 |914 |29900 |
-ROW |108878 |914 |29901 |
-ROW |108879 |914 |29902 |
-ROW |108880 |914 |29903 |
-ROW |108881 |918 |29904 |
-ROW |108882 |917 |29905 |
-ROW |108883 |917 |29906 |
-ROW |108884 |917 |29907 |
-ROW |108885 |917 |29908 |
-ROW |108886 |936 |29909 |
-ROW |108887 |935 |29910 |
-ROW |108888 |935 |29911 |
-ROW |108889 |935 |29912 |
-ROW |108890 |935 |29913 |
-ROW |108891 |944 |29914 |
-ROW |108892 |943 |29915 |
-ROW |108893 |943 |29916 |
-ROW |108894 |943 |29917 |
-ROW |108895 |943 |29918 |
-ROW |108896 |951 |29919 |
-ROW |108897 |950 |29920 |
-ROW |108898 |950 |29921 |
-ROW |108899 |950 |29922 |
-ROW |108900 |950 |29923 |
-ROW |108901 |971 |29924 |
-ROW |108902 |970 |29925 |
-ROW |108903 |970 |29926 |
-ROW |108904 |970 |29927 |
-ROW |108905 |970 |29928 |
-ROW |108906 |979 |29929 |
-ROW |108907 |978 |29930 |
-ROW |108908 |978 |29931 |
-ROW |108909 |978 |29932 |
-ROW |108910 |978 |29933 |
-ROW |108911 |988 |29934 |
-ROW |108912 |987 |29935 |
-ROW |108913 |987 |29936 |
-ROW |108914 |987 |29937 |
-ROW |108915 |987 |29938 |
-ROW |108916 |994 |29939 |
-ROW |108917 |993 |29940 |
-ROW |108918 |993 |29941 |
-ROW |108919 |993 |29942 |
-ROW |108920 |993 |29943 |
-ROW |108921 |1030 |29944 |
-ROW |108922 |1029 |29945 |
-ROW |108923 |1029 |29946 |
-ROW |108924 |1029 |29947 |
-ROW |108925 |1029 |29948 |
-ROW |108926 |1055 |29954 |
-ROW |108927 |1054 |29955 |
-ROW |108928 |1054 |29956 |
-ROW |108929 |1054 |29957 |
-ROW |108930 |1054 |29958 |
-ROW |108931 |1060 |29959 |
-ROW |108932 |1059 |29960 |
-ROW |108933 |1059 |29961 |
-ROW |108934 |1059 |29962 |
-ROW |108935 |1059 |29963 |
-ROW |108936 |1070 |29964 |
-ROW |108937 |1069 |29965 |
-ROW |108938 |1069 |29966 |
-ROW |108939 |1069 |29967 |
-ROW |108940 |1069 |29968 |
-ROW |108941 |1079 |29969 |
-ROW |108942 |1078 |29970 |
-ROW |108943 |1078 |29971 |
-ROW |108944 |1078 |29972 |
-ROW |108945 |1078 |29973 |
-ROW |108946 |1095 |29974 |
-ROW |108947 |1094 |29975 |
-ROW |108948 |1094 |29976 |
-ROW |108949 |1094 |29977 |
-ROW |108950 |1094 |29978 |
-ROW |108951 |1102 |29979 |
-ROW |108952 |1101 |29980 |
-ROW |108953 |1101 |29981 |
-ROW |108954 |1101 |29982 |
-ROW |108955 |1101 |29983 |
-ROW |108956 |1127 |29984 |
-ROW |108957 |1126 |29985 |
-ROW |108958 |1126 |29986 |
-ROW |108959 |1126 |29987 |
-ROW |108960 |1126 |29988 |
-ROW |108961 |1136 |29989 |
-ROW |108962 |1135 |29990 |
-ROW |108963 |1135 |29991 |
-ROW |108964 |1135 |29992 |
-ROW |108965 |1135 |29993 |
-ROW |108966 |1270 |30049 |
-ROW |108967 |1270 |30050 |
-ROW |108968 |1270 |30051 |
-ROW |108969 |1270 |30052 |
-ROW |108970 |1270 |30053 |
-ROW |108971 |1270 |30054 |
-ROW |108972 |1271 |30055 |
-ROW |108973 |1271 |30056 |
-ROW |108974 |1413 |32604 |
-ROW |108975 |1413 |32605 |
-ROW |108976 |1413 |32606 |
-ROW |108977 |1413 |32607 |
-ROW |108978 |1413 |32608 |
-ROW |108979 |1413 |32609 |
-ROW |108980 |1414 |32610 |
-ROW |108981 |1414 |32611 |
-ROW |108982 |1421 |32768 |
-ROW |108983 |1421 |32769 |
-ROW |108984 |1421 |32770 |
-ROW |108985 |1421 |32771 |
-ROW |108986 |1421 |32772 |
-ROW |108987 |1421 |32773 |
-ROW |108988 |1422 |32774 |
-ROW |108989 |1422 |32775 |
-ROW |108990 |1283 |30142 |
-ROW |108991 |1286 |30143 |
-ROW |108992 |1292 |30145 |
-ROW |108993 |1295 |30146 |
-ROW |108994 |1284 |30157 |
-ROW |108995 |1284 |30158 |
-ROW |108996 |1284 |30159 |
-ROW |108997 |1287 |30163 |
-ROW |108998 |1287 |30164 |
-ROW |108999 |1287 |30165 |
-ROW |109000 |1293 |30175 |
-ROW |109001 |1293 |30176 |
-ROW |109002 |1293 |30177 |
-ROW |109003 |1296 |30181 |
-ROW |109004 |1296 |30182 |
-ROW |109005 |1296 |30183 |
-ROW |109006 |1419 |32741 |
-ROW |109007 |1420 |32753 |
-ROW |109008 |1221 |22231 |
-ROW |109009 |1221 |22232 |
-ROW |109010 |1221 |23318 |
-ROW |109011 |1222 |29544 |
-ROW |109012 |1223 |29545 |
-ROW |109013 |1223 |29546 |
-ROW |109014 |1224 |29547 |
-ROW |109015 |1225 |10020 |
-ROW |109016 |1225 |10059 |
-ROW |109017 |1226 |22833 |
-ROW |109018 |1226 |22834 |
-ROW |109019 |1228 |22873 |
-ROW |109020 |1228 |22874 |
-ROW |109021 |1230 |22913 |
-ROW |109022 |1230 |22914 |
-ROW |109023 |1232 |22953 |
-ROW |109024 |1232 |22954 |
-ROW |109025 |1234 |22993 |
-ROW |109026 |1234 |22994 |
-ROW |109027 |1236 |23033 |
-ROW |109028 |1236 |23034 |
-ROW |109029 |1238 |23160 |
-ROW |109030 |1238 |23161 |
-ROW |109031 |1225 |23319 |
-ROW |109032 |1226 |23320 |
-ROW |109033 |1228 |23321 |
-ROW |109034 |1230 |23322 |
-ROW |109035 |1232 |23323 |
-ROW |109036 |1234 |23324 |
-ROW |109037 |1236 |23325 |
-ROW |109038 |1238 |23326 |
-ROW |109039 |1161 |29548 |
-ROW |109040 |1227 |29549 |
-ROW |109041 |1229 |29550 |
-ROW |109042 |1231 |29551 |
-ROW |109043 |1233 |29552 |
-ROW |109044 |1235 |29553 |
-ROW |109045 |1237 |29554 |
-ROW |109046 |1219 |29555 |
-ROW |109047 |1241 |29558 |
-ROW |109048 |1242 |29559 |
-ROW |109049 |1241 |29560 |
-ROW |109050 |1269 |29995 |
-ROW |109051 |1192 |29996 |
-ROW |109052 |1269 |29997 |
-ROW |109053 |1240 |23287 |
-ROW |109054 |1240 |23288 |
-ROW |109055 |1240 |23327 |
-ROW |109056 |1171 |29557 |
-ROW |109057 |810 |27203 |
-ROW |109058 |807 |27207 |
-ROW |109059 |806 |27208 |
-ROW |109060 |810 |30086 |
-ROW |109061 |807 |30087 |
-ROW |109062 |807 |30088 |
-ROW |109063 |807 |30089 |
-ROW |109064 |808 |27212 |
-ROW |109065 |809 |27213 |
-ROW |109066 |810 |27214 |
-ROW |109067 |1279 |30091 |
-ROW |109068 |1279 |30092 |
-ROW |109069 |1364 |28305 |
-ROW |109070 |1068 |28323 |
-ROW |109071 |1068 |28324 |
-ROW |109072 |1062 |28325 |
-ROW |109073 |1062 |28326 |
-ROW |109074 |1064 |28327 |
-ROW |109075 |1064 |28328 |
-ROW |109076 |1066 |28329 |
-ROW |109077 |1363 |32307 |
-ROW |109078 |819 |27236 |
-ROW |109079 |819 |27237 |
-ROW |109080 |813 |27238 |
-ROW |109081 |814 |27240 |
-ROW |109082 |815 |30093 |
-ROW |109083 |816 |27246 |
-ROW |109084 |816 |27247 |
-ROW |109085 |817 |27248 |
-ROW |109086 |818 |27249 |
-ROW |109087 |818 |27250 |
-ROW |109088 |826 |27294 |
-ROW |109089 |831 |27295 |
-ROW |109090 |831 |27296 |
-ROW |109091 |835 |27297 |
-ROW |109092 |827 |30094 |
-ROW |109093 |836 |27299 |
-ROW |109094 |838 |27301 |
-ROW |109095 |837 |30095 |
-ROW |109096 |839 |30096 |
-ROW |109097 |829 |27312 |
-ROW |109098 |830 |27313 |
-ROW |109099 |828 |27314 |
-ROW |109100 |828 |27315 |
-ROW |109101 |833 |27316 |
-ROW |109102 |834 |27317 |
-ROW |109103 |832 |27318 |
-ROW |109104 |835 |27319 |
-ROW |109105 |835 |27320 |
-ROW |109106 |1444 |33197 |
-ROW |109107 |1444 |33198 |
-ROW |109108 |1444 |33199 |
-ROW |109109 |1439 |33200 |
-ROW |109110 |1439 |33201 |
-ROW |109111 |1439 |33202 |
-ROW |109112 |1440 |33203 |
-ROW |109113 |1440 |33204 |
-ROW |109114 |1439 |33205 |
-ROW |109115 |1439 |33206 |
-ROW |109116 |1439 |33207 |
-ROW |109117 |1440 |33208 |
-ROW |109118 |1444 |33209 |
-ROW |109119 |1444 |33210 |
-ROW |109120 |1437 |33219 |
-ROW |109121 |1440 |33220 |
-ROW |109122 |1438 |33221 |
-ROW |109123 |1441 |33222 |
-ROW |109124 |1441 |33223 |
-ROW |109125 |1441 |33224 |
-ROW |109126 |1443 |33235 |
-ROW |109127 |1445 |33236 |
-ROW |109128 |1445 |33237 |
-ROW |109129 |1453 |33238 |
-ROW |109130 |1453 |33239 |
-ROW |109131 |1453 |33240 |
-ROW |109132 |1448 |33241 |
-ROW |109133 |1448 |33242 |
-ROW |109134 |1448 |33243 |
-ROW |109135 |1449 |33244 |
-ROW |109136 |1449 |33245 |
-ROW |109137 |1448 |33246 |
-ROW |109138 |1448 |33247 |
-ROW |109139 |1448 |33248 |
-ROW |109140 |1449 |33249 |
-ROW |109141 |1453 |33250 |
-ROW |109142 |1453 |33251 |
-ROW |109143 |1446 |33260 |
-ROW |109144 |1449 |33261 |
-ROW |109145 |1447 |33262 |
-ROW |109146 |1450 |33263 |
-ROW |109147 |1450 |33264 |
-ROW |109148 |1450 |33265 |
-ROW |109149 |1452 |33276 |
-ROW |109150 |1454 |33277 |
-ROW |109151 |1454 |33278 |
-ROW |109152 |1462 |33279 |
-ROW |109153 |1462 |33280 |
-ROW |109154 |1462 |33281 |
-ROW |109155 |1457 |33282 |
-ROW |109156 |1457 |33283 |
-ROW |109157 |1457 |33284 |
-ROW |109158 |1458 |33285 |
-ROW |109159 |1458 |33286 |
-ROW |109160 |1457 |33287 |
-ROW |109161 |1457 |33288 |
-ROW |109162 |1457 |33289 |
-ROW |109163 |1458 |33290 |
-ROW |109164 |1462 |33291 |
-ROW |109165 |1462 |33292 |
-ROW |109166 |1455 |33301 |
-ROW |109167 |1458 |33302 |
-ROW |109168 |1456 |33303 |
-ROW |109169 |1459 |33304 |
-ROW |109170 |1459 |33305 |
-ROW |109171 |1459 |33306 |
-ROW |109172 |1461 |33317 |
-ROW |109173 |1463 |33318 |
-ROW |109174 |1463 |33319 |
-ROW |109175 |1471 |33320 |
-ROW |109176 |1471 |33321 |
-ROW |109177 |1471 |33322 |
-ROW |109178 |1466 |33323 |
-ROW |109179 |1466 |33324 |
-ROW |109180 |1466 |33325 |
-ROW |109181 |1467 |33326 |
-ROW |109182 |1467 |33327 |
-ROW |109183 |1466 |33328 |
-ROW |109184 |1466 |33329 |
-ROW |109185 |1466 |33330 |
-ROW |109186 |1467 |33331 |
-ROW |109187 |1471 |33332 |
-ROW |109188 |1471 |33333 |
-ROW |109189 |1464 |33342 |
-ROW |109190 |1467 |33343 |
-ROW |109191 |1465 |33344 |
-ROW |109192 |1468 |33345 |
-ROW |109193 |1468 |33346 |
-ROW |109194 |1468 |33347 |
-ROW |109195 |1470 |33358 |
-ROW |109196 |1472 |33359 |
-ROW |109197 |1472 |33360 |
-ROW |109198 |1480 |33361 |
-ROW |109199 |1480 |33362 |
-ROW |109200 |1480 |33363 |
-ROW |109201 |1475 |33364 |
-ROW |109202 |1475 |33365 |
-ROW |109203 |1475 |33366 |
-ROW |109204 |1476 |33367 |
-ROW |109205 |1476 |33368 |
-ROW |109206 |1475 |33369 |
-ROW |109207 |1475 |33370 |
-ROW |109208 |1475 |33371 |
-ROW |109209 |1476 |33372 |
-ROW |109210 |1480 |33373 |
-ROW |109211 |1480 |33374 |
-ROW |109212 |1473 |33383 |
-ROW |109213 |1476 |33384 |
-ROW |109214 |1474 |33385 |
-ROW |109215 |1477 |33386 |
-ROW |109216 |1477 |33387 |
-ROW |109217 |1477 |33388 |
-ROW |109218 |1479 |33399 |
-ROW |109219 |1481 |33400 |
-ROW |109220 |1481 |33401 |
-ROW |109221 |851 |27376 |
-ROW |109222 |852 |27378 |
-ROW |109223 |852 |27379 |
-ROW |109224 |852 |30097 |
-ROW |109225 |869 |27380 |
-ROW |109226 |870 |27382 |
-ROW |109227 |870 |27383 |
-ROW |109228 |858 |27385 |
-ROW |109229 |858 |27386 |
-ROW |109230 |1048 |28209 |
-ROW |109231 |1048 |28210 |
-ROW |109232 |858 |30098 |
-ROW |109233 |870 |30099 |
-ROW |109234 |1048 |30100 |
-ROW |109235 |848 |27415 |
-ROW |109236 |848 |27416 |
-ROW |109237 |849 |27417 |
-ROW |109238 |852 |27419 |
-ROW |109239 |853 |27420 |
-ROW |109240 |853 |27421 |
-ROW |109241 |854 |27422 |
-ROW |109242 |855 |27423 |
-ROW |109243 |1056 |28246 |
-ROW |109244 |848 |30101 |
-ROW |109245 |856 |27425 |
-ROW |109246 |856 |27426 |
-ROW |109247 |857 |27427 |
-ROW |109248 |858 |27428 |
-ROW |109249 |859 |27429 |
-ROW |109250 |859 |27430 |
-ROW |109251 |860 |27431 |
-ROW |109252 |861 |27432 |
-ROW |109253 |868 |27443 |
-ROW |109254 |868 |27444 |
-ROW |109255 |870 |27445 |
-ROW |109256 |871 |27446 |
-ROW |109257 |871 |27447 |
-ROW |109258 |872 |27448 |
-ROW |109259 |873 |27449 |
-ROW |109260 |1048 |28208 |
-ROW |109261 |1049 |28215 |
-ROW |109262 |1050 |28216 |
-ROW |109263 |1051 |28217 |
-ROW |109264 |1051 |28218 |
-ROW |109265 |1052 |28220 |
-ROW |109266 |1052 |28222 |
-ROW |109267 |1057 |28247 |
-ROW |109268 |856 |30102 |
-ROW |109269 |868 |30103 |
-ROW |109270 |1052 |30104 |
-ROW |109271 |877 |27478 |
-ROW |109272 |880 |27479 |
-ROW |109273 |881 |27480 |
-ROW |109274 |882 |27481 |
-ROW |109275 |882 |27482 |
-ROW |109276 |882 |27483 |
-ROW |109277 |882 |27484 |
-ROW |109278 |879 |27485 |
-ROW |109279 |878 |30105 |
-ROW |109280 |891 |27508 |
-ROW |109281 |891 |27509 |
-ROW |109282 |891 |27510 |
-ROW |109283 |886 |27511 |
-ROW |109284 |891 |30106 |
-ROW |109285 |888 |27517 |
-ROW |109286 |890 |27518 |
-ROW |109287 |889 |27519 |
-ROW |109288 |887 |30107 |
-ROW |109289 |900 |27543 |
-ROW |109290 |900 |27544 |
-ROW |109291 |900 |27545 |
-ROW |109292 |900 |27546 |
-ROW |109293 |895 |27547 |
-ROW |109294 |897 |27553 |
-ROW |109295 |899 |27554 |
-ROW |109296 |898 |27555 |
-ROW |109297 |896 |30108 |
-ROW |109298 |909 |27579 |
-ROW |109299 |909 |27580 |
-ROW |109300 |909 |27582 |
-ROW |109301 |909 |27583 |
-ROW |109302 |906 |27584 |
-ROW |109303 |906 |27585 |
-ROW |109304 |904 |27586 |
-ROW |109305 |909 |30109 |
-ROW |109306 |905 |27591 |
-ROW |109307 |907 |27593 |
-ROW |109308 |908 |27594 |
-ROW |109309 |908 |27595 |
-ROW |109310 |905 |30110 |
-ROW |109311 |905 |30111 |
-ROW |109312 |919 |27671 |
-ROW |109313 |921 |27672 |
-ROW |109314 |922 |27673 |
-ROW |109315 |923 |27674 |
-ROW |109316 |924 |27675 |
-ROW |109317 |924 |27676 |
-ROW |109318 |924 |27677 |
-ROW |109319 |924 |27678 |
-ROW |109320 |924 |27679 |
-ROW |109321 |920 |30112 |
-ROW |109322 |1036 |28141 |
-ROW |109323 |1036 |28142 |
-ROW |109324 |1031 |28143 |
-ROW |109325 |1033 |28150 |
-ROW |109326 |1032 |28153 |
-ROW |109327 |1034 |28154 |
-ROW |109328 |1035 |28155 |
-ROW |109329 |1033 |28156 |
-ROW |109330 |1036 |28157 |
-ROW |109331 |1036 |28158 |
-ROW |109332 |1032 |30113 |
-ROW |109333 |1032 |30114 |
-ROW |109334 |1032 |30115 |
-ROW |109335 |941 |27748 |
-ROW |109336 |941 |27749 |
-ROW |109337 |941 |27750 |
-ROW |109338 |939 |27751 |
-ROW |109339 |937 |27753 |
-ROW |109340 |941 |27754 |
-ROW |109341 |940 |27755 |
-ROW |109342 |938 |30116 |
-ROW |109343 |948 |27777 |
-ROW |109344 |948 |27778 |
-ROW |109345 |945 |27783 |
-ROW |109346 |945 |27784 |
-ROW |109347 |948 |27785 |
-ROW |109348 |946 |27786 |
-ROW |109349 |947 |27787 |
-ROW |109350 |957 |27812 |
-ROW |109351 |957 |27813 |
-ROW |109352 |951 |27814 |
-ROW |109353 |957 |30117 |
-ROW |109354 |954 |27821 |
-ROW |109355 |956 |27822 |
-ROW |109356 |955 |27823 |
-ROW |109357 |952 |28894 |
-ROW |109358 |953 |30118 |
-ROW |109359 |1486 |33402 |
-ROW |109360 |1486 |33403 |
-ROW |109361 |1486 |33404 |
-ROW |109362 |1483 |33405 |
-ROW |109363 |1483 |33406 |
-ROW |109364 |1482 |33407 |
-ROW |109365 |1483 |33408 |
-ROW |109366 |1483 |33409 |
-ROW |109367 |1483 |33410 |
-ROW |109368 |1483 |33411 |
-ROW |109369 |1486 |33412 |
-ROW |109370 |1486 |33413 |
-ROW |109371 |1044 |28200 |
-ROW |109372 |1044 |28201 |
-ROW |109373 |1045 |28202 |
-ROW |109374 |1045 |28203 |
-ROW |109375 |1047 |28204 |
-ROW |109376 |1047 |28205 |
-ROW |109377 |1046 |28206 |
-ROW |109378 |1484 |33429 |
-ROW |109379 |1484 |33430 |
-ROW |109380 |1484 |33431 |
-ROW |109381 |976 |27893 |
-ROW |109382 |976 |27894 |
-ROW |109383 |976 |27895 |
-ROW |109384 |973 |27898 |
-ROW |109385 |973 |27900 |
-ROW |109386 |976 |30119 |
-ROW |109387 |973 |30120 |
-ROW |109388 |972 |27904 |
-ROW |109389 |974 |27905 |
-ROW |109390 |975 |27906 |
-ROW |109391 |975 |27907 |
-ROW |109392 |975 |27908 |
-ROW |109393 |974 |31790 |
-ROW |109394 |1365 |32308 |
-ROW |109395 |1368 |32309 |
-ROW |109396 |1370 |32310 |
-ROW |109397 |1370 |32311 |
-ROW |109398 |1366 |32312 |
-ROW |109399 |1369 |32313 |
-ROW |109400 |1369 |32314 |
-ROW |109401 |1369 |32315 |
-ROW |109402 |1369 |32316 |
-ROW |109403 |1368 |32317 |
-ROW |109404 |1368 |32318 |
-ROW |109405 |1365 |32319 |
-ROW |109406 |1367 |32320 |
-ROW |109407 |1367 |32321 |
-ROW |109408 |1367 |32322 |
-ROW |109409 |1366 |32323 |
-ROW |109410 |1366 |32324 |
-ROW |109411 |1371 |32325 |
-ROW |109412 |1365 |32326 |
-ROW |109413 |1365 |32327 |
-ROW |109414 |1370 |32328 |
-ROW |109415 |1366 |32330 |
-ROW |109416 |1372 |32331 |
-ROW |109417 |1376 |32332 |
-ROW |109418 |1377 |32333 |
-ROW |109419 |1377 |32334 |
-ROW |109420 |1373 |32335 |
-ROW |109421 |1376 |32336 |
-ROW |109422 |1376 |32337 |
-ROW |109423 |1376 |32338 |
-ROW |109424 |1375 |32339 |
-ROW |109425 |1378 |32340 |
-ROW |109426 |1375 |32341 |
-ROW |109427 |1375 |32342 |
-ROW |109428 |1374 |32343 |
-ROW |109429 |1374 |32344 |
-ROW |109430 |1374 |32345 |
-ROW |109431 |1373 |32346 |
-ROW |109432 |1373 |32347 |
-ROW |109433 |1377 |32348 |
-ROW |109434 |1373 |32350 |
-ROW |109435 |1379 |32351 |
-ROW |109436 |1382 |32352 |
-ROW |109437 |1384 |32353 |
-ROW |109438 |1384 |32354 |
-ROW |109439 |1380 |32355 |
-ROW |109440 |1383 |32356 |
-ROW |109441 |1383 |32357 |
-ROW |109442 |1383 |32358 |
-ROW |109443 |1383 |32359 |
-ROW |109444 |1382 |32360 |
-ROW |109445 |1382 |32361 |
-ROW |109446 |1379 |32362 |
-ROW |109447 |1381 |32363 |
-ROW |109448 |1381 |32364 |
-ROW |109449 |1381 |32365 |
-ROW |109450 |1380 |32366 |
-ROW |109451 |1380 |32367 |
-ROW |109452 |1385 |32368 |
-ROW |109453 |1379 |32369 |
-ROW |109454 |1379 |32370 |
-ROW |109455 |1384 |32371 |
-ROW |109456 |1380 |32373 |
-ROW |109457 |1390 |32374 |
-ROW |109458 |1387 |32375 |
-ROW |109459 |1387 |32376 |
-ROW |109460 |1388 |32377 |
-ROW |109461 |1388 |32378 |
-ROW |109462 |1388 |32379 |
-ROW |109463 |1389 |32380 |
-ROW |109464 |1386 |32382 |
-ROW |109465 |1391 |32383 |
-ROW |109466 |1393 |32384 |
-ROW |109467 |1395 |32385 |
-ROW |109468 |1392 |32386 |
-ROW |109469 |1394 |32387 |
-ROW |109470 |1394 |32388 |
-ROW |109471 |1394 |32389 |
-ROW |109472 |1393 |32390 |
-ROW |109473 |1392 |32391 |
-ROW |109474 |1391 |32392 |
-ROW |109475 |1392 |32393 |
-ROW |109476 |1392 |32394 |
-ROW |109477 |1396 |32395 |
-ROW |109478 |1391 |32396 |
-ROW |109479 |1391 |32397 |
-ROW |109480 |1391 |32398 |
-ROW |109481 |1395 |32399 |
-ROW |109482 |1392 |32401 |
-ROW |109483 |1397 |32402 |
-ROW |109484 |1399 |32403 |
-ROW |109485 |1401 |32404 |
-ROW |109486 |1398 |32405 |
-ROW |109487 |1400 |32406 |
-ROW |109488 |1400 |32407 |
-ROW |109489 |1400 |32408 |
-ROW |109490 |1399 |32409 |
-ROW |109491 |1398 |32410 |
-ROW |109492 |1397 |32411 |
-ROW |109493 |1398 |32412 |
-ROW |109494 |1398 |32413 |
-ROW |109495 |1402 |32414 |
-ROW |109496 |1397 |32415 |
-ROW |109497 |1397 |32416 |
-ROW |109498 |1397 |32417 |
-ROW |109499 |1401 |32418 |
-ROW |109500 |1398 |32420 |
-ROW |109501 |1409 |32421 |
-ROW |109502 |1407 |32422 |
-ROW |109503 |1405 |32423 |
-ROW |109504 |1405 |32424 |
-ROW |109505 |1407 |32425 |
-ROW |109506 |1407 |32426 |
-ROW |109507 |1407 |32427 |
-ROW |109508 |1408 |32428 |
-ROW |109509 |1408 |32429 |
-ROW |109510 |1404 |32436 |
-ROW |109511 |1404 |32437 |
-ROW |109512 |1404 |32438 |
-ROW |109513 |1403 |32439 |
-ROW |109514 |1404 |32440 |
-ROW |109515 |1406 |32441 |
-ROW |109516 |1406 |32442 |
-ROW |109517 |1406 |32443 |
-ROW |109518 |1406 |32444 |
-ROW |109519 |985 |27930 |
-ROW |109520 |985 |27931 |
-ROW |109521 |981 |27935 |
-ROW |109522 |980 |27936 |
-ROW |109523 |985 |30121 |
-ROW |109524 |981 |30122 |
-ROW |109525 |981 |30123 |
-ROW |109526 |982 |27940 |
-ROW |109527 |982 |27941 |
-ROW |109528 |984 |27942 |
-ROW |109529 |983 |27943 |
-ROW |109530 |991 |27967 |
-ROW |109531 |991 |27968 |
-ROW |109532 |991 |27970 |
-ROW |109533 |991 |27971 |
-ROW |109534 |990 |27972 |
-ROW |109535 |990 |27973 |
-ROW |109536 |989 |27975 |
-ROW |109537 |1282 |30124 |
-ROW |109538 |991 |30125 |
-ROW |109539 |990 |30126 |
-ROW |109540 |1280 |30129 |
-ROW |109541 |1281 |30130 |
-ROW |109542 |997 |27997 |
-ROW |109543 |997 |27998 |
-ROW |109544 |997 |27999 |
-ROW |109545 |997 |28000 |
-ROW |109546 |995 |28003 |
-ROW |109547 |996 |30131 |
-ROW |109548 |1003 |28026 |
-ROW |109549 |1003 |28027 |
-ROW |109550 |1001 |28031 |
-ROW |109551 |1002 |30132 |
-ROW |109552 |1002 |30133 |
-ROW |109553 |1002 |30134 |
-ROW |109554 |1002 |30135 |
-ROW |109555 |1002 |30136 |
-ROW |109556 |1142 |29087 |
-ROW |109557 |1142 |29088 |
-ROW |109558 |1142 |29089 |
-ROW |109559 |1142 |29090 |
-ROW |109560 |1142 |29091 |
-ROW |109561 |1142 |29092 |
-ROW |109562 |1142 |29093 |
-ROW |109563 |1142 |29094 |
-ROW |109564 |1142 |29095 |
-ROW |109565 |1142 |29096 |
-ROW |109566 |1142 |29097 |
-ROW |109567 |1142 |29098 |
-ROW |109568 |1142 |29099 |
-ROW |109569 |1142 |29100 |
-ROW |109570 |1142 |29101 |
-ROW |109571 |1142 |29102 |
-ROW |109572 |1144 |29103 |
-ROW |109573 |1144 |29104 |
-ROW |109574 |1144 |29105 |
-ROW |109575 |1144 |29106 |
-ROW |109576 |1144 |29107 |
-ROW |109577 |1144 |29108 |
-ROW |109578 |1151 |29110 |
-ROW |109579 |1148 |29111 |
-ROW |109580 |1148 |29112 |
-ROW |109581 |1148 |29113 |
-ROW |109582 |1148 |29114 |
-ROW |109583 |1148 |29115 |
-ROW |109584 |1148 |29116 |
-ROW |109585 |1148 |29117 |
-ROW |109586 |1148 |29118 |
-ROW |109587 |1148 |29119 |
-ROW |109588 |1150 |29120 |
-ROW |109589 |1149 |29121 |
-ROW |109590 |1149 |29122 |
-ROW |109591 |1149 |29123 |
-ROW |109592 |1152 |29124 |
-ROW |109593 |1152 |29125 |
-ROW |109594 |1152 |29126 |
-ROW |109595 |1152 |29127 |
-ROW |109596 |1152 |29128 |
-ROW |109597 |1152 |29129 |
-ROW |109598 |1152 |29130 |
-ROW |109599 |1152 |29131 |
-ROW |109600 |1152 |29132 |
-ROW |109601 |1152 |29133 |
-ROW |109602 |1152 |29134 |
-ROW |109603 |1152 |29135 |
-ROW |109604 |1152 |29136 |
-ROW |109605 |1152 |29137 |
-ROW |109606 |1152 |29138 |
-ROW |109607 |1152 |29139 |
-ROW |109608 |1154 |29140 |
-ROW |109609 |1154 |29141 |
-ROW |109610 |1154 |29142 |
-ROW |109611 |1154 |29143 |
-ROW |109612 |1154 |29144 |
-ROW |109613 |1154 |29145 |
-ROW |109614 |1161 |29147 |
-ROW |109615 |1158 |29148 |
-ROW |109616 |1158 |29149 |
-ROW |109617 |1158 |29150 |
-ROW |109618 |1158 |29151 |
-ROW |109619 |1158 |29152 |
-ROW |109620 |1158 |29153 |
-ROW |109621 |1158 |29154 |
-ROW |109622 |1158 |29155 |
-ROW |109623 |1158 |29156 |
-ROW |109624 |1160 |29157 |
-ROW |109625 |1159 |29158 |
-ROW |109626 |1159 |29159 |
-ROW |109627 |1159 |29160 |
-ROW |109628 |1162 |29161 |
-ROW |109629 |1162 |29162 |
-ROW |109630 |1162 |29163 |
-ROW |109631 |1162 |29164 |
-ROW |109632 |1162 |29165 |
-ROW |109633 |1162 |29166 |
-ROW |109634 |1162 |29167 |
-ROW |109635 |1162 |29168 |
-ROW |109636 |1162 |29169 |
-ROW |109637 |1162 |29170 |
-ROW |109638 |1162 |29171 |
-ROW |109639 |1162 |29172 |
-ROW |109640 |1162 |29173 |
-ROW |109641 |1162 |29174 |
-ROW |109642 |1162 |29175 |
-ROW |109643 |1162 |29176 |
-ROW |109644 |1164 |29177 |
-ROW |109645 |1164 |29178 |
-ROW |109646 |1164 |29179 |
-ROW |109647 |1164 |29180 |
-ROW |109648 |1164 |29181 |
-ROW |109649 |1164 |29182 |
-ROW |109650 |1171 |29184 |
-ROW |109651 |1168 |29185 |
-ROW |109652 |1168 |29186 |
-ROW |109653 |1168 |29187 |
-ROW |109654 |1168 |29188 |
-ROW |109655 |1168 |29189 |
-ROW |109656 |1168 |29190 |
-ROW |109657 |1168 |29191 |
-ROW |109658 |1168 |29192 |
-ROW |109659 |1168 |29193 |
-ROW |109660 |1170 |29194 |
-ROW |109661 |1169 |29195 |
-ROW |109662 |1169 |29196 |
-ROW |109663 |1169 |29197 |
-ROW |109664 |1142 |29198 |
-ROW |109665 |1144 |31270 |
-ROW |109666 |1152 |29199 |
-ROW |109667 |1154 |31271 |
-ROW |109668 |1162 |29200 |
-ROW |109669 |1164 |31272 |
-ROW |109670 |1146 |31278 |
-ROW |109671 |1156 |31281 |
-ROW |109672 |1166 |31284 |
-ROW |109673 |1146 |31287 |
-ROW |109674 |1146 |31290 |
-ROW |109675 |1156 |31293 |
-ROW |109676 |1156 |31296 |
-ROW |109677 |1166 |31299 |
-ROW |109678 |1166 |31302 |
-ROW |109679 |1173 |29273 |
-ROW |109680 |1173 |29274 |
-ROW |109681 |1173 |29275 |
-ROW |109682 |1173 |29276 |
-ROW |109683 |1173 |29277 |
-ROW |109684 |1173 |29278 |
-ROW |109685 |1173 |29279 |
-ROW |109686 |1173 |29280 |
-ROW |109687 |1173 |29281 |
-ROW |109688 |1173 |29282 |
-ROW |109689 |1173 |29283 |
-ROW |109690 |1173 |29284 |
-ROW |109691 |1173 |29285 |
-ROW |109692 |1173 |29286 |
-ROW |109693 |1173 |29287 |
-ROW |109694 |1173 |29288 |
-ROW |109695 |1175 |29289 |
-ROW |109696 |1175 |29290 |
-ROW |109697 |1175 |29291 |
-ROW |109698 |1175 |29292 |
-ROW |109699 |1175 |29293 |
-ROW |109700 |1175 |29294 |
-ROW |109701 |1182 |29296 |
-ROW |109702 |1179 |29297 |
-ROW |109703 |1179 |29298 |
-ROW |109704 |1179 |29299 |
-ROW |109705 |1179 |29300 |
-ROW |109706 |1179 |29301 |
-ROW |109707 |1179 |29302 |
-ROW |109708 |1179 |29303 |
-ROW |109709 |1179 |29304 |
-ROW |109710 |1179 |29305 |
-ROW |109711 |1181 |29306 |
-ROW |109712 |1180 |29307 |
-ROW |109713 |1180 |29308 |
-ROW |109714 |1180 |29309 |
-ROW |109715 |1183 |29310 |
-ROW |109716 |1183 |29311 |
-ROW |109717 |1183 |29312 |
-ROW |109718 |1183 |29313 |
-ROW |109719 |1183 |29314 |
-ROW |109720 |1183 |29315 |
-ROW |109721 |1183 |29316 |
-ROW |109722 |1183 |29317 |
-ROW |109723 |1183 |29318 |
-ROW |109724 |1183 |29319 |
-ROW |109725 |1183 |29320 |
-ROW |109726 |1183 |29321 |
-ROW |109727 |1183 |29322 |
-ROW |109728 |1183 |29323 |
-ROW |109729 |1183 |29324 |
-ROW |109730 |1183 |29325 |
-ROW |109731 |1185 |29326 |
-ROW |109732 |1185 |29327 |
-ROW |109733 |1185 |29328 |
-ROW |109734 |1185 |29329 |
-ROW |109735 |1185 |29330 |
-ROW |109736 |1185 |29331 |
-ROW |109737 |1192 |29333 |
-ROW |109738 |1189 |29334 |
-ROW |109739 |1189 |29335 |
-ROW |109740 |1189 |29336 |
-ROW |109741 |1189 |29337 |
-ROW |109742 |1189 |29338 |
-ROW |109743 |1189 |29339 |
-ROW |109744 |1189 |29340 |
-ROW |109745 |1189 |29341 |
-ROW |109746 |1189 |29342 |
-ROW |109747 |1191 |29343 |
-ROW |109748 |1190 |29344 |
-ROW |109749 |1190 |29345 |
-ROW |109750 |1190 |29346 |
-ROW |109751 |1173 |29347 |
-ROW |109752 |1175 |31303 |
-ROW |109753 |1183 |29348 |
-ROW |109754 |1185 |31304 |
-ROW |109755 |1177 |31309 |
-ROW |109756 |1187 |31312 |
-ROW |109757 |1177 |31315 |
-ROW |109758 |1177 |31318 |
-ROW |109759 |1187 |31321 |
-ROW |109760 |1187 |31324 |
-ROW |109761 |1201 |29395 |
-ROW |109762 |1196 |29396 |
-ROW |109763 |1196 |29397 |
-ROW |109764 |1194 |29398 |
-ROW |109765 |1193 |29399 |
-ROW |109766 |1196 |29400 |
-ROW |109767 |1196 |29401 |
-ROW |109768 |1196 |29402 |
-ROW |109769 |1196 |29403 |
-ROW |109770 |1194 |29404 |
-ROW |109771 |1193 |29405 |
-ROW |109772 |1193 |29406 |
-ROW |109773 |1193 |29407 |
-ROW |109774 |1193 |29408 |
-ROW |109775 |1193 |29409 |
-ROW |109776 |1193 |29410 |
-ROW |109777 |1193 |29411 |
-ROW |109778 |1193 |29412 |
-ROW |109779 |1193 |29413 |
-ROW |109780 |1194 |29414 |
-ROW |109781 |1197 |29415 |
-ROW |109782 |1193 |29416 |
-ROW |109783 |1193 |29417 |
-ROW |109784 |1193 |29418 |
-ROW |109785 |1193 |29419 |
-ROW |109786 |1193 |29420 |
-ROW |109787 |1199 |29421 |
-ROW |109788 |1195 |29422 |
-ROW |109789 |1194 |29423 |
-ROW |109790 |1194 |29424 |
-ROW |109791 |1194 |29425 |
-ROW |109792 |1193 |29426 |
-ROW |109793 |1193 |29427 |
-ROW |109794 |1195 |29428 |
-ROW |109795 |1201 |29450 |
-ROW |109796 |1201 |29451 |
-ROW |109797 |1128 |28978 |
-ROW |109798 |1128 |28979 |
-ROW |109799 |1128 |28980 |
-ROW |109800 |1128 |28981 |
-ROW |109801 |1128 |28982 |
-ROW |109802 |1128 |28983 |
-ROW |109803 |1128 |28984 |
-ROW |109804 |1128 |28985 |
-ROW |109805 |1128 |28986 |
-ROW |109806 |1130 |28987 |
-ROW |109807 |1130 |28988 |
-ROW |109808 |1130 |28989 |
-ROW |109809 |1130 |28990 |
-ROW |109810 |1130 |28991 |
-ROW |109811 |1130 |28992 |
-ROW |109812 |1132 |28993 |
-ROW |109813 |1132 |28994 |
-ROW |109814 |1132 |28995 |
-ROW |109815 |1132 |28996 |
-ROW |109816 |1132 |28997 |
-ROW |109817 |1132 |28998 |
-ROW |109818 |1132 |28999 |
-ROW |109819 |1132 |29000 |
-ROW |109820 |1132 |29001 |
-ROW |109821 |1134 |29002 |
-ROW |109822 |1134 |29003 |
-ROW |109823 |1134 |29004 |
-ROW |109824 |1134 |29005 |
-ROW |109825 |1134 |29006 |
-ROW |109826 |1134 |29007 |
-ROW |109827 |1130 |29017 |
-ROW |109828 |1130 |29018 |
-ROW |109829 |1130 |29019 |
-ROW |109830 |1130 |29020 |
-ROW |109831 |1130 |29021 |
-ROW |109832 |1130 |29022 |
-ROW |109833 |1130 |29023 |
-ROW |109834 |1130 |29024 |
-ROW |109835 |1130 |29025 |
-ROW |109836 |1130 |29026 |
-ROW |109837 |1134 |29034 |
-ROW |109838 |1134 |29035 |
-ROW |109839 |1134 |29036 |
-ROW |109840 |1134 |29037 |
-ROW |109841 |1134 |29038 |
-ROW |109842 |1134 |29039 |
-ROW |109843 |1134 |29040 |
-ROW |109844 |1134 |29041 |
-ROW |109845 |1134 |29042 |
-ROW |109846 |1134 |29043 |
-ROW |109847 |1130 |29048 |
-ROW |109848 |1134 |29049 |
-ROW |109849 |1202 |29454 |
-ROW |109850 |1202 |29455 |
-ROW |109851 |1202 |29456 |
-ROW |109852 |1202 |29457 |
-ROW |109853 |1202 |29458 |
-ROW |109854 |1202 |29459 |
-ROW |109855 |1203 |29460 |
-ROW |109856 |1203 |29461 |
-ROW |109857 |1203 |29462 |
-ROW |109858 |1203 |29463 |
-ROW |109859 |1203 |29466 |
-ROW |109860 |1203 |29467 |
-ROW |109861 |1203 |29468 |
-ROW |109862 |1203 |29469 |
-ROW |109863 |1203 |29470 |
-ROW |109864 |1209 |29472 |
-ROW |109865 |1207 |29473 |
-ROW |109866 |1207 |29474 |
-ROW |109867 |1207 |29475 |
-ROW |109868 |1207 |29476 |
-ROW |109869 |1207 |29477 |
-ROW |109870 |1208 |29478 |
-ROW |109871 |1202 |30137 |
-ROW |109872 |1202 |31325 |
-ROW |109873 |1203 |31326 |
-ROW |109874 |1203 |31327 |
-ROW |109875 |1211 |31455 |
-ROW |109876 |1212 |29480 |
-ROW |109877 |1212 |29481 |
-ROW |109878 |1212 |29482 |
-ROW |109879 |1212 |29483 |
-ROW |109880 |1212 |29484 |
-ROW |109881 |1212 |29485 |
-ROW |109882 |1213 |29486 |
-ROW |109883 |1213 |29487 |
-ROW |109884 |1213 |29488 |
-ROW |109885 |1213 |29489 |
-ROW |109886 |1213 |29492 |
-ROW |109887 |1213 |29493 |
-ROW |109888 |1213 |29494 |
-ROW |109889 |1213 |29495 |
-ROW |109890 |1213 |29496 |
-ROW |109891 |1219 |29498 |
-ROW |109892 |1217 |29499 |
-ROW |109893 |1217 |29500 |
-ROW |109894 |1217 |29501 |
-ROW |109895 |1217 |29502 |
-ROW |109896 |1217 |29503 |
-ROW |109897 |1218 |29504 |
-ROW |109898 |1212 |30138 |
-ROW |109899 |1212 |31328 |
-ROW |109900 |1213 |31329 |
-ROW |109901 |1213 |31330 |
-ROW |109902 |1216 |31456 |
-ROW |109903 |1203 |31331 |
-ROW |109904 |1213 |31332 |
-ROW |109905 |1310 |30425 |
-ROW |109906 |1311 |30426 |
-ROW |109907 |1243 |29561 |
-ROW |109908 |1243 |29562 |
-ROW |109909 |1243 |29563 |
-ROW |109910 |1243 |29564 |
-ROW |109911 |1243 |29565 |
-ROW |109912 |1243 |29566 |
-ROW |109913 |1244 |29567 |
-ROW |109914 |1244 |29568 |
-ROW |109915 |1244 |29569 |
-ROW |109916 |1244 |29570 |
-ROW |109917 |1244 |29573 |
-ROW |109918 |1244 |29574 |
-ROW |109919 |1244 |29575 |
-ROW |109920 |1244 |29576 |
-ROW |109921 |1244 |29577 |
-ROW |109922 |1250 |29579 |
-ROW |109923 |1248 |29580 |
-ROW |109924 |1248 |29581 |
-ROW |109925 |1248 |29582 |
-ROW |109926 |1248 |29583 |
-ROW |109927 |1248 |29584 |
-ROW |109928 |1249 |29585 |
-ROW |109929 |1243 |30139 |
-ROW |109930 |1243 |31343 |
-ROW |109931 |1244 |31344 |
-ROW |109932 |1244 |31345 |
-ROW |109933 |1252 |31477 |
-ROW |109934 |1253 |29587 |
-ROW |109935 |1253 |29588 |
-ROW |109936 |1253 |29589 |
-ROW |109937 |1253 |29590 |
-ROW |109938 |1253 |29591 |
-ROW |109939 |1253 |29592 |
-ROW |109940 |1254 |29593 |
-ROW |109941 |1254 |29594 |
-ROW |109942 |1254 |29595 |
-ROW |109943 |1254 |29596 |
-ROW |109944 |1254 |29599 |
-ROW |109945 |1254 |29600 |
-ROW |109946 |1254 |29601 |
-ROW |109947 |1254 |29602 |
-ROW |109948 |1254 |29603 |
-ROW |109949 |1242 |29605 |
-ROW |109950 |1258 |29606 |
-ROW |109951 |1258 |29607 |
-ROW |109952 |1258 |29608 |
-ROW |109953 |1258 |29609 |
-ROW |109954 |1258 |29610 |
-ROW |109955 |1259 |29611 |
-ROW |109956 |1253 |30140 |
-ROW |109957 |1253 |31346 |
-ROW |109958 |1254 |31347 |
-ROW |109959 |1254 |31348 |
-ROW |109960 |1257 |31478 |
-ROW |109961 |1244 |31349 |
-ROW |109962 |1254 |31350 |
-ROW |109963 |1312 |30429 |
-ROW |109964 |1313 |30430 |
-ROW |109965 |1492 |34083 |
-ROW |109966 |1493 |33568 |
-ROW |109967 |1493 |33569 |
-ROW |109968 |1493 |33570 |
-ROW |109969 |1492 |33571 |
-ROW |109970 |1492 |33572 |
-ROW |109971 |1492 |33574 |
-ROW |109972 |1492 |33575 |
-ROW |109973 |1492 |33576 |
-ROW |109974 |1492 |33577 |
-ROW |109975 |1492 |33578 |
-ROW |109976 |1493 |33579 |
-ROW |109977 |1493 |33580 |
-ROW |109978 |1493 |33581 |
-ROW |109979 |1493 |33582 |
-ROW |109980 |1493 |33583 |
-ROW |109981 |1493 |33584 |
-ROW |109982 |1493 |33585 |
-ROW |109983 |1493 |33589 |
-ROW |109984 |1493 |33590 |
-ROW |109985 |1493 |33591 |
-ROW |109986 |1493 |33592 |
-ROW |109987 |1493 |33593 |
-ROW |109988 |1493 |33594 |
-ROW |109989 |1493 |33595 |
-ROW |109990 |1493 |33602 |
-ROW |109991 |1493 |33603 |
-ROW |109992 |1493 |33604 |
-ROW |109993 |1493 |33605 |
-ROW |109994 |1493 |33606 |
-ROW |109995 |1492 |33607 |
-ROW |109996 |1493 |33608 |
-ROW |109997 |1493 |33609 |
-ROW |109998 |1493 |33610 |
-ROW |109999 |1493 |33611 |
-ROW |110000 |1493 |33612 |
-ROW |110001 |1493 |33613 |
-ROW |110002 |1493 |33614 |
-ROW |110003 |1493 |33615 |
-ROW |110004 |1493 |33616 |
-ROW |110005 |1493 |33617 |
-ROW |110006 |1493 |33618 |
-ROW |110007 |1494 |34084 |
-ROW |110008 |1495 |33619 |
-ROW |110009 |1495 |33620 |
-ROW |110010 |1495 |33621 |
-ROW |110011 |1494 |33622 |
-ROW |110012 |1494 |33623 |
-ROW |110013 |1494 |33625 |
-ROW |110014 |1494 |33626 |
-ROW |110015 |1494 |33627 |
-ROW |110016 |1494 |33628 |
-ROW |110017 |1494 |33629 |
-ROW |110018 |1495 |33630 |
-ROW |110019 |1495 |33631 |
-ROW |110020 |1495 |33632 |
-ROW |110021 |1495 |33633 |
-ROW |110022 |1495 |33634 |
-ROW |110023 |1495 |33635 |
-ROW |110024 |1495 |33636 |
-ROW |110025 |1495 |33640 |
-ROW |110026 |1495 |33641 |
-ROW |110027 |1495 |33642 |
-ROW |110028 |1495 |33643 |
-ROW |110029 |1495 |33644 |
-ROW |110030 |1495 |33645 |
-ROW |110031 |1495 |33646 |
-ROW |110032 |1495 |33653 |
-ROW |110033 |1495 |33654 |
-ROW |110034 |1495 |33655 |
-ROW |110035 |1495 |33656 |
-ROW |110036 |1495 |33657 |
-ROW |110037 |1494 |33658 |
-ROW |110038 |1495 |33659 |
-ROW |110039 |1495 |33660 |
-ROW |110040 |1495 |33661 |
-ROW |110041 |1495 |33662 |
-ROW |110042 |1495 |33663 |
-ROW |110043 |1495 |33664 |
-ROW |110044 |1495 |33665 |
-ROW |110045 |1495 |33666 |
-ROW |110046 |1495 |33667 |
-ROW |110047 |1495 |33668 |
-ROW |110048 |1495 |33669 |
-ROW |110049 |1496 |34085 |
-ROW |110050 |1497 |33670 |
-ROW |110051 |1497 |33671 |
-ROW |110052 |1497 |33672 |
-ROW |110053 |1496 |33673 |
-ROW |110054 |1496 |33674 |
-ROW |110055 |1496 |33676 |
-ROW |110056 |1496 |33677 |
-ROW |110057 |1496 |33678 |
-ROW |110058 |1496 |33679 |
-ROW |110059 |1496 |33680 |
-ROW |110060 |1497 |33681 |
-ROW |110061 |1497 |33682 |
-ROW |110062 |1497 |33683 |
-ROW |110063 |1497 |33684 |
-ROW |110064 |1497 |33685 |
-ROW |110065 |1497 |33686 |
-ROW |110066 |1497 |33687 |
-ROW |110067 |1497 |33691 |
-ROW |110068 |1497 |33692 |
-ROW |110069 |1497 |33693 |
-ROW |110070 |1497 |33694 |
-ROW |110071 |1497 |33695 |
-ROW |110072 |1497 |33696 |
-ROW |110073 |1497 |33697 |
-ROW |110074 |1497 |33704 |
-ROW |110075 |1497 |33705 |
-ROW |110076 |1497 |33706 |
-ROW |110077 |1497 |33707 |
-ROW |110078 |1497 |33708 |
-ROW |110079 |1496 |33709 |
-ROW |110080 |1497 |33710 |
-ROW |110081 |1497 |33711 |
-ROW |110082 |1497 |33712 |
-ROW |110083 |1497 |33713 |
-ROW |110084 |1497 |33714 |
-ROW |110085 |1497 |33715 |
-ROW |110086 |1497 |33716 |
-ROW |110087 |1497 |33717 |
-ROW |110088 |1497 |33718 |
-ROW |110089 |1497 |33719 |
-ROW |110090 |1497 |33720 |
-ROW |110091 |1498 |34086 |
-ROW |110092 |1499 |33721 |
-ROW |110093 |1499 |33722 |
-ROW |110094 |1499 |33723 |
-ROW |110095 |1498 |33724 |
-ROW |110096 |1498 |33725 |
-ROW |110097 |1498 |33727 |
-ROW |110098 |1498 |33728 |
-ROW |110099 |1498 |33729 |
-ROW |110100 |1498 |33730 |
-ROW |110101 |1498 |33731 |
-ROW |110102 |1499 |33732 |
-ROW |110103 |1499 |33733 |
-ROW |110104 |1499 |33734 |
-ROW |110105 |1499 |33735 |
-ROW |110106 |1499 |33736 |
-ROW |110107 |1499 |33737 |
-ROW |110108 |1499 |33738 |
-ROW |110109 |1499 |33742 |
-ROW |110110 |1499 |33743 |
-ROW |110111 |1499 |33744 |
-ROW |110112 |1499 |33745 |
-ROW |110113 |1499 |33746 |
-ROW |110114 |1499 |33747 |
-ROW |110115 |1499 |33748 |
-ROW |110116 |1499 |33755 |
-ROW |110117 |1499 |33756 |
-ROW |110118 |1499 |33757 |
-ROW |110119 |1499 |33758 |
-ROW |110120 |1499 |33759 |
-ROW |110121 |1498 |33760 |
-ROW |110122 |1499 |33761 |
-ROW |110123 |1499 |33762 |
-ROW |110124 |1499 |33763 |
-ROW |110125 |1499 |33764 |
-ROW |110126 |1499 |33765 |
-ROW |110127 |1499 |33766 |
-ROW |110128 |1499 |33767 |
-ROW |110129 |1499 |33768 |
-ROW |110130 |1499 |33769 |
-ROW |110131 |1499 |33770 |
-ROW |110132 |1499 |33771 |
-ROW |110133 |1500 |34087 |
-ROW |110134 |1501 |33772 |
-ROW |110135 |1501 |33773 |
-ROW |110136 |1501 |33774 |
-ROW |110137 |1500 |33775 |
-ROW |110138 |1500 |33776 |
-ROW |110139 |1500 |33778 |
-ROW |110140 |1500 |33779 |
-ROW |110141 |1500 |33780 |
-ROW |110142 |1500 |33781 |
-ROW |110143 |1500 |33782 |
-ROW |110144 |1501 |33783 |
-ROW |110145 |1501 |33784 |
-ROW |110146 |1501 |33785 |
-ROW |110147 |1501 |33786 |
-ROW |110148 |1501 |33787 |
-ROW |110149 |1501 |33788 |
-ROW |110150 |1501 |33789 |
-ROW |110151 |1501 |33793 |
-ROW |110152 |1501 |33794 |
-ROW |110153 |1501 |33795 |
-ROW |110154 |1501 |33796 |
-ROW |110155 |1501 |33797 |
-ROW |110156 |1501 |33798 |
-ROW |110157 |1501 |33799 |
-ROW |110158 |1501 |33806 |
-ROW |110159 |1501 |33807 |
-ROW |110160 |1501 |33808 |
-ROW |110161 |1501 |33809 |
-ROW |110162 |1501 |33810 |
-ROW |110163 |1500 |33811 |
-ROW |110164 |1501 |33812 |
-ROW |110165 |1501 |33813 |
-ROW |110166 |1501 |33814 |
-ROW |110167 |1501 |33815 |
-ROW |110168 |1501 |33816 |
-ROW |110169 |1501 |33817 |
-ROW |110170 |1501 |33818 |
-ROW |110171 |1501 |33819 |
-ROW |110172 |1501 |33820 |
-ROW |110173 |1501 |33821 |
-ROW |110174 |1501 |33822 |
-ROW |110175 |1502 |34088 |
-ROW |110176 |1503 |33823 |
-ROW |110177 |1503 |33824 |
-ROW |110178 |1503 |33825 |
-ROW |110179 |1502 |33826 |
-ROW |110180 |1502 |33827 |
-ROW |110181 |1502 |33829 |
-ROW |110182 |1502 |33830 |
-ROW |110183 |1502 |33831 |
-ROW |110184 |1502 |33832 |
-ROW |110185 |1502 |33833 |
-ROW |110186 |1503 |33834 |
-ROW |110187 |1503 |33835 |
-ROW |110188 |1503 |33836 |
-ROW |110189 |1503 |33837 |
-ROW |110190 |1503 |33838 |
-ROW |110191 |1503 |33839 |
-ROW |110192 |1503 |33840 |
-ROW |110193 |1503 |33844 |
-ROW |110194 |1503 |33845 |
-ROW |110195 |1503 |33846 |
-ROW |110196 |1503 |33847 |
-ROW |110197 |1503 |33848 |
-ROW |110198 |1503 |33849 |
-ROW |110199 |1503 |33850 |
-ROW |110200 |1503 |33857 |
-ROW |110201 |1503 |33858 |
-ROW |110202 |1503 |33859 |
-ROW |110203 |1503 |33860 |
-ROW |110204 |1503 |33861 |
-ROW |110205 |1502 |33862 |
-ROW |110206 |1503 |33863 |
-ROW |110207 |1503 |33864 |
-ROW |110208 |1503 |33865 |
-ROW |110209 |1503 |33866 |
-ROW |110210 |1503 |33867 |
-ROW |110211 |1503 |33868 |
-ROW |110212 |1503 |33869 |
-ROW |110213 |1503 |33870 |
-ROW |110214 |1503 |33871 |
-ROW |110215 |1503 |33872 |
-ROW |110216 |1503 |33873 |
-ROW |110217 |1504 |34089 |
-ROW |110218 |1505 |33874 |
-ROW |110219 |1505 |33875 |
-ROW |110220 |1505 |33876 |
-ROW |110221 |1504 |33877 |
-ROW |110222 |1504 |33878 |
-ROW |110223 |1504 |33880 |
-ROW |110224 |1504 |33881 |
-ROW |110225 |1504 |33882 |
-ROW |110226 |1504 |33883 |
-ROW |110227 |1504 |33884 |
-ROW |110228 |1505 |33885 |
-ROW |110229 |1505 |33886 |
-ROW |110230 |1505 |33887 |
-ROW |110231 |1505 |33888 |
-ROW |110232 |1505 |33889 |
-ROW |110233 |1505 |33890 |
-ROW |110234 |1505 |33891 |
-ROW |110235 |1505 |33895 |
-ROW |110236 |1505 |33896 |
-ROW |110237 |1505 |33897 |
-ROW |110238 |1505 |33898 |
-ROW |110239 |1505 |33899 |
-ROW |110240 |1505 |33900 |
-ROW |110241 |1505 |33901 |
-ROW |110242 |1505 |33908 |
-ROW |110243 |1505 |33909 |
-ROW |110244 |1505 |33910 |
-ROW |110245 |1505 |33911 |
-ROW |110246 |1505 |33912 |
-ROW |110247 |1504 |33913 |
-ROW |110248 |1505 |33914 |
-ROW |110249 |1505 |33915 |
-ROW |110250 |1505 |33916 |
-ROW |110251 |1505 |33917 |
-ROW |110252 |1505 |33918 |
-ROW |110253 |1505 |33919 |
-ROW |110254 |1505 |33920 |
-ROW |110255 |1505 |33921 |
-ROW |110256 |1505 |33922 |
-ROW |110257 |1505 |33923 |
-ROW |110258 |1505 |33924 |
-ROW |110259 |1488 |34090 |
-ROW |110260 |1489 |33433 |
-ROW |110261 |1489 |33434 |
-ROW |110262 |1488 |33435 |
-ROW |110263 |1488 |33436 |
-ROW |110264 |1488 |33438 |
-ROW |110265 |1488 |33439 |
-ROW |110266 |1488 |33440 |
-ROW |110267 |1488 |33441 |
-ROW |110268 |1488 |33442 |
-ROW |110269 |1489 |33443 |
-ROW |110270 |1489 |33444 |
-ROW |110271 |1489 |33445 |
-ROW |110272 |1489 |33446 |
-ROW |110273 |1489 |33447 |
-ROW |110274 |1489 |33448 |
-ROW |110275 |1489 |33449 |
-ROW |110276 |1489 |33453 |
-ROW |110277 |1489 |33454 |
-ROW |110278 |1489 |33455 |
-ROW |110279 |1489 |33456 |
-ROW |110280 |1489 |33457 |
-ROW |110281 |1489 |33458 |
-ROW |110282 |1489 |33459 |
-ROW |110283 |1489 |33925 |
-ROW |110284 |1489 |33465 |
-ROW |110285 |1489 |33466 |
-ROW |110286 |1489 |33467 |
-ROW |110287 |1489 |33468 |
-ROW |110288 |1489 |33469 |
-ROW |110289 |1488 |33470 |
-ROW |110290 |1489 |33471 |
-ROW |110291 |1489 |33472 |
-ROW |110292 |1489 |33473 |
-ROW |110293 |1489 |33474 |
-ROW |110294 |1489 |33475 |
-ROW |110295 |1489 |33476 |
-ROW |110296 |1489 |33477 |
-ROW |110297 |1489 |33478 |
-ROW |110298 |1489 |33927 |
-ROW |110299 |1489 |33928 |
-ROW |110300 |1489 |33929 |
-ROW |110301 |1506 |34091 |
-ROW |110302 |1507 |33930 |
-ROW |110303 |1507 |33931 |
-ROW |110304 |1507 |33932 |
-ROW |110305 |1506 |33933 |
-ROW |110306 |1506 |33934 |
-ROW |110307 |1506 |33936 |
-ROW |110308 |1506 |33937 |
-ROW |110309 |1506 |33938 |
-ROW |110310 |1506 |33939 |
-ROW |110311 |1506 |33940 |
-ROW |110312 |1507 |33941 |
-ROW |110313 |1507 |33942 |
-ROW |110314 |1507 |33943 |
-ROW |110315 |1507 |33944 |
-ROW |110316 |1507 |33945 |
-ROW |110317 |1507 |33946 |
-ROW |110318 |1507 |33947 |
-ROW |110319 |1507 |33951 |
-ROW |110320 |1507 |33952 |
-ROW |110321 |1507 |33953 |
-ROW |110322 |1507 |33954 |
-ROW |110323 |1507 |33955 |
-ROW |110324 |1507 |33956 |
-ROW |110325 |1507 |33957 |
-ROW |110326 |1507 |33964 |
-ROW |110327 |1507 |33965 |
-ROW |110328 |1507 |33966 |
-ROW |110329 |1507 |33967 |
-ROW |110330 |1507 |33968 |
-ROW |110331 |1506 |33969 |
-ROW |110332 |1507 |33970 |
-ROW |110333 |1507 |33971 |
-ROW |110334 |1507 |33972 |
-ROW |110335 |1507 |33973 |
-ROW |110336 |1507 |33974 |
-ROW |110337 |1507 |33975 |
-ROW |110338 |1507 |33976 |
-ROW |110339 |1507 |33977 |
-ROW |110340 |1507 |33978 |
-ROW |110341 |1507 |33979 |
-ROW |110342 |1507 |33980 |
-ROW |110343 |1508 |34092 |
-ROW |110344 |1509 |33981 |
-ROW |110345 |1509 |33982 |
-ROW |110346 |1509 |33983 |
-ROW |110347 |1508 |33984 |
-ROW |110348 |1508 |33985 |
-ROW |110349 |1508 |33987 |
-ROW |110350 |1508 |33988 |
-ROW |110351 |1508 |33989 |
-ROW |110352 |1508 |33990 |
-ROW |110353 |1508 |33991 |
-ROW |110354 |1509 |33992 |
-ROW |110355 |1509 |33993 |
-ROW |110356 |1509 |33994 |
-ROW |110357 |1509 |33995 |
-ROW |110358 |1509 |33996 |
-ROW |110359 |1509 |33997 |
-ROW |110360 |1509 |33998 |
-ROW |110361 |1509 |34002 |
-ROW |110362 |1509 |34003 |
-ROW |110363 |1509 |34004 |
-ROW |110364 |1509 |34005 |
-ROW |110365 |1509 |34006 |
-ROW |110366 |1509 |34007 |
-ROW |110367 |1509 |34008 |
-ROW |110368 |1509 |34015 |
-ROW |110369 |1509 |34016 |
-ROW |110370 |1509 |34017 |
-ROW |110371 |1509 |34018 |
-ROW |110372 |1509 |34019 |
-ROW |110373 |1508 |34020 |
-ROW |110374 |1509 |34021 |
-ROW |110375 |1509 |34022 |
-ROW |110376 |1509 |34023 |
-ROW |110377 |1509 |34024 |
-ROW |110378 |1509 |34025 |
-ROW |110379 |1509 |34026 |
-ROW |110380 |1509 |34027 |
-ROW |110381 |1509 |34028 |
-ROW |110382 |1509 |34029 |
-ROW |110383 |1509 |34030 |
-ROW |110384 |1509 |34031 |
-ROW |110385 |1510 |34093 |
-ROW |110386 |1511 |34032 |
-ROW |110387 |1511 |34033 |
-ROW |110388 |1511 |34034 |
-ROW |110389 |1510 |34035 |
-ROW |110390 |1510 |34036 |
-ROW |110391 |1510 |34038 |
-ROW |110392 |1510 |34039 |
-ROW |110393 |1510 |34040 |
-ROW |110394 |1510 |34041 |
-ROW |110395 |1510 |34042 |
-ROW |110396 |1511 |34043 |
-ROW |110397 |1511 |34044 |
-ROW |110398 |1511 |34045 |
-ROW |110399 |1511 |34046 |
-ROW |110400 |1511 |34047 |
-ROW |110401 |1511 |34048 |
-ROW |110402 |1511 |34049 |
-ROW |110403 |1511 |34053 |
-ROW |110404 |1511 |34054 |
-ROW |110405 |1511 |34055 |
-ROW |110406 |1511 |34056 |
-ROW |110407 |1511 |34057 |
-ROW |110408 |1511 |34058 |
-ROW |110409 |1511 |34059 |
-ROW |110410 |1511 |34066 |
-ROW |110411 |1511 |34067 |
-ROW |110412 |1511 |34068 |
-ROW |110413 |1511 |34069 |
-ROW |110414 |1511 |34070 |
-ROW |110415 |1510 |34071 |
-ROW |110416 |1511 |34072 |
-ROW |110417 |1511 |34073 |
-ROW |110418 |1511 |34074 |
-ROW |110419 |1511 |34075 |
-ROW |110420 |1511 |34076 |
-ROW |110421 |1511 |34077 |
-ROW |110422 |1511 |34078 |
-ROW |110423 |1511 |34079 |
-ROW |110424 |1511 |34080 |
-ROW |110425 |1511 |34081 |
-ROW |110426 |1511 |34082 |
-ROW |110427 |1424 |32776 |
-ROW |110428 |1424 |32777 |
-ROW |110429 |1424 |32778 |
-ROW |110430 |1424 |32779 |
-ROW |110431 |1491 |33479 |
-ROW |110432 |1490 |33480 |
-ROW |110433 |1491 |33481 |
-ROW |110434 |1491 |33482 |
-ROW |110435 |1491 |33483 |
-ROW |110436 |1491 |33484 |
-ROW |110437 |1491 |33485 |
-ROW |110438 |1491 |33486 |
-ROW |110439 |1491 |33487 |
-ROW |110440 |1490 |33488 |
-ROW |110441 |1490 |33489 |
-ROW |110442 |1491 |33490 |
-ROW |110443 |1490 |33491 |
-ROW |110444 |1491 |33492 |
-ROW |110445 |1490 |33493 |
-ROW |110446 |1490 |33494 |
-ROW |110447 |1490 |33495 |
-ROW |110448 |1491 |33496 |
-ROW |110449 |1491 |33497 |
-ROW |110450 |1491 |33498 |
-ROW |110451 |1491 |33499 |
-ROW |110452 |1490 |33500 |
-ROW |110453 |1490 |33501 |
-ROW |110454 |1491 |33502 |
-ROW |110455 |1491 |33503 |
-ROW |110456 |1490 |33504 |
-ROW |110457 |1490 |33505 |
-ROW |110458 |1490 |33506 |
-ROW |110459 |1490 |33507 |
-ROW |110460 |1490 |33508 |
-ROW |110461 |1490 |33509 |
-ROW |110462 |1491 |33510 |
-ROW |110463 |1491 |33511 |
-ROW |110464 |1490 |33512 |
-ROW |110465 |1491 |33545 |
-ROW |110466 |1491 |33551 |
-ROW |110467 |1491 |33552 |
-ROW |110468 |1491 |33553 |
-ROW |110469 |1491 |33559 |
-ROW |110470 |1491 |33560 |
-ROW |110471 |1491 |33561 |
-ROW |110472 |1491 |33562 |
-ROW |110473 |1416 |32612 |
-ROW |110474 |1416 |32613 |
-ROW |110475 |1416 |32614 |
-ROW |110476 |1416 |32615 |
-ROW |110477 |1325 |30685 |
-ROW |110478 |1277 |30066 |
-ROW |110479 |1277 |30067 |
-ROW |110480 |1277 |30068 |
-ROW |110481 |1277 |30069 |
-ROW |110482 |1277 |30070 |
-ROW |110483 |1276 |30071 |
-ROW |110484 |1271 |30072 |
-ROW |110485 |1274 |30073 |
-ROW |110486 |1274 |30074 |
-ROW |110487 |1273 |30075 |
-ROW |110488 |1275 |30076 |
-ROW |110489 |1275 |30077 |
-ROW |110490 |1275 |30078 |
-ROW |110491 |1275 |30079 |
-ROW |110492 |1278 |30080 |
-ROW |110493 |1278 |30081 |
-ROW |110494 |1278 |30082 |
-ROW |110495 |1272 |30083 |
-ROW |110496 |1272 |30084 |
-ROW |110497 |1272 |30085 |
-ROW |110498 |1070 |28341 |
-ROW |110499 |1073 |28342 |
-ROW |110500 |1073 |28344 |
-ROW |110501 |1073 |28345 |
-ROW |110502 |1073 |30141 |
-ROW |110503 |1076 |28354 |
-ROW |110504 |1076 |28355 |
-ROW |110505 |1076 |28356 |
-ROW |110506 |1076 |28357 |
-ROW |110507 |1075 |28358 |
-ROW |110508 |1072 |28359 |
-ROW |110509 |1072 |28360 |
-ROW |110510 |1074 |28361 |
-ROW |110511 |1074 |28362 |
-ROW |110512 |1074 |28363 |
-ROW |110513 |1074 |28364 |
-ROW |110514 |1074 |28365 |
-ROW |110515 |1074 |28366 |
-ROW |110516 |1074 |28367 |
-ROW |110517 |1077 |28368 |
-ROW |110518 |1077 |28369 |
-ROW |110519 |1077 |28370 |
-ROW |110520 |1077 |28371 |
-ROW |110521 |1077 |28372 |
-ROW |110522 |1077 |28373 |
-ROW |110523 |1071 |28374 |
-ROW |110524 |1071 |28375 |
-ROW |110525 |1071 |28376 |
-ROW |110526 |1085 |28388 |
-ROW |110527 |1082 |28390 |
-ROW |110528 |1082 |28391 |
-ROW |110529 |1079 |29994 |
-ROW |110530 |1085 |28404 |
-ROW |110531 |1085 |28405 |
-ROW |110532 |1085 |28406 |
-ROW |110533 |1085 |28407 |
-ROW |110534 |1085 |28408 |
-ROW |110535 |1085 |28409 |
-ROW |110536 |1084 |28411 |
-ROW |110537 |1081 |28412 |
-ROW |110538 |1080 |28413 |
-ROW |110539 |1080 |28414 |
-ROW |110540 |1080 |28415 |
-ROW |110541 |1080 |28416 |
-ROW |110542 |1083 |28417 |
-ROW |110543 |1083 |28418 |
-ROW |110544 |1083 |28419 |
-ROW |110545 |1083 |28420 |
-ROW |110546 |1083 |28421 |
-ROW |110547 |1083 |28422 |
-ROW |110548 |1086 |28423 |
-ROW |110549 |1086 |28424 |
-ROW |110550 |1086 |28425 |
-ROW |110551 |1085 |32732 |
-ROW |110552 |1085 |32733 |
-ROW |110553 |1085 |32734 |
-ROW |110554 |1085 |32735 |
-ROW |110555 |1085 |32736 |
-ROW |110556 |1085 |32737 |
-ROW |110557 |1085 |32738 |
-ROW |110558 |1085 |32739 |
-ROW |110559 |1085 |32740 |
-ROW |110560 |1095 |28465 |
-ROW |110561 |1097 |28466 |
-ROW |110562 |1097 |28467 |
-ROW |110563 |1100 |28474 |
-ROW |110564 |1100 |28475 |
-ROW |110565 |1100 |28476 |
-ROW |110566 |1099 |28477 |
-ROW |110567 |1096 |28478 |
-ROW |110568 |1096 |28479 |
-ROW |110569 |1098 |28480 |
-ROW |110570 |1098 |28481 |
-ROW |110571 |1104 |28495 |
-ROW |110572 |1103 |28496 |
-ROW |110573 |1355 |31969 |
-ROW |110574 |1355 |31970 |
-ROW |110575 |1356 |31971 |
-ROW |110576 |1355 |31972 |
-ROW |110577 |1355 |31973 |
-ROW |110578 |1355 |31974 |
-ROW |110579 |1355 |31975 |
-ROW |110580 |1355 |31976 |
-ROW |110581 |1355 |31977 |
-ROW |110582 |1355 |31978 |
-ROW |110583 |1355 |31979 |
-ROW |110584 |1355 |31980 |
-ROW |110585 |1355 |31981 |
-ROW |110586 |1355 |31982 |
-ROW |110587 |1355 |31983 |
-ROW |110588 |1355 |31984 |
-ROW |110589 |1355 |31985 |
-ROW |110590 |1355 |31986 |
-ROW |110591 |1355 |31987 |
-ROW |110592 |1355 |31988 |
-ROW |110593 |1355 |31989 |
-ROW |110594 |1355 |32461 |
-ROW |110595 |1355 |32462 |
+ROW |110596 |1116 |28743 |
+ROW |110597 |1116 |28744 |
+ROW |110598 |1116 |28745 |
+ROW |110599 |1116 |28746 |
+ROW |110600 |1116 |28747 |
+ROW |110601 |1116 |28748 |
+ROW |110602 |1117 |30896 |
+ROW |110603 |1116 |30897 |
+ROW |110604 |1116 |30898 |
+ROW |110605 |1116 |30899 |
+ROW |110606 |1116 |30900 |
+ROW |110607 |1116 |30901 |
+ROW |110608 |1116 |30902 |
+ROW |110609 |1116 |30903 |
+ROW |110610 |1116 |30904 |
+ROW |110611 |1116 |30905 |
+ROW |110612 |1116 |30906 |
+ROW |110613 |1116 |30907 |
+ROW |110614 |1116 |30908 |
+ROW |110615 |1116 |30909 |
+ROW |110616 |1116 |30910 |
+ROW |110617 |1116 |30911 |
+ROW |110618 |1116 |30912 |
+ROW |110619 |1116 |30913 |
+ROW |110620 |1116 |30914 |
+ROW |110621 |1116 |30915 |
+ROW |110622 |1116 |30917 |
+ROW |110623 |1116 |30918 |
+ROW |110624 |1116 |30919 |
+ROW |110625 |1116 |30920 |
+ROW |110626 |1116 |30921 |
+ROW |110627 |1116 |30922 |
+ROW |110628 |1119 |28775 |
+ROW |110629 |1118 |28776 |
+ROW |110630 |1118 |28777 |
+ROW |110631 |1118 |28778 |
+ROW |110632 |1118 |28779 |
+ROW |110633 |1118 |28780 |
+ROW |110634 |1118 |28781 |
+ROW |110635 |1118 |28782 |
+ROW |110636 |1118 |28783 |
+ROW |110637 |1118 |28784 |
+ROW |110638 |1118 |28785 |
+ROW |110639 |1118 |28786 |
+ROW |110640 |1118 |28787 |
+ROW |110641 |1118 |28788 |
+ROW |110642 |1118 |28789 |
+ROW |110643 |1118 |28790 |
+ROW |110644 |1118 |28791 |
+ROW |110645 |1118 |28792 |
+ROW |110646 |1118 |28793 |
+ROW |110647 |1118 |28794 |
+ROW |110648 |1118 |28795 |
+ROW |110649 |1118 |28796 |
+ROW |110650 |1118 |28798 |
+ROW |110651 |1118 |28799 |
+ROW |110652 |1118 |28800 |
+ROW |110653 |1118 |28801 |
+ROW |110654 |1118 |28802 |
+ROW |110655 |1118 |28803 |
+ROW |110656 |1349 |31800 |
+ROW |110657 |1349 |31801 |
+ROW |110658 |1349 |31802 |
+ROW |110659 |1348 |31803 |
+ROW |110660 |1349 |31804 |
+ROW |110661 |1348 |31805 |
+ROW |110662 |1348 |31806 |
+ROW |110663 |1348 |31807 |
+ROW |110664 |1348 |31808 |
+ROW |110665 |1348 |31809 |
+ROW |110666 |1348 |31810 |
+ROW |110667 |1348 |31811 |
+ROW |110668 |1348 |31812 |
+ROW |110669 |1348 |31813 |
+ROW |110670 |1348 |31814 |
+ROW |110671 |1348 |31815 |
+ROW |110672 |1348 |31816 |
+ROW |110673 |1348 |31817 |
+ROW |110674 |1348 |31818 |
+ROW |110675 |1348 |31819 |
+ROW |110676 |1348 |31820 |
+ROW |110677 |1348 |31821 |
+ROW |110678 |1348 |31822 |
+ROW |110679 |1348 |31823 |
+ROW |110680 |1348 |31824 |
+ROW |110681 |1348 |31825 |
+ROW |110682 |1348 |31826 |
+ROW |110683 |1348 |31827 |
+ROW |110684 |1348 |31828 |
+ROW |110685 |1348 |31829 |
+ROW |110686 |1348 |31830 |
+ROW |110687 |1348 |31831 |
+ROW |110688 |1348 |31832 |
+ROW |110689 |1348 |31833 |
+ROW |110690 |1348 |31834 |
+ROW |110691 |1348 |31835 |
+ROW |110692 |1348 |31836 |
+ROW |110693 |1348 |31837 |
+ROW |110694 |1348 |31838 |
+ROW |110695 |1348 |31839 |
+ROW |110696 |1348 |31840 |
+ROW |110697 |1348 |31841 |
+ROW |110698 |1348 |31842 |
+ROW |110699 |1348 |31843 |
+ROW |110700 |1348 |31844 |
+ROW |110701 |1348 |31845 |
+ROW |110702 |1348 |31846 |
+ROW |110703 |1348 |31847 |
+ROW |110704 |1348 |31848 |
+ROW |110705 |1348 |31849 |
+ROW |110706 |1348 |31850 |
+ROW |110707 |1319 |30527 |
+ROW |110708 |1319 |30528 |
+ROW |110709 |1319 |30529 |
+ROW |110710 |1318 |30530 |
+ROW |110711 |1319 |30531 |
+ROW |110712 |1318 |30532 |
+ROW |110713 |1318 |30533 |
+ROW |110714 |1318 |30534 |
+ROW |110715 |1318 |30535 |
+ROW |110716 |1318 |30536 |
+ROW |110717 |1318 |30537 |
+ROW |110718 |1318 |30538 |
+ROW |110719 |1318 |30539 |
+ROW |110720 |1318 |30540 |
+ROW |110721 |1318 |30541 |
+ROW |110722 |1318 |30542 |
+ROW |110723 |1318 |30543 |
+ROW |110724 |1318 |30544 |
+ROW |110725 |1318 |30545 |
+ROW |110726 |1318 |30546 |
+ROW |110727 |1318 |30547 |
+ROW |110728 |1318 |30548 |
+ROW |110729 |1318 |30549 |
+ROW |110730 |1318 |30550 |
+ROW |110731 |1318 |30551 |
+ROW |110732 |1318 |30552 |
+ROW |110733 |1318 |30553 |
+ROW |110734 |1318 |30554 |
+ROW |110735 |1318 |30555 |
+ROW |110736 |1318 |30556 |
+ROW |110737 |1318 |30557 |
+ROW |110738 |1318 |30558 |
+ROW |110739 |1318 |30559 |
+ROW |110740 |1318 |30560 |
+ROW |110741 |1318 |30561 |
+ROW |110742 |1318 |30562 |
+ROW |110743 |1318 |30563 |
+ROW |110744 |1318 |30564 |
+ROW |110745 |1318 |30565 |
+ROW |110746 |1318 |30566 |
+ROW |110747 |1318 |30567 |
+ROW |110748 |1318 |30568 |
+ROW |110749 |1318 |30569 |
+ROW |110750 |1318 |30570 |
+ROW |110751 |1326 |30690 |
+ROW |110752 |1327 |30691 |
+ROW |110753 |1326 |30692 |
+ROW |110754 |1327 |30693 |
+ROW |110755 |1327 |30694 |
+ROW |110756 |1326 |30695 |
+ROW |110757 |1326 |30696 |
+ROW |110758 |1326 |30697 |
+ROW |110759 |1326 |30698 |
+ROW |110760 |1326 |30699 |
+ROW |110761 |1326 |30700 |
+ROW |110762 |1326 |30701 |
+ROW |110763 |1326 |30702 |
+ROW |110764 |1326 |30703 |
+ROW |110765 |1326 |30704 |
+ROW |110766 |1326 |30705 |
+ROW |110767 |1326 |30706 |
+ROW |110768 |1326 |30707 |
+ROW |110769 |1326 |30708 |
+ROW |110770 |1326 |30709 |
+ROW |110771 |1326 |30710 |
+ROW |110772 |1326 |30711 |
+ROW |110773 |1326 |30712 |
+ROW |110774 |1327 |30719 |
+ROW |110775 |1327 |30739 |
+ROW |110776 |1327 |30743 |
+ROW |110777 |1327 |30744 |
+ROW |110778 |1327 |30746 |
+ROW |110779 |1327 |30747 |
+ROW |110780 |1327 |30754 |
+ROW |110781 |1327 |30756 |
+ROW |110782 |1331 |30923 |
+ROW |110783 |1331 |30924 |
+ROW |110784 |1332 |30925 |
+ROW |110785 |1332 |30926 |
+ROW |110786 |1331 |30927 |
+ROW |110787 |1331 |30928 |
+ROW |110788 |1331 |30929 |
+ROW |110789 |1331 |30930 |
+ROW |110790 |1331 |30931 |
+ROW |110791 |1331 |30932 |
+ROW |110792 |1331 |30933 |
+ROW |110793 |1331 |30934 |
+ROW |110794 |1331 |30935 |
+ROW |110795 |1331 |30936 |
+ROW |110796 |1331 |30937 |
+ROW |110797 |1331 |30938 |
+ROW |110798 |1331 |30939 |
+ROW |110799 |1331 |30940 |
+ROW |110800 |1331 |30941 |
+ROW |110801 |1331 |30942 |
+ROW |110802 |1331 |30943 |
+ROW |110803 |1331 |30944 |
+ROW |110804 |1331 |30945 |
+ROW |110805 |1331 |30946 |
+ROW |110806 |1331 |30947 |
+ROW |110807 |1331 |30948 |
+ROW |110808 |1331 |30949 |
+ROW |110809 |1331 |30950 |
+ROW |110810 |1331 |30951 |
+ROW |110811 |1331 |30952 |
+ROW |110812 |1331 |30953 |
+ROW |110813 |1331 |30954 |
+ROW |110814 |1331 |30955 |
+ROW |110815 |1331 |30956 |
+ROW |110816 |1331 |30957 |
+ROW |110817 |1331 |30958 |
+ROW |110818 |1331 |30959 |
+ROW |110819 |1331 |30960 |
+ROW |110820 |1331 |30963 |
+ROW |110821 |1411 |32486 |
+ROW |110822 |1411 |32487 |
+ROW |110823 |1411 |32488 |
+ROW |110824 |1411 |32489 |
+ROW |110825 |1411 |32490 |
+ROW |110826 |1411 |32491 |
+ROW |110827 |1411 |32492 |
+ROW |110828 |1411 |32493 |
+ROW |110829 |1411 |32494 |
+ROW |110830 |1411 |32498 |
+ROW |110831 |1411 |32499 |
+ROW |110832 |1411 |32500 |
+ROW |110833 |1412 |32516 |
+ROW |110834 |1412 |32517 |
+ROW |110835 |1412 |32518 |
+ROW |110836 |1412 |32519 |
+ROW |110837 |1412 |32520 |
+ROW |110838 |1412 |32521 |
+ROW |110839 |1412 |32522 |
+ROW |110840 |1412 |32523 |
+ROW |110841 |1412 |32524 |
+ROW |110842 |1412 |32528 |
+ROW |110843 |1412 |32529 |
+ROW |110844 |1412 |32530 |
+ROW |110845 |1341 |31499 |
+ROW |110846 |1341 |31500 |
+ROW |110847 |1341 |31501 |
+ROW |110848 |1341 |31502 |
+ROW |110849 |1341 |31503 |
+ROW |110850 |1341 |31504 |
+ROW |110851 |1341 |31505 |
+ROW |110852 |1341 |31506 |
+ROW |110853 |1341 |31507 |
+ROW |110854 |1341 |31508 |
+ROW |110855 |1341 |31509 |
+ROW |110856 |1341 |31510 |
+ROW |110857 |1341 |31511 |
+ROW |110858 |1341 |31512 |
+ROW |110859 |1341 |31513 |
+ROW |110860 |1341 |31514 |
+ROW |110861 |1341 |31515 |
+ROW |110862 |1341 |31516 |
+ROW |110863 |1341 |31517 |
+ROW |110864 |1341 |31518 |
+ROW |110865 |1341 |31519 |
+ROW |110866 |1341 |31520 |
+ROW |110867 |1341 |31521 |
+ROW |110868 |1341 |31522 |
+ROW |110869 |1341 |31523 |
+ROW |110870 |1341 |31524 |
+ROW |110871 |1341 |31525 |
+ROW |110872 |1341 |31526 |
+ROW |110873 |1341 |31527 |
+ROW |110874 |1341 |31528 |
+ROW |110875 |1341 |31529 |
+ROW |110876 |1341 |31530 |
+ROW |110877 |1341 |31531 |
+ROW |110878 |1341 |31532 |
+ROW |110879 |1341 |31533 |
+ROW |110880 |1341 |31534 |
+ROW |110881 |1341 |31535 |
+ROW |110882 |1341 |31536 |
+ROW |110883 |1341 |31537 |
+ROW |110884 |1341 |31538 |
+ROW |110885 |1341 |31539 |
+ROW |110886 |1341 |31540 |
+ROW |110887 |1341 |31541 |
+ROW |110888 |1341 |31542 |
+ROW |110889 |1341 |31543 |
+ROW |110890 |1341 |31544 |
+ROW |110891 |1341 |31545 |
+ROW |110892 |1341 |31546 |
+ROW |110893 |1341 |31547 |
+ROW |110894 |1341 |31548 |
+ROW |110895 |1341 |31549 |
+ROW |110896 |1341 |31550 |
+ROW |110897 |1341 |31551 |
+ROW |110898 |1341 |31552 |
+ROW |110899 |1341 |31553 |
+ROW |110900 |1358 |32012 |
+ROW |110901 |1358 |32013 |
+ROW |110902 |1357 |32014 |
+ROW |110903 |1357 |32015 |
+ROW |110904 |1357 |32016 |
+ROW |110905 |1358 |32017 |
+ROW |110906 |1357 |32018 |
+ROW |110907 |1358 |32019 |
+ROW |110908 |1357 |32020 |
+ROW |110909 |1357 |32021 |
+ROW |110910 |1357 |32022 |
+ROW |110911 |1357 |32023 |
+ROW |110912 |1357 |32024 |
+ROW |110913 |1357 |32025 |
+ROW |110914 |1357 |32026 |
+ROW |110915 |1357 |32027 |
+ROW |110916 |1357 |32028 |
+ROW |110917 |1357 |32029 |
+ROW |110918 |1357 |32030 |
+ROW |110919 |1357 |32031 |
+ROW |110920 |1357 |32032 |
+ROW |110921 |1357 |32033 |
+ROW |110922 |1357 |32034 |
+ROW |110923 |1357 |32035 |
+ROW |110924 |1357 |32036 |
+ROW |110925 |1357 |32037 |
+ROW |110926 |1357 |32038 |
+ROW |110927 |1357 |32039 |
+ROW |110928 |1357 |32040 |
+ROW |110929 |1357 |32041 |
+ROW |110930 |1357 |32042 |
+ROW |110931 |1357 |32043 |
+ROW |110932 |1357 |32044 |
+ROW |110933 |1357 |32045 |
+ROW |110934 |1358 |32048 |
+ROW |110935 |1358 |32049 |
+ROW |110936 |1298 |30187 |
+ROW |110937 |1298 |30188 |
+ROW |110938 |1299 |30189 |
+ROW |110939 |1299 |30190 |
+ROW |110940 |1298 |30191 |
+ROW |110941 |1298 |30192 |
+ROW |110942 |1301 |30230 |
+ROW |110943 |1301 |30231 |
+ROW |110944 |1300 |30789 |
+ROW |110945 |1300 |30790 |
+ROW |110946 |1300 |30234 |
+ROW |110947 |1300 |30235 |
+ROW |110948 |1333 |30968 |
+ROW |110949 |1333 |30969 |
+ROW |110950 |1333 |30970 |
+ROW |110951 |1333 |30971 |
+ROW |110952 |1333 |30972 |
+ROW |110953 |1333 |30973 |
+ROW |110954 |1333 |30974 |
+ROW |110955 |1333 |30975 |
+ROW |110956 |1333 |30976 |
+ROW |110957 |1333 |30977 |
+ROW |110958 |1333 |30978 |
+ROW |110959 |1333 |30979 |
+ROW |110960 |1333 |30980 |
+ROW |110961 |1333 |30981 |
+ROW |110962 |1333 |30982 |
+ROW |110963 |1333 |30983 |
+ROW |110964 |1333 |30984 |
+ROW |110965 |1333 |30985 |
+ROW |110966 |1333 |30986 |
+ROW |110967 |1333 |30987 |
+ROW |110968 |1333 |30988 |
+ROW |110969 |1333 |30989 |
+ROW |110970 |1333 |30990 |
+ROW |110971 |1333 |30991 |
+ROW |110972 |1333 |30992 |
+ROW |110973 |1333 |30993 |
+ROW |110974 |1333 |30994 |
+ROW |110975 |1333 |30995 |
+ROW |110976 |1333 |30996 |
+ROW |110977 |1333 |30997 |
+ROW |110978 |1333 |30998 |
+ROW |110979 |1333 |30999 |
+ROW |110980 |1333 |31000 |
+ROW |110981 |1333 |31001 |
+ROW |110982 |1333 |31002 |
+ROW |110983 |1333 |31003 |
+ROW |110984 |1333 |31004 |
+ROW |110985 |1334 |31010 |
+ROW |110986 |1334 |31011 |
+ROW |110987 |1334 |31012 |
+ROW |110988 |1334 |31013 |
+ROW |110989 |1334 |31014 |
+ROW |110990 |1334 |31015 |
+ROW |110991 |1334 |31016 |
+ROW |110992 |1334 |31017 |
+ROW |110993 |1334 |31018 |
+ROW |110994 |1334 |31019 |
+ROW |110995 |1334 |31020 |
+ROW |110996 |1334 |31021 |
+ROW |110997 |1334 |31022 |
+ROW |110998 |1334 |31023 |
+ROW |110999 |1334 |31024 |
+ROW |111000 |1334 |31025 |
+ROW |111001 |1334 |31026 |
+ROW |111002 |1334 |31027 |
+ROW |111003 |1334 |31028 |
+ROW |111004 |1334 |31029 |
+ROW |111005 |1334 |31030 |
+ROW |111006 |1334 |31031 |
+ROW |111007 |1334 |31032 |
+ROW |111008 |1334 |31033 |
+ROW |111009 |1334 |31034 |
+ROW |111010 |1334 |31035 |
+ROW |111011 |1334 |31036 |
+ROW |111012 |1334 |31037 |
+ROW |111013 |1334 |31038 |
+ROW |111014 |1334 |31039 |
+ROW |111015 |1334 |31040 |
+ROW |111016 |1334 |31041 |
+ROW |111017 |1334 |31042 |
+ROW |111018 |1334 |31043 |
+ROW |111019 |1334 |31044 |
+ROW |111020 |1334 |31045 |
+ROW |111021 |1334 |31046 |
+ROW |111022 |1359 |32071 |
+ROW |111023 |1359 |32072 |
+ROW |111024 |1359 |32073 |
+ROW |111025 |1359 |32074 |
+ROW |111026 |1359 |32075 |
+ROW |111027 |1359 |32076 |
+ROW |111028 |1359 |32077 |
+ROW |111029 |1359 |32078 |
+ROW |111030 |1359 |32079 |
+ROW |111031 |1359 |32080 |
+ROW |111032 |1359 |32081 |
+ROW |111033 |1359 |32082 |
+ROW |111034 |1359 |32083 |
+ROW |111035 |1359 |32084 |
+ROW |111036 |1359 |32085 |
+ROW |111037 |1359 |32086 |
+ROW |111038 |1359 |32087 |
+ROW |111039 |1359 |32088 |
+ROW |111040 |1359 |32089 |
+ROW |111041 |1359 |32090 |
+ROW |111042 |1359 |32091 |
+ROW |111043 |1359 |32092 |
+ROW |111044 |1359 |32093 |
+ROW |111045 |1359 |32094 |
+ROW |111046 |1359 |32095 |
+ROW |111047 |1359 |32096 |
+ROW |111048 |1359 |32097 |
+ROW |111049 |1359 |32098 |
+ROW |111050 |1359 |32099 |
+ROW |111051 |1359 |32100 |
+ROW |111052 |1359 |32101 |
+ROW |111053 |1359 |32102 |
+ROW |111054 |1359 |32103 |
+ROW |111055 |1359 |32104 |
+ROW |111056 |1359 |32105 |
+ROW |111057 |1359 |32106 |
+ROW |111058 |1359 |32107 |
+ROW |111059 |1359 |32108 |
+ROW |111060 |1359 |32109 |
+ROW |111061 |1359 |32110 |
+ROW |111062 |1359 |32111 |
+ROW |111063 |1359 |32112 |
+ROW |111064 |1359 |32113 |
+ROW |111065 |1359 |32114 |
+ROW |111066 |1359 |32115 |
+ROW |111067 |1359 |32116 |
+ROW |111068 |1359 |32117 |
+ROW |111069 |1359 |32118 |
+ROW |111070 |1359 |32119 |
+ROW |111071 |1359 |32120 |
+ROW |111072 |1359 |32121 |
+ROW |111073 |1359 |32122 |
+ROW |111074 |1359 |32123 |
+ROW |111075 |1359 |32124 |
+ROW |111076 |1359 |32125 |
+ROW |111077 |1359 |32126 |
+ROW |111078 |1359 |32127 |
+ROW |111079 |1359 |32128 |
+ROW |111080 |1359 |32129 |
+ROW |111081 |1359 |32130 |
+ROW |111082 |1359 |32131 |
+ROW |111083 |1359 |32132 |
+ROW |111084 |1320 |30611 |
+ROW |111085 |1321 |30612 |
+ROW |111086 |1320 |30613 |
+ROW |111087 |1320 |30614 |
+ROW |111088 |1320 |30615 |
+ROW |111089 |1320 |30616 |
+ROW |111090 |1320 |30617 |
+ROW |111091 |1320 |30618 |
+ROW |111092 |1320 |30619 |
+ROW |111093 |1320 |30620 |
+ROW |111094 |1320 |30621 |
+ROW |111095 |1320 |30622 |
+ROW |111096 |1320 |30623 |
+ROW |111097 |1320 |30624 |
+ROW |111098 |1320 |30625 |
+ROW |111099 |1320 |30626 |
+ROW |111100 |1320 |30627 |
+ROW |111101 |1320 |30628 |
+ROW |111102 |1320 |30629 |
+ROW |111103 |1320 |30630 |
+ROW |111104 |1320 |30631 |
+ROW |111105 |1320 |30632 |
+ROW |111106 |1320 |30633 |
+ROW |111107 |1320 |30634 |
+ROW |111108 |1320 |30635 |
+ROW |111109 |1320 |30636 |
+ROW |111110 |1121 |28804 |
+ROW |111111 |1120 |28805 |
+ROW |111112 |1120 |28806 |
+ROW |111113 |1120 |28807 |
+ROW |111114 |1120 |28808 |
+ROW |111115 |1120 |28809 |
+ROW |111116 |1120 |28810 |
+ROW |111117 |1120 |28811 |
+ROW |111118 |1120 |28812 |
+ROW |111119 |1120 |28813 |
+ROW |111120 |1120 |28814 |
+ROW |111121 |1120 |28815 |
+ROW |111122 |1120 |28816 |
+ROW |111123 |1120 |28817 |
+ROW |111124 |1120 |28818 |
+ROW |111125 |1120 |28819 |
+ROW |111126 |1120 |28820 |
+ROW |111127 |1123 |28821 |
+ROW |111128 |1122 |28822 |
+ROW |111129 |1122 |28823 |
+ROW |111130 |1122 |28824 |
+ROW |111131 |1122 |28825 |
+ROW |111132 |1122 |28826 |
+ROW |111133 |1122 |28827 |
+ROW |111134 |1122 |28828 |
+ROW |111135 |1122 |28829 |
+ROW |111136 |1122 |28830 |
+ROW |111137 |1122 |28831 |
+ROW |111138 |1122 |28832 |
+ROW |111139 |1122 |28833 |
+ROW |111140 |1351 |31868 |
+ROW |111141 |1351 |31869 |
+ROW |111142 |1350 |31870 |
+ROW |111143 |1350 |31871 |
+ROW |111144 |1350 |31872 |
+ROW |111145 |1350 |31873 |
+ROW |111146 |1350 |31874 |
+ROW |111147 |1350 |31875 |
+ROW |111148 |1350 |31876 |
+ROW |111149 |1350 |31877 |
+ROW |111150 |1350 |31878 |
+ROW |111151 |1350 |31879 |
+ROW |111152 |1350 |31880 |
+ROW |111153 |1350 |31881 |
+ROW |111154 |1350 |31882 |
+ROW |111155 |1350 |31883 |
+ROW |111156 |1350 |31884 |
+ROW |111157 |1350 |31885 |
+ROW |111158 |1350 |31886 |
+ROW |111159 |1350 |31887 |
+ROW |111160 |1350 |31888 |
+ROW |111161 |1350 |31889 |
+ROW |111162 |1350 |31890 |
+ROW |111163 |1352 |31891 |
+ROW |111164 |1353 |31892 |
+ROW |111165 |1353 |31893 |
+ROW |111166 |1352 |31894 |
+ROW |111167 |1352 |31895 |
+ROW |111168 |1352 |31896 |
+ROW |111169 |1352 |31897 |
+ROW |111170 |1352 |31898 |
+ROW |111171 |1352 |31899 |
+ROW |111172 |1352 |31900 |
+ROW |111173 |1352 |31901 |
+ROW |111174 |1352 |31902 |
+ROW |111175 |1352 |31903 |
+ROW |111176 |1352 |31904 |
+ROW |111177 |1352 |31905 |
+ROW |111178 |1352 |31906 |
+ROW |111179 |1352 |31907 |
+ROW |111180 |1352 |31908 |
+ROW |111181 |1352 |31909 |
+ROW |111182 |1426 |32829 |
+ROW |111183 |1426 |32830 |
+ROW |111184 |1427 |32831 |
+ROW |111185 |1427 |32832 |
+ROW |111186 |1428 |32833 |
+ROW |111187 |1428 |32834 |
+ROW |111188 |1428 |32835 |
+ROW |111189 |1427 |32836 |
+ROW |111190 |1427 |32837 |
+ROW |111191 |1427 |32838 |
+ROW |111192 |1427 |32839 |
+ROW |111193 |1425 |32840 |
+ROW |111194 |1425 |32841 |
+ROW |111195 |1425 |32842 |
+ROW |111196 |1425 |32843 |
+ROW |111197 |1425 |32844 |
+ROW |111198 |1425 |32845 |
+ROW |111199 |1425 |32846 |
+ROW |111200 |1425 |32847 |
+ROW |111201 |1425 |32848 |
+ROW |111202 |1425 |32849 |
+ROW |111203 |1425 |32850 |
+ROW |111204 |1425 |32851 |
+ROW |111205 |1425 |32852 |
+ROW |111206 |1425 |32853 |
+ROW |111207 |1425 |32854 |
+ROW |111208 |1425 |32855 |
+ROW |111209 |1425 |32856 |
+ROW |111210 |1425 |32857 |
+ROW |111211 |1425 |32858 |
+ROW |111212 |1425 |32859 |
+ROW |111213 |1425 |32860 |
+ROW |111214 |1425 |32861 |
+ROW |111215 |1425 |32862 |
+ROW |111216 |1425 |32863 |
+ROW |111217 |1427 |32864 |
+ROW |111218 |1427 |32865 |
+ROW |111219 |1427 |32866 |
+ROW |111220 |1427 |32867 |
+ROW |111221 |1427 |32868 |
+ROW |111222 |1427 |32869 |
+ROW |111223 |1427 |32870 |
+ROW |111224 |1427 |32871 |
+ROW |111225 |1427 |32872 |
+ROW |111226 |1427 |32873 |
+ROW |111227 |1427 |32874 |
+ROW |111228 |1427 |32875 |
+ROW |111229 |1427 |32876 |
+ROW |111230 |1427 |32877 |
+ROW |111231 |1427 |32878 |
+ROW |111232 |1425 |32884 |
+ROW |111233 |1427 |32885 |
+ROW |111234 |1427 |32886 |
+ROW |111235 |1427 |32887 |
+ROW |111236 |1427 |32888 |
+ROW |111237 |1427 |32889 |
+ROW |111238 |1427 |32890 |
+ROW |111239 |1430 |32925 |
+ROW |111240 |1430 |32926 |
+ROW |111241 |1431 |32927 |
+ROW |111242 |1432 |32928 |
+ROW |111243 |1432 |32929 |
+ROW |111244 |1432 |32930 |
+ROW |111245 |1431 |32931 |
+ROW |111246 |1429 |32932 |
+ROW |111247 |1429 |32933 |
+ROW |111248 |1429 |32934 |
+ROW |111249 |1429 |32935 |
+ROW |111250 |1429 |32936 |
+ROW |111251 |1429 |32937 |
+ROW |111252 |1429 |32938 |
+ROW |111253 |1429 |32939 |
+ROW |111254 |1429 |32940 |
+ROW |111255 |1429 |32941 |
+ROW |111256 |1429 |32942 |
+ROW |111257 |1429 |32943 |
+ROW |111258 |1429 |32944 |
+ROW |111259 |1429 |32945 |
+ROW |111260 |1429 |32946 |
+ROW |111261 |1429 |32947 |
+ROW |111262 |1429 |32948 |
+ROW |111263 |1429 |32949 |
+ROW |111264 |1429 |32950 |
+ROW |111265 |1429 |32951 |
+ROW |111266 |1429 |32952 |
+ROW |111267 |1429 |32953 |
+ROW |111268 |1429 |32954 |
+ROW |111269 |1429 |32955 |
+ROW |111270 |1431 |32956 |
+ROW |111271 |1431 |32957 |
+ROW |111272 |1431 |32958 |
+ROW |111273 |1431 |32959 |
+ROW |111274 |1431 |32960 |
+ROW |111275 |1431 |32961 |
+ROW |111276 |1431 |32962 |
+ROW |111277 |1431 |32963 |
+ROW |111278 |1431 |32964 |
+ROW |111279 |1431 |32965 |
+ROW |111280 |1431 |32966 |
+ROW |111281 |1431 |32967 |
+ROW |111282 |1431 |32968 |
+ROW |111283 |1431 |32969 |
+ROW |111284 |1431 |32970 |
+ROW |111285 |1429 |32976 |
+ROW |111286 |1431 |32977 |
+ROW |111287 |1431 |32978 |
+ROW |111288 |1431 |32979 |
+ROW |111289 |1431 |32980 |
+ROW |111290 |1431 |32981 |
+ROW |111291 |1431 |32982 |
+ROW |111292 |1354 |31910 |
+ROW |111293 |1354 |31911 |
+ROW |111294 |1354 |31912 |
+ROW |111295 |1354 |31913 |
+ROW |111296 |1354 |31914 |
+ROW |111297 |1354 |31915 |
+ROW |111298 |1354 |31916 |
+ROW |111299 |1354 |31917 |
+ROW |111300 |1354 |31918 |
+ROW |111301 |1354 |31919 |
+ROW |111302 |1354 |31920 |
+ROW |111303 |1354 |31921 |
+ROW |111304 |1354 |31922 |
+ROW |111305 |1354 |31923 |
+ROW |111306 |1354 |31924 |
+ROW |111307 |1354 |31925 |
+ROW |111308 |1354 |31926 |
+ROW |111309 |1354 |31927 |
+ROW |111310 |1354 |31928 |
+ROW |111311 |1354 |31929 |
+ROW |111312 |1354 |31930 |
+ROW |111313 |1354 |31931 |
+ROW |111314 |1354 |31932 |
+ROW |111315 |1354 |31933 |
+ROW |111316 |1354 |31934 |
+ROW |111317 |1354 |31935 |
+ROW |111318 |1354 |31936 |
+ROW |111319 |1354 |31937 |
+ROW |111320 |1354 |31938 |
+ROW |111321 |1354 |31939 |
+ROW |111322 |1354 |31940 |
+ROW |111323 |1354 |31941 |
+ROW |111324 |1354 |31942 |
+ROW |111325 |1354 |31943 |
+ROW |111326 |1354 |31944 |
+ROW |111327 |1354 |31945 |
+ROW |111328 |1354 |31946 |
+ROW |111329 |1354 |31947 |
+ROW |111330 |1354 |31948 |
+ROW |111331 |1354 |31949 |
+ROW |111332 |1354 |31950 |
+ROW |111333 |1354 |31951 |
+ROW |111334 |1354 |31952 |
+ROW |111335 |1354 |31953 |
+ROW |111336 |1354 |31954 |
+ROW |111337 |1354 |31955 |
+ROW |111338 |1354 |31956 |
+ROW |111339 |1354 |31957 |
+ROW |111340 |1354 |31958 |
+ROW |111341 |1354 |31959 |
+ROW |111342 |1354 |31960 |
+ROW |111343 |1354 |31961 |
+ROW |111344 |1354 |31962 |
+ROW |111345 |1354 |31963 |
+ROW |111346 |1109 |28511 |
+ROW |111347 |1342 |31554 |
+ROW |111348 |1342 |31555 |
+ROW |111349 |1342 |31556 |
+ROW |111350 |1343 |31557 |
+ROW |111351 |1343 |31558 |
+ROW |111352 |1343 |31559 |
+ROW |111353 |1343 |31560 |
+ROW |111354 |1343 |31561 |
+ROW |111355 |1343 |31562 |
+ROW |111356 |1343 |31563 |
+ROW |111357 |1343 |31564 |
+ROW |111358 |1343 |31565 |
+ROW |111359 |1343 |31566 |
+ROW |111360 |1343 |31567 |
+ROW |111361 |1343 |31568 |
+ROW |111362 |1343 |31569 |
+ROW |111363 |1343 |31570 |
+ROW |111364 |1343 |31571 |
+ROW |111365 |1343 |31572 |
+ROW |111366 |1343 |31573 |
+ROW |111367 |1343 |31574 |
+ROW |111368 |1343 |31575 |
+ROW |111369 |1344 |31576 |
+ROW |111370 |1344 |31577 |
+ROW |111371 |1344 |31578 |
+ROW |111372 |1344 |31579 |
+ROW |111373 |1344 |31580 |
+ROW |111374 |1344 |31581 |
+ROW |111375 |1344 |31582 |
+ROW |111376 |1344 |31583 |
+ROW |111377 |1344 |31584 |
+ROW |111378 |1344 |31585 |
+ROW |111379 |1344 |31586 |
+ROW |111380 |1344 |31587 |
+ROW |111381 |1344 |31588 |
+ROW |111382 |1344 |31589 |
+ROW |111383 |1344 |31590 |
+ROW |111384 |1344 |31591 |
+ROW |111385 |1344 |31592 |
+ROW |111386 |1344 |31593 |
+ROW |111387 |1344 |31594 |
+ROW |111388 |1344 |31595 |
+ROW |111389 |1344 |31596 |
+ROW |111390 |1342 |31605 |
+ROW |111391 |1342 |31606 |
+ROW |111392 |1342 |31607 |
+ROW |111393 |1342 |31608 |
+ROW |111394 |1342 |31609 |
+ROW |111395 |1343 |31610 |
+ROW |111396 |1343 |31611 |
+ROW |111397 |1343 |31612 |
+ROW |111398 |1343 |31613 |
+ROW |111399 |1343 |31614 |
+ROW |111400 |1343 |31615 |
+ROW |111401 |1343 |31616 |
+ROW |111402 |1343 |31617 |
+ROW |111403 |1343 |31618 |
+ROW |111404 |1343 |31619 |
+ROW |111405 |1343 |31620 |
+ROW |111406 |1343 |31621 |
+ROW |111407 |1344 |31622 |
+ROW |111408 |1344 |31623 |
+ROW |111409 |1344 |31624 |
+ROW |111410 |1344 |31625 |
+ROW |111411 |1512 |34094 |
+ROW |111412 |1512 |34095 |
+ROW |111413 |1512 |34096 |
+ROW |111414 |1512 |34097 |
+ROW |111415 |1512 |34098 |
+ROW |111416 |1513 |34106 |
+ROW |111417 |1513 |34107 |
+ROW |111418 |1513 |34108 |
+ROW |111419 |1513 |34109 |
+ROW |111420 |1513 |34110 |
+ROW |111421 |1513 |34111 |
+ROW |111422 |1513 |34112 |
+ROW |111423 |1513 |34113 |
+ROW |111424 |1513 |34114 |
+ROW |111425 |1513 |34115 |
+ROW |111426 |1513 |34116 |
+ROW |111427 |1513 |34117 |
+ROW |111428 |1513 |34118 |
+ROW |111429 |1513 |34119 |
+ROW |111430 |1513 |34120 |
+ROW |111431 |1513 |34121 |
+ROW |111432 |1513 |34122 |
+ROW |111433 |1360 |32158 |
+ROW |111434 |1360 |32159 |
+ROW |111435 |1361 |32160 |
+ROW |111436 |1361 |32161 |
+ROW |111437 |1361 |32162 |
+ROW |111438 |1361 |32163 |
+ROW |111439 |1361 |32164 |
+ROW |111440 |1361 |32165 |
+ROW |111441 |1361 |32166 |
+ROW |111442 |1361 |32167 |
+ROW |111443 |1361 |32168 |
+ROW |111444 |1361 |32169 |
+ROW |111445 |1361 |32170 |
+ROW |111446 |1361 |32171 |
+ROW |111447 |1361 |32172 |
+ROW |111448 |1361 |32173 |
+ROW |111449 |1361 |32174 |
+ROW |111450 |1361 |32175 |
+ROW |111451 |1361 |32176 |
+ROW |111452 |1361 |32177 |
+ROW |111453 |1361 |32178 |
+ROW |111454 |1361 |32179 |
+ROW |111455 |1361 |32180 |
+ROW |111456 |1361 |32181 |
+ROW |111457 |1361 |32182 |
+ROW |111458 |1361 |32183 |
+ROW |111459 |1361 |32184 |
+ROW |111460 |1361 |32185 |
+ROW |111461 |1361 |32186 |
+ROW |111462 |1361 |32187 |
+ROW |111463 |1361 |32188 |
+ROW |111464 |1361 |32189 |
+ROW |111465 |1361 |32190 |
+ROW |111466 |1361 |32191 |
+ROW |111467 |1361 |32192 |
+ROW |111468 |1361 |32201 |
+ROW |111469 |1361 |32202 |
+ROW |111470 |1361 |32203 |
+ROW |111471 |1361 |32204 |
+ROW |111472 |1361 |32205 |
+ROW |111473 |1361 |32206 |
+ROW |111474 |446 |23644 |
+ROW |111475 |447 |23645 |
+ROW |111476 |448 |23646 |
+ROW |111477 |449 |23647 |
+ROW |111478 |450 |23648 |
+ROW |111479 |451 |23649 |
+ROW |111480 |452 |23650 |
+ROW |111481 |453 |23651 |
+ROW |111482 |1111 |28585 |
+ROW |111483 |1111 |28586 |
+ROW |111484 |1111 |28587 |
+ROW |111485 |1111 |28588 |
+ROW |111486 |1111 |28589 |
+ROW |111487 |1111 |28590 |
+ROW |111488 |1111 |28591 |
+ROW |111489 |1111 |28592 |
+ROW |111490 |1111 |28593 |
+ROW |111491 |1111 |28594 |
+ROW |111492 |1111 |28595 |
+ROW |111493 |1111 |28596 |
+ROW |111494 |1111 |28597 |
+ROW |111495 |1111 |28598 |
+ROW |111496 |1111 |28599 |
+ROW |111497 |1111 |28600 |
+ROW |111498 |1111 |28601 |
+ROW |111499 |1111 |28602 |
+ROW |111500 |1111 |28603 |
+ROW |111501 |1111 |28604 |
+ROW |111502 |1111 |28605 |
+ROW |111503 |1111 |28606 |
+ROW |111504 |1111 |28607 |
+ROW |111505 |1111 |28608 |
+ROW |111506 |1111 |28609 |
+ROW |111507 |1111 |28610 |
+ROW |111508 |1111 |28611 |
+ROW |111509 |1111 |28612 |
+ROW |111510 |1111 |28613 |
+ROW |111511 |1111 |28614 |
+ROW |111512 |1111 |28615 |
+ROW |111513 |1111 |28616 |
+ROW |111514 |1111 |31052 |
+ROW |111515 |1110 |28539 |
+ROW |111516 |1110 |28540 |
+ROW |111517 |1110 |28541 |
+ROW |111518 |1110 |28542 |
+ROW |111519 |1110 |28543 |
+ROW |111520 |1110 |28544 |
+ROW |111521 |1110 |28545 |
+ROW |111522 |1110 |28546 |
+ROW |111523 |1110 |28547 |
+ROW |111524 |1110 |28548 |
+ROW |111525 |1110 |28549 |
+ROW |111526 |1110 |28550 |
+ROW |111527 |1110 |28551 |
+ROW |111528 |1110 |28552 |
+ROW |111529 |1110 |28553 |
+ROW |111530 |1110 |28554 |
+ROW |111531 |1110 |28555 |
+ROW |111532 |1110 |28556 |
+ROW |111533 |1110 |28557 |
+ROW |111534 |1110 |28558 |
+ROW |111535 |1110 |28559 |
+ROW |111536 |1110 |28560 |
+ROW |111537 |1110 |28561 |
+ROW |111538 |1110 |28562 |
+ROW |111539 |1110 |28563 |
+ROW |111540 |1110 |28564 |
+ROW |111541 |1110 |28565 |
+ROW |111542 |1110 |28566 |
+ROW |111543 |1110 |28567 |
+ROW |111544 |1110 |28568 |
+ROW |111545 |1110 |28569 |
+ROW |111546 |1110 |28570 |
+ROW |111547 |1110 |28571 |
+ROW |111548 |1110 |28572 |
+ROW |111549 |1110 |28573 |
+ROW |111550 |1110 |28574 |
+ROW |111551 |1110 |28575 |
+ROW |111552 |1110 |28576 |
+ROW |111553 |1110 |28577 |
+ROW |111554 |1110 |28578 |
+ROW |111555 |1110 |28579 |
+ROW |111556 |1110 |28580 |
+ROW |111557 |1110 |28581 |
+ROW |111558 |1110 |28582 |
+ROW |111559 |1110 |28583 |
+ROW |111560 |1110 |28584 |
+ROW |111561 |1110 |29821 |
+ROW |111562 |1110 |31053 |
+ROW |111563 |454 |23652 |
+ROW |111564 |455 |23653 |
+ROW |111565 |456 |23654 |
+ROW |111566 |356 |10067 |
+ROW |111567 |356 |10068 |
+ROW |111568 |356 |10069 |
+ROW |111569 |356 |10070 |
+ROW |111570 |356 |10071 |
+ROW |111571 |356 |10072 |
+ROW |111572 |356 |23340 |
+ROW |111573 |356 |23341 |
+ROW |111574 |356 |23342 |
+ROW |111575 |356 |23343 |
+ROW |111576 |356 |23344 |
+ROW |111577 |356 |23345 |
+ROW |111578 |356 |23346 |
+ROW |111579 |356 |23347 |
+ROW |111580 |356 |23348 |
+ROW |111581 |356 |23349 |
+ROW |111582 |356 |23350 |
+ROW |111583 |356 |23351 |
+ROW |111584 |356 |23352 |
+ROW |111585 |356 |23353 |
+ROW |111586 |356 |23354 |
+ROW |111587 |356 |23355 |
+ROW |111588 |356 |23356 |
+ROW |111589 |356 |23357 |
+ROW |111590 |356 |23358 |
+ROW |111591 |356 |23359 |
+ROW |111592 |356 |23360 |
+ROW |111593 |356 |25368 |
+ROW |111594 |356 |25369 |
+ROW |111595 |356 |28250 |
+ROW |111596 |356 |28251 |
+ROW |111597 |356 |28617 |
+ROW |111598 |356 |28618 |
+ROW |111599 |356 |28619 |
+ROW |111600 |179 |10061 |
+ROW |111601 |179 |10062 |
+ROW |111602 |179 |10063 |
+ROW |111603 |179 |10064 |
+ROW |111604 |179 |10065 |
+ROW |111605 |179 |10066 |
+ROW |111606 |179 |22183 |
+ROW |111607 |179 |22185 |
+ROW |111608 |179 |22187 |
+ROW |111609 |179 |22189 |
+ROW |111610 |179 |22191 |
+ROW |111611 |179 |22196 |
+ROW |111612 |179 |22199 |
+ROW |111613 |179 |22219 |
+ROW |111614 |179 |22396 |
+ROW |111615 |179 |22399 |
+ROW |111616 |179 |22400 |
+ROW |111617 |179 |22401 |
+ROW |111618 |179 |22402 |
+ROW |111619 |179 |22404 |
+ROW |111620 |179 |22406 |
+ROW |111621 |179 |22408 |
+ROW |111622 |179 |22412 |
+ROW |111623 |179 |22414 |
+ROW |111624 |179 |22416 |
+ROW |111625 |179 |22418 |
+ROW |111626 |179 |22420 |
+ROW |111627 |179 |22422 |
+ROW |111628 |179 |22424 |
+ROW |111629 |179 |22426 |
+ROW |111630 |179 |22430 |
+ROW |111631 |179 |22689 |
+ROW |111632 |179 |23171 |
+ROW |111633 |179 |23251 |
+ROW |111634 |179 |23634 |
+ROW |111635 |179 |23661 |
+ROW |111636 |179 |23663 |
+ROW |111637 |179 |25366 |
+ROW |111638 |179 |25370 |
+ROW |111639 |179 |25665 |
+ROW |111640 |179 |25666 |
+ROW |111641 |179 |28248 |
+ROW |111642 |179 |28533 |
+ROW |111643 |179 |28535 |
+ROW |111644 |179 |28537 |
+ROW |111645 |179 |29822 |
+ROW |111646 |345 |10073 |
+ROW |111647 |345 |10074 |
+ROW |111648 |345 |10075 |
+ROW |111649 |345 |10076 |
+ROW |111650 |345 |10077 |
+ROW |111651 |345 |10078 |
+ROW |111652 |345 |23252 |
+ROW |111653 |345 |23253 |
+ROW |111654 |345 |23255 |
+ROW |111655 |345 |23256 |
+ROW |111656 |345 |23257 |
+ROW |111657 |345 |23258 |
+ROW |111658 |345 |23259 |
+ROW |111659 |345 |23260 |
+ROW |111660 |345 |23261 |
+ROW |111661 |345 |23262 |
+ROW |111662 |345 |23264 |
+ROW |111663 |345 |23265 |
+ROW |111664 |345 |23266 |
+ROW |111665 |345 |23267 |
+ROW |111666 |345 |23268 |
+ROW |111667 |345 |23269 |
+ROW |111668 |345 |23270 |
+ROW |111669 |345 |23271 |
+ROW |111670 |345 |23272 |
+ROW |111671 |345 |23273 |
+ROW |111672 |345 |23274 |
+ROW |111673 |345 |23275 |
+ROW |111674 |345 |23276 |
+ROW |111675 |345 |23277 |
+ROW |111676 |345 |23328 |
+ROW |111677 |345 |23620 |
+ROW |111678 |345 |23625 |
+ROW |111679 |345 |23628 |
+ROW |111680 |345 |23635 |
+ROW |111681 |345 |23662 |
+ROW |111682 |345 |23664 |
+ROW |111683 |345 |25367 |
+ROW |111684 |345 |25371 |
+ROW |111685 |345 |25667 |
+ROW |111686 |345 |25668 |
+ROW |111687 |345 |28249 |
+ROW |111688 |345 |28534 |
+ROW |111689 |345 |28536 |
+ROW |111690 |345 |28538 |
+ROW |111691 |345 |29823 |
+ROW |111692 |280 |22917 |
+ROW |111693 |280 |22918 |
+ROW |111694 |273 |22920 |
+ROW |111695 |279 |22920 |
+ROW |111696 |273 |22921 |
+ROW |111697 |279 |22921 |
+ROW |111698 |273 |22922 |
+ROW |111699 |279 |22922 |
+ROW |111700 |273 |22923 |
+ROW |111701 |279 |22923 |
+ROW |111702 |273 |22924 |
+ROW |111703 |279 |22924 |
+ROW |111704 |275 |22933 |
+ROW |111705 |278 |22933 |
+ROW |111706 |275 |22934 |
+ROW |111707 |278 |22934 |
+ROW |111708 |275 |22938 |
+ROW |111709 |278 |22938 |
+ROW |111710 |275 |22939 |
+ROW |111711 |278 |22939 |
+ROW |111712 |278 |22940 |
+ROW |111713 |281 |22940 |
+ROW |111714 |281 |22941 |
+ROW |111715 |276 |22942 |
+ROW |111716 |276 |22943 |
+ROW |111717 |273 |23108 |
+ROW |111718 |331 |23108 |
+ROW |111719 |279 |23108 |
+ROW |111720 |273 |23109 |
+ROW |111721 |331 |23109 |
+ROW |111722 |279 |23109 |
+ROW |111723 |273 |23110 |
+ROW |111724 |279 |23110 |
+ROW |111725 |273 |23111 |
+ROW |111726 |331 |23111 |
+ROW |111727 |279 |23111 |
+ROW |111728 |273 |23112 |
+ROW |111729 |331 |23112 |
+ROW |111730 |279 |23112 |
+ROW |111731 |273 |23113 |
+ROW |111732 |279 |23113 |
+ROW |111733 |273 |23114 |
+ROW |111734 |279 |23114 |
+ROW |111735 |273 |23115 |
+ROW |111736 |279 |23115 |
+ROW |111737 |274 |23116 |
+ROW |111738 |279 |23116 |
+ROW |111739 |274 |23117 |
+ROW |111740 |279 |23117 |
+ROW |111741 |273 |23118 |
+ROW |111742 |331 |23118 |
+ROW |111743 |273 |23119 |
+ROW |111744 |279 |23119 |
+ROW |111745 |273 |23120 |
+ROW |111746 |279 |23120 |
+ROW |111747 |273 |23121 |
+ROW |111748 |279 |23121 |
+ROW |111749 |276 |23122 |
+ROW |111750 |279 |23122 |
+ROW |111751 |273 |23123 |
+ROW |111752 |279 |23123 |
+ROW |111753 |276 |23124 |
+ROW |111754 |276 |23125 |
+ROW |111755 |276 |23126 |
+ROW |111756 |276 |23127 |
+ROW |111757 |276 |23128 |
+ROW |111758 |276 |23129 |
+ROW |111759 |276 |23130 |
+ROW |111760 |276 |23131 |
+ROW |111761 |277 |22945 |
+ROW |111762 |277 |22946 |
+ROW |111763 |274 |22948 |
+ROW |111764 |274 |22949 |
+ROW |111765 |274 |22950 |
+ROW |111766 |274 |22951 |
+ROW |111767 |274 |22952 |
+ROW |111768 |268 |22875 |
+ROW |111769 |268 |22876 |
+ROW |111770 |270 |22877 |
+ROW |111771 |270 |22878 |
+ROW |111772 |265 |22879 |
+ROW |111773 |268 |22879 |
+ROW |111774 |263 |22880 |
+ROW |111775 |269 |22880 |
+ROW |111776 |263 |22881 |
+ROW |111777 |269 |22881 |
+ROW |111778 |263 |22882 |
+ROW |111779 |269 |22882 |
+ROW |111780 |263 |22883 |
+ROW |111781 |269 |22883 |
+ROW |111782 |263 |22884 |
+ROW |111783 |269 |22884 |
+ROW |111784 |263 |22885 |
+ROW |111785 |269 |22885 |
+ROW |111786 |263 |22886 |
+ROW |111787 |269 |22886 |
+ROW |111788 |263 |22888 |
+ROW |111789 |269 |22888 |
+ROW |111790 |263 |22891 |
+ROW |111791 |269 |22891 |
+ROW |111792 |263 |22892 |
+ROW |111793 |269 |22892 |
+ROW |111794 |265 |22893 |
+ROW |111795 |268 |22893 |
+ROW |111796 |265 |22894 |
+ROW |111797 |268 |22894 |
+ROW |111798 |266 |22895 |
+ROW |111799 |266 |22896 |
+ROW |111800 |266 |22897 |
+ROW |111801 |265 |22898 |
+ROW |111802 |268 |22898 |
+ROW |111803 |265 |22899 |
+ROW |111804 |268 |22899 |
+ROW |111805 |268 |22900 |
+ROW |111806 |271 |22900 |
+ROW |111807 |271 |22901 |
+ROW |111808 |266 |22902 |
+ROW |111809 |266 |22903 |
+ROW |111810 |264 |22908 |
+ROW |111811 |264 |22909 |
+ROW |111812 |264 |22910 |
+ROW |111813 |264 |22911 |
+ROW |111814 |264 |22912 |
+ROW |111815 |267 |23073 |
+ROW |111816 |267 |23074 |
+ROW |111817 |283 |22961 |
+ROW |111818 |289 |22961 |
+ROW |111819 |283 |22962 |
+ROW |111820 |289 |22962 |
+ROW |111821 |283 |22963 |
+ROW |111822 |289 |22963 |
+ROW |111823 |283 |22965 |
+ROW |111824 |289 |22965 |
+ROW |111825 |283 |22968 |
+ROW |111826 |289 |22968 |
+ROW |111827 |283 |22971 |
+ROW |111828 |289 |22971 |
+ROW |111829 |283 |22972 |
+ROW |111830 |289 |22972 |
+ROW |111831 |285 |22973 |
+ROW |111832 |288 |22973 |
+ROW |111833 |285 |22974 |
+ROW |111834 |288 |22974 |
+ROW |111835 |285 |22978 |
+ROW |111836 |288 |22978 |
+ROW |111837 |288 |22980 |
+ROW |111838 |291 |22980 |
+ROW |111839 |291 |22981 |
+ROW |111840 |286 |22982 |
+ROW |111841 |286 |22983 |
+ROW |111842 |287 |22985 |
+ROW |111843 |287 |22986 |
+ROW |111844 |284 |22988 |
+ROW |111845 |284 |22989 |
+ROW |111846 |284 |22990 |
+ROW |111847 |284 |22991 |
+ROW |111848 |284 |22992 |
+ROW |111849 |308 |23035 |
+ROW |111850 |308 |23036 |
+ROW |111851 |305 |23039 |
+ROW |111852 |308 |23039 |
+ROW |111853 |303 |23041 |
+ROW |111854 |309 |23041 |
+ROW |111855 |303 |23042 |
+ROW |111856 |309 |23042 |
+ROW |111857 |303 |23043 |
+ROW |111858 |309 |23043 |
+ROW |111859 |305 |23053 |
+ROW |111860 |308 |23053 |
+ROW |111861 |305 |23054 |
+ROW |111862 |308 |23054 |
+ROW |111863 |305 |23058 |
+ROW |111864 |308 |23058 |
+ROW |111865 |305 |23059 |
+ROW |111866 |308 |23059 |
+ROW |111867 |308 |23060 |
+ROW |111868 |311 |23060 |
+ROW |111869 |311 |23061 |
+ROW |111870 |306 |23062 |
+ROW |111871 |306 |23063 |
+ROW |111872 |307 |23077 |
+ROW |111873 |307 |23078 |
+ROW |111874 |304 |23068 |
+ROW |111875 |304 |23069 |
+ROW |111876 |304 |23070 |
+ROW |111877 |304 |23071 |
+ROW |111878 |304 |23072 |
+ROW |111879 |258 |22835 |
+ROW |111880 |258 |22836 |
+ROW |111881 |260 |22837 |
+ROW |111882 |260 |22838 |
+ROW |111883 |255 |22839 |
+ROW |111884 |258 |22839 |
+ROW |111885 |253 |22840 |
+ROW |111886 |259 |22840 |
+ROW |111887 |253 |22841 |
+ROW |111888 |259 |22841 |
+ROW |111889 |253 |22842 |
+ROW |111890 |259 |22842 |
+ROW |111891 |253 |22843 |
+ROW |111892 |259 |22843 |
+ROW |111893 |253 |22844 |
+ROW |111894 |259 |22844 |
+ROW |111895 |253 |22845 |
+ROW |111896 |259 |22845 |
+ROW |111897 |253 |22846 |
+ROW |111898 |259 |22846 |
+ROW |111899 |253 |22848 |
+ROW |111900 |259 |22848 |
+ROW |111901 |253 |22851 |
+ROW |111902 |259 |22851 |
+ROW |111903 |253 |22852 |
+ROW |111904 |259 |22852 |
+ROW |111905 |255 |22853 |
+ROW |111906 |258 |22853 |
+ROW |111907 |255 |22854 |
+ROW |111908 |258 |22854 |
+ROW |111909 |256 |22855 |
+ROW |111910 |256 |22856 |
+ROW |111911 |256 |22857 |
+ROW |111912 |255 |22858 |
+ROW |111913 |258 |22858 |
+ROW |111914 |255 |22859 |
+ROW |111915 |258 |22859 |
+ROW |111916 |258 |22860 |
+ROW |111917 |261 |22860 |
+ROW |111918 |261 |22861 |
+ROW |111919 |256 |22862 |
+ROW |111920 |256 |22863 |
+ROW |111921 |254 |22868 |
+ROW |111922 |254 |22869 |
+ROW |111923 |254 |22870 |
+ROW |111924 |254 |22871 |
+ROW |111925 |254 |22872 |
+ROW |111926 |257 |23075 |
+ROW |111927 |257 |23076 |
+ROW |111928 |298 |22996 |
+ROW |111929 |300 |22997 |
+ROW |111930 |300 |22998 |
+ROW |111931 |295 |22999 |
+ROW |111932 |298 |22999 |
+ROW |111933 |293 |23000 |
+ROW |111934 |299 |23000 |
+ROW |111935 |293 |23001 |
+ROW |111936 |299 |23001 |
+ROW |111937 |293 |23002 |
+ROW |111938 |299 |23002 |
+ROW |111939 |293 |23003 |
+ROW |111940 |299 |23003 |
+ROW |111941 |293 |23004 |
+ROW |111942 |299 |23004 |
+ROW |111943 |293 |23005 |
+ROW |111944 |299 |23005 |
+ROW |111945 |293 |23007 |
+ROW |111946 |299 |23007 |
+ROW |111947 |293 |23011 |
+ROW |111948 |299 |23011 |
+ROW |111949 |293 |23012 |
+ROW |111950 |299 |23012 |
+ROW |111951 |295 |23013 |
+ROW |111952 |298 |23013 |
+ROW |111953 |295 |23014 |
+ROW |111954 |298 |23014 |
+ROW |111955 |296 |23015 |
+ROW |111956 |296 |23016 |
+ROW |111957 |296 |23017 |
+ROW |111958 |295 |23018 |
+ROW |111959 |298 |23018 |
+ROW |111960 |295 |23019 |
+ROW |111961 |298 |23019 |
+ROW |111962 |298 |23020 |
+ROW |111963 |301 |23020 |
+ROW |111964 |301 |23021 |
+ROW |111965 |296 |23022 |
+ROW |111966 |296 |23023 |
+ROW |111967 |297 |23025 |
+ROW |111968 |297 |23026 |
+ROW |111969 |294 |23028 |
+ROW |111970 |294 |23029 |
+ROW |111971 |294 |23030 |
+ROW |111972 |294 |23031 |
+ROW |111973 |294 |23032 |
+ROW |111974 |743 |26925 |
+ROW |111975 |743 |26926 |
+ROW |111976 |741 |26927 |
+ROW |111977 |742 |26928 |
+ROW |111978 |743 |26929 |
+ROW |111979 |743 |26930 |
+ROW |111980 |743 |26931 |
+ROW |111981 |743 |26932 |
+ROW |111982 |745 |26933 |
+ROW |111983 |746 |26934 |
+ROW |111984 |744 |26935 |
+ROW |111985 |744 |26936 |
+ROW |111986 |746 |26937 |
+ROW |111987 |746 |26938 |
+ROW |111988 |746 |26939 |
+ROW |111989 |746 |26940 |
+ROW |111990 |746 |26941 |
+ROW |111991 |746 |26942 |
+ROW |111992 |745 |26943 |
+ROW |111993 |1362 |32207 |
+ROW |111994 |1362 |32208 |
+ROW |111995 |1362 |32209 |
+ROW |111996 |1362 |32210 |
+ROW |111997 |1362 |32211 |
+ROW |111998 |1362 |32212 |
+ROW |111999 |1362 |32213 |
+ROW |112000 |1362 |32214 |
+ROW |112001 |1362 |32215 |
+ROW |112002 |1362 |32216 |
+ROW |112003 |1362 |32217 |
+ROW |112004 |1362 |32218 |
+ROW |112005 |1362 |32219 |
+ROW |112006 |1362 |32220 |
+ROW |112007 |1362 |32221 |
+ROW |112008 |1362 |32222 |
+ROW |112009 |1362 |32223 |
+ROW |112010 |1362 |32224 |
+ROW |112011 |1362 |32225 |
+ROW |112012 |1362 |32226 |
+ROW |112013 |1362 |32227 |
+ROW |112014 |1362 |32228 |
+ROW |112015 |1362 |32229 |
+ROW |112016 |1362 |32230 |
+ROW |112017 |1362 |32231 |
+ROW |112018 |1362 |32232 |
+ROW |112019 |1362 |32233 |
+ROW |112020 |1362 |32234 |
+ROW |112021 |1362 |32235 |
+ROW |112022 |1362 |32236 |
+ROW |112023 |1362 |32237 |
+ROW |112024 |1362 |32238 |
+ROW |112025 |1362 |32239 |
+ROW |112026 |1362 |32240 |
+ROW |112027 |1362 |32241 |
+ROW |112028 |1362 |32242 |
+ROW |112029 |1362 |32243 |
+ROW |112030 |1362 |32244 |
+ROW |112031 |1362 |32245 |
+ROW |112032 |1362 |32246 |
+ROW |112033 |1362 |32247 |
+ROW |112034 |1362 |32248 |
+ROW |112035 |1362 |32249 |
+ROW |112036 |1362 |32250 |
+ROW |112037 |1362 |32251 |
+ROW |112038 |1362 |32252 |
+ROW |112039 |1362 |32253 |
+ROW |112040 |1362 |32254 |
+ROW |112041 |1362 |32255 |
+ROW |112042 |1362 |32256 |
+ROW |112043 |1362 |32257 |
+ROW |112044 |1362 |32258 |
+ROW |112045 |1362 |32259 |
+ROW |112046 |1362 |32260 |
+ROW |112047 |1362 |32261 |
+ROW |112048 |1362 |32262 |
+ROW |112049 |1362 |32263 |
+ROW |112050 |1362 |32264 |
+ROW |112051 |1362 |32265 |
+ROW |112052 |1362 |32266 |
+ROW |112053 |1362 |32267 |
+ROW |112054 |1362 |32268 |
+ROW |112055 |1362 |32269 |
+ROW |112056 |1362 |32270 |
+ROW |112057 |1362 |32271 |
+ROW |112058 |1362 |32272 |
+ROW |112059 |1362 |32273 |
+ROW |112060 |1328 |30821 |
+ROW |112061 |1328 |30822 |
+ROW |112062 |1330 |30823 |
+ROW |112063 |1330 |30824 |
+ROW |112064 |1330 |30825 |
+ROW |112065 |1330 |30826 |
+ROW |112066 |1328 |30827 |
+ROW |112067 |1330 |30828 |
+ROW |112068 |1330 |30829 |
+ROW |112069 |1330 |30830 |
+ROW |112070 |1328 |31054 |
+ROW |112071 |1328 |30831 |
+ROW |112072 |1328 |30832 |
+ROW |112073 |1328 |30833 |
+ROW |112074 |1328 |30834 |
+ROW |112075 |1328 |30835 |
+ROW |112076 |1329 |30836 |
+ROW |112077 |1328 |30837 |
+ROW |112078 |1328 |30838 |
+ROW |112079 |1328 |30839 |
+ROW |112080 |1329 |30840 |
+ROW |112081 |1328 |30841 |
+ROW |112082 |1329 |30842 |
+ROW |112083 |1329 |30843 |
+ROW |112084 |1329 |30844 |
+ROW |112085 |1329 |30845 |
+ROW |112086 |1328 |30846 |
+ROW |112087 |1328 |30847 |
+ROW |112088 |1328 |30848 |
+ROW |112089 |1328 |30849 |
+ROW |112090 |1328 |30850 |
+ROW |112091 |1328 |30851 |
+ROW |112092 |1328 |30852 |
+ROW |112093 |1328 |30853 |
+ROW |112094 |1328 |30854 |
+ROW |112095 |1328 |30855 |
+ROW |112096 |1328 |30856 |
+ROW |112097 |1328 |30857 |
+ROW |112098 |1328 |30858 |
+ROW |112099 |1328 |30859 |
+ROW |112100 |1328 |30860 |
+ROW |112101 |1328 |30861 |
+ROW |112102 |1328 |30862 |
+ROW |112103 |1328 |30863 |
+ROW |112104 |1328 |30864 |
+ROW |112105 |1328 |30865 |
+ROW |112106 |1328 |30866 |
+ROW |112107 |1328 |30867 |
+ROW |112108 |1328 |30868 |
+ROW |112109 |1328 |30869 |
+ROW |112110 |1328 |30870 |
+ROW |112111 |1328 |30871 |
+ROW |112112 |1328 |30872 |
+ROW |112113 |1329 |30873 |
+ROW |112114 |1434 |33017 |
+ROW |112115 |1434 |33018 |
+ROW |112116 |1433 |33019 |
+ROW |112117 |1434 |33020 |
+ROW |112118 |1434 |33021 |
+ROW |112119 |1433 |33022 |
+ROW |112120 |1433 |33023 |
+ROW |112121 |1433 |33024 |
+ROW |112122 |1433 |33025 |
+ROW |112123 |1433 |33026 |
+ROW |112124 |1433 |33027 |
+ROW |112125 |1433 |33028 |
+ROW |112126 |1433 |33029 |
+ROW |112127 |1433 |33030 |
+ROW |112128 |1433 |33031 |
+ROW |112129 |1433 |33032 |
+ROW |112130 |1433 |33033 |
+ROW |112131 |1433 |33034 |
+ROW |112132 |1433 |33035 |
+ROW |112133 |1433 |33036 |
+ROW |112134 |1433 |33037 |
+ROW |112135 |1433 |33038 |
+ROW |112136 |1433 |33039 |
+ROW |112137 |1433 |33040 |
+ROW |112138 |1433 |33041 |
+ROW |112139 |1433 |33042 |
+ROW |112140 |1433 |33043 |
+ROW |112141 |1433 |33044 |
+ROW |112142 |1433 |33045 |
+ROW |112143 |1433 |33046 |
+ROW |112144 |1433 |33047 |
+ROW |112145 |1433 |33048 |
+ROW |112146 |1433 |33049 |
+ROW |112147 |1433 |33050 |
+ROW |112148 |1433 |33051 |
+ROW |112149 |1433 |33052 |
+ROW |112150 |1433 |33053 |
+ROW |112151 |1433 |33054 |
+ROW |112152 |1433 |33055 |
+ROW |112153 |1433 |33056 |
+ROW |112154 |1433 |33057 |
+ROW |112155 |1433 |33058 |
+ROW |112156 |1433 |33059 |
+ROW |112157 |1433 |33060 |
+ROW |112158 |1434 |33065 |
+ROW |112159 |1434 |33066 |
+ROW |112160 |1433 |33122 |
+ROW |112161 |1433 |33123 |
+ROW |112162 |1433 |33124 |
+ROW |112163 |1433 |33125 |
+ROW |112164 |1433 |33126 |
+ROW |112165 |1433 |33127 |
+ROW |112166 |1433 |33128 |
+ROW |112167 |1433 |33129 |
+ROW |112168 |1433 |33130 |
+ROW |112169 |1433 |33131 |
+ROW |112170 |1433 |33132 |
+ROW |112171 |1433 |33133 |
+ROW |112172 |1433 |33134 |
+ROW |112173 |1433 |33135 |
+ROW |112174 |1433 |33136 |
+ROW |112175 |1433 |33137 |
+ROW |112176 |1433 |33138 |
+ROW |112177 |1435 |33139 |
+ROW |112178 |1436 |33140 |
+ROW |112179 |1435 |33141 |
+ROW |112180 |1436 |33142 |
+ROW |112181 |1435 |33144 |
+ROW |112182 |1435 |33145 |
+ROW |112183 |1435 |33146 |
+ROW |112184 |1435 |33147 |
+ROW |112185 |1435 |33148 |
+ROW |112186 |1435 |33149 |
+ROW |112187 |1435 |33150 |
+ROW |112188 |1435 |33151 |
+ROW |112189 |1435 |33152 |
+ROW |112190 |1435 |33153 |
+ROW |112191 |1435 |33154 |
+ROW |112192 |1435 |33155 |
+ROW |112193 |1435 |33156 |
+ROW |112194 |1435 |33157 |
+ROW |112195 |1435 |33158 |
+ROW |112196 |1435 |33159 |
+ROW |112197 |1435 |33160 |
+ROW |112198 |1435 |33161 |
+ROW |112199 |1435 |33162 |
+ROW |112200 |1435 |33163 |
+ROW |112201 |1435 |33164 |
+ROW |112202 |1435 |33165 |
+ROW |112203 |1435 |33166 |
+ROW |112204 |1435 |33167 |
+ROW |112205 |1435 |33168 |
+ROW |112206 |1435 |33169 |
+ROW |112207 |1435 |33170 |
+ROW |112208 |1435 |33171 |
+ROW |112209 |1435 |33172 |
+ROW |112210 |1435 |33567 |
+ROW |112211 |1436 |33177 |
+ROW |112212 |1436 |33178 |
+ROW |112213 |1336 |34173 |
+ROW |112214 |1336 |34174 |
+ROW |112215 |1336 |31055 |
+ROW |112216 |1335 |31056 |
+ROW |112217 |1335 |31057 |
+ROW |112218 |1335 |31058 |
+ROW |112219 |1335 |31626 |
+ROW |112220 |1335 |31627 |
+ROW |112221 |1335 |31628 |
+ROW |112222 |1336 |31059 |
+ROW |112223 |1335 |31060 |
+ROW |112224 |1335 |31061 |
+ROW |112225 |1335 |31062 |
+ROW |112226 |1335 |31063 |
+ROW |112227 |1335 |31064 |
+ROW |112228 |1335 |31065 |
+ROW |112229 |1335 |31066 |
+ROW |112230 |1335 |31067 |
+ROW |112231 |1335 |31068 |
+ROW |112232 |1335 |31069 |
+ROW |112233 |1335 |31070 |
+ROW |112234 |1335 |31071 |
+ROW |112235 |1335 |31072 |
+ROW |112236 |1335 |31073 |
+ROW |112237 |1335 |31074 |
+ROW |112238 |1335 |31075 |
+ROW |112239 |1335 |31076 |
+ROW |112240 |1335 |31077 |
+ROW |112241 |1335 |31078 |
+ROW |112242 |1335 |31079 |
+ROW |112243 |1335 |31080 |
+ROW |112244 |1335 |31081 |
+ROW |112245 |1335 |31082 |
+ROW |112246 |1335 |31083 |
+ROW |112247 |1335 |31084 |
+ROW |112248 |1335 |31085 |
+ROW |112249 |1335 |31086 |
+ROW |112250 |1335 |31087 |
+ROW |112251 |1335 |31088 |
+ROW |112252 |1335 |31089 |
+ROW |112253 |1335 |31090 |
+ROW |112254 |1336 |31091 |
+ROW |112255 |1335 |31092 |
+ROW |112256 |1336 |31093 |
+ROW |112257 |1336 |31094 |
+ROW |112258 |1335 |31095 |
+ROW |112259 |1335 |31096 |
+ROW |112260 |1335 |31097 |
+ROW |112261 |1335 |31098 |
+ROW |112262 |1335 |31099 |
+ROW |112263 |1335 |31100 |
+ROW |112264 |1335 |31101 |
+ROW |112265 |1335 |31102 |
+ROW |112266 |1335 |31103 |
+ROW |112267 |1335 |31104 |
+ROW |112268 |1335 |31105 |
+ROW |112269 |1335 |31106 |
+ROW |112270 |1335 |31107 |
+ROW |112271 |1335 |31108 |
+ROW |112272 |1335 |31109 |
+ROW |112273 |1335 |31110 |
+ROW |112274 |1335 |31111 |
+ROW |112275 |1335 |31112 |
+ROW |112276 |1335 |31113 |
+ROW |112277 |1335 |31114 |
+ROW |112278 |1335 |31115 |
+ROW |112279 |1335 |31116 |
+ROW |112280 |1335 |31117 |
+ROW |112281 |1335 |31118 |
+ROW |112282 |1335 |31119 |
+ROW |112283 |1335 |31120 |
+ROW |112284 |1335 |31121 |
+ROW |112285 |1336 |31128 |
+ROW |112286 |1336 |31129 |
+ROW |112287 |1336 |31130 |
+ROW |112288 |1336 |31132 |
+ROW |112289 |1336 |33194 |
+ROW |112290 |1314 |30431 |
+ROW |112291 |1314 |30432 |
+ROW |112292 |1315 |30433 |
+ROW |112293 |1314 |30434 |
+ROW |112294 |1314 |30435 |
+ROW |112295 |1314 |32546 |
+ROW |112296 |1315 |30436 |
+ROW |112297 |1314 |30437 |
+ROW |112298 |1314 |30438 |
+ROW |112299 |1314 |30439 |
+ROW |112300 |1314 |30440 |
+ROW |112301 |1314 |30441 |
+ROW |112302 |1314 |30442 |
+ROW |112303 |1315 |30443 |
+ROW |112304 |1314 |30444 |
+ROW |112305 |1314 |30445 |
+ROW |112306 |1314 |30446 |
+ROW |112307 |1314 |30447 |
+ROW |112308 |1314 |30449 |
+ROW |112309 |1314 |30450 |
+ROW |112310 |1314 |30451 |
+ROW |112311 |1314 |30452 |
+ROW |112312 |1314 |30453 |
+ROW |112313 |1314 |30454 |
+ROW |112314 |1314 |30455 |
+ROW |112315 |1314 |30456 |
+ROW |112316 |1314 |30457 |
+ROW |112317 |1314 |30458 |
+ROW |112318 |1314 |30459 |
+ROW |112319 |1314 |30460 |
+ROW |112320 |1314 |30461 |
+ROW |112321 |1314 |30462 |
+ROW |112322 |1314 |30463 |
+ROW |112323 |1314 |30464 |
+ROW |112324 |1314 |30465 |
+ROW |112325 |1314 |30466 |
+ROW |112326 |1314 |30470 |
+ROW |112327 |1314 |30471 |
+ROW |112328 |1314 |31168 |
+ROW |112329 |1314 |31169 |
+ROW |112330 |1314 |31170 |
+ROW |112331 |1314 |31171 |
+ROW |112332 |1314 |32547 |
+ROW |112333 |1314 |32548 |
+ROW |112334 |1314 |32549 |
+ROW |112335 |1314 |32550 |
+ROW |112336 |1314 |32551 |
+ROW |112337 |1314 |32552 |
+ROW |112338 |1314 |30474 |
+ROW |112339 |1315 |30475 |
+ROW |112340 |1314 |30476 |
+ROW |112341 |1314 |30477 |
+ROW |112342 |1314 |30478 |
+ROW |112343 |1314 |32554 |
+ROW |112344 |1314 |32555 |
+ROW |112345 |1314 |32556 |
+ROW |112346 |1314 |32557 |
+ROW |112347 |1314 |32558 |
+ROW |112348 |1314 |32559 |
+ROW |112349 |1322 |30637 |
+ROW |112350 |1322 |30638 |
+ROW |112351 |1323 |30639 |
+ROW |112352 |1322 |30640 |
+ROW |112353 |1322 |30641 |
+ROW |112354 |1322 |32560 |
+ROW |112355 |1323 |30642 |
+ROW |112356 |1322 |30643 |
+ROW |112357 |1322 |30644 |
+ROW |112358 |1322 |30645 |
+ROW |112359 |1322 |30646 |
+ROW |112360 |1322 |30647 |
+ROW |112361 |1322 |30648 |
+ROW |112362 |1323 |30649 |
+ROW |112363 |1322 |30650 |
+ROW |112364 |1322 |30651 |
+ROW |112365 |1322 |30652 |
+ROW |112366 |1322 |30653 |
+ROW |112367 |1322 |30655 |
+ROW |112368 |1322 |30656 |
+ROW |112369 |1322 |30657 |
+ROW |112370 |1322 |30658 |
+ROW |112371 |1322 |30659 |
+ROW |112372 |1322 |30660 |
+ROW |112373 |1322 |30661 |
+ROW |112374 |1322 |30662 |
+ROW |112375 |1322 |30663 |
+ROW |112376 |1322 |30664 |
+ROW |112377 |1322 |30665 |
+ROW |112378 |1322 |30666 |
+ROW |112379 |1322 |30667 |
+ROW |112380 |1322 |30668 |
+ROW |112381 |1322 |30669 |
+ROW |112382 |1322 |30670 |
+ROW |112383 |1322 |30671 |
+ROW |112384 |1322 |30672 |
+ROW |112385 |1322 |30676 |
+ROW |112386 |1322 |30677 |
+ROW |112387 |1322 |31172 |
+ROW |112388 |1322 |31173 |
+ROW |112389 |1322 |31174 |
+ROW |112390 |1322 |31175 |
+ROW |112391 |1322 |32561 |
+ROW |112392 |1322 |32562 |
+ROW |112393 |1322 |32563 |
+ROW |112394 |1322 |32564 |
+ROW |112395 |1322 |32565 |
+ROW |112396 |1322 |32566 |
+ROW |112397 |1322 |30680 |
+ROW |112398 |1323 |30681 |
+ROW |112399 |1322 |30682 |
+ROW |112400 |1322 |30683 |
+ROW |112401 |1322 |30684 |
+ROW |112402 |1322 |32568 |
+ROW |112403 |1322 |32569 |
+ROW |112404 |1322 |32570 |
+ROW |112405 |1322 |32571 |
+ROW |112406 |1322 |32572 |
+ROW |112407 |1322 |32573 |
+ROW |112408 |1317 |30479 |
+ROW |112409 |1316 |30480 |
+ROW |112410 |1316 |30481 |
+ROW |112411 |1316 |30482 |
+ROW |112412 |1316 |30483 |
+ROW |112413 |1316 |32574 |
+ROW |112414 |1316 |30484 |
+ROW |112415 |1317 |30485 |
+ROW |112416 |1316 |30486 |
+ROW |112417 |1317 |30487 |
+ROW |112418 |1316 |30488 |
+ROW |112419 |1316 |30489 |
+ROW |112420 |1316 |30490 |
+ROW |112421 |1316 |30491 |
+ROW |112422 |1316 |30492 |
+ROW |112423 |1316 |30493 |
+ROW |112424 |1316 |30494 |
+ROW |112425 |1316 |30495 |
+ROW |112426 |1316 |30496 |
+ROW |112427 |1316 |30497 |
+ROW |112428 |1316 |30499 |
+ROW |112429 |1316 |30500 |
+ROW |112430 |1316 |30503 |
+ROW |112431 |1316 |30504 |
+ROW |112432 |1316 |30505 |
+ROW |112433 |1316 |30506 |
+ROW |112434 |1316 |30507 |
+ROW |112435 |1316 |30508 |
+ROW |112436 |1316 |30509 |
+ROW |112437 |1316 |30510 |
+ROW |112438 |1316 |30512 |
+ROW |112439 |1316 |30513 |
+ROW |112440 |1316 |30514 |
+ROW |112441 |1316 |30515 |
+ROW |112442 |1316 |30516 |
+ROW |112443 |1316 |30517 |
+ROW |112444 |1316 |30518 |
+ROW |112445 |1316 |30519 |
+ROW |112446 |1316 |31176 |
+ROW |112447 |1316 |31177 |
+ROW |112448 |1316 |31178 |
+ROW |112449 |1316 |31179 |
+ROW |112450 |1316 |32575 |
+ROW |112451 |1316 |32576 |
+ROW |112452 |1316 |32577 |
+ROW |112453 |1316 |32578 |
+ROW |112454 |1316 |32579 |
+ROW |112455 |1316 |32580 |
+ROW |112456 |1316 |30522 |
+ROW |112457 |1317 |30523 |
+ROW |112458 |1316 |30524 |
+ROW |112459 |1316 |30525 |
+ROW |112460 |1316 |30526 |
+ROW |112461 |1316 |32582 |
+ROW |112462 |1316 |32583 |
+ROW |112463 |1316 |32584 |
+ROW |112464 |1316 |32585 |
+ROW |112465 |1316 |32586 |
+ROW |112466 |1316 |32587 |
+ROW |112467 |1345 |31629 |
+ROW |112468 |1345 |31630 |
+ROW |112469 |1346 |31631 |
+ROW |112470 |1345 |31632 |
+ROW |112471 |1346 |31633 |
+ROW |112472 |1346 |31634 |
+ROW |112473 |1346 |31635 |
+ROW |112474 |1346 |31636 |
+ROW |112475 |1346 |31637 |
+ROW |112476 |1346 |31638 |
+ROW |112477 |1346 |31639 |
+ROW |112478 |1345 |31640 |
+ROW |112479 |1345 |31641 |
+ROW |112480 |1346 |31642 |
+ROW |112481 |1346 |31643 |
+ROW |112482 |1346 |31644 |
+ROW |112483 |1346 |31645 |
+ROW |112484 |1345 |31646 |
+ROW |112485 |1345 |31647 |
+ROW |112486 |1345 |31648 |
+ROW |112487 |1345 |31649 |
+ROW |112488 |1345 |31650 |
+ROW |112489 |1345 |31651 |
+ROW |112490 |1345 |31652 |
+ROW |112491 |1345 |31653 |
+ROW |112492 |1345 |31654 |
+ROW |112493 |1345 |31655 |
+ROW |112494 |1345 |31656 |
+ROW |112495 |1345 |31657 |
+ROW |112496 |1345 |31658 |
+ROW |112497 |1345 |31659 |
+ROW |112498 |1345 |31660 |
+ROW |112499 |1345 |31661 |
+ROW |112500 |1345 |31662 |
+ROW |112501 |1345 |31663 |
+ROW |112502 |1345 |31664 |
+ROW |112503 |1345 |31665 |
+ROW |112504 |1345 |31666 |
+ROW |112505 |1345 |31667 |
+ROW |112506 |1345 |31668 |
+ROW |112507 |1345 |31669 |
+ROW |112508 |1345 |31670 |
+ROW |112509 |1345 |31671 |
+ROW |112510 |1345 |31672 |
+ROW |112511 |1345 |31673 |
+ROW |112512 |1345 |31674 |
+ROW |112513 |1345 |31675 |
+ROW |112514 |1345 |31676 |
+ROW |112515 |1345 |31677 |
+ROW |112516 |1345 |31678 |
+ROW |112517 |1345 |31679 |
+ROW |112518 |1345 |31680 |
+ROW |112519 |1345 |31681 |
+ROW |112520 |1345 |31682 |
+ROW |112521 |1345 |31683 |
+ROW |112522 |1345 |31684 |
+ROW |112523 |1345 |31685 |
+ROW |112524 |1345 |31686 |
+ROW |112525 |1345 |31687 |
+ROW |112526 |1345 |31688 |
+ROW |112527 |1345 |31689 |
+ROW |112528 |1345 |31690 |
+ROW |112529 |1345 |31691 |
+ROW |112530 |1345 |31692 |
+ROW |112531 |1345 |31693 |
+ROW |112532 |1345 |31694 |
+ROW |112533 |1345 |31695 |
+ROW |112534 |1345 |31696 |
+ROW |112535 |1345 |31697 |
+ROW |112536 |1345 |31698 |
+ROW |112537 |1345 |31699 |
+ROW |112538 |1345 |31700 |
+ROW |112539 |1345 |31701 |
+ROW |112540 |1345 |31702 |
+ROW |112541 |1345 |31703 |
+ROW |112542 |1345 |31704 |
+ROW |112543 |1345 |31705 |
+ROW |112544 |1340 |31361 |
+ROW |112545 |1340 |31362 |
+ROW |112546 |1340 |31363 |
+ROW |112547 |1339 |31364 |
+ROW |112548 |1339 |31365 |
+ROW |112549 |1340 |31367 |
+ROW |112550 |1340 |31368 |
+ROW |112551 |1340 |31369 |
+ROW |112552 |1340 |31727 |
+ROW |112553 |1340 |31728 |
+ROW |112554 |1339 |31370 |
+ROW |112555 |1339 |31398 |
+ROW |112556 |1339 |31407 |
+ROW |112557 |1339 |31425 |
+ROW |112558 |1339 |31426 |
+ROW |112559 |1339 |31427 |
+ROW |112560 |1339 |31428 |
+ROW |112561 |1339 |31729 |
+ROW |112562 |1339 |31730 |
+ROW |112563 |1339 |31731 |
+ROW |112564 |1339 |31732 |
+ROW |112565 |1339 |31733 |
+ROW |112566 |1339 |31734 |
+ROW |112567 |1339 |31735 |
+ROW |112568 |1339 |31736 |
+ROW |112569 |1339 |31737 |
+ROW |112570 |1339 |31738 |
+ROW |112571 |1339 |31739 |
+ROW |112572 |1339 |31740 |
+ROW |112573 |1339 |31741 |
+ROW |112574 |1339 |31742 |
+ROW |112575 |1339 |31743 |
+ROW |112576 |1339 |31744 |
+ROW |112577 |1339 |31745 |
+ROW |112578 |1339 |31746 |
+ROW |112579 |1339 |31747 |
+ROW |112580 |1339 |31748 |
+ROW |112581 |1339 |31749 |
+ROW |112582 |1339 |31750 |
+ROW |112583 |1339 |31751 |
+ROW |112584 |1339 |31752 |
+ROW |112585 |1339 |31753 |
+ROW |112586 |1339 |31754 |
+ROW |112587 |1339 |31755 |
+ROW |112588 |1339 |31756 |
+ROW |112589 |1339 |31757 |
+ROW |112590 |1339 |31758 |
+ROW |112591 |1339 |31759 |
+ROW |112592 |1339 |31760 |
+ROW |112593 |1339 |31761 |
+ROW |112594 |1339 |31762 |
+ROW |112595 |1339 |31763 |
+ROW |112596 |1339 |31764 |
+ROW |112597 |1339 |31765 |
+ROW |112598 |1339 |31766 |
+ROW |112599 |1339 |31767 |
+ROW |112600 |1339 |31768 |
+ROW |112601 |1339 |31769 |
+ROW |112602 |1339 |31770 |
+ROW |112603 |1339 |31771 |
+ROW |112604 |1339 |31772 |
+ROW |112605 |1339 |31773 |
+ROW |112606 |1339 |31774 |
+ROW |112607 |1339 |31775 |
+ROW |112608 |1339 |31776 |
+ROW |112609 |1339 |31777 |
+ROW |112610 |1339 |31778 |
+ROW |112611 |1339 |31779 |
+ROW |112612 |1339 |31780 |
+ROW |112613 |1339 |31781 |
+ROW |112614 |1339 |31782 |
+ROW |112615 |1339 |31783 |
+ROW |112616 |1339 |31784 |
+ROW |112617 |1339 |31785 |
+ROW |112618 |1115 |28671 |
+ROW |112619 |1115 |28672 |
+ROW |112620 |1114 |28673 |
+ROW |112621 |1114 |28674 |
+ROW |112622 |1115 |28675 |
+ROW |112623 |1114 |28676 |
+ROW |112624 |1114 |28677 |
+ROW |112625 |1114 |28678 |
+ROW |112626 |1114 |28679 |
+ROW |112627 |1114 |28680 |
+ROW |112628 |1114 |28681 |
+ROW |112629 |1115 |28682 |
+ROW |112630 |1115 |28683 |
+ROW |112631 |1114 |28684 |
+ROW |112632 |1114 |28685 |
+ROW |112633 |1115 |28686 |
+ROW |112634 |1115 |28687 |
+ROW |112635 |1114 |28688 |
+ROW |112636 |1114 |28689 |
+ROW |112637 |1114 |28690 |
+ROW |112638 |1114 |28691 |
+ROW |112639 |1114 |28692 |
+ROW |112640 |1114 |28693 |
+ROW |112641 |1114 |28694 |
+ROW |112642 |1114 |28695 |
+ROW |112643 |1114 |28696 |
+ROW |112644 |1114 |28697 |
+ROW |112645 |1114 |28698 |
+ROW |112646 |1114 |28699 |
+ROW |112647 |1114 |28700 |
+ROW |112648 |1114 |28701 |
+ROW |112649 |1114 |28702 |
+ROW |112650 |1114 |28703 |
+ROW |112651 |1114 |28704 |
+ROW |112652 |1114 |28705 |
+ROW |112653 |1114 |28706 |
+ROW |112654 |1114 |28707 |
+ROW |112655 |1114 |28708 |
+ROW |112656 |1114 |28709 |
+ROW |112657 |1114 |28710 |
+ROW |112658 |1115 |28713 |
+ROW |112659 |1115 |28714 |
+ROW |112660 |1338 |31180 |
+ROW |112661 |1337 |31181 |
+ROW |112662 |1338 |31182 |
+ROW |112663 |1338 |31183 |
+ROW |112664 |1338 |31185 |
+ROW |112665 |1338 |31186 |
+ROW |112666 |1337 |31188 |
+ROW |112667 |1337 |31189 |
+ROW |112668 |1337 |31190 |
+ROW |112669 |1337 |31191 |
+ROW |112670 |1337 |31192 |
+ROW |112671 |1337 |31193 |
+ROW |112672 |1337 |31194 |
+ROW |112673 |1338 |31195 |
+ROW |112674 |1338 |31196 |
+ROW |112675 |1337 |32592 |
+ROW |112676 |1337 |32593 |
+ROW |112677 |1337 |32594 |
+ROW |112678 |1338 |32595 |
+ROW |112679 |1337 |31197 |
+ROW |112680 |1337 |31199 |
+ROW |112681 |1337 |31200 |
+ROW |112682 |1337 |31201 |
+ROW |112683 |1337 |31202 |
+ROW |112684 |1337 |31203 |
+ROW |112685 |1337 |31204 |
+ROW |112686 |1337 |31205 |
+ROW |112687 |1337 |31206 |
+ROW |112688 |1337 |31207 |
+ROW |112689 |1337 |31208 |
+ROW |112690 |1337 |31209 |
+ROW |112691 |1337 |31210 |
+ROW |112692 |1337 |31211 |
+ROW |112693 |1337 |31212 |
+ROW |112694 |1337 |31213 |
+ROW |112695 |1337 |31215 |
+ROW |112696 |1337 |31216 |
+ROW |112697 |1337 |31217 |
+ROW |112698 |1337 |31218 |
+ROW |112699 |1337 |31219 |
+ROW |112700 |1337 |31220 |
+ROW |112701 |1337 |31221 |
+ROW |112702 |1337 |31222 |
+ROW |112703 |1337 |31223 |
+ROW |112704 |1337 |31224 |
+ROW |112705 |1337 |31225 |
+ROW |112706 |1337 |31226 |
+ROW |112707 |1337 |31227 |
+ROW |112708 |1337 |31228 |
+ROW |112709 |1337 |31229 |
+ROW |112710 |1337 |31230 |
+ROW |112711 |1337 |31231 |
+ROW |112712 |1337 |31232 |
+ROW |112713 |1337 |31233 |
+ROW |112714 |1337 |31234 |
+ROW |112715 |1337 |31235 |
+ROW |112716 |1337 |31236 |
+ROW |112717 |1337 |31237 |
+ROW |112718 |1337 |31238 |
+ROW |112719 |1337 |31239 |
+ROW |112720 |1337 |32596 |
+ROW |112721 |1302 |30273 |
+ROW |112722 |1302 |30274 |
+ROW |112723 |1303 |30275 |
+ROW |112724 |1303 |30276 |
+ROW |112725 |1302 |30277 |
+ROW |112726 |1302 |30278 |
+ROW |112727 |1302 |30279 |
+ROW |112728 |1302 |30280 |
+ROW |112729 |1302 |30281 |
+ROW |112730 |1302 |30282 |
+ROW |112731 |1302 |30283 |
+ROW |112732 |1302 |30284 |
+ROW |112733 |1302 |30285 |
+ROW |112734 |1302 |30286 |
+ROW |112735 |1302 |30287 |
+ROW |112736 |1302 |30288 |
+ROW |112737 |1302 |30289 |
+ROW |112738 |1302 |30290 |
+ROW |112739 |1302 |30291 |
+ROW |112740 |1302 |30292 |
+ROW |112741 |1302 |30293 |
+ROW |112742 |1302 |30294 |
+ROW |112743 |1302 |30295 |
+ROW |112744 |1302 |30296 |
+ROW |112745 |1302 |30297 |
+ROW |112746 |1302 |30298 |
+ROW |112747 |1302 |30299 |
+ROW |112748 |1302 |30300 |
+ROW |112749 |1302 |30301 |
+ROW |112750 |1302 |30302 |
+ROW |112751 |1302 |30303 |
+ROW |112752 |1302 |30304 |
+ROW |112753 |1302 |30305 |
+ROW |112754 |1302 |30306 |
+ROW |112755 |1302 |30307 |
+ROW |112756 |1302 |30308 |
+ROW |112757 |1302 |30309 |
+ROW |112758 |1302 |30310 |
+ROW |112759 |1302 |30311 |
+ROW |112760 |1302 |30312 |
+ROW |112761 |1302 |30313 |
+ROW |112762 |1302 |30314 |
+ROW |112763 |1302 |30315 |
+ROW |112764 |1302 |30316 |
+ROW |112765 |1302 |30317 |
+ROW |112766 |1302 |30318 |
+ROW |112767 |1302 |30319 |
+ROW |112768 |1302 |30320 |
+ROW |112769 |1302 |30321 |
+ROW |112770 |1302 |30322 |
+ROW |112771 |1302 |30323 |
+ROW |112772 |1302 |30324 |
+ROW |112773 |1302 |30325 |
+ROW |112774 |1302 |30326 |
+ROW |112775 |1302 |30327 |
+ROW |112776 |1302 |30328 |
+ROW |112777 |1302 |30329 |
+ROW |112778 |1302 |30330 |
+ROW |112779 |1302 |30331 |
+ROW |112780 |1302 |30332 |
+ROW |112781 |1302 |30333 |
+ROW |112782 |1302 |30334 |
+ROW |112783 |1302 |30335 |
+ROW |112784 |1302 |30336 |
+ROW |112785 |1302 |30344 |
+ROW |112786 |1302 |30345 |
+ROW |112787 |1302 |30346 |
+ROW |112788 |1302 |30347 |
+ROW |112789 |1302 |30351 |
+ROW |112790 |1302 |30352 |
+ROW |112791 |1302 |30353 |
+ROW |112792 |1302 |30354 |
+ROW |112793 |1302 |30355 |
+ROW |112794 |1302 |30356 |
+ROW |112795 |1302 |30357 |
+ROW |112796 |1302 |30358 |
+ROW |112797 |1302 |30359 |
+ROW |112798 |1302 |30360 |
+ROW |112799 |1302 |30361 |
+ROW |112800 |1302 |30362 |
+ROW |112801 |1302 |30363 |
+ROW |112802 |1302 |30364 |
+ROW |112803 |1302 |30365 |
+ROW |112804 |1302 |30366 |
+ROW |112805 |1302 |30367 |
+ROW |112806 |1302 |30368 |
+ROW |112807 |1302 |30369 |
+ROW |112808 |1302 |30370 |
+ROW |112809 |1302 |30371 |
+ROW |112810 |1302 |30372 |
+ROW |112811 |1302 |30373 |
+ROW |112812 |1302 |30374 |
+ROW |112813 |1302 |30375 |
+ROW |112814 |1302 |30376 |
+ROW |112815 |1302 |30377 |
+ROW |112816 |1302 |30378 |
+ROW |112817 |1302 |30379 |
+ROW |112818 |1302 |30380 |
+ROW |112819 |1302 |30381 |
+ROW |112820 |1302 |30382 |
+ROW |112821 |1302 |30383 |
+ROW |112822 |1302 |30384 |
+ROW |112823 |1302 |30385 |
+ROW |112824 |1302 |30386 |
+ROW |112825 |1302 |30387 |
+ROW |112826 |1302 |30388 |
+ROW |112827 |1302 |30389 |
+ROW |112828 |1302 |30390 |
+ROW |112829 |1302 |30391 |
+ROW |112830 |1302 |30392 |
+ROW |112831 |1302 |30393 |
+ROW |112832 |1302 |30394 |
+ROW |112833 |1302 |30395 |
+ROW |112834 |1302 |30397 |
+ROW |112835 |1302 |30398 |
+ROW |112836 |1302 |30399 |
+ROW |112837 |1302 |30400 |
+ROW |112838 |1302 |30401 |
+ROW |112839 |1302 |30402 |
+ROW |112840 |1302 |30403 |
+ROW |112841 |1302 |30404 |
+ROW |112842 |780 |27065 |
+ROW |112843 |780 |27066 |
+ROW |112844 |780 |27067 |
+ROW |112845 |799 |27149 |
+ROW |112846 |799 |27150 |
+ROW |112847 |799 |27151 |
+ROW |112848 |805 |27192 |
+ROW |112849 |805 |27193 |
+ROW |112850 |805 |27194 |
+ROW |112851 |813 |27225 |
+ROW |112852 |813 |27226 |
+ROW |112853 |813 |27227 |
+ROW |112854 |822 |27261 |
+ROW |112855 |822 |27262 |
+ROW |112856 |822 |27263 |
+ROW |112857 |825 |27282 |
+ROW |112858 |825 |27283 |
+ROW |112859 |825 |27284 |
+ROW |112860 |842 |27333 |
+ROW |112861 |842 |27334 |
+ROW |112862 |842 |27335 |
+ROW |112863 |847 |27365 |
+ROW |112864 |847 |27366 |
+ROW |112865 |847 |27367 |
+ROW |112866 |876 |27462 |
+ROW |112867 |876 |27463 |
+ROW |112868 |876 |27464 |
+ROW |112869 |885 |27496 |
+ROW |112870 |885 |27497 |
+ROW |112871 |885 |27498 |
+ROW |112872 |894 |27532 |
+ROW |112873 |894 |27533 |
+ROW |112874 |894 |27534 |
+ROW |112875 |903 |27568 |
+ROW |112876 |903 |27569 |
+ROW |112877 |903 |27570 |
+ROW |112878 |915 |27631 |
+ROW |112879 |915 |27632 |
+ROW |112880 |915 |27633 |
+ROW |112881 |918 |27654 |
+ROW |112882 |918 |27655 |
+ROW |112883 |918 |27656 |
+ROW |112884 |936 |27734 |
+ROW |112885 |936 |27735 |
+ROW |112886 |936 |27736 |
+ROW |112887 |944 |27766 |
+ROW |112888 |944 |27767 |
+ROW |112889 |944 |27768 |
+ROW |112890 |951 |27800 |
+ROW |112891 |951 |27801 |
+ROW |112892 |951 |27802 |
+ROW |112893 |971 |27882 |
+ROW |112894 |971 |27883 |
+ROW |112895 |971 |27884 |
+ROW |112896 |979 |27919 |
+ROW |112897 |979 |27920 |
+ROW |112898 |979 |27921 |
+ROW |112899 |988 |27956 |
+ROW |112900 |988 |27957 |
+ROW |112901 |988 |27958 |
+ROW |112902 |994 |27986 |
+ROW |112903 |994 |27987 |
+ROW |112904 |994 |27988 |
+ROW |112905 |1000 |28015 |
+ROW |112906 |1000 |28016 |
+ROW |112907 |1000 |28017 |
+ROW |112908 |1030 |28130 |
+ROW |112909 |1030 |28131 |
+ROW |112910 |1030 |28132 |
+ROW |112911 |1055 |28233 |
+ROW |112912 |1055 |28234 |
+ROW |112913 |1055 |28235 |
+ROW |112914 |1060 |28282 |
+ROW |112915 |1060 |28283 |
+ROW |112916 |1060 |28284 |
+ROW |112917 |1070 |28330 |
+ROW |112918 |1070 |28331 |
+ROW |112919 |1070 |28332 |
+ROW |112920 |1079 |28377 |
+ROW |112921 |1079 |28378 |
+ROW |112922 |1079 |28379 |
+ROW |112923 |1095 |28454 |
+ROW |112924 |1095 |28455 |
+ROW |112925 |1095 |28456 |
+ROW |112926 |1102 |28482 |
+ROW |112927 |1102 |28483 |
+ROW |112928 |1102 |28484 |
+ROW |112929 |1127 |28957 |
+ROW |112930 |1127 |28958 |
+ROW |112931 |1127 |28959 |
+ROW |112932 |1136 |29050 |
+ROW |112933 |1136 |29051 |
+ROW |112934 |1136 |29052 |
+ROW |112935 |1271 |30046 |
+ROW |112936 |1271 |30047 |
+ROW |112937 |1271 |30048 |
+ROW |112938 |1414 |32601 |
+ROW |112939 |1414 |32602 |
+ROW |112940 |1414 |32603 |
+ROW |112941 |1422 |32765 |
+ROW |112942 |1422 |32766 |
+ROW |112943 |1422 |32767 |
+ROW |112944 |800 |27152 |
+ROW |112945 |799 |27154 |
+ROW |112946 |800 |27157 |
+ROW |112947 |799 |29844 |
+ROW |112948 |800 |29845 |
+ROW |112949 |800 |29846 |
+ROW |112950 |800 |29847 |
+ROW |112951 |800 |29848 |
+ROW |112952 |804 |27195 |
+ROW |112953 |804 |27199 |
+ROW |112954 |805 |27202 |
+ROW |112955 |812 |27228 |
+ROW |112956 |812 |27232 |
+ROW |112957 |813 |27235 |
+ROW |112958 |821 |27264 |
+ROW |112959 |821 |27268 |
+ROW |112960 |822 |27271 |
+ROW |112961 |824 |27285 |
+ROW |112962 |824 |27289 |
+ROW |112963 |825 |27292 |
+ROW |112964 |841 |27336 |
+ROW |112965 |841 |27340 |
+ROW |112966 |842 |27343 |
+ROW |112967 |846 |27368 |
+ROW |112968 |846 |27372 |
+ROW |112969 |847 |27375 |
+ROW |112970 |875 |27465 |
+ROW |112971 |875 |27469 |
+ROW |112972 |876 |27472 |
+ROW |112973 |884 |27499 |
+ROW |112974 |884 |27503 |
+ROW |112975 |885 |27506 |
+ROW |112976 |893 |27535 |
+ROW |112977 |893 |27539 |
+ROW |112978 |894 |27542 |
+ROW |112979 |902 |27571 |
+ROW |112980 |902 |27575 |
+ROW |112981 |903 |27578 |
+ROW |112982 |914 |27634 |
+ROW |112983 |914 |27638 |
+ROW |112984 |915 |27641 |
+ROW |112985 |917 |27657 |
+ROW |112986 |917 |27661 |
+ROW |112987 |918 |27664 |
+ROW |112988 |935 |27737 |
+ROW |112989 |935 |27741 |
+ROW |112990 |936 |27744 |
+ROW |112991 |943 |27769 |
+ROW |112992 |943 |27773 |
+ROW |112993 |944 |27776 |
+ROW |112994 |950 |27803 |
+ROW |112995 |950 |27807 |
+ROW |112996 |951 |27810 |
+ROW |112997 |970 |27885 |
+ROW |112998 |970 |27889 |
+ROW |112999 |971 |27892 |
+ROW |113000 |978 |27922 |
+ROW |113001 |978 |27926 |
+ROW |113002 |979 |27929 |
+ROW |113003 |987 |27959 |
+ROW |113004 |987 |27963 |
+ROW |113005 |988 |27966 |
+ROW |113006 |993 |27989 |
+ROW |113007 |993 |27993 |
+ROW |113008 |994 |27996 |
+ROW |113009 |999 |28018 |
+ROW |113010 |999 |28022 |
+ROW |113011 |1000 |28025 |
+ROW |113012 |1029 |28133 |
+ROW |113013 |1029 |28137 |
+ROW |113014 |1030 |28140 |
+ROW |113015 |1054 |28236 |
+ROW |113016 |1054 |28240 |
+ROW |113017 |1055 |28243 |
+ROW |113018 |1059 |28285 |
+ROW |113019 |1059 |28289 |
+ROW |113020 |1060 |28292 |
+ROW |113021 |1069 |28333 |
+ROW |113022 |1069 |28337 |
+ROW |113023 |1070 |28340 |
+ROW |113024 |1078 |28380 |
+ROW |113025 |1078 |28384 |
+ROW |113026 |1079 |28387 |
+ROW |113027 |1094 |28457 |
+ROW |113028 |1094 |28461 |
+ROW |113029 |1095 |28464 |
+ROW |113030 |1101 |28485 |
+ROW |113031 |1101 |28489 |
+ROW |113032 |1102 |28492 |
+ROW |113033 |1126 |28960 |
+ROW |113034 |1126 |28964 |
+ROW |113035 |1127 |28967 |
+ROW |113036 |1135 |29053 |
+ROW |113037 |1135 |29057 |
+ROW |113038 |1136 |29060 |
+ROW |113039 |1000 |29834 |
+ROW |113040 |999 |29835 |
+ROW |113041 |999 |29836 |
+ROW |113042 |999 |29837 |
+ROW |113043 |999 |29838 |
+ROW |113044 |805 |29849 |
+ROW |113045 |804 |29850 |
+ROW |113046 |804 |29851 |
+ROW |113047 |804 |29852 |
+ROW |113048 |804 |29853 |
+ROW |113049 |813 |29854 |
+ROW |113050 |812 |29855 |
+ROW |113051 |812 |29856 |
+ROW |113052 |812 |29857 |
+ROW |113053 |812 |29858 |
+ROW |113054 |822 |29859 |
+ROW |113055 |821 |29860 |
+ROW |113056 |821 |29861 |
+ROW |113057 |821 |29862 |
+ROW |113058 |821 |29863 |
+ROW |113059 |825 |29864 |
+ROW |113060 |824 |29865 |
+ROW |113061 |824 |29866 |
+ROW |113062 |824 |29867 |
+ROW |113063 |824 |29868 |
+ROW |113064 |842 |29869 |
+ROW |113065 |841 |29870 |
+ROW |113066 |841 |29871 |
+ROW |113067 |841 |29872 |
+ROW |113068 |841 |29873 |
+ROW |113069 |847 |29874 |
+ROW |113070 |846 |29875 |
+ROW |113071 |846 |29876 |
+ROW |113072 |846 |29877 |
+ROW |113073 |846 |29878 |
+ROW |113074 |876 |29879 |
+ROW |113075 |875 |29880 |
+ROW |113076 |875 |29881 |
+ROW |113077 |875 |29882 |
+ROW |113078 |875 |29883 |
+ROW |113079 |885 |29884 |
+ROW |113080 |884 |29885 |
+ROW |113081 |884 |29886 |
+ROW |113082 |884 |29887 |
+ROW |113083 |884 |29888 |
+ROW |113084 |894 |29889 |
+ROW |113085 |893 |29890 |
+ROW |113086 |893 |29891 |
+ROW |113087 |893 |29892 |
+ROW |113088 |893 |29893 |
+ROW |113089 |903 |29894 |
+ROW |113090 |902 |29895 |
+ROW |113091 |902 |29896 |
+ROW |113092 |902 |29897 |
+ROW |113093 |902 |29898 |
+ROW |113094 |915 |29899 |
+ROW |113095 |914 |29900 |
+ROW |113096 |914 |29901 |
+ROW |113097 |914 |29902 |
+ROW |113098 |914 |29903 |
+ROW |113099 |918 |29904 |
+ROW |113100 |917 |29905 |
+ROW |113101 |917 |29906 |
+ROW |113102 |917 |29907 |
+ROW |113103 |917 |29908 |
+ROW |113104 |936 |29909 |
+ROW |113105 |935 |29910 |
+ROW |113106 |935 |29911 |
+ROW |113107 |935 |29912 |
+ROW |113108 |935 |29913 |
+ROW |113109 |944 |29914 |
+ROW |113110 |943 |29915 |
+ROW |113111 |943 |29916 |
+ROW |113112 |943 |29917 |
+ROW |113113 |943 |29918 |
+ROW |113114 |951 |29919 |
+ROW |113115 |950 |29920 |
+ROW |113116 |950 |29921 |
+ROW |113117 |950 |29922 |
+ROW |113118 |950 |29923 |
+ROW |113119 |971 |29924 |
+ROW |113120 |970 |29925 |
+ROW |113121 |970 |29926 |
+ROW |113122 |970 |29927 |
+ROW |113123 |970 |29928 |
+ROW |113124 |979 |29929 |
+ROW |113125 |978 |29930 |
+ROW |113126 |978 |29931 |
+ROW |113127 |978 |29932 |
+ROW |113128 |978 |29933 |
+ROW |113129 |988 |29934 |
+ROW |113130 |987 |29935 |
+ROW |113131 |987 |29936 |
+ROW |113132 |987 |29937 |
+ROW |113133 |987 |29938 |
+ROW |113134 |994 |29939 |
+ROW |113135 |993 |29940 |
+ROW |113136 |993 |29941 |
+ROW |113137 |993 |29942 |
+ROW |113138 |993 |29943 |
+ROW |113139 |1030 |29944 |
+ROW |113140 |1029 |29945 |
+ROW |113141 |1029 |29946 |
+ROW |113142 |1029 |29947 |
+ROW |113143 |1029 |29948 |
+ROW |113144 |1055 |29954 |
+ROW |113145 |1054 |29955 |
+ROW |113146 |1054 |29956 |
+ROW |113147 |1054 |29957 |
+ROW |113148 |1054 |29958 |
+ROW |113149 |1060 |29959 |
+ROW |113150 |1059 |29960 |
+ROW |113151 |1059 |29961 |
+ROW |113152 |1059 |29962 |
+ROW |113153 |1059 |29963 |
+ROW |113154 |1070 |29964 |
+ROW |113155 |1069 |29965 |
+ROW |113156 |1069 |29966 |
+ROW |113157 |1069 |29967 |
+ROW |113158 |1069 |29968 |
+ROW |113159 |1079 |29969 |
+ROW |113160 |1078 |29970 |
+ROW |113161 |1078 |29971 |
+ROW |113162 |1078 |29972 |
+ROW |113163 |1078 |29973 |
+ROW |113164 |1095 |29974 |
+ROW |113165 |1094 |29975 |
+ROW |113166 |1094 |29976 |
+ROW |113167 |1094 |29977 |
+ROW |113168 |1094 |29978 |
+ROW |113169 |1102 |29979 |
+ROW |113170 |1101 |29980 |
+ROW |113171 |1101 |29981 |
+ROW |113172 |1101 |29982 |
+ROW |113173 |1101 |29983 |
+ROW |113174 |1127 |29984 |
+ROW |113175 |1126 |29985 |
+ROW |113176 |1126 |29986 |
+ROW |113177 |1126 |29987 |
+ROW |113178 |1126 |29988 |
+ROW |113179 |1136 |29989 |
+ROW |113180 |1135 |29990 |
+ROW |113181 |1135 |29991 |
+ROW |113182 |1135 |29992 |
+ROW |113183 |1135 |29993 |
+ROW |113184 |1270 |30049 |
+ROW |113185 |1270 |30050 |
+ROW |113186 |1270 |30051 |
+ROW |113187 |1270 |30052 |
+ROW |113188 |1270 |30053 |
+ROW |113189 |1270 |30054 |
+ROW |113190 |1271 |30055 |
+ROW |113191 |1271 |30056 |
+ROW |113192 |1413 |32604 |
+ROW |113193 |1413 |32605 |
+ROW |113194 |1413 |32606 |
+ROW |113195 |1413 |32607 |
+ROW |113196 |1413 |32608 |
+ROW |113197 |1413 |32609 |
+ROW |113198 |1414 |32610 |
+ROW |113199 |1414 |32611 |
+ROW |113200 |1421 |32768 |
+ROW |113201 |1421 |32769 |
+ROW |113202 |1421 |32770 |
+ROW |113203 |1421 |32771 |
+ROW |113204 |1421 |32772 |
+ROW |113205 |1421 |32773 |
+ROW |113206 |1422 |32774 |
+ROW |113207 |1422 |32775 |
+ROW |113208 |1283 |30142 |
+ROW |113209 |1286 |30143 |
+ROW |113210 |1292 |30145 |
+ROW |113211 |1295 |30146 |
+ROW |113212 |1284 |30157 |
+ROW |113213 |1284 |30158 |
+ROW |113214 |1284 |30159 |
+ROW |113215 |1287 |30163 |
+ROW |113216 |1287 |30164 |
+ROW |113217 |1287 |30165 |
+ROW |113218 |1293 |30175 |
+ROW |113219 |1293 |30176 |
+ROW |113220 |1293 |30177 |
+ROW |113221 |1296 |30181 |
+ROW |113222 |1296 |30182 |
+ROW |113223 |1296 |30183 |
+ROW |113224 |1419 |32741 |
+ROW |113225 |1420 |32753 |
+ROW |113226 |1221 |22231 |
+ROW |113227 |1221 |22232 |
+ROW |113228 |1221 |23318 |
+ROW |113229 |1222 |29544 |
+ROW |113230 |1223 |29545 |
+ROW |113231 |1223 |29546 |
+ROW |113232 |1224 |29547 |
+ROW |113233 |1225 |10020 |
+ROW |113234 |1225 |10059 |
+ROW |113235 |1226 |22833 |
+ROW |113236 |1226 |22834 |
+ROW |113237 |1228 |22873 |
+ROW |113238 |1228 |22874 |
+ROW |113239 |1230 |22913 |
+ROW |113240 |1230 |22914 |
+ROW |113241 |1232 |22953 |
+ROW |113242 |1232 |22954 |
+ROW |113243 |1234 |22993 |
+ROW |113244 |1234 |22994 |
+ROW |113245 |1236 |23033 |
+ROW |113246 |1236 |23034 |
+ROW |113247 |1238 |23160 |
+ROW |113248 |1238 |23161 |
+ROW |113249 |1225 |23319 |
+ROW |113250 |1226 |23320 |
+ROW |113251 |1228 |23321 |
+ROW |113252 |1230 |23322 |
+ROW |113253 |1232 |23323 |
+ROW |113254 |1234 |23324 |
+ROW |113255 |1236 |23325 |
+ROW |113256 |1238 |23326 |
+ROW |113257 |1161 |29548 |
+ROW |113258 |1227 |29549 |
+ROW |113259 |1229 |29550 |
+ROW |113260 |1231 |29551 |
+ROW |113261 |1233 |29552 |
+ROW |113262 |1235 |29553 |
+ROW |113263 |1237 |29554 |
+ROW |113264 |1219 |29555 |
+ROW |113265 |1241 |29558 |
+ROW |113266 |1242 |29559 |
+ROW |113267 |1241 |29560 |
+ROW |113268 |1269 |29995 |
+ROW |113269 |1192 |29996 |
+ROW |113270 |1269 |29997 |
+ROW |113271 |1240 |23287 |
+ROW |113272 |1240 |23288 |
+ROW |113273 |1240 |23327 |
+ROW |113274 |1171 |29557 |
+ROW |113275 |810 |27203 |
+ROW |113276 |807 |27207 |
+ROW |113277 |806 |27208 |
+ROW |113278 |810 |30086 |
+ROW |113279 |807 |30087 |
+ROW |113280 |807 |30088 |
+ROW |113281 |807 |30089 |
+ROW |113282 |808 |27212 |
+ROW |113283 |809 |27213 |
+ROW |113284 |810 |27214 |
+ROW |113285 |1279 |30091 |
+ROW |113286 |1279 |30092 |
+ROW |113287 |1364 |28305 |
+ROW |113288 |1068 |28323 |
+ROW |113289 |1068 |28324 |
+ROW |113290 |1062 |28325 |
+ROW |113291 |1062 |28326 |
+ROW |113292 |1064 |28327 |
+ROW |113293 |1064 |28328 |
+ROW |113294 |1066 |28329 |
+ROW |113295 |1363 |32307 |
+ROW |113296 |819 |27236 |
+ROW |113297 |819 |27237 |
+ROW |113298 |813 |27238 |
+ROW |113299 |814 |27240 |
+ROW |113300 |815 |30093 |
+ROW |113301 |816 |27246 |
+ROW |113302 |816 |27247 |
+ROW |113303 |817 |27248 |
+ROW |113304 |818 |27249 |
+ROW |113305 |818 |27250 |
+ROW |113306 |826 |27294 |
+ROW |113307 |831 |27295 |
+ROW |113308 |831 |27296 |
+ROW |113309 |835 |27297 |
+ROW |113310 |827 |30094 |
+ROW |113311 |836 |27299 |
+ROW |113312 |838 |27301 |
+ROW |113313 |837 |30095 |
+ROW |113314 |839 |30096 |
+ROW |113315 |829 |27312 |
+ROW |113316 |830 |27313 |
+ROW |113317 |828 |27314 |
+ROW |113318 |828 |27315 |
+ROW |113319 |833 |27316 |
+ROW |113320 |834 |27317 |
+ROW |113321 |832 |27318 |
+ROW |113322 |835 |27319 |
+ROW |113323 |835 |27320 |
+ROW |113324 |1444 |33197 |
+ROW |113325 |1444 |33198 |
+ROW |113326 |1444 |33199 |
+ROW |113327 |1439 |33200 |
+ROW |113328 |1439 |33201 |
+ROW |113329 |1439 |33202 |
+ROW |113330 |1440 |33203 |
+ROW |113331 |1440 |33204 |
+ROW |113332 |1439 |33205 |
+ROW |113333 |1439 |33206 |
+ROW |113334 |1439 |33207 |
+ROW |113335 |1440 |33208 |
+ROW |113336 |1444 |33209 |
+ROW |113337 |1444 |33210 |
+ROW |113338 |1437 |33219 |
+ROW |113339 |1440 |33220 |
+ROW |113340 |1438 |33221 |
+ROW |113341 |1441 |33222 |
+ROW |113342 |1441 |33223 |
+ROW |113343 |1441 |33224 |
+ROW |113344 |1443 |33235 |
+ROW |113345 |1445 |33236 |
+ROW |113346 |1445 |33237 |
+ROW |113347 |1453 |33238 |
+ROW |113348 |1453 |33239 |
+ROW |113349 |1453 |33240 |
+ROW |113350 |1448 |33241 |
+ROW |113351 |1448 |33242 |
+ROW |113352 |1448 |33243 |
+ROW |113353 |1449 |33244 |
+ROW |113354 |1449 |33245 |
+ROW |113355 |1448 |33246 |
+ROW |113356 |1448 |33247 |
+ROW |113357 |1448 |33248 |
+ROW |113358 |1449 |33249 |
+ROW |113359 |1453 |33250 |
+ROW |113360 |1453 |33251 |
+ROW |113361 |1446 |33260 |
+ROW |113362 |1449 |33261 |
+ROW |113363 |1447 |33262 |
+ROW |113364 |1450 |33263 |
+ROW |113365 |1450 |33264 |
+ROW |113366 |1450 |33265 |
+ROW |113367 |1452 |33276 |
+ROW |113368 |1454 |33277 |
+ROW |113369 |1454 |33278 |
+ROW |113370 |1462 |33279 |
+ROW |113371 |1462 |33280 |
+ROW |113372 |1462 |33281 |
+ROW |113373 |1457 |33282 |
+ROW |113374 |1457 |33283 |
+ROW |113375 |1457 |33284 |
+ROW |113376 |1458 |33285 |
+ROW |113377 |1458 |33286 |
+ROW |113378 |1457 |33287 |
+ROW |113379 |1457 |33288 |
+ROW |113380 |1457 |33289 |
+ROW |113381 |1458 |33290 |
+ROW |113382 |1462 |33291 |
+ROW |113383 |1462 |33292 |
+ROW |113384 |1455 |33301 |
+ROW |113385 |1458 |33302 |
+ROW |113386 |1456 |33303 |
+ROW |113387 |1459 |33304 |
+ROW |113388 |1459 |33305 |
+ROW |113389 |1459 |33306 |
+ROW |113390 |1461 |33317 |
+ROW |113391 |1463 |33318 |
+ROW |113392 |1463 |33319 |
+ROW |113393 |1471 |33320 |
+ROW |113394 |1471 |33321 |
+ROW |113395 |1471 |33322 |
+ROW |113396 |1466 |33323 |
+ROW |113397 |1466 |33324 |
+ROW |113398 |1466 |33325 |
+ROW |113399 |1467 |33326 |
+ROW |113400 |1467 |33327 |
+ROW |113401 |1466 |33328 |
+ROW |113402 |1466 |33329 |
+ROW |113403 |1466 |33330 |
+ROW |113404 |1467 |33331 |
+ROW |113405 |1471 |33332 |
+ROW |113406 |1471 |33333 |
+ROW |113407 |1464 |33342 |
+ROW |113408 |1467 |33343 |
+ROW |113409 |1465 |33344 |
+ROW |113410 |1468 |33345 |
+ROW |113411 |1468 |33346 |
+ROW |113412 |1468 |33347 |
+ROW |113413 |1470 |33358 |
+ROW |113414 |1472 |33359 |
+ROW |113415 |1472 |33360 |
+ROW |113416 |1480 |33361 |
+ROW |113417 |1480 |33362 |
+ROW |113418 |1480 |33363 |
+ROW |113419 |1475 |33364 |
+ROW |113420 |1475 |33365 |
+ROW |113421 |1475 |33366 |
+ROW |113422 |1476 |33367 |
+ROW |113423 |1476 |33368 |
+ROW |113424 |1475 |33369 |
+ROW |113425 |1475 |33370 |
+ROW |113426 |1475 |33371 |
+ROW |113427 |1476 |33372 |
+ROW |113428 |1480 |33373 |
+ROW |113429 |1480 |33374 |
+ROW |113430 |1473 |33383 |
+ROW |113431 |1476 |33384 |
+ROW |113432 |1474 |33385 |
+ROW |113433 |1477 |33386 |
+ROW |113434 |1477 |33387 |
+ROW |113435 |1477 |33388 |
+ROW |113436 |1479 |33399 |
+ROW |113437 |1481 |33400 |
+ROW |113438 |1481 |33401 |
+ROW |113439 |851 |27376 |
+ROW |113440 |852 |27378 |
+ROW |113441 |852 |27379 |
+ROW |113442 |852 |30097 |
+ROW |113443 |869 |27380 |
+ROW |113444 |870 |27382 |
+ROW |113445 |870 |27383 |
+ROW |113446 |858 |27385 |
+ROW |113447 |858 |27386 |
+ROW |113448 |1048 |28209 |
+ROW |113449 |1048 |28210 |
+ROW |113450 |858 |30098 |
+ROW |113451 |870 |30099 |
+ROW |113452 |1048 |30100 |
+ROW |113453 |848 |27415 |
+ROW |113454 |848 |27416 |
+ROW |113455 |849 |27417 |
+ROW |113456 |852 |27419 |
+ROW |113457 |853 |27420 |
+ROW |113458 |853 |27421 |
+ROW |113459 |854 |27422 |
+ROW |113460 |855 |27423 |
+ROW |113461 |1056 |28246 |
+ROW |113462 |848 |30101 |
+ROW |113463 |856 |27425 |
+ROW |113464 |856 |27426 |
+ROW |113465 |857 |27427 |
+ROW |113466 |858 |27428 |
+ROW |113467 |859 |27429 |
+ROW |113468 |859 |27430 |
+ROW |113469 |860 |27431 |
+ROW |113470 |861 |27432 |
+ROW |113471 |868 |27443 |
+ROW |113472 |868 |27444 |
+ROW |113473 |870 |27445 |
+ROW |113474 |871 |27446 |
+ROW |113475 |871 |27447 |
+ROW |113476 |872 |27448 |
+ROW |113477 |873 |27449 |
+ROW |113478 |1048 |28208 |
+ROW |113479 |1049 |28215 |
+ROW |113480 |1050 |28216 |
+ROW |113481 |1051 |28217 |
+ROW |113482 |1051 |28218 |
+ROW |113483 |1052 |28220 |
+ROW |113484 |1052 |28222 |
+ROW |113485 |1057 |28247 |
+ROW |113486 |856 |30102 |
+ROW |113487 |868 |30103 |
+ROW |113488 |1052 |30104 |
+ROW |113489 |877 |27478 |
+ROW |113490 |880 |27479 |
+ROW |113491 |881 |27480 |
+ROW |113492 |882 |27481 |
+ROW |113493 |882 |27482 |
+ROW |113494 |882 |27483 |
+ROW |113495 |882 |27484 |
+ROW |113496 |879 |27485 |
+ROW |113497 |878 |30105 |
+ROW |113498 |891 |27508 |
+ROW |113499 |891 |27509 |
+ROW |113500 |891 |27510 |
+ROW |113501 |886 |27511 |
+ROW |113502 |891 |30106 |
+ROW |113503 |888 |27517 |
+ROW |113504 |890 |27518 |
+ROW |113505 |889 |27519 |
+ROW |113506 |887 |30107 |
+ROW |113507 |900 |27543 |
+ROW |113508 |900 |27544 |
+ROW |113509 |900 |27545 |
+ROW |113510 |900 |27546 |
+ROW |113511 |895 |27547 |
+ROW |113512 |897 |27553 |
+ROW |113513 |899 |27554 |
+ROW |113514 |898 |27555 |
+ROW |113515 |896 |30108 |
+ROW |113516 |909 |27579 |
+ROW |113517 |909 |27580 |
+ROW |113518 |909 |27582 |
+ROW |113519 |909 |27583 |
+ROW |113520 |906 |27584 |
+ROW |113521 |906 |27585 |
+ROW |113522 |904 |27586 |
+ROW |113523 |909 |30109 |
+ROW |113524 |905 |27591 |
+ROW |113525 |907 |27593 |
+ROW |113526 |908 |27594 |
+ROW |113527 |908 |27595 |
+ROW |113528 |905 |30110 |
+ROW |113529 |905 |30111 |
+ROW |113530 |919 |27671 |
+ROW |113531 |921 |27672 |
+ROW |113532 |922 |27673 |
+ROW |113533 |923 |27674 |
+ROW |113534 |924 |27675 |
+ROW |113535 |924 |27676 |
+ROW |113536 |924 |27677 |
+ROW |113537 |924 |27678 |
+ROW |113538 |924 |27679 |
+ROW |113539 |920 |30112 |
+ROW |113540 |1036 |28141 |
+ROW |113541 |1036 |28142 |
+ROW |113542 |1031 |28143 |
+ROW |113543 |1033 |28150 |
+ROW |113544 |1032 |28153 |
+ROW |113545 |1034 |28154 |
+ROW |113546 |1035 |28155 |
+ROW |113547 |1033 |28156 |
+ROW |113548 |1036 |28157 |
+ROW |113549 |1036 |28158 |
+ROW |113550 |1032 |30113 |
+ROW |113551 |1032 |30114 |
+ROW |113552 |1032 |30115 |
+ROW |113553 |941 |27748 |
+ROW |113554 |941 |27749 |
+ROW |113555 |941 |27750 |
+ROW |113556 |939 |27751 |
+ROW |113557 |937 |27753 |
+ROW |113558 |941 |27754 |
+ROW |113559 |940 |27755 |
+ROW |113560 |938 |30116 |
+ROW |113561 |948 |27777 |
+ROW |113562 |948 |27778 |
+ROW |113563 |945 |27783 |
+ROW |113564 |945 |27784 |
+ROW |113565 |948 |27785 |
+ROW |113566 |946 |27786 |
+ROW |113567 |947 |27787 |
+ROW |113568 |957 |27812 |
+ROW |113569 |957 |27813 |
+ROW |113570 |951 |27814 |
+ROW |113571 |957 |30117 |
+ROW |113572 |954 |27821 |
+ROW |113573 |956 |27822 |
+ROW |113574 |955 |27823 |
+ROW |113575 |952 |28894 |
+ROW |113576 |953 |30118 |
+ROW |113577 |1486 |33402 |
+ROW |113578 |1486 |33403 |
+ROW |113579 |1486 |33404 |
+ROW |113580 |1483 |33405 |
+ROW |113581 |1483 |33406 |
+ROW |113582 |1482 |33407 |
+ROW |113583 |1483 |33408 |
+ROW |113584 |1483 |33409 |
+ROW |113585 |1483 |33410 |
+ROW |113586 |1483 |33411 |
+ROW |113587 |1486 |33412 |
+ROW |113588 |1486 |33413 |
+ROW |113589 |1044 |28200 |
+ROW |113590 |1044 |28201 |
+ROW |113591 |1045 |28202 |
+ROW |113592 |1045 |28203 |
+ROW |113593 |1047 |28204 |
+ROW |113594 |1047 |28205 |
+ROW |113595 |1046 |28206 |
+ROW |113596 |1484 |33429 |
+ROW |113597 |1484 |33430 |
+ROW |113598 |1484 |33431 |
+ROW |113599 |976 |27893 |
+ROW |113600 |976 |27894 |
+ROW |113601 |976 |27895 |
+ROW |113602 |973 |27898 |
+ROW |113603 |973 |27900 |
+ROW |113604 |976 |30119 |
+ROW |113605 |973 |30120 |
+ROW |113606 |972 |27904 |
+ROW |113607 |974 |27905 |
+ROW |113608 |975 |27906 |
+ROW |113609 |975 |27907 |
+ROW |113610 |975 |27908 |
+ROW |113611 |974 |31790 |
+ROW |113612 |1365 |32308 |
+ROW |113613 |1368 |32309 |
+ROW |113614 |1370 |32310 |
+ROW |113615 |1370 |32311 |
+ROW |113616 |1366 |32312 |
+ROW |113617 |1369 |32313 |
+ROW |113618 |1369 |32314 |
+ROW |113619 |1369 |32315 |
+ROW |113620 |1369 |32316 |
+ROW |113621 |1368 |32317 |
+ROW |113622 |1368 |32318 |
+ROW |113623 |1365 |32319 |
+ROW |113624 |1367 |32320 |
+ROW |113625 |1367 |32321 |
+ROW |113626 |1367 |32322 |
+ROW |113627 |1366 |32323 |
+ROW |113628 |1366 |32324 |
+ROW |113629 |1371 |32325 |
+ROW |113630 |1365 |32326 |
+ROW |113631 |1365 |32327 |
+ROW |113632 |1370 |32328 |
+ROW |113633 |1366 |32330 |
+ROW |113634 |1372 |32331 |
+ROW |113635 |1376 |32332 |
+ROW |113636 |1377 |32333 |
+ROW |113637 |1377 |32334 |
+ROW |113638 |1373 |32335 |
+ROW |113639 |1376 |32336 |
+ROW |113640 |1376 |32337 |
+ROW |113641 |1376 |32338 |
+ROW |113642 |1375 |32339 |
+ROW |113643 |1378 |32340 |
+ROW |113644 |1375 |32341 |
+ROW |113645 |1375 |32342 |
+ROW |113646 |1374 |32343 |
+ROW |113647 |1374 |32344 |
+ROW |113648 |1374 |32345 |
+ROW |113649 |1373 |32346 |
+ROW |113650 |1373 |32347 |
+ROW |113651 |1377 |32348 |
+ROW |113652 |1373 |32350 |
+ROW |113653 |1379 |32351 |
+ROW |113654 |1382 |32352 |
+ROW |113655 |1384 |32353 |
+ROW |113656 |1384 |32354 |
+ROW |113657 |1380 |32355 |
+ROW |113658 |1383 |32356 |
+ROW |113659 |1383 |32357 |
+ROW |113660 |1383 |32358 |
+ROW |113661 |1383 |32359 |
+ROW |113662 |1382 |32360 |
+ROW |113663 |1382 |32361 |
+ROW |113664 |1379 |32362 |
+ROW |113665 |1381 |32363 |
+ROW |113666 |1381 |32364 |
+ROW |113667 |1381 |32365 |
+ROW |113668 |1380 |32366 |
+ROW |113669 |1380 |32367 |
+ROW |113670 |1385 |32368 |
+ROW |113671 |1379 |32369 |
+ROW |113672 |1379 |32370 |
+ROW |113673 |1384 |32371 |
+ROW |113674 |1380 |32373 |
+ROW |113675 |1390 |32374 |
+ROW |113676 |1387 |32375 |
+ROW |113677 |1387 |32376 |
+ROW |113678 |1388 |32377 |
+ROW |113679 |1388 |32378 |
+ROW |113680 |1388 |32379 |
+ROW |113681 |1389 |32380 |
+ROW |113682 |1386 |32382 |
+ROW |113683 |1391 |32383 |
+ROW |113684 |1393 |32384 |
+ROW |113685 |1395 |32385 |
+ROW |113686 |1392 |32386 |
+ROW |113687 |1394 |32387 |
+ROW |113688 |1394 |32388 |
+ROW |113689 |1394 |32389 |
+ROW |113690 |1393 |32390 |
+ROW |113691 |1392 |32391 |
+ROW |113692 |1391 |32392 |
+ROW |113693 |1392 |32393 |
+ROW |113694 |1392 |32394 |
+ROW |113695 |1396 |32395 |
+ROW |113696 |1391 |32396 |
+ROW |113697 |1391 |32397 |
+ROW |113698 |1391 |32398 |
+ROW |113699 |1395 |32399 |
+ROW |113700 |1392 |32401 |
+ROW |113701 |1397 |32402 |
+ROW |113702 |1399 |32403 |
+ROW |113703 |1401 |32404 |
+ROW |113704 |1398 |32405 |
+ROW |113705 |1400 |32406 |
+ROW |113706 |1400 |32407 |
+ROW |113707 |1400 |32408 |
+ROW |113708 |1399 |32409 |
+ROW |113709 |1398 |32410 |
+ROW |113710 |1397 |32411 |
+ROW |113711 |1398 |32412 |
+ROW |113712 |1398 |32413 |
+ROW |113713 |1402 |32414 |
+ROW |113714 |1397 |32415 |
+ROW |113715 |1397 |32416 |
+ROW |113716 |1397 |32417 |
+ROW |113717 |1401 |32418 |
+ROW |113718 |1398 |32420 |
+ROW |113719 |1409 |32421 |
+ROW |113720 |1407 |32422 |
+ROW |113721 |1405 |32423 |
+ROW |113722 |1405 |32424 |
+ROW |113723 |1407 |32425 |
+ROW |113724 |1407 |32426 |
+ROW |113725 |1407 |32427 |
+ROW |113726 |1408 |32428 |
+ROW |113727 |1408 |32429 |
+ROW |113728 |1404 |32436 |
+ROW |113729 |1404 |32437 |
+ROW |113730 |1404 |32438 |
+ROW |113731 |1403 |32439 |
+ROW |113732 |1404 |32440 |
+ROW |113733 |1406 |32441 |
+ROW |113734 |1406 |32442 |
+ROW |113735 |1406 |32443 |
+ROW |113736 |1406 |32444 |
+ROW |113737 |985 |27930 |
+ROW |113738 |985 |27931 |
+ROW |113739 |981 |27935 |
+ROW |113740 |980 |27936 |
+ROW |113741 |985 |30121 |
+ROW |113742 |981 |30122 |
+ROW |113743 |981 |30123 |
+ROW |113744 |982 |27940 |
+ROW |113745 |982 |27941 |
+ROW |113746 |984 |27942 |
+ROW |113747 |983 |27943 |
+ROW |113748 |991 |27967 |
+ROW |113749 |991 |27968 |
+ROW |113750 |991 |27970 |
+ROW |113751 |991 |27971 |
+ROW |113752 |990 |27972 |
+ROW |113753 |990 |27973 |
+ROW |113754 |989 |27975 |
+ROW |113755 |1282 |30124 |
+ROW |113756 |991 |30125 |
+ROW |113757 |990 |30126 |
+ROW |113758 |1280 |30129 |
+ROW |113759 |1281 |30130 |
+ROW |113760 |997 |27997 |
+ROW |113761 |997 |27998 |
+ROW |113762 |997 |27999 |
+ROW |113763 |997 |28000 |
+ROW |113764 |995 |28003 |
+ROW |113765 |996 |30131 |
+ROW |113766 |1003 |28026 |
+ROW |113767 |1003 |28027 |
+ROW |113768 |1001 |28031 |
+ROW |113769 |1002 |30132 |
+ROW |113770 |1002 |30133 |
+ROW |113771 |1002 |30134 |
+ROW |113772 |1002 |30135 |
+ROW |113773 |1002 |30136 |
+ROW |113774 |1142 |29087 |
+ROW |113775 |1142 |29088 |
+ROW |113776 |1142 |29089 |
+ROW |113777 |1142 |29090 |
+ROW |113778 |1142 |29091 |
+ROW |113779 |1142 |29092 |
+ROW |113780 |1142 |29093 |
+ROW |113781 |1142 |29094 |
+ROW |113782 |1142 |29095 |
+ROW |113783 |1142 |29096 |
+ROW |113784 |1142 |29097 |
+ROW |113785 |1142 |29098 |
+ROW |113786 |1142 |29099 |
+ROW |113787 |1142 |29100 |
+ROW |113788 |1142 |29101 |
+ROW |113789 |1142 |29102 |
+ROW |113790 |1144 |29103 |
+ROW |113791 |1144 |29104 |
+ROW |113792 |1144 |29105 |
+ROW |113793 |1144 |29106 |
+ROW |113794 |1144 |29107 |
+ROW |113795 |1144 |29108 |
+ROW |113796 |1151 |29110 |
+ROW |113797 |1148 |29111 |
+ROW |113798 |1148 |29112 |
+ROW |113799 |1148 |29113 |
+ROW |113800 |1148 |29114 |
+ROW |113801 |1148 |29115 |
+ROW |113802 |1148 |29116 |
+ROW |113803 |1148 |29117 |
+ROW |113804 |1148 |29118 |
+ROW |113805 |1148 |29119 |
+ROW |113806 |1150 |29120 |
+ROW |113807 |1149 |29121 |
+ROW |113808 |1149 |29122 |
+ROW |113809 |1149 |29123 |
+ROW |113810 |1152 |29124 |
+ROW |113811 |1152 |29125 |
+ROW |113812 |1152 |29126 |
+ROW |113813 |1152 |29127 |
+ROW |113814 |1152 |29128 |
+ROW |113815 |1152 |29129 |
+ROW |113816 |1152 |29130 |
+ROW |113817 |1152 |29131 |
+ROW |113818 |1152 |29132 |
+ROW |113819 |1152 |29133 |
+ROW |113820 |1152 |29134 |
+ROW |113821 |1152 |29135 |
+ROW |113822 |1152 |29136 |
+ROW |113823 |1152 |29137 |
+ROW |113824 |1152 |29138 |
+ROW |113825 |1152 |29139 |
+ROW |113826 |1154 |29140 |
+ROW |113827 |1154 |29141 |
+ROW |113828 |1154 |29142 |
+ROW |113829 |1154 |29143 |
+ROW |113830 |1154 |29144 |
+ROW |113831 |1154 |29145 |
+ROW |113832 |1161 |29147 |
+ROW |113833 |1158 |29148 |
+ROW |113834 |1158 |29149 |
+ROW |113835 |1158 |29150 |
+ROW |113836 |1158 |29151 |
+ROW |113837 |1158 |29152 |
+ROW |113838 |1158 |29153 |
+ROW |113839 |1158 |29154 |
+ROW |113840 |1158 |29155 |
+ROW |113841 |1158 |29156 |
+ROW |113842 |1160 |29157 |
+ROW |113843 |1159 |29158 |
+ROW |113844 |1159 |29159 |
+ROW |113845 |1159 |29160 |
+ROW |113846 |1162 |29161 |
+ROW |113847 |1162 |29162 |
+ROW |113848 |1162 |29163 |
+ROW |113849 |1162 |29164 |
+ROW |113850 |1162 |29165 |
+ROW |113851 |1162 |29166 |
+ROW |113852 |1162 |29167 |
+ROW |113853 |1162 |29168 |
+ROW |113854 |1162 |29169 |
+ROW |113855 |1162 |29170 |
+ROW |113856 |1162 |29171 |
+ROW |113857 |1162 |29172 |
+ROW |113858 |1162 |29173 |
+ROW |113859 |1162 |29174 |
+ROW |113860 |1162 |29175 |
+ROW |113861 |1162 |29176 |
+ROW |113862 |1164 |29177 |
+ROW |113863 |1164 |29178 |
+ROW |113864 |1164 |29179 |
+ROW |113865 |1164 |29180 |
+ROW |113866 |1164 |29181 |
+ROW |113867 |1164 |29182 |
+ROW |113868 |1171 |29184 |
+ROW |113869 |1168 |29185 |
+ROW |113870 |1168 |29186 |
+ROW |113871 |1168 |29187 |
+ROW |113872 |1168 |29188 |
+ROW |113873 |1168 |29189 |
+ROW |113874 |1168 |29190 |
+ROW |113875 |1168 |29191 |
+ROW |113876 |1168 |29192 |
+ROW |113877 |1168 |29193 |
+ROW |113878 |1170 |29194 |
+ROW |113879 |1169 |29195 |
+ROW |113880 |1169 |29196 |
+ROW |113881 |1169 |29197 |
+ROW |113882 |1142 |29198 |
+ROW |113883 |1144 |31270 |
+ROW |113884 |1152 |29199 |
+ROW |113885 |1154 |31271 |
+ROW |113886 |1162 |29200 |
+ROW |113887 |1164 |31272 |
+ROW |113888 |1146 |31278 |
+ROW |113889 |1156 |31281 |
+ROW |113890 |1166 |31284 |
+ROW |113891 |1146 |31287 |
+ROW |113892 |1146 |31290 |
+ROW |113893 |1156 |31293 |
+ROW |113894 |1156 |31296 |
+ROW |113895 |1166 |31299 |
+ROW |113896 |1166 |31302 |
+ROW |113897 |1173 |29273 |
+ROW |113898 |1173 |29274 |
+ROW |113899 |1173 |29275 |
+ROW |113900 |1173 |29276 |
+ROW |113901 |1173 |29277 |
+ROW |113902 |1173 |29278 |
+ROW |113903 |1173 |29279 |
+ROW |113904 |1173 |29280 |
+ROW |113905 |1173 |29281 |
+ROW |113906 |1173 |29282 |
+ROW |113907 |1173 |29283 |
+ROW |113908 |1173 |29284 |
+ROW |113909 |1173 |29285 |
+ROW |113910 |1173 |29286 |
+ROW |113911 |1173 |29287 |
+ROW |113912 |1173 |29288 |
+ROW |113913 |1175 |29289 |
+ROW |113914 |1175 |29290 |
+ROW |113915 |1175 |29291 |
+ROW |113916 |1175 |29292 |
+ROW |113917 |1175 |29293 |
+ROW |113918 |1175 |29294 |
+ROW |113919 |1182 |29296 |
+ROW |113920 |1179 |29297 |
+ROW |113921 |1179 |29298 |
+ROW |113922 |1179 |29299 |
+ROW |113923 |1179 |29300 |
+ROW |113924 |1179 |29301 |
+ROW |113925 |1179 |29302 |
+ROW |113926 |1179 |29303 |
+ROW |113927 |1179 |29304 |
+ROW |113928 |1179 |29305 |
+ROW |113929 |1181 |29306 |
+ROW |113930 |1180 |29307 |
+ROW |113931 |1180 |29308 |
+ROW |113932 |1180 |29309 |
+ROW |113933 |1183 |29310 |
+ROW |113934 |1183 |29311 |
+ROW |113935 |1183 |29312 |
+ROW |113936 |1183 |29313 |
+ROW |113937 |1183 |29314 |
+ROW |113938 |1183 |29315 |
+ROW |113939 |1183 |29316 |
+ROW |113940 |1183 |29317 |
+ROW |113941 |1183 |29318 |
+ROW |113942 |1183 |29319 |
+ROW |113943 |1183 |29320 |
+ROW |113944 |1183 |29321 |
+ROW |113945 |1183 |29322 |
+ROW |113946 |1183 |29323 |
+ROW |113947 |1183 |29324 |
+ROW |113948 |1183 |29325 |
+ROW |113949 |1185 |29326 |
+ROW |113950 |1185 |29327 |
+ROW |113951 |1185 |29328 |
+ROW |113952 |1185 |29329 |
+ROW |113953 |1185 |29330 |
+ROW |113954 |1185 |29331 |
+ROW |113955 |1192 |29333 |
+ROW |113956 |1189 |29334 |
+ROW |113957 |1189 |29335 |
+ROW |113958 |1189 |29336 |
+ROW |113959 |1189 |29337 |
+ROW |113960 |1189 |29338 |
+ROW |113961 |1189 |29339 |
+ROW |113962 |1189 |29340 |
+ROW |113963 |1189 |29341 |
+ROW |113964 |1189 |29342 |
+ROW |113965 |1191 |29343 |
+ROW |113966 |1190 |29344 |
+ROW |113967 |1190 |29345 |
+ROW |113968 |1190 |29346 |
+ROW |113969 |1173 |29347 |
+ROW |113970 |1175 |31303 |
+ROW |113971 |1183 |29348 |
+ROW |113972 |1185 |31304 |
+ROW |113973 |1177 |31309 |
+ROW |113974 |1187 |31312 |
+ROW |113975 |1177 |31315 |
+ROW |113976 |1177 |31318 |
+ROW |113977 |1187 |31321 |
+ROW |113978 |1187 |31324 |
+ROW |113979 |1201 |29395 |
+ROW |113980 |1196 |29396 |
+ROW |113981 |1196 |29397 |
+ROW |113982 |1194 |29398 |
+ROW |113983 |1193 |29399 |
+ROW |113984 |1196 |29400 |
+ROW |113985 |1196 |29401 |
+ROW |113986 |1196 |29402 |
+ROW |113987 |1196 |29403 |
+ROW |113988 |1194 |29404 |
+ROW |113989 |1193 |29405 |
+ROW |113990 |1193 |29406 |
+ROW |113991 |1193 |29407 |
+ROW |113992 |1193 |29408 |
+ROW |113993 |1193 |29409 |
+ROW |113994 |1193 |29410 |
+ROW |113995 |1193 |29411 |
+ROW |113996 |1193 |29412 |
+ROW |113997 |1193 |29413 |
+ROW |113998 |1194 |29414 |
+ROW |113999 |1197 |29415 |
+ROW |114000 |1193 |29416 |
+ROW |114001 |1193 |29417 |
+ROW |114002 |1193 |29418 |
+ROW |114003 |1193 |29419 |
+ROW |114004 |1193 |29420 |
+ROW |114005 |1199 |29421 |
+ROW |114006 |1195 |29422 |
+ROW |114007 |1194 |29423 |
+ROW |114008 |1194 |29424 |
+ROW |114009 |1194 |29425 |
+ROW |114010 |1193 |29426 |
+ROW |114011 |1193 |29427 |
+ROW |114012 |1195 |29428 |
+ROW |114013 |1201 |29450 |
+ROW |114014 |1201 |29451 |
+ROW |114015 |1128 |28978 |
+ROW |114016 |1128 |28979 |
+ROW |114017 |1128 |28980 |
+ROW |114018 |1128 |28981 |
+ROW |114019 |1128 |28982 |
+ROW |114020 |1128 |28983 |
+ROW |114021 |1128 |28984 |
+ROW |114022 |1128 |28985 |
+ROW |114023 |1128 |28986 |
+ROW |114024 |1130 |28987 |
+ROW |114025 |1130 |28988 |
+ROW |114026 |1130 |28989 |
+ROW |114027 |1130 |28990 |
+ROW |114028 |1130 |28991 |
+ROW |114029 |1130 |28992 |
+ROW |114030 |1132 |28993 |
+ROW |114031 |1132 |28994 |
+ROW |114032 |1132 |28995 |
+ROW |114033 |1132 |28996 |
+ROW |114034 |1132 |28997 |
+ROW |114035 |1132 |28998 |
+ROW |114036 |1132 |28999 |
+ROW |114037 |1132 |29000 |
+ROW |114038 |1132 |29001 |
+ROW |114039 |1134 |29002 |
+ROW |114040 |1134 |29003 |
+ROW |114041 |1134 |29004 |
+ROW |114042 |1134 |29005 |
+ROW |114043 |1134 |29006 |
+ROW |114044 |1134 |29007 |
+ROW |114045 |1130 |29017 |
+ROW |114046 |1130 |29018 |
+ROW |114047 |1130 |29019 |
+ROW |114048 |1130 |29020 |
+ROW |114049 |1130 |29021 |
+ROW |114050 |1130 |29022 |
+ROW |114051 |1130 |29023 |
+ROW |114052 |1130 |29024 |
+ROW |114053 |1130 |29025 |
+ROW |114054 |1130 |29026 |
+ROW |114055 |1134 |29034 |
+ROW |114056 |1134 |29035 |
+ROW |114057 |1134 |29036 |
+ROW |114058 |1134 |29037 |
+ROW |114059 |1134 |29038 |
+ROW |114060 |1134 |29039 |
+ROW |114061 |1134 |29040 |
+ROW |114062 |1134 |29041 |
+ROW |114063 |1134 |29042 |
+ROW |114064 |1134 |29043 |
+ROW |114065 |1130 |29048 |
+ROW |114066 |1134 |29049 |
+ROW |114067 |1202 |29454 |
+ROW |114068 |1202 |29455 |
+ROW |114069 |1202 |29456 |
+ROW |114070 |1202 |29457 |
+ROW |114071 |1202 |29458 |
+ROW |114072 |1202 |29459 |
+ROW |114073 |1203 |29460 |
+ROW |114074 |1203 |29461 |
+ROW |114075 |1203 |29462 |
+ROW |114076 |1203 |29463 |
+ROW |114077 |1203 |29466 |
+ROW |114078 |1203 |29467 |
+ROW |114079 |1203 |29468 |
+ROW |114080 |1203 |29469 |
+ROW |114081 |1203 |29470 |
+ROW |114082 |1209 |29472 |
+ROW |114083 |1207 |29473 |
+ROW |114084 |1207 |29474 |
+ROW |114085 |1207 |29475 |
+ROW |114086 |1207 |29476 |
+ROW |114087 |1207 |29477 |
+ROW |114088 |1208 |29478 |
+ROW |114089 |1202 |30137 |
+ROW |114090 |1202 |31325 |
+ROW |114091 |1203 |31326 |
+ROW |114092 |1203 |31327 |
+ROW |114093 |1211 |31455 |
+ROW |114094 |1212 |29480 |
+ROW |114095 |1212 |29481 |
+ROW |114096 |1212 |29482 |
+ROW |114097 |1212 |29483 |
+ROW |114098 |1212 |29484 |
+ROW |114099 |1212 |29485 |
+ROW |114100 |1213 |29486 |
+ROW |114101 |1213 |29487 |
+ROW |114102 |1213 |29488 |
+ROW |114103 |1213 |29489 |
+ROW |114104 |1213 |29492 |
+ROW |114105 |1213 |29493 |
+ROW |114106 |1213 |29494 |
+ROW |114107 |1213 |29495 |
+ROW |114108 |1213 |29496 |
+ROW |114109 |1219 |29498 |
+ROW |114110 |1217 |29499 |
+ROW |114111 |1217 |29500 |
+ROW |114112 |1217 |29501 |
+ROW |114113 |1217 |29502 |
+ROW |114114 |1217 |29503 |
+ROW |114115 |1218 |29504 |
+ROW |114116 |1212 |30138 |
+ROW |114117 |1212 |31328 |
+ROW |114118 |1213 |31329 |
+ROW |114119 |1213 |31330 |
+ROW |114120 |1216 |31456 |
+ROW |114121 |1203 |31331 |
+ROW |114122 |1213 |31332 |
+ROW |114123 |1310 |30425 |
+ROW |114124 |1311 |30426 |
+ROW |114125 |1243 |29561 |
+ROW |114126 |1243 |29562 |
+ROW |114127 |1243 |29563 |
+ROW |114128 |1243 |29564 |
+ROW |114129 |1243 |29565 |
+ROW |114130 |1243 |29566 |
+ROW |114131 |1244 |29567 |
+ROW |114132 |1244 |29568 |
+ROW |114133 |1244 |29569 |
+ROW |114134 |1244 |29570 |
+ROW |114135 |1244 |29573 |
+ROW |114136 |1244 |29574 |
+ROW |114137 |1244 |29575 |
+ROW |114138 |1244 |29576 |
+ROW |114139 |1244 |29577 |
+ROW |114140 |1250 |29579 |
+ROW |114141 |1248 |29580 |
+ROW |114142 |1248 |29581 |
+ROW |114143 |1248 |29582 |
+ROW |114144 |1248 |29583 |
+ROW |114145 |1248 |29584 |
+ROW |114146 |1249 |29585 |
+ROW |114147 |1243 |30139 |
+ROW |114148 |1243 |31343 |
+ROW |114149 |1244 |31344 |
+ROW |114150 |1244 |31345 |
+ROW |114151 |1252 |31477 |
+ROW |114152 |1253 |29587 |
+ROW |114153 |1253 |29588 |
+ROW |114154 |1253 |29589 |
+ROW |114155 |1253 |29590 |
+ROW |114156 |1253 |29591 |
+ROW |114157 |1253 |29592 |
+ROW |114158 |1254 |29593 |
+ROW |114159 |1254 |29594 |
+ROW |114160 |1254 |29595 |
+ROW |114161 |1254 |29596 |
+ROW |114162 |1254 |29599 |
+ROW |114163 |1254 |29600 |
+ROW |114164 |1254 |29601 |
+ROW |114165 |1254 |29602 |
+ROW |114166 |1254 |29603 |
+ROW |114167 |1242 |29605 |
+ROW |114168 |1258 |29606 |
+ROW |114169 |1258 |29607 |
+ROW |114170 |1258 |29608 |
+ROW |114171 |1258 |29609 |
+ROW |114172 |1258 |29610 |
+ROW |114173 |1259 |29611 |
+ROW |114174 |1253 |30140 |
+ROW |114175 |1253 |31346 |
+ROW |114176 |1254 |31347 |
+ROW |114177 |1254 |31348 |
+ROW |114178 |1257 |31478 |
+ROW |114179 |1244 |31349 |
+ROW |114180 |1254 |31350 |
+ROW |114181 |1312 |30429 |
+ROW |114182 |1313 |30430 |
+ROW |114183 |1493 |33568 |
+ROW |114184 |1493 |33569 |
+ROW |114185 |1493 |33570 |
+ROW |114186 |1492 |33571 |
+ROW |114187 |1492 |33572 |
+ROW |114188 |1492 |33574 |
+ROW |114189 |1492 |33575 |
+ROW |114190 |1492 |33576 |
+ROW |114191 |1492 |33577 |
+ROW |114192 |1492 |33578 |
+ROW |114193 |1493 |33579 |
+ROW |114194 |1493 |33580 |
+ROW |114195 |1493 |33581 |
+ROW |114196 |1493 |33582 |
+ROW |114197 |1493 |33583 |
+ROW |114198 |1493 |33584 |
+ROW |114199 |1493 |33585 |
+ROW |114200 |1493 |33589 |
+ROW |114201 |1493 |33590 |
+ROW |114202 |1493 |33591 |
+ROW |114203 |1493 |33592 |
+ROW |114204 |1493 |33593 |
+ROW |114205 |1493 |33594 |
+ROW |114206 |1493 |33595 |
+ROW |114207 |1492 |34083 |
+ROW |114208 |1493 |33602 |
+ROW |114209 |1493 |33603 |
+ROW |114210 |1493 |33604 |
+ROW |114211 |1493 |33605 |
+ROW |114212 |1493 |33606 |
+ROW |114213 |1492 |33607 |
+ROW |114214 |1493 |33608 |
+ROW |114215 |1493 |33609 |
+ROW |114216 |1493 |33610 |
+ROW |114217 |1493 |33611 |
+ROW |114218 |1493 |33612 |
+ROW |114219 |1493 |33613 |
+ROW |114220 |1493 |33614 |
+ROW |114221 |1493 |33615 |
+ROW |114222 |1493 |33616 |
+ROW |114223 |1493 |33617 |
+ROW |114224 |1493 |33618 |
+ROW |114225 |1495 |33619 |
+ROW |114226 |1495 |33620 |
+ROW |114227 |1495 |33621 |
+ROW |114228 |1494 |33622 |
+ROW |114229 |1494 |33623 |
+ROW |114230 |1494 |33625 |
+ROW |114231 |1494 |33626 |
+ROW |114232 |1494 |33627 |
+ROW |114233 |1494 |33628 |
+ROW |114234 |1494 |33629 |
+ROW |114235 |1495 |33630 |
+ROW |114236 |1495 |33631 |
+ROW |114237 |1495 |33632 |
+ROW |114238 |1495 |33633 |
+ROW |114239 |1495 |33634 |
+ROW |114240 |1495 |33635 |
+ROW |114241 |1495 |33636 |
+ROW |114242 |1495 |33640 |
+ROW |114243 |1495 |33641 |
+ROW |114244 |1495 |33642 |
+ROW |114245 |1495 |33643 |
+ROW |114246 |1495 |33644 |
+ROW |114247 |1495 |33645 |
+ROW |114248 |1495 |33646 |
+ROW |114249 |1494 |34084 |
+ROW |114250 |1495 |33653 |
+ROW |114251 |1495 |33654 |
+ROW |114252 |1495 |33655 |
+ROW |114253 |1495 |33656 |
+ROW |114254 |1495 |33657 |
+ROW |114255 |1494 |33658 |
+ROW |114256 |1495 |33659 |
+ROW |114257 |1495 |33660 |
+ROW |114258 |1495 |33661 |
+ROW |114259 |1495 |33662 |
+ROW |114260 |1495 |33663 |
+ROW |114261 |1495 |33664 |
+ROW |114262 |1495 |33665 |
+ROW |114263 |1495 |33666 |
+ROW |114264 |1495 |33667 |
+ROW |114265 |1495 |33668 |
+ROW |114266 |1495 |33669 |
+ROW |114267 |1497 |33670 |
+ROW |114268 |1497 |33671 |
+ROW |114269 |1497 |33672 |
+ROW |114270 |1496 |33673 |
+ROW |114271 |1496 |33674 |
+ROW |114272 |1496 |33676 |
+ROW |114273 |1496 |33677 |
+ROW |114274 |1496 |33678 |
+ROW |114275 |1496 |33679 |
+ROW |114276 |1496 |33680 |
+ROW |114277 |1497 |33681 |
+ROW |114278 |1497 |33682 |
+ROW |114279 |1497 |33683 |
+ROW |114280 |1497 |33684 |
+ROW |114281 |1497 |33685 |
+ROW |114282 |1497 |33686 |
+ROW |114283 |1497 |33687 |
+ROW |114284 |1497 |33691 |
+ROW |114285 |1497 |33692 |
+ROW |114286 |1497 |33693 |
+ROW |114287 |1497 |33694 |
+ROW |114288 |1497 |33695 |
+ROW |114289 |1497 |33696 |
+ROW |114290 |1497 |33697 |
+ROW |114291 |1496 |34085 |
+ROW |114292 |1497 |33704 |
+ROW |114293 |1497 |33705 |
+ROW |114294 |1497 |33706 |
+ROW |114295 |1497 |33707 |
+ROW |114296 |1497 |33708 |
+ROW |114297 |1496 |33709 |
+ROW |114298 |1497 |33710 |
+ROW |114299 |1497 |33711 |
+ROW |114300 |1497 |33712 |
+ROW |114301 |1497 |33713 |
+ROW |114302 |1497 |33714 |
+ROW |114303 |1497 |33715 |
+ROW |114304 |1497 |33716 |
+ROW |114305 |1497 |33717 |
+ROW |114306 |1497 |33718 |
+ROW |114307 |1497 |33719 |
+ROW |114308 |1497 |33720 |
+ROW |114309 |1499 |33721 |
+ROW |114310 |1499 |33722 |
+ROW |114311 |1499 |33723 |
+ROW |114312 |1498 |33724 |
+ROW |114313 |1498 |33725 |
+ROW |114314 |1498 |33727 |
+ROW |114315 |1498 |33728 |
+ROW |114316 |1498 |33729 |
+ROW |114317 |1498 |33730 |
+ROW |114318 |1498 |33731 |
+ROW |114319 |1499 |33732 |
+ROW |114320 |1499 |33733 |
+ROW |114321 |1499 |33734 |
+ROW |114322 |1499 |33735 |
+ROW |114323 |1499 |33736 |
+ROW |114324 |1499 |33737 |
+ROW |114325 |1499 |33738 |
+ROW |114326 |1499 |33742 |
+ROW |114327 |1499 |33743 |
+ROW |114328 |1499 |33744 |
+ROW |114329 |1499 |33745 |
+ROW |114330 |1499 |33746 |
+ROW |114331 |1499 |33747 |
+ROW |114332 |1499 |33748 |
+ROW |114333 |1498 |34086 |
+ROW |114334 |1499 |33755 |
+ROW |114335 |1499 |33756 |
+ROW |114336 |1499 |33757 |
+ROW |114337 |1499 |33758 |
+ROW |114338 |1499 |33759 |
+ROW |114339 |1498 |33760 |
+ROW |114340 |1499 |33761 |
+ROW |114341 |1499 |33762 |
+ROW |114342 |1499 |33763 |
+ROW |114343 |1499 |33764 |
+ROW |114344 |1499 |33765 |
+ROW |114345 |1499 |33766 |
+ROW |114346 |1499 |33767 |
+ROW |114347 |1499 |33768 |
+ROW |114348 |1499 |33769 |
+ROW |114349 |1499 |33770 |
+ROW |114350 |1499 |33771 |
+ROW |114351 |1501 |33772 |
+ROW |114352 |1501 |33773 |
+ROW |114353 |1501 |33774 |
+ROW |114354 |1500 |33775 |
+ROW |114355 |1500 |33776 |
+ROW |114356 |1500 |33778 |
+ROW |114357 |1500 |33779 |
+ROW |114358 |1500 |33780 |
+ROW |114359 |1500 |33781 |
+ROW |114360 |1500 |33782 |
+ROW |114361 |1501 |33783 |
+ROW |114362 |1501 |33784 |
+ROW |114363 |1501 |33785 |
+ROW |114364 |1501 |33786 |
+ROW |114365 |1501 |33787 |
+ROW |114366 |1501 |33788 |
+ROW |114367 |1501 |33789 |
+ROW |114368 |1501 |33793 |
+ROW |114369 |1501 |33794 |
+ROW |114370 |1501 |33795 |
+ROW |114371 |1501 |33796 |
+ROW |114372 |1501 |33797 |
+ROW |114373 |1501 |33798 |
+ROW |114374 |1501 |33799 |
+ROW |114375 |1500 |34087 |
+ROW |114376 |1501 |33806 |
+ROW |114377 |1501 |33807 |
+ROW |114378 |1501 |33808 |
+ROW |114379 |1501 |33809 |
+ROW |114380 |1501 |33810 |
+ROW |114381 |1500 |33811 |
+ROW |114382 |1501 |33812 |
+ROW |114383 |1501 |33813 |
+ROW |114384 |1501 |33814 |
+ROW |114385 |1501 |33815 |
+ROW |114386 |1501 |33816 |
+ROW |114387 |1501 |33817 |
+ROW |114388 |1501 |33818 |
+ROW |114389 |1501 |33819 |
+ROW |114390 |1501 |33820 |
+ROW |114391 |1501 |33821 |
+ROW |114392 |1501 |33822 |
+ROW |114393 |1503 |33823 |
+ROW |114394 |1503 |33824 |
+ROW |114395 |1503 |33825 |
+ROW |114396 |1502 |33826 |
+ROW |114397 |1502 |33827 |
+ROW |114398 |1502 |33829 |
+ROW |114399 |1502 |33830 |
+ROW |114400 |1502 |33831 |
+ROW |114401 |1502 |33832 |
+ROW |114402 |1502 |33833 |
+ROW |114403 |1503 |33834 |
+ROW |114404 |1503 |33835 |
+ROW |114405 |1503 |33836 |
+ROW |114406 |1503 |33837 |
+ROW |114407 |1503 |33838 |
+ROW |114408 |1503 |33839 |
+ROW |114409 |1503 |33840 |
+ROW |114410 |1503 |33844 |
+ROW |114411 |1503 |33845 |
+ROW |114412 |1503 |33846 |
+ROW |114413 |1503 |33847 |
+ROW |114414 |1503 |33848 |
+ROW |114415 |1503 |33849 |
+ROW |114416 |1503 |33850 |
+ROW |114417 |1502 |34088 |
+ROW |114418 |1503 |33857 |
+ROW |114419 |1503 |33858 |
+ROW |114420 |1503 |33859 |
+ROW |114421 |1503 |33860 |
+ROW |114422 |1503 |33861 |
+ROW |114423 |1502 |33862 |
+ROW |114424 |1503 |33863 |
+ROW |114425 |1503 |33864 |
+ROW |114426 |1503 |33865 |
+ROW |114427 |1503 |33866 |
+ROW |114428 |1503 |33867 |
+ROW |114429 |1503 |33868 |
+ROW |114430 |1503 |33869 |
+ROW |114431 |1503 |33870 |
+ROW |114432 |1503 |33871 |
+ROW |114433 |1503 |33872 |
+ROW |114434 |1503 |33873 |
+ROW |114435 |1505 |33874 |
+ROW |114436 |1505 |33875 |
+ROW |114437 |1505 |33876 |
+ROW |114438 |1504 |33877 |
+ROW |114439 |1504 |33878 |
+ROW |114440 |1504 |33880 |
+ROW |114441 |1504 |33881 |
+ROW |114442 |1504 |33882 |
+ROW |114443 |1504 |33883 |
+ROW |114444 |1504 |33884 |
+ROW |114445 |1505 |33885 |
+ROW |114446 |1505 |33886 |
+ROW |114447 |1505 |33887 |
+ROW |114448 |1505 |33888 |
+ROW |114449 |1505 |33889 |
+ROW |114450 |1505 |33890 |
+ROW |114451 |1505 |33891 |
+ROW |114452 |1505 |33895 |
+ROW |114453 |1505 |33896 |
+ROW |114454 |1505 |33897 |
+ROW |114455 |1505 |33898 |
+ROW |114456 |1505 |33899 |
+ROW |114457 |1505 |33900 |
+ROW |114458 |1505 |33901 |
+ROW |114459 |1504 |34089 |
+ROW |114460 |1505 |33908 |
+ROW |114461 |1505 |33909 |
+ROW |114462 |1505 |33910 |
+ROW |114463 |1505 |33911 |
+ROW |114464 |1505 |33912 |
+ROW |114465 |1504 |33913 |
+ROW |114466 |1505 |33914 |
+ROW |114467 |1505 |33915 |
+ROW |114468 |1505 |33916 |
+ROW |114469 |1505 |33917 |
+ROW |114470 |1505 |33918 |
+ROW |114471 |1505 |33919 |
+ROW |114472 |1505 |33920 |
+ROW |114473 |1505 |33921 |
+ROW |114474 |1505 |33922 |
+ROW |114475 |1505 |33923 |
+ROW |114476 |1505 |33924 |
+ROW |114477 |1489 |33433 |
+ROW |114478 |1489 |33434 |
+ROW |114479 |1488 |33435 |
+ROW |114480 |1488 |33436 |
+ROW |114481 |1488 |33438 |
+ROW |114482 |1488 |33439 |
+ROW |114483 |1488 |33440 |
+ROW |114484 |1488 |33441 |
+ROW |114485 |1488 |33442 |
+ROW |114486 |1489 |33443 |
+ROW |114487 |1489 |33444 |
+ROW |114488 |1489 |33445 |
+ROW |114489 |1489 |33446 |
+ROW |114490 |1489 |33447 |
+ROW |114491 |1489 |33448 |
+ROW |114492 |1489 |33449 |
+ROW |114493 |1489 |33453 |
+ROW |114494 |1489 |33454 |
+ROW |114495 |1489 |33455 |
+ROW |114496 |1489 |33456 |
+ROW |114497 |1489 |33457 |
+ROW |114498 |1489 |33458 |
+ROW |114499 |1489 |33459 |
+ROW |114500 |1489 |33925 |
+ROW |114501 |1488 |34090 |
+ROW |114502 |1489 |33465 |
+ROW |114503 |1489 |33466 |
+ROW |114504 |1489 |33467 |
+ROW |114505 |1489 |33468 |
+ROW |114506 |1489 |33469 |
+ROW |114507 |1488 |33470 |
+ROW |114508 |1489 |33471 |
+ROW |114509 |1489 |33472 |
+ROW |114510 |1489 |33473 |
+ROW |114511 |1489 |33474 |
+ROW |114512 |1489 |33475 |
+ROW |114513 |1489 |33476 |
+ROW |114514 |1489 |33477 |
+ROW |114515 |1489 |33478 |
+ROW |114516 |1489 |33927 |
+ROW |114517 |1489 |33928 |
+ROW |114518 |1489 |33929 |
+ROW |114519 |1507 |33930 |
+ROW |114520 |1507 |33931 |
+ROW |114521 |1507 |33932 |
+ROW |114522 |1506 |33933 |
+ROW |114523 |1506 |33934 |
+ROW |114524 |1506 |33936 |
+ROW |114525 |1506 |33937 |
+ROW |114526 |1506 |33938 |
+ROW |114527 |1506 |33939 |
+ROW |114528 |1506 |33940 |
+ROW |114529 |1507 |33941 |
+ROW |114530 |1507 |33942 |
+ROW |114531 |1507 |33943 |
+ROW |114532 |1507 |33944 |
+ROW |114533 |1507 |33945 |
+ROW |114534 |1507 |33946 |
+ROW |114535 |1507 |33947 |
+ROW |114536 |1507 |33951 |
+ROW |114537 |1507 |33952 |
+ROW |114538 |1507 |33953 |
+ROW |114539 |1507 |33954 |
+ROW |114540 |1507 |33955 |
+ROW |114541 |1507 |33956 |
+ROW |114542 |1507 |33957 |
+ROW |114543 |1506 |34091 |
+ROW |114544 |1507 |33964 |
+ROW |114545 |1507 |33965 |
+ROW |114546 |1507 |33966 |
+ROW |114547 |1507 |33967 |
+ROW |114548 |1507 |33968 |
+ROW |114549 |1506 |33969 |
+ROW |114550 |1507 |33970 |
+ROW |114551 |1507 |33971 |
+ROW |114552 |1507 |33972 |
+ROW |114553 |1507 |33973 |
+ROW |114554 |1507 |33974 |
+ROW |114555 |1507 |33975 |
+ROW |114556 |1507 |33976 |
+ROW |114557 |1507 |33977 |
+ROW |114558 |1507 |33978 |
+ROW |114559 |1507 |33979 |
+ROW |114560 |1507 |33980 |
+ROW |114561 |1509 |33981 |
+ROW |114562 |1509 |33982 |
+ROW |114563 |1509 |33983 |
+ROW |114564 |1508 |33984 |
+ROW |114565 |1508 |33985 |
+ROW |114566 |1508 |33987 |
+ROW |114567 |1508 |33988 |
+ROW |114568 |1508 |33989 |
+ROW |114569 |1508 |33990 |
+ROW |114570 |1508 |33991 |
+ROW |114571 |1509 |33992 |
+ROW |114572 |1509 |33993 |
+ROW |114573 |1509 |33994 |
+ROW |114574 |1509 |33995 |
+ROW |114575 |1509 |33996 |
+ROW |114576 |1509 |33997 |
+ROW |114577 |1509 |33998 |
+ROW |114578 |1509 |34002 |
+ROW |114579 |1509 |34003 |
+ROW |114580 |1509 |34004 |
+ROW |114581 |1509 |34005 |
+ROW |114582 |1509 |34006 |
+ROW |114583 |1509 |34007 |
+ROW |114584 |1509 |34008 |
+ROW |114585 |1508 |34092 |
+ROW |114586 |1509 |34015 |
+ROW |114587 |1509 |34016 |
+ROW |114588 |1509 |34017 |
+ROW |114589 |1509 |34018 |
+ROW |114590 |1509 |34019 |
+ROW |114591 |1508 |34020 |
+ROW |114592 |1509 |34021 |
+ROW |114593 |1509 |34022 |
+ROW |114594 |1509 |34023 |
+ROW |114595 |1509 |34024 |
+ROW |114596 |1509 |34025 |
+ROW |114597 |1509 |34026 |
+ROW |114598 |1509 |34027 |
+ROW |114599 |1509 |34028 |
+ROW |114600 |1509 |34029 |
+ROW |114601 |1509 |34030 |
+ROW |114602 |1509 |34031 |
+ROW |114603 |1511 |34032 |
+ROW |114604 |1511 |34033 |
+ROW |114605 |1511 |34034 |
+ROW |114606 |1510 |34035 |
+ROW |114607 |1510 |34036 |
+ROW |114608 |1510 |34038 |
+ROW |114609 |1510 |34039 |
+ROW |114610 |1510 |34040 |
+ROW |114611 |1510 |34041 |
+ROW |114612 |1510 |34042 |
+ROW |114613 |1511 |34043 |
+ROW |114614 |1511 |34044 |
+ROW |114615 |1511 |34045 |
+ROW |114616 |1511 |34046 |
+ROW |114617 |1511 |34047 |
+ROW |114618 |1511 |34048 |
+ROW |114619 |1511 |34049 |
+ROW |114620 |1511 |34053 |
+ROW |114621 |1511 |34054 |
+ROW |114622 |1511 |34055 |
+ROW |114623 |1511 |34056 |
+ROW |114624 |1511 |34057 |
+ROW |114625 |1511 |34058 |
+ROW |114626 |1511 |34059 |
+ROW |114627 |1510 |34093 |
+ROW |114628 |1511 |34066 |
+ROW |114629 |1511 |34067 |
+ROW |114630 |1511 |34068 |
+ROW |114631 |1511 |34069 |
+ROW |114632 |1511 |34070 |
+ROW |114633 |1510 |34071 |
+ROW |114634 |1511 |34072 |
+ROW |114635 |1511 |34073 |
+ROW |114636 |1511 |34074 |
+ROW |114637 |1511 |34075 |
+ROW |114638 |1511 |34076 |
+ROW |114639 |1511 |34077 |
+ROW |114640 |1511 |34078 |
+ROW |114641 |1511 |34079 |
+ROW |114642 |1511 |34080 |
+ROW |114643 |1511 |34081 |
+ROW |114644 |1511 |34082 |
+ROW |114645 |1424 |32776 |
+ROW |114646 |1424 |32777 |
+ROW |114647 |1424 |32778 |
+ROW |114648 |1424 |32779 |
+ROW |114649 |1491 |33479 |
+ROW |114650 |1490 |33480 |
+ROW |114651 |1491 |33481 |
+ROW |114652 |1491 |33482 |
+ROW |114653 |1491 |33483 |
+ROW |114654 |1491 |33484 |
+ROW |114655 |1491 |33485 |
+ROW |114656 |1491 |33486 |
+ROW |114657 |1491 |33487 |
+ROW |114658 |1490 |33488 |
+ROW |114659 |1490 |33489 |
+ROW |114660 |1491 |33490 |
+ROW |114661 |1490 |33491 |
+ROW |114662 |1491 |33492 |
+ROW |114663 |1490 |33493 |
+ROW |114664 |1490 |33494 |
+ROW |114665 |1490 |33495 |
+ROW |114666 |1491 |33496 |
+ROW |114667 |1491 |33497 |
+ROW |114668 |1491 |33498 |
+ROW |114669 |1491 |33499 |
+ROW |114670 |1490 |33500 |
+ROW |114671 |1490 |33501 |
+ROW |114672 |1491 |33502 |
+ROW |114673 |1491 |33503 |
+ROW |114674 |1490 |33504 |
+ROW |114675 |1490 |33505 |
+ROW |114676 |1490 |33506 |
+ROW |114677 |1490 |33507 |
+ROW |114678 |1490 |33508 |
+ROW |114679 |1490 |33509 |
+ROW |114680 |1491 |33510 |
+ROW |114681 |1491 |33511 |
+ROW |114682 |1490 |33512 |
+ROW |114683 |1491 |33545 |
+ROW |114684 |1491 |33551 |
+ROW |114685 |1491 |33552 |
+ROW |114686 |1491 |33553 |
+ROW |114687 |1491 |33559 |
+ROW |114688 |1491 |33560 |
+ROW |114689 |1491 |33561 |
+ROW |114690 |1491 |33562 |
+ROW |114691 |1416 |32612 |
+ROW |114692 |1416 |32613 |
+ROW |114693 |1416 |32614 |
+ROW |114694 |1416 |32615 |
+ROW |114695 |1325 |30685 |
+ROW |114696 |1277 |30066 |
+ROW |114697 |1277 |30067 |
+ROW |114698 |1277 |30068 |
+ROW |114699 |1277 |30069 |
+ROW |114700 |1277 |30070 |
+ROW |114701 |1276 |30071 |
+ROW |114702 |1271 |30072 |
+ROW |114703 |1274 |30073 |
+ROW |114704 |1274 |30074 |
+ROW |114705 |1273 |30075 |
+ROW |114706 |1275 |30076 |
+ROW |114707 |1275 |30077 |
+ROW |114708 |1275 |30078 |
+ROW |114709 |1275 |30079 |
+ROW |114710 |1278 |30080 |
+ROW |114711 |1278 |30081 |
+ROW |114712 |1278 |30082 |
+ROW |114713 |1272 |30083 |
+ROW |114714 |1272 |30084 |
+ROW |114715 |1272 |30085 |
+ROW |114716 |1070 |28341 |
+ROW |114717 |1073 |28342 |
+ROW |114718 |1073 |28344 |
+ROW |114719 |1073 |28345 |
+ROW |114720 |1073 |30141 |
+ROW |114721 |1076 |28354 |
+ROW |114722 |1076 |28355 |
+ROW |114723 |1076 |28356 |
+ROW |114724 |1076 |28357 |
+ROW |114725 |1075 |28358 |
+ROW |114726 |1072 |28359 |
+ROW |114727 |1072 |28360 |
+ROW |114728 |1074 |28361 |
+ROW |114729 |1074 |28362 |
+ROW |114730 |1074 |28363 |
+ROW |114731 |1074 |28364 |
+ROW |114732 |1074 |28365 |
+ROW |114733 |1074 |28366 |
+ROW |114734 |1074 |28367 |
+ROW |114735 |1077 |28368 |
+ROW |114736 |1077 |28369 |
+ROW |114737 |1077 |28370 |
+ROW |114738 |1077 |28371 |
+ROW |114739 |1077 |28372 |
+ROW |114740 |1077 |28373 |
+ROW |114741 |1071 |28374 |
+ROW |114742 |1071 |28375 |
+ROW |114743 |1071 |28376 |
+ROW |114744 |1085 |28388 |
+ROW |114745 |1082 |28390 |
+ROW |114746 |1082 |28391 |
+ROW |114747 |1079 |29994 |
+ROW |114748 |1085 |28404 |
+ROW |114749 |1085 |28405 |
+ROW |114750 |1085 |28406 |
+ROW |114751 |1085 |28407 |
+ROW |114752 |1085 |28408 |
+ROW |114753 |1085 |28409 |
+ROW |114754 |1084 |28411 |
+ROW |114755 |1081 |28412 |
+ROW |114756 |1080 |28413 |
+ROW |114757 |1080 |28414 |
+ROW |114758 |1080 |28415 |
+ROW |114759 |1080 |28416 |
+ROW |114760 |1083 |28417 |
+ROW |114761 |1083 |28418 |
+ROW |114762 |1083 |28419 |
+ROW |114763 |1083 |28420 |
+ROW |114764 |1083 |28421 |
+ROW |114765 |1083 |28422 |
+ROW |114766 |1086 |28423 |
+ROW |114767 |1086 |28424 |
+ROW |114768 |1086 |28425 |
+ROW |114769 |1085 |32732 |
+ROW |114770 |1085 |32733 |
+ROW |114771 |1085 |32734 |
+ROW |114772 |1085 |32735 |
+ROW |114773 |1085 |32736 |
+ROW |114774 |1085 |32737 |
+ROW |114775 |1085 |32738 |
+ROW |114776 |1085 |32739 |
+ROW |114777 |1085 |32740 |
+ROW |114778 |1095 |28465 |
+ROW |114779 |1097 |28466 |
+ROW |114780 |1097 |28467 |
+ROW |114781 |1100 |28474 |
+ROW |114782 |1100 |28475 |
+ROW |114783 |1100 |28476 |
+ROW |114784 |1099 |28477 |
+ROW |114785 |1096 |28478 |
+ROW |114786 |1096 |28479 |
+ROW |114787 |1098 |28480 |
+ROW |114788 |1098 |28481 |
+ROW |114789 |1104 |28495 |
+ROW |114790 |1103 |28496 |
+ROW |114791 |1355 |31969 |
+ROW |114792 |1355 |31970 |
+ROW |114793 |1356 |31971 |
+ROW |114794 |1355 |31972 |
+ROW |114795 |1355 |31973 |
+ROW |114796 |1355 |31974 |
+ROW |114797 |1355 |31975 |
+ROW |114798 |1355 |31976 |
+ROW |114799 |1355 |31977 |
+ROW |114800 |1355 |31978 |
+ROW |114801 |1355 |31979 |
+ROW |114802 |1355 |31980 |
+ROW |114803 |1355 |31981 |
+ROW |114804 |1355 |31982 |
+ROW |114805 |1355 |31983 |
+ROW |114806 |1355 |31984 |
+ROW |114807 |1355 |31985 |
+ROW |114808 |1355 |31986 |
+ROW |114809 |1355 |31987 |
+ROW |114810 |1355 |31988 |
+ROW |114811 |1355 |31989 |
+ROW |114812 |1355 |32461 |
+ROW |114813 |1355 |32462 |
TABLE |mappings
FIELDS|mappingid|valuemapid|value|newvalue |
@@ -25726,6 +25963,14 @@ ROW |1581 |159 |23 |Active Load
ROW |1582 |159 |24 |Battery Discharge Spotmode |
ROW |1583 |159 |25 |Inverter Standby |
ROW |1584 |159 |26 |Charger Only |
+ROW |1585 |160 |0 |False |
+ROW |1586 |160 |1 |True |
+ROW |1587 |161 |0 |Failed |
+ROW |1588 |161 |1 |Succeeded |
+ROW |1589 |161 |2 |Retry |
+ROW |1590 |161 |3 |Canceled |
+ROW |1591 |161 |4 |Running |
+ROW |1592 |161 |5 |Unknown |
TABLE |sysmaps
FIELDS|sysmapid|name |width|height|backgroundid|label_type|label_location|highlight|expandproblem|markelements|show_unack|grid_size|grid_show|grid_align|label_format|label_type_host|label_type_hostgroup|label_type_trigger|label_type_map|label_type_image|label_string_host|label_string_hostgroup|label_string_trigger|label_string_map|label_string_image|iconmapid|expand_macros|severity_min|userid|private|show_suppressed|
@@ -27975,6 +28220,68 @@ ROW |3398 |34079 |34064 |
ROW |3399 |34080 |34065 |
ROW |3400 |34081 |34065 |
ROW |3401 |34082 |34065 |
+ROW |3402 |34101 |34099 |
+ROW |3403 |34102 |34099 |
+ROW |3404 |34103 |34099 |
+ROW |3405 |34104 |34100 |
+ROW |3406 |34105 |34100 |
+ROW |3407 |34127 |34123 |
+ROW |3408 |34128 |34123 |
+ROW |3409 |34129 |34123 |
+ROW |3410 |34130 |34123 |
+ROW |3411 |34131 |34123 |
+ROW |3412 |34132 |34123 |
+ROW |3413 |34133 |34123 |
+ROW |3414 |34134 |34124 |
+ROW |3415 |34135 |34124 |
+ROW |3416 |34136 |34124 |
+ROW |3417 |34137 |34124 |
+ROW |3418 |34138 |34124 |
+ROW |3419 |34139 |34124 |
+ROW |3420 |34140 |34124 |
+ROW |3421 |34141 |34124 |
+ROW |3422 |34142 |34124 |
+ROW |3423 |34143 |34124 |
+ROW |3424 |34144 |34124 |
+ROW |3425 |34145 |34124 |
+ROW |3426 |34146 |34124 |
+ROW |3427 |34147 |34124 |
+ROW |3428 |34148 |34124 |
+ROW |3429 |34149 |34124 |
+ROW |3430 |34150 |34124 |
+ROW |3431 |34151 |34124 |
+ROW |3432 |34152 |34124 |
+ROW |3433 |34153 |34124 |
+ROW |3434 |34154 |34124 |
+ROW |3435 |34155 |34124 |
+ROW |3436 |34156 |34124 |
+ROW |3437 |34157 |34124 |
+ROW |3438 |34158 |34124 |
+ROW |3439 |34159 |34124 |
+ROW |3440 |34160 |34124 |
+ROW |3441 |34161 |34124 |
+ROW |3442 |34162 |34124 |
+ROW |3443 |34163 |34124 |
+ROW |3444 |34164 |34125 |
+ROW |3445 |34165 |34125 |
+ROW |3446 |34166 |34125 |
+ROW |3447 |34167 |34125 |
+ROW |3448 |34168 |34126 |
+ROW |3449 |34169 |34126 |
+ROW |3450 |34170 |34126 |
+ROW |3451 |34171 |34126 |
+ROW |3452 |34172 |34126 |
+ROW |3453 |34176 |31123 |
+ROW |3454 |34177 |31123 |
+ROW |3455 |34178 |31123 |
+ROW |3456 |34179 |31123 |
+ROW |3457 |34180 |31123 |
+ROW |3458 |34181 |31123 |
+ROW |3459 |34182 |34175 |
+ROW |3460 |34183 |34175 |
+ROW |3461 |34184 |34175 |
+ROW |3462 |34185 |34175 |
+ROW |3463 |34186 |34175 |
TABLE |host_discovery
FIELDS|hostid|parent_hostid|parent_itemid|
@@ -29052,6 +29359,14 @@ ROW |1265 |33903 |9 |{#CARTRIDGE_STATUS} |^$
ROW |1266 |33959 |9 |{#CARTRIDGE_STATUS} |^$ |
ROW |1267 |34010 |9 |{#CARTRIDGE_STATUS} |^$ |
ROW |1268 |34061 |9 |{#CARTRIDGE_STATUS} |^$ |
+ROW |1269 |34099 |8 |{#SERVER} |{$WILDFLY.SERVER.MATCHES} |
+ROW |1270 |34099 |9 |{#SERVER} |{$WILDFLY.SERVER.NOT_MATCHES} |
+ROW |1271 |34100 |8 |{#DEPLOYMENT} |{$WILDFLY.DEPLOYMENT.MATCHES} |
+ROW |1272 |34100 |9 |{#DEPLOYMENT} |{$WILDFLY.DEPLOYMENT.NOT_MATCHES} |
+ROW |1273 |34126 |8 |{#DEPLOYMENT} |{$WILDFLY.DEPLOYMENT.MATCHES} |
+ROW |1274 |34126 |9 |{#DEPLOYMENT} |{$WILDFLY.DEPLOYMENT.NOT_MATCHES} |
+ROW |1275 |34175 |8 |{#JOBNAME} |{$MSSQL.JOB.MATCHES} |
+ROW |1276 |34175 |9 |{#JOBNAME} |{$MSSQL.JOB.NOT_MATCHES} |
TABLE |item_rtdata
FIELDS|itemid|
@@ -29304,6 +29619,13 @@ ROW |237 |33517 |NULL |Node "{#NODENAME}"
ROW |238 |33518 |NULL |Node "{#NODENAME}" Ethernet ports |
ROW |239 |33519 |NULL |Node "{#NODENAME}" FC ports |
ROW |240 |33520 |NULL |SVM "{#SVMNAME}" |
+ROW |241 |34099 |NULL |WildFly domain: Server [{#SERVER}] |
+ROW |242 |34100 |NULL |WildFly deployment [{#DEPLOYMENT}] |
+ROW |243 |34123 |NULL |WildFly datasource [{#JMX_DATA_SOURCE}] |
+ROW |244 |34124 |NULL |WildFly datasource [{#JMX_DATA_SOURCE}] |
+ROW |245 |34125 |NULL |WildFly listener [{#SERVER}.{#HTTP_LISTENER}] |
+ROW |246 |34126 |NULL |WildFly deployment [{#DEPLOYMENT}] |
+ROW |247 |34175 |NULL |MSSQL Job '{#JOBNAME}' |
TABLE |application_prototype
FIELDS|application_prototypeid|itemid|templateid|name |
@@ -30834,6 +31156,68 @@ ROW |1627 |232 |33563 |
ROW |1628 |232 |33564 |
ROW |1629 |232 |33565 |
ROW |1630 |232 |33566 |
+ROW |1631 |241 |34101 |
+ROW |1632 |241 |34102 |
+ROW |1633 |241 |34103 |
+ROW |1634 |242 |34104 |
+ROW |1635 |242 |34105 |
+ROW |1636 |243 |34127 |
+ROW |1637 |243 |34128 |
+ROW |1638 |243 |34129 |
+ROW |1639 |243 |34130 |
+ROW |1640 |243 |34131 |
+ROW |1641 |243 |34132 |
+ROW |1642 |243 |34133 |
+ROW |1643 |244 |34134 |
+ROW |1644 |244 |34135 |
+ROW |1645 |244 |34136 |
+ROW |1646 |244 |34137 |
+ROW |1647 |244 |34138 |
+ROW |1648 |244 |34139 |
+ROW |1649 |244 |34140 |
+ROW |1650 |244 |34141 |
+ROW |1651 |244 |34142 |
+ROW |1652 |244 |34143 |
+ROW |1653 |244 |34144 |
+ROW |1654 |244 |34145 |
+ROW |1655 |244 |34146 |
+ROW |1656 |244 |34147 |
+ROW |1657 |244 |34148 |
+ROW |1658 |244 |34149 |
+ROW |1659 |244 |34150 |
+ROW |1660 |244 |34151 |
+ROW |1661 |244 |34152 |
+ROW |1662 |244 |34153 |
+ROW |1663 |244 |34154 |
+ROW |1664 |244 |34155 |
+ROW |1665 |244 |34156 |
+ROW |1666 |244 |34157 |
+ROW |1667 |244 |34158 |
+ROW |1668 |244 |34159 |
+ROW |1669 |244 |34160 |
+ROW |1670 |244 |34161 |
+ROW |1671 |244 |34162 |
+ROW |1672 |244 |34163 |
+ROW |1673 |245 |34164 |
+ROW |1674 |245 |34165 |
+ROW |1675 |245 |34166 |
+ROW |1676 |245 |34167 |
+ROW |1677 |246 |34168 |
+ROW |1678 |246 |34169 |
+ROW |1679 |246 |34170 |
+ROW |1680 |246 |34171 |
+ROW |1681 |246 |34172 |
+ROW |1682 |123 |34176 |
+ROW |1683 |123 |34177 |
+ROW |1684 |123 |34178 |
+ROW |1685 |123 |34179 |
+ROW |1686 |123 |34180 |
+ROW |1687 |123 |34181 |
+ROW |1688 |247 |34182 |
+ROW |1689 |247 |34183 |
+ROW |1690 |247 |34184 |
+ROW |1691 |247 |34185 |
+ROW |1692 |247 |34186 |
TABLE |item_preproc
FIELDS|item_preprocid|itemid|step|type|params |error_handler|error_handler_params |
@@ -36455,380 +36839,473 @@ ROW |66803 |34092 |1 |20 |6h
ROW |66804 |34008 |1 |20 |6h |0 | |
ROW |66805 |34093 |1 |20 |6h |0 | |
ROW |66806 |34059 |1 |20 |6h |0 | |
+ROW |66807 |34094 |1 |1 |0.001 |0 | |
+ROW |66808 |34095 |1 |20 |3h |0 | |
+ROW |66809 |34096 |1 |20 |3h |0 | |
+ROW |66810 |34097 |1 |20 |3h |0 | |
+ROW |66811 |34098 |1 |20 |3h |0 | |
+ROW |66812 |34101 |1 |6 | |0 | |
+ROW |66813 |34101 |2 |20 |3h |0 | |
+ROW |66814 |34102 |1 |20 |3h |0 | |
+ROW |66815 |34103 |1 |20 |3h |0 | |
+ROW |66816 |34104 |1 |6 | |0 | |
+ROW |66817 |34104 |2 |20 |3h |0 | |
+ROW |66818 |34105 |1 |6 | |0 | |
+ROW |66819 |34105 |2 |20 |3h |0 | |
+ROW |66820 |34106 |1 |1 |0.001 |0 | |
+ROW |66821 |34107 |1 |10 | |0 | |
+ROW |66822 |34108 |1 |10 | |0 | |
+ROW |66823 |34109 |1 |10 | |0 | |
+ROW |66824 |34110 |1 |10 | |0 | |
+ROW |66825 |34111 |1 |10 | |0 | |
+ROW |66826 |34113 |1 |10 | |0 | |
+ROW |66827 |34114 |1 |10 | |0 | |
+ROW |66828 |34115 |1 |20 |3h |0 | |
+ROW |66829 |34116 |1 |10 | |0 | |
+ROW |66830 |34117 |1 |20 |3h |0 | |
+ROW |66831 |34118 |1 |20 |3h |0 | |
+ROW |66832 |34119 |1 |20 |3h |0 | |
+ROW |66833 |34120 |1 |20 |3h |0 | |
+ROW |66834 |34121 |1 |20 |3h |0 | |
+ROW |66835 |34122 |1 |10 | |0 | |
+ROW |66836 |34127 |1 |10 | |0 | |
+ROW |66837 |34128 |1 |10 | |0 | |
+ROW |66838 |34130 |1 |10 | |0 | |
+ROW |66839 |34131 |1 |10 | |0 | |
+ROW |66840 |34132 |1 |10 | |0 | |
+ROW |66841 |34133 |1 |6 | |0 | |
+ROW |66842 |34133 |2 |20 |3h |0 | |
+ROW |66843 |34137 |1 |10 | |0 | |
+ROW |66844 |34139 |1 |10 | |0 | |
+ROW |66845 |34141 |1 |10 | |0 | |
+ROW |66846 |34143 |1 |10 | |0 | |
+ROW |66847 |34145 |1 |10 | |0 | |
+ROW |66848 |34147 |1 |10 | |0 | |
+ROW |66849 |34150 |1 |10 | |0 | |
+ROW |66850 |34151 |1 |6 | |0 | |
+ROW |66851 |34151 |2 |20 |3h |0 | |
+ROW |66852 |34155 |1 |10 | |0 | |
+ROW |66853 |34156 |1 |10 | |0 | |
+ROW |66854 |34157 |1 |10 | |0 | |
+ROW |66855 |34163 |1 |10 | |0 | |
+ROW |66856 |34164 |1 |10 | |0 | |
+ROW |66857 |34165 |1 |10 | |0 | |
+ROW |66858 |34166 |1 |10 | |0 | |
+ROW |66859 |34167 |1 |10 | |0 | |
+ROW |66860 |34168 |1 |6 | |0 | |
+ROW |66861 |34168 |2 |20 |3h |0 | |
+ROW |66862 |34169 |1 |1 |0.001 |0 | |
+ROW |66863 |34169 |2 |20 |3h |0 | |
+ROW |66864 |34170 |1 |6 | |0 | |
+ROW |66865 |34170 |2 |20 |3h |0 | |
+ROW |66866 |34171 |1 |6 | |0 | |
+ROW |66867 |34171 |2 |20 |3h |0 | |
+ROW |66868 |34172 |1 |20 |3h |0 | |
+ROW |66869 |34175 |1 |20 |1d |0 | |
+ROW |66870 |34176 |1 |12 |$[?(@.dbname=='{#DBNAME}' && @.type=='I')].duration.first() |2 |0 |
+ROW |66871 |34177 |1 |12 |$[?(@.dbname=='{#DBNAME}' && @.type=='I')].timesincelastbackup.first() |2 |0 |
+ROW |66872 |34178 |1 |12 |$[?(@.dbname=='{#DBNAME}' && @.type=='L')].timesincelastbackup.first() |2 |0 |
+ROW |66873 |34179 |1 |12 |$[?(@.dbname=='{#DBNAME}' && @.type=='L')].duration.first() |2 |0 |
+ROW |66874 |34180 |1 |12 |$[?(@.dbname=='{#DBNAME}' && @.type=='D')].timesincelastbackup.first() |2 |0 |
+ROW |66875 |34181 |1 |12 |$[?(@.dbname=='{#DBNAME}' && @.type=='D')].duration.first() |2 |0 |
+ROW |66876 |34182 |1 |12 |$[?(@.JobName=='{#JOBNAME}')].LastRunDateTime.first() |1 | |
+ROW |66877 |34182 |2 |20 |1d |0 | |
+ROW |66878 |34183 |1 |12 |$[?(@.JobName=='{#JOBNAME}')].LastRunStatusMessage.first() |1 | |
+ROW |66879 |34183 |2 |20 |15m |0 | |
+ROW |66880 |34184 |1 |12 |$[?(@.JobName=='{#JOBNAME}')].NextRunDateTime.first() |1 | |
+ROW |66881 |34184 |2 |20 |15m |0 | |
+ROW |66882 |34185 |1 |12 |$[?(@.JobName=='{#JOBNAME}')].RunDuration.first() |1 | |
+ROW |66883 |34185 |2 |20 |15m |0 | |
+ROW |66884 |34186 |1 |12 |$[?(@.JobName=='{#JOBNAME}')].RunStatus.first() |1 | |
+ROW |66885 |34186 |2 |20 |15m |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|
ROW |1 |1 |0 |0 |0 |680 |15 |{MAP.NAME}|9 |11 |000000 |0 |0 |0 |0 |000000 | |0 |
TABLE |lld_macro_path
-FIELDS|lld_macro_pathid|itemid|lld_macro |path |
-ROW |1 |29429 |{#IFNAME} |$.labels.device |
-ROW |2 |29429 |{#HELP} |$.help |
-ROW |3 |29429 |{#IFALIAS} |$.labels.ifalias |
-ROW |4 |29429 |{#IFOPERSTATUS} |$.labels.operstate |
-ROW |5 |29430 |{#FSTYPE} |$.labels.fstype |
-ROW |6 |29430 |{#FSNAME} |$.labels.mountpoint |
-ROW |7 |29430 |{#FSDEVICE} |$.labels.device |
-ROW |8 |29430 |{#HELP} |$.help |
-ROW |9 |29431 |{#DEVNAME} |$.labels.device |
-ROW |10 |29431 |{#HELP} |$.help |
-ROW |38 |29703 |{#QUEUE} |$.name |
-ROW |39 |29703 |{#VHOST} |$.vhost |
-ROW |40 |29703 |{#NODE} |$.node |
-ROW |41 |29785 |{#EXCHANGE} |$.name |
-ROW |42 |29785 |{#TYPE} |$.type |
-ROW |43 |29785 |{#VHOST} |$.vhost |
-ROW |44 |29786 |{#QUEUE} |$.name |
-ROW |45 |29786 |{#VHOST} |$.vhost |
-ROW |46 |29786 |{#NODE} |$.node |
-ROW |47 |30026 |{#EXCHANGE} |$.name |
-ROW |48 |30026 |{#TYPE} |$.type |
-ROW |49 |30026 |{#VHOST} |$.vhost |
-ROW |50 |30193 |{#PXNAME} |$.pxname |
-ROW |51 |30193 |{#SVNAME} |$.svname |
-ROW |52 |30194 |{#PXNAME} |$.pxname |
-ROW |53 |30194 |{#SVNAME} |$.svname |
-ROW |54 |30195 |{#PXNAME} |$.pxname |
-ROW |55 |30195 |{#SVNAME} |$.svname |
-ROW |56 |30236 |{#PXNAME} |$.pxname |
-ROW |57 |30236 |{#SVNAME} |$.svname |
-ROW |58 |30237 |{#PXNAME} |$.pxname |
-ROW |59 |30237 |{#SVNAME} |$.svname |
-ROW |60 |30238 |{#PXNAME} |$.pxname |
-ROW |61 |30238 |{#SVNAME} |$.svname |
-ROW |62 |30678 |{#DATABASE} |$.Database |
-ROW |63 |30679 |{#MASTER_HOST} |$.Master_Host |
-ROW |64 |30686 |{#SENSOR_ID} |$.id |
-ROW |65 |30686 |{#SENSOR_READING_TYPE}|$.reading.text |
-ROW |66 |30686 |{#SENSOR_TYPE} |$.sensor.text |
-ROW |67 |30686 |{#SENSOR_UNIT} |$.units |
-ROW |68 |30687 |{#SENSOR_ID} |$.id |
-ROW |69 |30687 |{#SENSOR_READING_TYPE}|$.reading.text |
-ROW |70 |30687 |{#SENSOR_TYPE} |$.sensor.text |
-ROW |71 |30687 |{#SENSOR_UNIT} |$.units |
-ROW |72 |30687 |{#SENSOR_LO_WARN} |$.threshold.lower.non_crit |
-ROW |73 |30687 |{#SENSOR_LO_CRIT} |$.threshold.lower.crit |
-ROW |74 |30687 |{#SENSOR_LO_DISAST} |$.threshold.lower.non_recover|
-ROW |75 |30687 |{#SENSOR_HI_WARN} |$.threshold.upper.non_crit |
-ROW |76 |30687 |{#SENSOR_HI_CRIT} |$.threshold.upper.crit |
-ROW |77 |30687 |{#SENSOR_HI_DISAST} |$.threshold.upper.non_recover|
-ROW |78 |30713 |{#ES.NODE} |$..name.first() |
-ROW |79 |30759 |{#PXNAME} |$.pxname |
-ROW |80 |30759 |{#SVNAME} |$.svname |
-ROW |81 |30759 |{#MODE} |$.mode |
-ROW |82 |30760 |{#PXNAME} |$.pxname |
-ROW |83 |30760 |{#SVNAME} |$.svname |
-ROW |84 |30760 |{#MODE} |$.mode |
-ROW |85 |30761 |{#PXNAME} |$.pxname |
-ROW |86 |30761 |{#SVNAME} |$.svname |
-ROW |87 |30761 |{#MODE} |$.mode |
-ROW |88 |30193 |{#MODE} |$.mode |
-ROW |89 |30194 |{#MODE} |$.mode |
-ROW |90 |30195 |{#MODE} |$.mode |
-ROW |91 |30791 |{#PXNAME} |$.pxname |
-ROW |92 |30791 |{#SVNAME} |$.svname |
-ROW |93 |30791 |{#MODE} |$.mode |
-ROW |94 |30792 |{#PXNAME} |$.pxname |
-ROW |95 |30792 |{#SVNAME} |$.svname |
-ROW |96 |30792 |{#MODE} |$.mode |
-ROW |97 |30793 |{#PXNAME} |$.pxname |
-ROW |98 |30793 |{#SVNAME} |$.svname |
-ROW |99 |30793 |{#MODE} |$.mode |
-ROW |100 |30236 |{#MODE} |$.mode |
-ROW |101 |30237 |{#MODE} |$.mode |
-ROW |102 |30238 |{#MODE} |$.mode |
-ROW |103 |30874 |{#NAME} |$.name |
-ROW |104 |30875 |{#DB} |$.database |
-ROW |105 |30875 |{#TABLE} |$.table |
-ROW |106 |30876 |{#DB} |$.database |
-ROW |107 |30876 |{#TABLE} |$.table |
-ROW |108 |30962 |{#ETCD.PEER} |$.labels.To |
-ROW |109 |31005 |{#APPPOOL} |$.Name |
-ROW |110 |31047 |{#APPPOOL} |$.Name |
-ROW |111 |31990 |{#OBJECTNAME} |$.ObjectName |
-ROW |112 |31991 |{#OBJECTNAME} |$.ObjectName |
-ROW |113 |31992 |{#QUEUE} |$.Queue |
-ROW |114 |31993 |{#OBJECTNAME} |$.ObjectName |
-ROW |115 |32879 |{#EXCHANGE} |$.name |
-ROW |116 |32879 |{#TYPE} |$.type |
-ROW |117 |32879 |{#VHOST} |$.vhost |
-ROW |118 |32883 |{#QUEUE} |$.name |
-ROW |119 |32883 |{#VHOST} |$.vhost |
-ROW |120 |32883 |{#NODE} |$.node |
-ROW |121 |32971 |{#EXCHANGE} |$.name |
-ROW |122 |32971 |{#TYPE} |$.type |
-ROW |123 |32971 |{#VHOST} |$.vhost |
-ROW |124 |32975 |{#QUEUE} |$.name |
-ROW |125 |32975 |{#VHOST} |$.vhost |
-ROW |126 |32975 |{#NODE} |$.node |
+FIELDS|lld_macro_pathid|itemid|lld_macro |path |
+ROW |1 |29429 |{#IFNAME} |$.labels.device |
+ROW |2 |29429 |{#HELP} |$.help |
+ROW |3 |29429 |{#IFALIAS} |$.labels.ifalias |
+ROW |4 |29429 |{#IFOPERSTATUS} |$.labels.operstate |
+ROW |5 |29430 |{#FSTYPE} |$.labels.fstype |
+ROW |6 |29430 |{#FSNAME} |$.labels.mountpoint |
+ROW |7 |29430 |{#FSDEVICE} |$.labels.device |
+ROW |8 |29430 |{#HELP} |$.help |
+ROW |9 |29431 |{#DEVNAME} |$.labels.device |
+ROW |10 |29431 |{#HELP} |$.help |
+ROW |38 |29703 |{#QUEUE} |$.name |
+ROW |39 |29703 |{#VHOST} |$.vhost |
+ROW |40 |29703 |{#NODE} |$.node |
+ROW |41 |29785 |{#EXCHANGE} |$.name |
+ROW |42 |29785 |{#TYPE} |$.type |
+ROW |43 |29785 |{#VHOST} |$.vhost |
+ROW |44 |29786 |{#QUEUE} |$.name |
+ROW |45 |29786 |{#VHOST} |$.vhost |
+ROW |46 |29786 |{#NODE} |$.node |
+ROW |47 |30026 |{#EXCHANGE} |$.name |
+ROW |48 |30026 |{#TYPE} |$.type |
+ROW |49 |30026 |{#VHOST} |$.vhost |
+ROW |50 |30193 |{#PXNAME} |$.pxname |
+ROW |51 |30193 |{#SVNAME} |$.svname |
+ROW |52 |30194 |{#PXNAME} |$.pxname |
+ROW |53 |30194 |{#SVNAME} |$.svname |
+ROW |54 |30195 |{#PXNAME} |$.pxname |
+ROW |55 |30195 |{#SVNAME} |$.svname |
+ROW |56 |30236 |{#PXNAME} |$.pxname |
+ROW |57 |30236 |{#SVNAME} |$.svname |
+ROW |58 |30237 |{#PXNAME} |$.pxname |
+ROW |59 |30237 |{#SVNAME} |$.svname |
+ROW |60 |30238 |{#PXNAME} |$.pxname |
+ROW |61 |30238 |{#SVNAME} |$.svname |
+ROW |62 |30678 |{#DATABASE} |$.Database |
+ROW |63 |30679 |{#MASTER_HOST} |$.Master_Host |
+ROW |64 |30686 |{#SENSOR_ID} |$.id |
+ROW |65 |30686 |{#SENSOR_READING_TYPE}|$.reading.text |
+ROW |66 |30686 |{#SENSOR_TYPE} |$.sensor.text |
+ROW |67 |30686 |{#SENSOR_UNIT} |$.units |
+ROW |68 |30687 |{#SENSOR_ID} |$.id |
+ROW |69 |30687 |{#SENSOR_READING_TYPE}|$.reading.text |
+ROW |70 |30687 |{#SENSOR_TYPE} |$.sensor.text |
+ROW |71 |30687 |{#SENSOR_UNIT} |$.units |
+ROW |72 |30687 |{#SENSOR_LO_WARN} |$.threshold.lower.non_crit |
+ROW |73 |30687 |{#SENSOR_LO_CRIT} |$.threshold.lower.crit |
+ROW |74 |30687 |{#SENSOR_LO_DISAST} |$.threshold.lower.non_recover |
+ROW |75 |30687 |{#SENSOR_HI_WARN} |$.threshold.upper.non_crit |
+ROW |76 |30687 |{#SENSOR_HI_CRIT} |$.threshold.upper.crit |
+ROW |77 |30687 |{#SENSOR_HI_DISAST} |$.threshold.upper.non_recover |
+ROW |78 |30713 |{#ES.NODE} |$..name.first() |
+ROW |79 |30759 |{#PXNAME} |$.pxname |
+ROW |80 |30759 |{#SVNAME} |$.svname |
+ROW |81 |30759 |{#MODE} |$.mode |
+ROW |82 |30760 |{#PXNAME} |$.pxname |
+ROW |83 |30760 |{#SVNAME} |$.svname |
+ROW |84 |30760 |{#MODE} |$.mode |
+ROW |85 |30761 |{#PXNAME} |$.pxname |
+ROW |86 |30761 |{#SVNAME} |$.svname |
+ROW |87 |30761 |{#MODE} |$.mode |
+ROW |88 |30193 |{#MODE} |$.mode |
+ROW |89 |30194 |{#MODE} |$.mode |
+ROW |90 |30195 |{#MODE} |$.mode |
+ROW |91 |30791 |{#PXNAME} |$.pxname |
+ROW |92 |30791 |{#SVNAME} |$.svname |
+ROW |93 |30791 |{#MODE} |$.mode |
+ROW |94 |30792 |{#PXNAME} |$.pxname |
+ROW |95 |30792 |{#SVNAME} |$.svname |
+ROW |96 |30792 |{#MODE} |$.mode |
+ROW |97 |30793 |{#PXNAME} |$.pxname |
+ROW |98 |30793 |{#SVNAME} |$.svname |
+ROW |99 |30793 |{#MODE} |$.mode |
+ROW |100 |30236 |{#MODE} |$.mode |
+ROW |101 |30237 |{#MODE} |$.mode |
+ROW |102 |30238 |{#MODE} |$.mode |
+ROW |103 |30874 |{#NAME} |$.name |
+ROW |104 |30875 |{#DB} |$.database |
+ROW |105 |30875 |{#TABLE} |$.table |
+ROW |106 |30876 |{#DB} |$.database |
+ROW |107 |30876 |{#TABLE} |$.table |
+ROW |108 |30962 |{#ETCD.PEER} |$.labels.To |
+ROW |109 |31005 |{#APPPOOL} |$.Name |
+ROW |110 |31047 |{#APPPOOL} |$.Name |
+ROW |111 |31990 |{#OBJECTNAME} |$.ObjectName |
+ROW |112 |31991 |{#OBJECTNAME} |$.ObjectName |
+ROW |113 |31992 |{#QUEUE} |$.Queue |
+ROW |114 |31993 |{#OBJECTNAME} |$.ObjectName |
+ROW |115 |32879 |{#EXCHANGE} |$.name |
+ROW |116 |32879 |{#TYPE} |$.type |
+ROW |117 |32879 |{#VHOST} |$.vhost |
+ROW |118 |32883 |{#QUEUE} |$.name |
+ROW |119 |32883 |{#VHOST} |$.vhost |
+ROW |120 |32883 |{#NODE} |$.node |
+ROW |121 |32971 |{#EXCHANGE} |$.name |
+ROW |122 |32971 |{#TYPE} |$.type |
+ROW |123 |32971 |{#VHOST} |$.vhost |
+ROW |124 |32975 |{#QUEUE} |$.name |
+ROW |125 |32975 |{#VHOST} |$.vhost |
+ROW |126 |32975 |{#NODE} |$.node |
+ROW |127 |34099 |{#SERVER} |$.properties.["server-config"]|
+ROW |128 |34099 |{#JMXOBJ} |$.object |
+ROW |129 |34100 |{#SERVER_GROUP} |$.properties.["server-group"] |
+ROW |130 |34100 |{#DEPLOYMENT} |$.properties.deployment |
+ROW |131 |34100 |{#JMXOBJ} |$.object |
+ROW |132 |34123 |{#JMX_DATA_SOURCE} |$.properties.["data-source"] |
+ROW |133 |34123 |{#JMXOBJ} |$.object |
+ROW |134 |34124 |{#JMX_DATA_SOURCE} |$.properties.["data-source"] |
+ROW |135 |34124 |{#JMXOBJ} |$.object |
+ROW |136 |34125 |{#SERVER} |$.properties.["server"] |
+ROW |137 |34125 |{#HTTP_LISTENER} |$.properties.["http-listener"]|
+ROW |138 |34125 |{#JMXOBJ} |$.object |
+ROW |139 |34126 |{#DEPLOYMENT} |$.properties.deployment |
+ROW |140 |34126 |{#JMXOBJ} |$.object |
TABLE |lld_override
FIELDS|lld_overrideid|itemid|name |step|evaltype|formula|stop|
-ROW |218 |30961 |trigger |1 |0 | |0 |
-ROW |219 |33063 |Primary metrics |1 |0 | |0 |
-ROW |220 |33063 |Arbiter metrics |2 |0 | |0 |
-ROW |221 |32742 |ID filter |1 |0 | |0 |
-ROW |222 |32743 |Self-test |1 |0 | |0 |
-ROW |223 |32743 |Not NVMe |2 |0 | |0 |
-ROW |224 |32754 |ID filter |1 |0 | |0 |
-ROW |225 |32755 |Self-test |1 |0 | |0 |
-ROW |226 |32755 |Not NVMe |2 |0 | |0 |
-ROW |227 |28306 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
-ROW |228 |28306 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
-ROW |229 |28306 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
-ROW |230 |28306 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
-ROW |231 |28307 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
-ROW |232 |28307 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
-ROW |233 |28307 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
-ROW |234 |28307 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
-ROW |235 |32306 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
-ROW |236 |32306 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
-ROW |237 |32306 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
-ROW |238 |32306 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
-ROW |239 |33598 |Temp |1 |0 | |0 |
-ROW |240 |33599 |Temp |1 |0 | |0 |
-ROW |241 |33649 |Temp |1 |0 | |0 |
-ROW |242 |33650 |Temp |1 |0 | |0 |
-ROW |243 |33700 |Temp |1 |0 | |0 |
-ROW |244 |33701 |Temp |1 |0 | |0 |
-ROW |245 |33751 |Temp |1 |0 | |0 |
-ROW |246 |33752 |Temp |1 |0 | |0 |
-ROW |247 |33802 |Temp |1 |0 | |0 |
-ROW |248 |33803 |Temp |1 |0 | |0 |
-ROW |249 |33853 |Temp |1 |0 | |0 |
-ROW |250 |33854 |Temp |1 |0 | |0 |
-ROW |251 |33904 |Temp |1 |0 | |0 |
-ROW |252 |33905 |Temp |1 |0 | |0 |
-ROW |253 |33462 |Temp |1 |0 | |0 |
-ROW |254 |33463 |Temp |1 |0 | |0 |
-ROW |255 |33960 |Temp |1 |0 | |0 |
-ROW |256 |33961 |Temp |1 |0 | |0 |
-ROW |257 |34011 |Temp |1 |0 | |0 |
-ROW |258 |34012 |Temp |1 |0 | |0 |
-ROW |259 |34062 |Temp |1 |0 | |0 |
-ROW |260 |34063 |Temp |1 |0 | |0 |
-ROW |261 |32618 |Do not discover aggregate metrics|1 |0 | |0 |
-ROW |262 |30687 |trigger SENSOR_LO_WARN |1 |0 | |0 |
-ROW |263 |30687 |trigger SENSOR_LO_CRIT |2 |0 | |0 |
-ROW |264 |30687 |trigger SENSOR_LO_DISAST |3 |0 | |0 |
-ROW |265 |30687 |trigger SENSOR_HI_WARN |4 |0 | |0 |
-ROW |266 |30687 |trigger SENSOR_HI_CRIT |5 |0 | |0 |
-ROW |267 |30687 |trigger SENSOR_HI_DISAST |6 |0 | |0 |
+ROW |268 |30961 |trigger |1 |0 | |0 |
+ROW |269 |33063 |Primary metrics |1 |0 | |0 |
+ROW |270 |33063 |Arbiter metrics |2 |0 | |0 |
+ROW |271 |32742 |ID filter |1 |0 | |0 |
+ROW |272 |32743 |Self-test |1 |0 | |0 |
+ROW |273 |32743 |Not NVMe |2 |0 | |0 |
+ROW |274 |32754 |ID filter |1 |0 | |0 |
+ROW |275 |32755 |Self-test |1 |0 | |0 |
+ROW |276 |32755 |Not NVMe |2 |0 | |0 |
+ROW |277 |28306 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
+ROW |278 |28306 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
+ROW |279 |28306 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
+ROW |280 |28306 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
+ROW |281 |28307 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
+ROW |282 |28307 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
+ROW |283 |28307 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
+ROW |284 |28307 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
+ROW |285 |32306 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
+ROW |286 |32306 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
+ROW |287 |32306 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
+ROW |288 |32306 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
+ROW |289 |33598 |Temp |1 |0 | |0 |
+ROW |290 |33599 |Temp |1 |0 | |0 |
+ROW |291 |33649 |Temp |1 |0 | |0 |
+ROW |292 |33650 |Temp |1 |0 | |0 |
+ROW |293 |33700 |Temp |1 |0 | |0 |
+ROW |294 |33701 |Temp |1 |0 | |0 |
+ROW |295 |33751 |Temp |1 |0 | |0 |
+ROW |296 |33752 |Temp |1 |0 | |0 |
+ROW |297 |33802 |Temp |1 |0 | |0 |
+ROW |298 |33803 |Temp |1 |0 | |0 |
+ROW |299 |33853 |Temp |1 |0 | |0 |
+ROW |300 |33854 |Temp |1 |0 | |0 |
+ROW |301 |33904 |Temp |1 |0 | |0 |
+ROW |302 |33905 |Temp |1 |0 | |0 |
+ROW |303 |33462 |Temp |1 |0 | |0 |
+ROW |304 |33463 |Temp |1 |0 | |0 |
+ROW |305 |33960 |Temp |1 |0 | |0 |
+ROW |306 |33961 |Temp |1 |0 | |0 |
+ROW |307 |34011 |Temp |1 |0 | |0 |
+ROW |308 |34012 |Temp |1 |0 | |0 |
+ROW |309 |34062 |Temp |1 |0 | |0 |
+ROW |310 |34063 |Temp |1 |0 | |0 |
+ROW |311 |32618 |Do not discover aggregate metrics|1 |0 | |0 |
+ROW |312 |30687 |trigger SENSOR_LO_WARN |1 |0 | |0 |
+ROW |313 |30687 |trigger SENSOR_LO_CRIT |2 |0 | |0 |
+ROW |314 |30687 |trigger SENSOR_LO_DISAST |3 |0 | |0 |
+ROW |315 |30687 |trigger SENSOR_HI_WARN |4 |0 | |0 |
+ROW |316 |30687 |trigger SENSOR_HI_CRIT |5 |0 | |0 |
+ROW |317 |30687 |trigger SENSOR_HI_DISAST |6 |0 | |0 |
TABLE |lld_override_condition
FIELDS|lld_override_conditionid|lld_overrideid|operator|macro |value |
-ROW |162 |218 |8 |{#GRPC.CODE} |{$ETCD.GRPC_CODE.TRIGGER.MATCHES}|
-ROW |163 |219 |8 |{#NODE_STATE} |1 |
-ROW |164 |220 |8 |{#NODE_STATE} |7 |
-ROW |165 |221 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
-ROW |166 |221 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
-ROW |167 |222 |8 |{#DISKTYPE} |nvme |
-ROW |168 |223 |9 |{#DISKTYPE} |nvme |
-ROW |169 |224 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
-ROW |170 |224 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
-ROW |171 |225 |8 |{#DISKTYPE} |nvme |
-ROW |172 |226 |9 |{#DISKTYPE} |nvme |
-ROW |173 |227 |8 |{#THRESHOLD_LO_WARN} |^$ |
-ROW |174 |228 |8 |{#THRESHOLD_LO_CRIT} |^$ |
-ROW |175 |229 |8 |{#THRESHOLD_HI_WARN} |^$ |
-ROW |176 |230 |8 |{#THRESHOLD_HI_CRIT} |^$ |
-ROW |177 |231 |8 |{#THRESHOLD_LO_WARN} |^$ |
-ROW |178 |232 |8 |{#THRESHOLD_LO_CRIT} |^$ |
-ROW |179 |233 |8 |{#THRESHOLD_HI_WARN} |^$ |
-ROW |180 |234 |8 |{#THRESHOLD_HI_CRIT} |^$ |
-ROW |181 |235 |8 |{#THRESHOLD_LO_WARN} |^$ |
-ROW |182 |236 |8 |{#THRESHOLD_LO_CRIT} |^$ |
-ROW |183 |237 |8 |{#THRESHOLD_HI_WARN} |^$ |
-ROW |184 |238 |8 |{#THRESHOLD_HI_CRIT} |^$ |
-ROW |185 |239 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |186 |240 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |187 |241 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |188 |242 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |189 |243 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |190 |244 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |191 |245 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |192 |246 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |193 |247 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |194 |248 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |195 |249 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |196 |250 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |197 |251 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |198 |252 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |199 |253 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |200 |254 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |201 |255 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |202 |256 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |203 |257 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |204 |258 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |205 |259 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |206 |260 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |207 |261 |8 |{#FSTYPE} |3&pipe;4 |
+ROW |208 |268 |8 |{#GRPC.CODE} |{$ETCD.GRPC_CODE.TRIGGER.MATCHES}|
+ROW |209 |269 |8 |{#NODE_STATE} |1 |
+ROW |210 |270 |8 |{#NODE_STATE} |7 |
+ROW |211 |271 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
+ROW |212 |271 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
+ROW |213 |272 |8 |{#DISKTYPE} |nvme |
+ROW |214 |273 |9 |{#DISKTYPE} |nvme |
+ROW |215 |274 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
+ROW |216 |274 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
+ROW |217 |275 |8 |{#DISKTYPE} |nvme |
+ROW |218 |276 |9 |{#DISKTYPE} |nvme |
+ROW |219 |277 |8 |{#THRESHOLD_LO_WARN} |^$ |
+ROW |220 |278 |8 |{#THRESHOLD_LO_CRIT} |^$ |
+ROW |221 |279 |8 |{#THRESHOLD_HI_WARN} |^$ |
+ROW |222 |280 |8 |{#THRESHOLD_HI_CRIT} |^$ |
+ROW |223 |281 |8 |{#THRESHOLD_LO_WARN} |^$ |
+ROW |224 |282 |8 |{#THRESHOLD_LO_CRIT} |^$ |
+ROW |225 |283 |8 |{#THRESHOLD_HI_WARN} |^$ |
+ROW |226 |284 |8 |{#THRESHOLD_HI_CRIT} |^$ |
+ROW |227 |285 |8 |{#THRESHOLD_LO_WARN} |^$ |
+ROW |228 |286 |8 |{#THRESHOLD_LO_CRIT} |^$ |
+ROW |229 |287 |8 |{#THRESHOLD_HI_WARN} |^$ |
+ROW |230 |288 |8 |{#THRESHOLD_HI_CRIT} |^$ |
+ROW |231 |289 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |232 |290 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |233 |291 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |234 |292 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |235 |293 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |236 |294 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |237 |295 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |238 |296 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |239 |297 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |240 |298 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |241 |299 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |242 |300 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |243 |301 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |244 |302 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |245 |303 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |246 |304 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |247 |305 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |248 |306 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |249 |307 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |250 |308 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |251 |309 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |252 |310 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |253 |311 |8 |{#FSTYPE} |3&pipe;4 |
TABLE |lld_override_operation
FIELDS|lld_override_operationid|lld_overrideid|operationobject|operator|value |
-ROW |224 |218 |1 |2 |Too many failed gRPC requests |
-ROW |225 |219 |0 |2 |Number of replicas |
-ROW |226 |219 |0 |2 |Unhealthy replicas |
-ROW |227 |219 |0 |2 |Number of unhealthy replicas |
-ROW |228 |219 |0 |2 |Replication lag |
-ROW |229 |220 |0 |2 |Replication lag |
-ROW |230 |221 |0 |8 | |
-ROW |231 |222 |0 |2 |Self-test |
-ROW |232 |223 |0 |8 |Media&pipe;Percentage&pipe;Critical |
-ROW |233 |224 |0 |8 | |
-ROW |234 |225 |0 |2 |Self-test |
-ROW |235 |226 |0 |8 |Media&pipe;Percentage&pipe;Critical |
-ROW |236 |227 |1 |8 |Temperature is below the warning threshold |
-ROW |237 |228 |1 |8 |Temperature is below the critical threshold|
-ROW |238 |229 |1 |8 |Temperature is above the warning threshold |
-ROW |239 |230 |1 |8 |Temperature is above the critical threshold|
-ROW |240 |231 |1 |8 |Fan speed is below the warning threshold |
-ROW |241 |232 |1 |8 |Fan speed is below the critical threshold |
-ROW |242 |233 |1 |8 |Fan speed is above the warning threshold |
-ROW |243 |234 |1 |8 |Fan speed is above the critical threshold |
-ROW |244 |235 |1 |8 |Voltage is below the warning threshold |
-ROW |245 |236 |1 |8 |Voltage is below the critical threshold |
-ROW |246 |237 |1 |8 |Voltage is above the warning threshold |
-ROW |247 |238 |1 |8 |Voltage is above the critical threshold |
-ROW |248 |239 |0 |2 |Humidity |
-ROW |249 |240 |0 |2 |Humidity |
-ROW |250 |241 |0 |2 |Humidity |
-ROW |251 |242 |0 |2 |Humidity |
-ROW |252 |243 |0 |2 |Humidity |
-ROW |253 |244 |0 |2 |Humidity |
-ROW |254 |245 |0 |2 |Humidity |
-ROW |255 |246 |0 |2 |Humidity |
-ROW |256 |247 |0 |2 |Humidity |
-ROW |257 |248 |0 |2 |Humidity |
-ROW |258 |249 |0 |2 |Humidity |
-ROW |259 |250 |0 |2 |Humidity |
-ROW |260 |251 |0 |2 |Humidity |
-ROW |261 |252 |0 |2 |Humidity |
-ROW |262 |253 |0 |2 |Humidity |
-ROW |263 |254 |0 |2 |Humidity |
-ROW |264 |255 |0 |2 |Humidity |
-ROW |265 |256 |0 |2 |Humidity |
-ROW |266 |257 |0 |2 |Humidity |
-ROW |267 |258 |0 |2 |Humidity |
-ROW |268 |259 |0 |2 |Humidity |
-ROW |269 |260 |0 |2 |Humidity |
-ROW |270 |261 |0 |2 |Saved |
-ROW |271 |262 |1 |2 |{#SENSOR_LO_WARN} |
-ROW |272 |263 |1 |2 |{#SENSOR_LO_CRIT} |
-ROW |273 |264 |1 |2 |{#SENSOR_LO_DISAST} |
-ROW |274 |265 |1 |2 |{#SENSOR_HI_WARN} |
-ROW |275 |266 |1 |2 |{#SENSOR_HI_CRIT} |
-ROW |276 |267 |1 |2 |{#SENSOR_HI_DISAST} |
+ROW |277 |268 |1 |2 |Too many failed gRPC requests |
+ROW |278 |269 |0 |2 |Number of replicas |
+ROW |279 |269 |0 |2 |Unhealthy replicas |
+ROW |280 |269 |0 |2 |Number of unhealthy replicas |
+ROW |281 |269 |0 |2 |Replication lag |
+ROW |282 |270 |0 |2 |Replication lag |
+ROW |283 |271 |0 |8 | |
+ROW |284 |272 |0 |2 |Self-test |
+ROW |285 |273 |0 |8 |Media&pipe;Percentage&pipe;Critical |
+ROW |286 |274 |0 |8 | |
+ROW |287 |275 |0 |2 |Self-test |
+ROW |288 |276 |0 |8 |Media&pipe;Percentage&pipe;Critical |
+ROW |289 |277 |1 |8 |Temperature is below the warning threshold |
+ROW |290 |278 |1 |8 |Temperature is below the critical threshold|
+ROW |291 |279 |1 |8 |Temperature is above the warning threshold |
+ROW |292 |280 |1 |8 |Temperature is above the critical threshold|
+ROW |293 |281 |1 |8 |Fan speed is below the warning threshold |
+ROW |294 |282 |1 |8 |Fan speed is below the critical threshold |
+ROW |295 |283 |1 |8 |Fan speed is above the warning threshold |
+ROW |296 |284 |1 |8 |Fan speed is above the critical threshold |
+ROW |297 |285 |1 |8 |Voltage is below the warning threshold |
+ROW |298 |286 |1 |8 |Voltage is below the critical threshold |
+ROW |299 |287 |1 |8 |Voltage is above the warning threshold |
+ROW |300 |288 |1 |8 |Voltage is above the critical threshold |
+ROW |301 |289 |0 |2 |Humidity |
+ROW |302 |290 |0 |2 |Humidity |
+ROW |303 |291 |0 |2 |Humidity |
+ROW |304 |292 |0 |2 |Humidity |
+ROW |305 |293 |0 |2 |Humidity |
+ROW |306 |294 |0 |2 |Humidity |
+ROW |307 |295 |0 |2 |Humidity |
+ROW |308 |296 |0 |2 |Humidity |
+ROW |309 |297 |0 |2 |Humidity |
+ROW |310 |298 |0 |2 |Humidity |
+ROW |311 |299 |0 |2 |Humidity |
+ROW |312 |300 |0 |2 |Humidity |
+ROW |313 |301 |0 |2 |Humidity |
+ROW |314 |302 |0 |2 |Humidity |
+ROW |315 |303 |0 |2 |Humidity |
+ROW |316 |304 |0 |2 |Humidity |
+ROW |317 |305 |0 |2 |Humidity |
+ROW |318 |306 |0 |2 |Humidity |
+ROW |319 |307 |0 |2 |Humidity |
+ROW |320 |308 |0 |2 |Humidity |
+ROW |321 |309 |0 |2 |Humidity |
+ROW |322 |310 |0 |2 |Humidity |
+ROW |323 |311 |0 |2 |Saved |
+ROW |324 |312 |1 |2 |{#SENSOR_LO_WARN} |
+ROW |325 |313 |1 |2 |{#SENSOR_LO_CRIT} |
+ROW |326 |314 |1 |2 |{#SENSOR_LO_DISAST} |
+ROW |327 |315 |1 |2 |{#SENSOR_HI_WARN} |
+ROW |328 |316 |1 |2 |{#SENSOR_HI_CRIT} |
+ROW |329 |317 |1 |2 |{#SENSOR_HI_DISAST} |
TABLE |lld_override_opstatus
FIELDS|lld_override_operationid|status|
-ROW |224 |0 |
-ROW |225 |0 |
-ROW |226 |0 |
-ROW |227 |0 |
-ROW |228 |0 |
-ROW |229 |0 |
-ROW |230 |0 |
-ROW |231 |0 |
-ROW |232 |0 |
-ROW |233 |0 |
-ROW |234 |0 |
-ROW |235 |0 |
-ROW |236 |0 |
-ROW |237 |0 |
-ROW |238 |0 |
-ROW |239 |0 |
-ROW |240 |0 |
-ROW |241 |0 |
-ROW |242 |0 |
-ROW |243 |0 |
-ROW |244 |0 |
-ROW |245 |0 |
-ROW |246 |0 |
-ROW |247 |0 |
-ROW |248 |0 |
-ROW |249 |0 |
-ROW |250 |0 |
-ROW |251 |0 |
-ROW |252 |0 |
-ROW |253 |0 |
-ROW |254 |0 |
-ROW |255 |0 |
-ROW |256 |0 |
-ROW |257 |0 |
-ROW |258 |0 |
-ROW |259 |0 |
-ROW |260 |0 |
-ROW |261 |0 |
-ROW |262 |0 |
-ROW |263 |0 |
-ROW |264 |0 |
-ROW |265 |0 |
-ROW |266 |0 |
-ROW |267 |0 |
-ROW |268 |0 |
-ROW |269 |0 |
-ROW |270 |0 |
-ROW |271 |0 |
-ROW |272 |0 |
-ROW |273 |0 |
-ROW |274 |0 |
-ROW |275 |0 |
-ROW |276 |0 |
+ROW |277 |0 |
+ROW |278 |0 |
+ROW |279 |0 |
+ROW |280 |0 |
+ROW |281 |0 |
+ROW |282 |0 |
+ROW |283 |0 |
+ROW |284 |0 |
+ROW |285 |0 |
+ROW |286 |0 |
+ROW |287 |0 |
+ROW |288 |0 |
+ROW |289 |0 |
+ROW |290 |0 |
+ROW |291 |0 |
+ROW |292 |0 |
+ROW |293 |0 |
+ROW |294 |0 |
+ROW |295 |0 |
+ROW |296 |0 |
+ROW |297 |0 |
+ROW |298 |0 |
+ROW |299 |0 |
+ROW |300 |0 |
+ROW |301 |0 |
+ROW |302 |0 |
+ROW |303 |0 |
+ROW |304 |0 |
+ROW |305 |0 |
+ROW |306 |0 |
+ROW |307 |0 |
+ROW |308 |0 |
+ROW |309 |0 |
+ROW |310 |0 |
+ROW |311 |0 |
+ROW |312 |0 |
+ROW |313 |0 |
+ROW |314 |0 |
+ROW |315 |0 |
+ROW |316 |0 |
+ROW |317 |0 |
+ROW |318 |0 |
+ROW |319 |0 |
+ROW |320 |0 |
+ROW |321 |0 |
+ROW |322 |0 |
+ROW |323 |0 |
+ROW |324 |0 |
+ROW |325 |0 |
+ROW |326 |0 |
+ROW |327 |0 |
+ROW |328 |0 |
+ROW |329 |0 |
TABLE |lld_override_opdiscover
FIELDS|lld_override_operationid|discover|
-ROW |224 |0 |
-ROW |225 |0 |
-ROW |226 |0 |
-ROW |227 |0 |
-ROW |228 |1 |
-ROW |229 |1 |
-ROW |230 |1 |
-ROW |231 |1 |
-ROW |232 |1 |
-ROW |233 |1 |
-ROW |234 |1 |
-ROW |235 |1 |
-ROW |236 |1 |
-ROW |237 |1 |
-ROW |238 |1 |
-ROW |239 |1 |
-ROW |240 |1 |
-ROW |241 |1 |
-ROW |242 |1 |
-ROW |243 |1 |
-ROW |244 |1 |
-ROW |245 |1 |
-ROW |246 |1 |
-ROW |247 |1 |
-ROW |248 |1 |
-ROW |249 |1 |
-ROW |250 |1 |
-ROW |251 |1 |
-ROW |252 |1 |
-ROW |253 |1 |
-ROW |254 |1 |
-ROW |255 |1 |
-ROW |256 |1 |
-ROW |257 |1 |
-ROW |258 |1 |
-ROW |259 |1 |
-ROW |260 |1 |
-ROW |261 |1 |
-ROW |262 |1 |
-ROW |263 |1 |
-ROW |264 |1 |
-ROW |265 |1 |
-ROW |266 |1 |
-ROW |267 |1 |
-ROW |268 |1 |
-ROW |269 |1 |
-ROW |270 |1 |
-ROW |271 |1 |
-ROW |272 |1 |
-ROW |273 |1 |
-ROW |274 |1 |
-ROW |275 |1 |
-ROW |276 |1 |
+ROW |277 |0 |
+ROW |278 |0 |
+ROW |279 |0 |
+ROW |280 |0 |
+ROW |281 |1 |
+ROW |282 |1 |
+ROW |283 |1 |
+ROW |284 |1 |
+ROW |285 |1 |
+ROW |286 |1 |
+ROW |287 |1 |
+ROW |288 |1 |
+ROW |289 |1 |
+ROW |290 |1 |
+ROW |291 |1 |
+ROW |292 |1 |
+ROW |293 |1 |
+ROW |294 |1 |
+ROW |295 |1 |
+ROW |296 |1 |
+ROW |297 |1 |
+ROW |298 |1 |
+ROW |299 |1 |
+ROW |300 |1 |
+ROW |301 |1 |
+ROW |302 |1 |
+ROW |303 |1 |
+ROW |304 |1 |
+ROW |305 |1 |
+ROW |306 |1 |
+ROW |307 |1 |
+ROW |308 |1 |
+ROW |309 |1 |
+ROW |310 |1 |
+ROW |311 |1 |
+ROW |312 |1 |
+ROW |313 |1 |
+ROW |314 |1 |
+ROW |315 |1 |
+ROW |316 |1 |
+ROW |317 |1 |
+ROW |318 |1 |
+ROW |319 |1 |
+ROW |320 |1 |
+ROW |321 |1 |
+ROW |322 |1 |
+ROW |323 |1 |
+ROW |324 |1 |
+ROW |325 |1 |
+ROW |326 |1 |
+ROW |327 |1 |
+ROW |328 |1 |
+ROW |329 |1 |