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>2020-09-21 12:07:16 +0300
committerContinuous Integration <ci@zabbix.com>2020-09-21 12:07:16 +0300
commit8c3ace1b2ed942dbe86a72a3c456c7b9c6cb676c (patch)
tree1809c804529e8fc584c01b663d3f5c2b5d118d7c
parentcdb31e78cefc33ffdf0fff47c8edf1ff906bbcc4 (diff)
.......... [ZBXNEXT-826] automatic deployment of official Zabbix templates and media types5.0.4rc1
-rw-r--r--create/src/data.tmpl264
-rw-r--r--create/src/templates.tmpl26044
2 files changed, 13505 insertions, 12803 deletions
diff --git a/create/src/data.tmpl b/create/src/data.tmpl
index ec62fae820b..2684812b7ee 100644
--- a/create/src/data.tmpl
+++ b/create/src/data.tmpl
@@ -47,27 +47,31 @@ 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;var EVENT_STATUS = {&eol; PROBLEM: 'PROBLEM',&eol; UPDATE: 'UPDATE',&eol; RESOLVE: 'OK'&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.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) {&eol; var problem_url = '{0}/tr_events.php?triggerid{1}&eventid={2}'&eol; .format(&eol; zabbix_url,&eol; triggerid,&eol; eventid&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; EVENT_STATUS.PROBLEM,&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)&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; fields.message = params.event_update_message &pipe;&pipe; '';&eol; fields.props.attachments = [&eol; createMessage(&eol; EVENT_STATUS.UPDATE,&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),&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; EVENT_STATUS.RESOLVE,&eol; RESOLVE_COLOR,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id)&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; EVENT_STATUS.PROBLEM,&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)&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.message = params.event_update_message &pipe;&pipe; '';&eol; fields.props.attachments = [&eol; createMessage(&eol; EVENT_STATUS.UPDATE,&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),&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; EVENT_STATUS.RESOLVE,&eol; RESOLVE_COLOR,&eol; params.event_recovery_date,&eol; params.event_recovery_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id)&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; status,&eol; event_severity_color,&eol; event_date,&eol; event_time,&eol; problem_url,&eol; isShort&eol;) {&eol; var message = {&eol; fallbac: '{0} #{1}: {2}'.format(status, params.event_id, params.event_name),&eol; title: '{0} #{1}: {2}'.format(status, params.event_id, params.event_name),&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; 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) {&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; 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, 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)) {&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; return JSON.stringify(result);&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 |try {&eol; var result = {tags: {}},&eol; params = JSON.parse(value),&eol; req = new CurlHttpRequest(),&eol; fields = {},&eol; url = params.url,&eol; severity;&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; req.AddHeader('Authorization: GenieKey ' + params.token);&eol;&eol; // Zabbix: 0 - Not classified, 1 - Information, 2 - Warning, 3 - Average, 4 - High, 5 - Disaster.&eol; // Opsgenie: P5 Informational, P4 Low, P3 Moderate, P2 High, P1 Critical.&eol; if ((params.severity == 0) &pipe;&pipe; (params.severity == 1))&eol; severity = 'P5';&eol; else if (params.severity == 2)&eol; severity = 'P4';&eol; else if (params.severity == 3)&eol; severity = 'P3';&eol; else if (params.severity == 4)&eol; severity = 'P2';&eol; else if (params.severity == 5)&eol; severity = 'P1';&eol;&eol; if ((params.eventvalue == 1) && (params.eventupdate == 0)) {&eol; fields.message = params.subject;&eol; fields.alias = params.eventid;&eol; fields.description = params.message;&eol; fields.details = {'Zabbix server': params.zbxurl, Problem: params.zbxurl +&eol; '/tr_events.php?triggerid=' + params.triggerid + '&eventid=' + params.eventid};&eol; fields.source = 'Zabbix';&eol; fields.priority = severity;&eol; }&eol; else if ((params.eventvalue == 1) && (params.eventupdate == 1)) {&eol; if (params.eventaction.includes('acknowledged'))&eol; url = url + '/' + params.eventid + '/acknowledge?identifierType=alias' ;&eol; else&eol; url = url + '/' + params.eventid + '/notes?identifierType=alias';&eol; fields.user = params.user;&eol; fields.note = params.message;&eol; }&eol; else if (params.eventvalue == 0) {&eol; url = url + '/' + params.eventid + '/close?identifierType=alias'&eol; fields.note = params.message;&eol; }&eol;&eol; var resp = req.Post(url,&eol; JSON.stringify(fields)&eol; );&eol;&eol; if (req.Status() != 202) {&eol; throw JSON.parse(resp).message;&eol; }&eol;&eol; resp = JSON.parse(resp);&eol;&eol; if ((params.eventvalue == 1) && (params.eventupdate == 0)) {&eol; url = params.url + '/' + params.eventid + '?identifierType=alias';&eol; resp = req.Get(url);&eol; resp = JSON.parse(resp);&eol; result.tags.opsgenie_issue_key = params.web + '/alert/detail/' + resp.data.id + '/details';&eol; }&eol;&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, 'Opsgenie notification failed : ' + error);&eol; throw 'Opsgenie notification failed : ' + error;&eol;&eol;}&eol;&eol;return JSON.stringify(result);|30s |1 |1 |{EVENT.TAGS.opsgenie_issue_key} |Alert in Opsgenie |Please refer to https://docs.opsgenie.com/docs/alert-api and https://www.zabbix.com/documentation/current/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 url (https://api.opsgenie.com/v2/alerts or https://api.eu.opsgenie.com/v2/alerts),&eol;web (for example, https://myzabbix.app.opsgenie.com), 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; 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 (params.hostname.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; 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; if (isNaN(parseInt(params.eventvalue)) &pipe;&pipe; (params.eventvalue < 0 &pipe;&pipe; params.eventvalue > 1)) {&eol; throw 'incorrect value for variable "eventvalue". The value must be 0 or 1.';&eol; }&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; 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)) {&eol; fields.event_action = 'trigger';&eol; fields.payload = {&eol; summary: params.eventname,&eol; source: params.hostname + ' : ' + params.hostip,&eol; severity: severityMapping[params.severity],&eol; 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; };&eol; fields.links = [{&eol; href: params.url + '/tr_events.php?triggerid=' + params.triggerid + '&eventid=' + params.eventid,&eol; text: 'Event link'&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/current/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;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; request.SetProxy(params.HTTPProxy);&eol; }&eol;&eol; if (isNaN(params.priority) &pipe;&pipe; params.priority < -2 &pipe;&pipe; params.priority > 2) {&eol; throw 'field "priority" should be -2..2';&eol; }&eol;&eol; if (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.url + '/tr_events.php?triggerid=' + params.triggerid + '&eventid=' + params.eventid,&eol; url_title: params.url_title,&eol; priority: params.priority&eol; };&eol;&eol; if (params.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;var EVENT_STATUS = {&eol; PROBLEM: 'PROBLEM',&eol; UPDATE: 'UPDATE',&eol; RESOLVE: 'OK'&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; req.AddHeader('Content-Type: application/x-www-form-urlencoded; charset=utf-8');&eol;&eol; var resp = JSON.parse(req.Get(&eol; '{0}?token={1}&channel={2}&message_ts={3}'.format(&eol; Slack.getPermalink,&eol; params.bot_token,&eol; channelId,&eol; messageTimestamp&eol; )&eol; ));&eol;&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; return resp.permalink;&eol;}&eol;&eol;function createProblemURL(zabbix_url, triggerid, eventid) {&eol; var problem_url = '{0}/tr_events.php?triggerid={1}&eventid={2}'&eol; .format(&eol; zabbix_url.replace(/\/+$/, ''),&eol; triggerid,&eol; eventid&eol; );&eol;&eol; return problem_url;&eol;}&eol;&eol;function getTagValue(event_tags, key) {&eol; var pattern = new RegExp('(' + key + ':.+)');&eol; var tag_value = event_tags&eol; .split(',')&eol; .filter(function (v) {&eol; return v.match(pattern);&eol; })&eol; .map(function (v) {&eol; return v.split(':')[1];&eol; })[0]&eol; &pipe;&pipe; 0;&eol;&eol; return tag_value;&eol;}&eol;&eol;function handlerAlarm(params) {&eol; var fields = {&eol; channel: params.channel,&eol; as_user: params.slack_as_user,&eol; };&eol;&eol; if (isEventProblem(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; EVENT_STATUS.PROBLEM,&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)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; result.tags.__message_ts = resp.ts;&eol; result.tags.__channel_id = resp.channel;&eol; result.tags.__channel_name = params.channel;&eol; result.tags.__message_link = getPermalink(resp.channel, resp.ts);&eol; }&eol; else if (isEventUpdate(params)) {&eol; fields.thread_ts = getTagValue(params.event_tags, 'message_ts');&eol; fields.attachments = [&eol; createMessage(&eol; EVENT_STATUS.UPDATE,&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),&eol; true,&eol; params.event_update_message&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; }&eol; else if (isEventResolve(params)) {&eol; fields.channel = getTagValue(params.event_tags, 'channel_id');&eol; fields.text = '';&eol; fields.ts = getTagValue(params.event_tags, 'message_ts');&eol; fields.attachments = [&eol; createMessage(&eol; EVENT_STATUS.RESOLVE,&eol; RESOLVE_COLOR,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id)&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.chatUpdate, JSON.stringify(fields)));&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol; }&eol;}&eol;&eol;function handlerEvent(params) {&eol; var fields = {&eol; channel: params.channel,&eol; as_user: params.slack_as_user&eol; };&eol;&eol; if (isEventProblem(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; EVENT_STATUS.PROBLEM,&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)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; result.tags.__channel_name = params.channel;&eol; result.tags.__message_link = getPermalink(resp.channel, resp.ts);&eol;&eol; }&eol; else if (isEventUpdate(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; EVENT_STATUS.UPDATE,&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),&eol; false,&eol; params.event_update_message&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; }&eol; else if (isEventResolve(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; EVENT_STATUS.RESOLVE,&eol; RESOLVE_COLOR,&eol; params.event_recovery_date,&eol; params.event_recovery_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id)&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol; }&eol;}&eol;&eol;function createMessage(&eol; status,&eol; event_severity_color,&eol; event_date,&eol; event_time,&eol; problem_url,&eol; isShort,&eol; messageText&eol;) {&eol; var message = {&eol; fallback: '{0}: {1}'.format(status, params.event_name),&eol; title: '{0}: {1}'.format(status, params.event_name),&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_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; 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) {&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; 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, 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_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 (!~['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)) {&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; return JSON.stringify(result);&eol;&eol;}&eol;catch (error) {&eol; Zabbix.Log(4, '[ Mattermost 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 if (!params.discord_endpoint.startsWith('https://discordapp.com/api/webhooks')) {&eol; throw 'Invalid Discord webhook URL: ' + params.discord_endpoint;&eol; }&eol; else {&eol; params.discord_endpoint = params.discord_endpoint.replace('/api/', '/api/v1000/') + '?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 (!(params.event_value == 0 &pipe;&pipe; params.event_value == 1)) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (!(params.event_update_status == 0 &pipe;&pipe; 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) {&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.zabbix_url + '/tr_events.php?triggerid=' +&eol; params.trigger_id + '&eventid=' + params.event_id&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) {&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_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; 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 |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 (!params.teams_endpoint) {&eol; throw 'Cannot get teams_endpoint';&eol; }&eol; else if (!params.teams_endpoint.startsWith('https://outlook.office.com/webhook/')) {&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} | |
+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/current/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/current/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; req.AddHeader('Content-Type: application/x-www-form-urlencoded; charset=utf-8');&eol;&eol; var resp = JSON.parse(req.Get(&eol; '{0}?token={1}&channel={2}&message_ts={3}'.format(&eol; Slack.getPermalink,&eol; params.bot_token,&eol; channelId,&eol; messageTimestamp&eol; )&eol; ));&eol;&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; return resp.permalink;&eol;}&eol;&eol;function createProblemURL(zabbix_url, triggerid, eventid, event_source) {&eol; var problem_url = '';&eol; if (event_source === '0') {&eol; problem_url = '{0}/tr_events.php?triggerid={1}&eventid={2}'&eol; .format(&eol; zabbix_url,&eol; triggerid,&eol; eventid&eol; );&eol; }&eol; else {&eol; problem_url = zabbix_url;&eol; }&eol;&eol; return problem_url;&eol;}&eol;&eol;function getTagValue(event_tags, key) {&eol; var pattern = new RegExp('(' + key + ':.+)');&eol; var tag_value = event_tags&eol; .split(',')&eol; .filter(function (v) {&eol; return v.match(pattern);&eol; })&eol; .map(function (v) {&eol; return v.split(':')[1];&eol; })[0]&eol; &pipe;&pipe; 0;&eol;&eol; return tag_value;&eol;}&eol;&eol;function handlerAlarm(params) {&eol; var fields = {&eol; channel: params.channel,&eol; as_user: params.slack_as_user,&eol; };&eol;&eol; if (isEventProblem(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; result.tags.__message_ts = resp.ts;&eol; result.tags.__channel_id = resp.channel;&eol; result.tags.__channel_name = params.channel;&eol; result.tags.__message_link = getPermalink(resp.channel, resp.ts);&eol; }&eol; else if (isEventUpdate(params)) {&eol; fields.thread_ts = getTagValue(params.event_tags, 'message_ts');&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),&eol; true&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; }&eol; else if (isEventResolve(params)) {&eol; fields.channel = getTagValue(params.event_tags, 'channel_id');&eol; fields.text = '';&eol; fields.ts = getTagValue(params.event_tags, 'message_ts');&eol; fields.attachments = [&eol; createMessage(&eol; RESOLVE_COLOR,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.chatUpdate, JSON.stringify(fields)));&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol; }&eol;}&eol;&eol;function handlerEvent(params) {&eol; var fields = {&eol; channel: params.channel,&eol; as_user: params.slack_as_user&eol; };&eol;&eol; if (isEventProblem(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; result.tags.__channel_name = params.channel;&eol; result.tags.__message_link = getPermalink(resp.channel, resp.ts);&eol;&eol; }&eol; else if (isEventUpdate(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),&eol; false&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; }&eol; else if (isEventResolve(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; RESOLVE_COLOR,&eol; params.event_recovery_date,&eol; params.event_recovery_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol; }&eol;}&eol;&eol;function createMessage(&eol; event_severity_color,&eol; event_date,&eol; event_time,&eol; problem_url,&eol; isShort,&eol; messageText&eol;) {&eol; var message = {&eol; fallback: params.alert_subject,&eol; title: params.alert_subject,&eol; color: event_severity_color,&eol; title_link: problem_url,&eol; pretext: messageText &pipe;&pipe; '',&eol;&eol; fields: [&eol; {&eol; title: 'Host',&eol; value: '{0} [{1}]'.format(params.host_name, params.host_conn),&eol; short: true&eol; },&eol; {&eol; title: 'Event time',&eol; value: '{0} {1}'.format(event_date, event_time),&eol; short: true&eol; }&eol; ],&eol; };&eol;&eol; if (params.event_source === '0') {&eol; message.fields.push(&eol; {&eol; title: 'Severity',&eol; value: params.event_severity,&eol; short: true&eol; },&eol; {&eol; title: 'Opdata',&eol; value: params.event_opdata,&eol; short: true&eol; }&eol; );&eol; }&eol;&eol; if (!isShort && params.event_source === '0') {&eol; message['actions'] = [&eol; {&eol; type: 'button',&eol; text: 'Open in Zabbix',&eol; url: problem_url&eol; }&eol; ];&eol;&eol; message.fields.push(&eol; {&eol; title: 'Event tags',&eol; value: params.event_tags.replace(/__.+?:(.+?,&pipe;.+)/g, '') &pipe;&pipe; 'None',&eol; short: true&eol; },&eol; {&eol; title: 'Trigger description',&eol; value: params.trigger_description,&eol; short: true&eol; }&eol; );&eol; }&eol;&eol; if (params.event_source !== '0' &pipe;&pipe; params.event_update_status === '1') {&eol; message.fields.push(&eol; {&eol; title: 'Details',&eol; value: params.alert_message,&eol; short: false&eol; }&eol; );&eol; }&eol;&eol; return message;&eol;}&eol;&eol;function validateParams(params) {&eol; if (typeof params.bot_token !== 'string' &pipe;&pipe; params.bot_token.trim() === '') {&eol; throw 'Field "bot_token" cannot be empty';&eol; }&eol;&eol; if (typeof params.channel !== 'string' &pipe;&pipe; params.channel.trim() === '') {&eol; throw 'Field "channel" cannot be empty';&eol; }&eol;&eol; if (isNaN(params.event_id)) {&eol; throw 'Field "event_id" is not a number';&eol; }&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; if (params.event_source !== '0') {&eol; params.event_nseverity = '0';&eol; params.event_severity = 'Not classified';&eol; params.event_update_status = '0';&eol; params.slack_mode = 'event';&eol; }&eol;&eol; if (params.event_source === '1' &pipe;&pipe; params.event_source === '2') {&eol; params.event_value = '1';&eol; }&eol;&eol; if (params.event_source === '1') {&eol; params.host_name = params.discovery_host_dns;&eol; params.host_ip = params.discovery_host_ip;&eol; }&eol;&eol; if (!~[0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity))) {&eol; throw 'Incorrect "event_nseverity" parameter given: ' + params.event_nseverity + '\nMust be 0-5.';&eol; }&eol;&eol; if (typeof params.event_severity !== 'string' &pipe;&pipe; params.event_severity.trim() === '') {&eol; throw 'Field "event_severity" cannot be empty';&eol; }&eol;&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value !== '0' && params.event_value !== '1') {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (typeof params.host_conn !== 'string' &pipe;&pipe; params.host_conn.trim() === '') {&eol; throw 'Field "host_conn" cannot be empty';&eol; }&eol;&eol; if (typeof params.host_name !== 'string' &pipe;&pipe; params.host_name.trim() === '') {&eol; throw 'Field "host_name" cannot be empty';&eol; }&eol;&eol; if (!~['true', 'false'].indexOf(params.slack_as_user.toLowerCase())) {&eol; throw 'Incorrect "slack_as_user" parameter given: ' + params.slack_as_user + '\nMust be "true" or "false".';&eol; }&eol;&eol; if (!~['alarm', 'event'].indexOf(params.slack_mode)) {&eol; throw 'Incorrect "slack_mode" parameter given: ' + params.slack_mode + '\nMust be "alarm" or "event".';&eol; }&eol;&eol; if (isNaN(params.trigger_id) && params.event_source === '0') {&eol; throw 'field "trigger_id" is not a number';&eol; }&eol;&eol; if (typeof params.zabbix_url !== 'string' &pipe;&pipe; params.zabbix_url.trim() === '') {&eol; throw 'Field "zabbix_url" cannot be empty';&eol; }&eol;&eol; if (!/^(http&pipe;https):\/\/.+/.test(params.zabbix_url)) {&eol; throw 'Field "zabbix_url" must contain a schema';&eol; }&eol;}&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; validateParams(params);&eol;&eol; var req = new 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 (!params.teams_endpoint) {&eol; throw 'Cannot get teams_endpoint';&eol; }&eol; else if (!params.teams_endpoint.startsWith('https://outlook.office.com/webhook/')) {&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/integration/zabbix &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/current/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. |
TABLE |media_type_param
FIELDS|mediatype_paramid|mediatypeid|name |value |
@@ -77,7 +81,6 @@ ROW |3 |5 |mattermost_url
ROW |4 |5 |send_mode |alarm |
ROW |5 |5 |send_to |{ALERT.SENDTO} |
ROW |6 |5 |event_tags |{EVENT.TAGS} |
-ROW |7 |5 |event_name |{EVENT.NAME} |
ROW |8 |5 |event_nseverity |{EVENT.NSEVERITY} |
ROW |10 |5 |event_value |{EVENT.VALUE} |
ROW |11 |5 |event_update_status |{EVENT.UPDATE.STATUS} |
@@ -86,31 +89,18 @@ ROW |13 |5 |event_time
ROW |14 |5 |event_severity |{EVENT.SEVERITY} |
ROW |15 |5 |event_opdata |{EVENT.OPDATA} |
ROW |16 |5 |event_id |{EVENT.ID} |
-ROW |17 |5 |event_update_message |{EVENT.UPDATE.MESSAGE} |
ROW |18 |5 |trigger_id |{TRIGGER.ID} |
ROW |19 |5 |trigger_description |{TRIGGER.DESCRIPTION} |
-ROW |20 |5 |host_name |{HOST.NAME} |
+ROW |20 |5 |host_name |{HOST.HOST} |
ROW |21 |5 |host_ip |{HOST.IP} |
ROW |22 |5 |event_update_date |{EVENT.UPDATE.DATE} |
ROW |23 |5 |event_update_time |{EVENT.UPDATE.TIME} |
ROW |24 |5 |event_recovery_date |{EVENT.RECOVERY.DATE} |
ROW |25 |5 |event_recovery_time |{EVENT.RECOVERY.TIME} |
-ROW |26 |6 |url |<put your opsgenie api url> |
-ROW |27 |6 |web |<put your opsgenie web url> |
-ROW |28 |6 |token |<put your key> |
-ROW |29 |6 |subject |{ALERT.SUBJECT} |
-ROW |30 |6 |message |{ALERT.MESSAGE} |
-ROW |31 |6 |eventid |{EVENT.ID} |
-ROW |32 |6 |severity |{EVENT.NSEVERITY} |
-ROW |33 |6 |user |{USER.FULLNAME} |
-ROW |34 |6 |eventvalue |{EVENT.VALUE} |
-ROW |35 |6 |eventupdate |{EVENT.UPDATE.STATUS} |
-ROW |36 |6 |eventaction |{EVENT.UPDATE.ACTION} |
ROW |37 |6 |zbxurl |{$ZABBIX.URL} |
-ROW |38 |6 |triggerid |{TRIGGER.ID} |
ROW |39 |7 |token |<put your key> |
ROW |40 |7 |eventid |{EVENT.ID} |
-ROW |41 |7 |eventname |{EVENT.NAME} |
+ROW |41 |7 |eventname |{ALERT.SUBJECT} |
ROW |42 |7 |hostname |{HOST.NAME} |
ROW |43 |7 |hostip |{HOST.IP} |
ROW |44 |7 |severity |{EVENT.NSEVERITY} |
@@ -130,7 +120,6 @@ ROW |58 |8 |message
ROW |59 |8 |title |{ALERT.SUBJECT} |
ROW |60 |8 |url |{$ZABBIX.URL} |
ROW |61 |8 |url_title |Zabbix |
-ROW |62 |8 |priority |0 |
ROW |63 |8 |eventid |{EVENT.ID} |
ROW |64 |8 |triggerid |{TRIGGER.ID} |
ROW |65 |9 |zabbix_url |{$ZABBIX.URL} |
@@ -139,7 +128,6 @@ ROW |67 |9 |channel
ROW |68 |9 |slack_mode |alarm |
ROW |69 |9 |slack_as_user |true |
ROW |71 |9 |event_tags |{EVENT.TAGS} |
-ROW |72 |9 |event_name |{EVENT.NAME} |
ROW |73 |9 |event_nseverity |{EVENT.NSEVERITY} |
ROW |75 |9 |event_value |{EVENT.VALUE} |
ROW |76 |9 |event_update_status |{EVENT.UPDATE.STATUS} |
@@ -148,11 +136,9 @@ ROW |78 |9 |event_time
ROW |79 |9 |event_severity |{EVENT.SEVERITY} |
ROW |80 |9 |event_opdata |{EVENT.OPDATA} |
ROW |81 |9 |event_id |{EVENT.ID} |
-ROW |82 |9 |event_update_message |{EVENT.UPDATE.MESSAGE} |
ROW |83 |9 |trigger_id |{TRIGGER.ID} |
ROW |84 |9 |trigger_description |{TRIGGER.DESCRIPTION} |
-ROW |85 |9 |host_name |{HOST.NAME} |
-ROW |86 |9 |host_ip |{HOST.IP} |
+ROW |85 |9 |host_name |{HOST.HOST} |
ROW |87 |9 |event_update_date |{EVENT.UPDATE.DATE} |
ROW |88 |9 |event_update_time |{EVENT.UPDATE.TIME} |
ROW |89 |9 |event_recovery_date |{EVENT.RECOVERY.DATE} |
@@ -376,6 +362,152 @@ ROW |308 |11 |Trigger_ID
ROW |309 |11 |Trigger_Status |{TRIGGER.STATUS} |
ROW |310 |11 |User |{USER.FULLNAME} |
ROW |311 |11 |Zabbix_URL |{$ZABBIX.URL} |
+ROW |312 |10 |event_source |{EVENT.SOURCE} |
+ROW |313 |22 |.ILERT.ALERT.SOURCE.KEY |{ALERT.SENDTO} |
+ROW |314 |22 |.ILERT.INCIDENT.SUMMARY | |
+ROW |315 |22 |ALERT.MESSAGE |{ALERT.MESSAGE} |
+ROW |316 |22 |ALERT.SUBJECT |{ALERT.SUBJECT} |
+ROW |317 |22 |EVENT.ACK.STATUS |{EVENT.ACK.STATUS} |
+ROW |318 |22 |EVENT.DATE |{EVENT.DATE} |
+ROW |319 |22 |EVENT.ID |{EVENT.ID} |
+ROW |320 |22 |EVENT.NAME |{EVENT.NAME} |
+ROW |321 |22 |EVENT.NSEVERITY |{EVENT.NSEVERITY} |
+ROW |322 |22 |EVENT.OPDATA |{EVENT.OPDATA} |
+ROW |323 |22 |EVENT.RECOVERY.DATE |{EVENT.RECOVERY.DATE} |
+ROW |324 |22 |EVENT.RECOVERY.TIME |{EVENT.RECOVERY.TIME} |
+ROW |325 |22 |EVENT.RECOVERY.VALUE |{EVENT.RECOVERY.VALUE} |
+ROW |326 |22 |EVENT.SEVERITY |{EVENT.SEVERITY} |
+ROW |327 |22 |EVENT.TAGS |{EVENT.TAGS} |
+ROW |328 |22 |EVENT.TIME |{EVENT.TIME} |
+ROW |329 |22 |EVENT.UPDATE.ACTION |{EVENT.UPDATE.ACTION} |
+ROW |330 |22 |EVENT.UPDATE.DATE |{EVENT.UPDATE.DATE} |
+ROW |331 |22 |EVENT.UPDATE.MESSAGE |{EVENT.UPDATE.MESSAGE} |
+ROW |332 |22 |EVENT.UPDATE.STATUS |{EVENT.UPDATE.STATUS} |
+ROW |333 |22 |EVENT.UPDATE.TIME |{EVENT.UPDATE.TIME} |
+ROW |334 |22 |EVENT.VALUE |{EVENT.VALUE} |
+ROW |335 |22 |HOST.HOST |{HOST.HOST} |
+ROW |336 |22 |HOST.IP |{HOST.IP} |
+ROW |337 |22 |HOST.NAME |{HOST.NAME} |
+ROW |338 |22 |ITEM.ID1 |{ITEM.ID1} |
+ROW |339 |22 |ITEM.ID2 |{ITEM.ID2} |
+ROW |340 |22 |ITEM.ID3 |{ITEM.ID3} |
+ROW |341 |22 |ITEM.ID4 |{ITEM.ID4} |
+ROW |342 |22 |ITEM.ID5 |{ITEM.ID5} |
+ROW |343 |22 |ITEM.NAME1 |{ITEM.NAME1} |
+ROW |344 |22 |ITEM.NAME2 |{ITEM.NAME2} |
+ROW |345 |22 |ITEM.NAME3 |{ITEM.NAME3} |
+ROW |346 |22 |ITEM.NAME4 |{ITEM.NAME4} |
+ROW |347 |22 |ITEM.NAME5 |{ITEM.NAME5} |
+ROW |348 |22 |TRIGGER.DESCRIPTION |{TRIGGER.DESCRIPTION} |
+ROW |349 |22 |TRIGGER.ID |{TRIGGER.ID} |
+ROW |350 |22 |TRIGGER.NAME |{TRIGGER.NAME} |
+ROW |351 |22 |TRIGGER.SEVERITY |{TRIGGER.SEVERITY} |
+ROW |352 |22 |TRIGGER.STATUS |{TRIGGER.STATUS} |
+ROW |353 |22 |TRIGGER.URL |{TRIGGER.URL} |
+ROW |354 |22 |TRIGGER.VALUE |{TRIGGER.VALUE} |
+ROW |355 |22 |USER.FULLNAME |{USER.FULLNAME} |
+ROW |356 |22 |ZABBIX.URL |{$ZABBIX.URL} |
+ROW |357 |5 |alert_message |{ALERT.MESSAGE} |
+ROW |358 |5 |alert_subject |{ALERT.SUBJECT} |
+ROW |359 |5 |discovery_host_dns |{DISCOVERY.DEVICE.DNS} |
+ROW |360 |5 |discovery_host_ip |{DISCOVERY.DEVICE.IPADDRESS} |
+ROW |361 |5 |event_source |{EVENT.SOURCE} |
+ROW |362 |6 |alert_message |{ALERT.MESSAGE} |
+ROW |363 |6 |alert_subject |{ALERT.SUBJECT} |
+ROW |364 |6 |event_id |{EVENT.ID} |
+ROW |365 |6 |event_nseverity |{EVENT.NSEVERITY} |
+ROW |366 |6 |event_source |{EVENT.SOURCE} |
+ROW |367 |6 |event_tags_json |{EVENT.TAGSJSON} |
+ROW |368 |6 |event_update_status |{EVENT.UPDATE.STATUS} |
+ROW |369 |6 |event_value |{EVENT.VALUE} |
+ROW |370 |6 |opsgenie_api |<put your opsgenie api> |
+ROW |371 |6 |opsgenie_tags | |
+ROW |372 |6 |opsgenie_teams | |
+ROW |373 |6 |opsgenie_token |<put your token> |
+ROW |374 |6 |opsgenie_web |<put your opsgenie web> |
+ROW |375 |6 |severity_average |P3 |
+ROW |376 |6 |severity_default |P5 |
+ROW |377 |6 |severity_disaster |P1 |
+ROW |378 |6 |severity_high |P2 |
+ROW |379 |6 |severity_information |P5 |
+ROW |380 |6 |severity_not_classified |P5 |
+ROW |381 |6 |severity_warning |P4 |
+ROW |382 |6 |trigger_id |{TRIGGER.ID} |
+ROW |383 |6 |zbxuser |{USER.FULLNAME} |
+ROW |384 |7 |alert_message |{ALERT.MESSAGE} |
+ROW |385 |7 |event_source |{EVENT.SOURCE} |
+ROW |386 |8 |event_nseverity |{EVENT.NSEVERITY} |
+ROW |387 |8 |event_source |{EVENT.SOURCE} |
+ROW |388 |8 |event_value |{EVENT.VALUE} |
+ROW |389 |8 |priority_average |0 |
+ROW |390 |8 |priority_default |0 |
+ROW |391 |8 |priority_disaster |0 |
+ROW |392 |8 |priority_high |0 |
+ROW |393 |8 |priority_information |0 |
+ROW |394 |8 |priority_not_classified |0 |
+ROW |395 |8 |priority_warning |0 |
+ROW |396 |9 |alert_message |{ALERT.MESSAGE} |
+ROW |397 |9 |alert_subject |{ALERT.SUBJECT} |
+ROW |398 |9 |discovery_host_dns |{DISCOVERY.DEVICE.DNS} |
+ROW |399 |9 |discovery_host_ip |{DISCOVERY.DEVICE.IPADDRESS} |
+ROW |400 |9 |event_source |{EVENT.SOURCE} |
+ROW |401 |9 |host_conn |{HOST.CONN} |
+ROW |402 |23 |alert_message |{ALERT.MESSAGE} |
+ROW |403 |23 |alert_subject |{ALERT.SUBJECT} |
+ROW |404 |23 |event_nseverity |{EVENT.NSEVERITY} |
+ROW |405 |23 |event_recovery_value |{EVENT.RECOVERY.VALUE} |
+ROW |406 |23 |event_source |{EVENT.SOURCE} |
+ROW |407 |23 |event_update_status |{EVENT.UPDATE.STATUS} |
+ROW |408 |23 |event_value |{EVENT.VALUE} |
+ROW |409 |23 |priority_average |Medium |
+ROW |410 |23 |priority_default |Low |
+ROW |411 |23 |priority_disaster |Critical |
+ROW |412 |23 |priority_high |High |
+ROW |413 |23 |samanage_incident_id |{EVENT.TAGS.__zbx_solarwinds_inc_id} |
+ROW |414 |23 |samanage_token |<PUT YOUR TOKEN HERE> |
+ROW |415 |23 |samanage_url |<PUT YOUR INSTANCE URL HERE> |
+ROW |416 |24 |alert_message |{ALERT.MESSAGE} |
+ROW |417 |24 |alert_subject |{ALERT.SUBJECT} |
+ROW |418 |24 |event_id |{EVENT.ID} |
+ROW |419 |24 |event_nseverity |{EVENT.NSEVERITY} |
+ROW |420 |24 |event_source |{EVENT.SOURCE} |
+ROW |421 |24 |event_update_message |{EVENT.UPDATE.MESSAGE} |
+ROW |422 |24 |event_update_status |{EVENT.UPDATE.STATUS} |
+ROW |423 |24 |event_value |{EVENT.VALUE} |
+ROW |424 |24 |sysaid_auth_password |<PUT YOUR USER PASSWORD> |
+ROW |425 |24 |sysaid_auth_user |<PUT YOUR USER NAME> |
+ROW |426 |24 |sysaid_category_level_1 |<PUT YOUR CATEGORY> |
+ROW |427 |24 |sysaid_category_level_2 |<PUT YOUR SUB-CATEGORY> |
+ROW |428 |24 |sysaid_category_level_3 |<PUT YOUR THIRD LEVEL CATEGORY> |
+ROW |429 |24 |sysaid_default_priority_id |1 |
+ROW |430 |24 |sysaid_incident_id |{EVENT.TAGS.__zbx_sysaid_incident_id} |
+ROW |431 |24 |sysaid_incident_state |1 |
+ROW |432 |24 |sysaid_template_id |<PUT YOUR TEMPLATE ID> |
+ROW |433 |24 |sysaid_urgency_id |<PUT YOUR URGENCY ID> |
+ROW |434 |24 |sysaid_url |<PUT YOUR SYSAID URL> |
+ROW |435 |24 |trigger_id |{TRIGGER.ID} |
+ROW |436 |24 |zabbix_url |{$ZABBIX.URL} |
+ROW |437 |25 |alert_message |{ALERT.MESSAGE} |
+ROW |438 |25 |alert_subject |{ALERT.SUBJECT} |
+ROW |439 |25 |event_id |{EVENT.ID} |
+ROW |440 |25 |event_nseverity |{EVENT.NSEVERITY} |
+ROW |441 |25 |event_source |{EVENT.SOURCE} |
+ROW |442 |25 |event_update_status |{EVENT.UPDATE.STATUS} |
+ROW |443 |25 |event_value |{EVENT.VALUE} |
+ROW |444 |25 |severity_average |P3 |
+ROW |445 |25 |severity_default |P5 |
+ROW |446 |25 |severity_disaster |P1 |
+ROW |447 |25 |severity_high |P2 |
+ROW |448 |25 |severity_information |P5 |
+ROW |449 |25 |severity_not_classified |P5 |
+ROW |450 |25 |severity_warning |P4 |
+ROW |451 |25 |topdesk_api |<put your TOPdesk API URL> |
+ROW |452 |25 |topdesk_issue_key |{EVENT.TAGS.__zbx_tpd_issuekey} |
+ROW |453 |25 |topdesk_password |<put your TOPdesk application password> |
+ROW |454 |25 |topdesk_status |<put default status for new tickets> |
+ROW |455 |25 |topdesk_user |<put your TOPdesk username> |
+ROW |456 |25 |trigger_id |{TRIGGER.ID} |
+ROW |457 |25 |zbxurl |{$ZABBIX.URL} |
TABLE |media_type_message
FIELDS|mediatype_messageid|mediatypeid|eventsource|recovery|subject |message |
@@ -450,6 +582,54 @@ ROW |68 |21 |0 |1 |Resolved: {EVENT.NAM
ROW |69 |21 |0 |2 |Updated problem: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
ROW |70 |21 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
ROW |71 |21 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |72 |10 |0 |0 |[{EVENT.STATUS}] {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |73 |10 |0 |1 |[{EVENT.STATUS}] {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |74 |10 |0 |2 |[{EVENT.STATUS}] {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |75 |10 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |76 |10 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |77 |22 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |78 |22 |0 |2 |Updated problem in {EVENT.AGE}: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |79 |22 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Problem duration: {EVENT.DURATION}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |80 |5 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |81 |5 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Problem duration: {EVENT.DURATION}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |82 |5 |0 |2 |Updated problem in {EVENT.AGE}: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |83 |5 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |84 |5 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |85 |6 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |86 |6 |0 |2 |Updated problem in {EVENT.AGE}: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |87 |6 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |88 |6 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |89 |6 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Problem duration: {EVENT.DURATION}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |90 |7 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |91 |7 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Problem duration: {EVENT.DURATION}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |92 |7 |0 |2 |Updated problem in {EVENT.AGE}: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |93 |7 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |94 |7 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |95 |8 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |96 |8 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Problem duration: {EVENT.DURATION}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |97 |8 |0 |2 |Updated problem in {EVENT.AGE}: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |98 |8 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |99 |8 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |100 |9 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |101 |9 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Problem duration: {EVENT.DURATION}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |102 |9 |0 |2 |Updated problem in {EVENT.AGE}: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |103 |9 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |104 |9 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |105 |23 |0 |0 |[{EVENT.STATUS}] {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;&eol;Trigger description: {TRIGGER.DESCRIPTION} |
+ROW |106 |23 |0 |1 |[{EVENT.STATUS}] {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |107 |23 |0 |2 |[{EVENT.STATUS}] {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |108 |23 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |109 |23 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |110 |24 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |111 |24 |0 |1 |Resolved: {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |112 |24 |0 |2 |Updated problem: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |113 |24 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |114 |24 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |115 |25 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |116 |25 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Problem duration: {EVENT.DURATION}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |117 |25 |0 |2 |Updated problem in {EVENT.AGE}: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |118 |25 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |119 |25 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
TABLE |usrgrp
FIELDS|usrgrpid|name |gui_access|users_status|debug_mode|
diff --git a/create/src/templates.tmpl b/create/src/templates.tmpl
index e5f80b1750e..73fec1584a0 100644
--- a/create/src/templates.tmpl
+++ b/create/src/templates.tmpl
@@ -42,15 +42,13 @@ ROW |10100 |NULL |Template App POP Service
ROW |10101 |NULL |Template App SMTP Service |3 |-1 |2 | | |Template App SMTP Service |0 |NULL | |1 |1 | | | | | |1 |0 |
ROW |10102 |NULL |Template App SSH Service |3 |-1 |2 | | |Template App SSH Service |0 |NULL | |1 |1 | | | | | |1 |0 |
ROW |10103 |NULL |Template App Telnet Service |3 |-1 |2 | | |Template App Telnet Service |0 |NULL | |1 |1 | | | | | |1 |0 |
-ROW |10169 |NULL |Template App Generic Java JMX |3 |-1 |2 | | |Template App Generic Java JMX |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10169 |NULL |Template App Generic Java JMX |3 |-1 |2 | | |Template App Generic Java JMX |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10170 |NULL |Template DB MySQL |3 |-1 |2 | | |Template DB MySQL |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 USAGE,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> |1 |1 | | | | | |1 |0 |
ROW |10171 |NULL |Template Server Intel SR1530 IPMI |3 |-1 |2 | | |Template Server Intel SR1530 IPMI |0 |NULL | |1 |1 | | | | | |1 |0 |
ROW |10172 |NULL |Template Server Intel SR1630 IPMI |3 |-1 |2 | | |Template Server Intel SR1630 IPMI |0 |NULL | |1 |1 | | | | | |1 |0 |
-ROW |10173 |NULL |Template VM VMware |3 |-1 |2 | | |Template VM VMware |0 |NULL | |1 |1 | | | | | |1 |0 |
-ROW |10174 |NULL |Template VM VMware Guest |3 |-1 |2 | | |Template VM VMware Guest |0 |NULL | |1 |1 | | | | | |1 |0 |
-ROW |10175 |NULL |Template VM VMware Hypervisor |3 |-1 |2 | | |Template VM VMware Hypervisor |0 |NULL | |1 |1 | | | | | |1 |0 |
-ROW |10176 |NULL |{#HV.UUID} |0 |-1 |2 | | |{#HV.NAME} |2 |NULL | |1 |1 | | | | | |1 |0 |
-ROW |10177 |NULL |{#VM.UUID} |0 |-1 |2 | | |{#VM.NAME} |2 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10173 |NULL |Template VM VMware |3 |-1 |2 | | |Template VM VMware |0 |NULL |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 |10174 |NULL |Template VM VMware Guest |3 |-1 |2 | | |Template VM VMware Guest |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
+ROW |10175 |NULL |Template VM VMware Hypervisor |3 |-1 |2 | | |Template VM VMware Hypervisor |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10183 |NULL |Template Module EtherLike-MIB SNMP |3 |-1 |2 | | |Template Module EtherLike-MIB SNMP |0 |NULL |Template EtherLike-MIB (duplex control only)&eol;&eol;MIBs used:&eol;EtherLike-MIB&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
ROW |10185 |NULL |Template Module HOST-RESOURCES-MIB SNMP |3 |-1 |2 | | |Template Module HOST-RESOURCES-MIB SNMP |0 |NULL |HOST-RESOURCES-MIB: CPU, memory and storage(vfs.fs.file) linked together.&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
ROW |10186 |NULL |Template Module ICMP Ping |3 |-1 |2 | | |Template Module ICMP Ping |0 |NULL |Template Module ICMP Ping&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
@@ -79,7 +77,7 @@ ROW |10227 |NULL |Template Net HP Comware HH3C SNMP
ROW |10229 |NULL |Template Net Huawei VRP SNMP |3 |-1 |2 | | |Template Net Huawei VRP SNMP |0 |NULL |Template Net Huawei VRP&eol;&eol;MIBs used:&eol;HUAWEI-ENTITY-EXTENT-MIB&eol;ENTITY-MIB&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
ROW |10230 |NULL |Template Net Intel_Qlogic Infiniband SNMP |3 |-1 |2 | | |Template Net Intel_Qlogic Infiniband SNMP |0 |NULL |Template Net Intel_Qlogic Infiniband&eol;&eol;MIBs used:&eol;ICS-CHASSIS-MIB&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
ROW |10231 |NULL |Template Net Juniper SNMP |3 |-1 |2 | | |Template Net Juniper SNMP |0 |NULL |Template Net Juniper&eol;&eol;MIBs used:&eol;JUNIPER-ALARM-MIB&eol;JUNIPER-MIB&eol;SNMPv2-MIB&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
-ROW |10233 |NULL |Template Net Mikrotik SNMP |3 |-1 |2 | | |Template Net Mikrotik SNMP |0 |NULL |Template Net Mikrotik&eol;&eol;MIBs used:&eol;HOST-RESOURCES-MIB&eol;MIKROTIK-MIB&eol;&eol;Known Issues:&eol;&eol; Description: Doesn't have ifHighSpeed filled. fixed in more recent versions&eol; Version: RouterOS 6.28 or lower&eol;&eol; Description: Doesn't have any temperature sensors&eol; Version: RouterOS 6.38.5&eol; Device: Mikrotik 941-2nD, Mikrotik 951G-2HnD&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
+ROW |10233 |NULL |Template Net Mikrotik SNMP |3 |-1 |2 | | |Template Net Mikrotik SNMP |0 |NULL |Template Net Mikrotik&eol;&eol;MIBs used:&eol;HOST-RESOURCES-MIB&eol;MIKROTIK-MIB&eol;&eol;Known Issues:&eol;&eol; Description: Doesn't have ifHighSpeed filled. fixed in more recent versions&eol; Version: RouterOS 6.28 or lower&eol;&eol; Description: Doesn't have any temperature sensors&eol; Version: RouterOS 6.38.5&eol; Device: Mikrotik 941-2nD, Mikrotik 951G-2HnD&eol;&eol;Template tooling version used: 0.37 |1 |1 | | | | | |1 |0 |
ROW |10234 |NULL |Template Net Netgear Fastpath SNMP |3 |-1 |2 | | |Template Net Netgear Fastpath SNMP |0 |NULL |Template Net Netgear Fastpath&eol;&eol;MIBs used:&eol;FASTPATH-SWITCHING-MIB&eol;FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
ROW |10235 |NULL |Template Net QTech QSW SNMP |3 |-1 |2 | | |Template Net QTech QSW SNMP |0 |NULL |Template Net QTech QSW&eol;&eol;MIBs used:&eol;QTECH-MIB&eol;ENTITY-MIB&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
ROW |10236 |NULL |Template Net TP-LINK SNMP |3 |-1 |2 | | |Template Net TP-LINK SNMP |0 |NULL |Template Net TP-LINK JetStream&eol;&eol;MIBs used:&eol;TPLINK-SYSINFO-MIB&eol;TPLINK-SYSMONITOR-MIB&eol;&eol;Known Issues:&eol;&eol; Description: default sysLocation, sysName and sysContact is not filled with proper data. Real hostname and location can be found only in private branch(TPLINK-SYSINFO-MIB). Please check whether this problem exists in the latest firware: http://www.tp-linkru.com/download/T2600G-28TS.html#Firmware&eol; Version: 2.0.0 Build 20170628 Rel.55184(Beta)&eol; Device: T2600G-28TS 2.0&eol;&eol; Description: The Serial number of the product(tpSysInfoSerialNum) is missing in HW versions prior to V2_170323&eol; Version: prior to version V2_170323&eol; Device: T2600G-28TS 2.0&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
@@ -152,26 +150,30 @@ ROW |10316 |NULL |Template DB MySQL by Zabbix agent
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 USAGE,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.36 |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 USAGE,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 <protocol(host:port or /path/to/socket)/>.&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.36|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.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 USAGE,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.36|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.35 |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.37|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 |10328 |NULL |Template DB PostgreSQL Agent 2 |3 |-1 |2 | | |Template DB PostgreSQL Agent 2 |0 |NULL |Template tooling version used: 0.37 |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.37 |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 |
+ROW |10331 |NULL |{#HV.UUID} |0 |-1 |2 | | |{#HV.NAME} |2 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10332 |NULL |{#VM.UUID} |0 |-1 |2 | | |{#VM.NAME} |2 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10333 |NULL |Template DB Oracle by Zabbix Agent 2 |3 |-1 |2 | | |Template DB Oracle by Zabbix Agent 2 |0 |NULL |Template tooling version used: 0.37 |1 |1 | | | | | |1 |0 |
TABLE |group_prototype
FIELDS|group_prototypeid|hostid|name |groupid|templateid|
-ROW |177 |10176 |{#CLUSTER.NAME} |NULL |NULL |
-ROW |178 |10176 |{#DATACENTER.NAME} |NULL |NULL |
-ROW |179 |10176 | |7 |NULL |
-ROW |180 |10177 |{#CLUSTER.NAME} (vm) |NULL |NULL |
-ROW |181 |10177 |{#DATACENTER.NAME} (vm)|NULL |NULL |
-ROW |182 |10177 |{#HV.NAME} |NULL |NULL |
-ROW |183 |10177 | |6 |NULL |
+ROW |1 |10331 |{#CLUSTER.NAME} |NULL |NULL |
+ROW |2 |10331 |{#DATACENTER.NAME} |NULL |NULL |
+ROW |3 |10331 | |12 |NULL |
+ROW |4 |10332 |{#CLUSTER.NAME} (vm) |NULL |NULL |
+ROW |5 |10332 |{#DATACENTER.NAME} (vm)|NULL |NULL |
+ROW |6 |10332 |{#HV.NAME} |NULL |NULL |
+ROW |7 |10332 | |12 |NULL |
TABLE |screens
FIELDS|screenid|name |hsize|vsize|templateid|userid|private|
@@ -235,219 +237,219 @@ ROW |1956 |20 |0 |860 |750 |200 |0 |1 |1
ROW |1957 |20 |0 |859 |750 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
ROW |1958 |20 |0 |861 |750 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
ROW |1959 |20 |0 |864 |750 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3789 |25 |0 |1174 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3790 |25 |0 |1176 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3791 |25 |20 |1172 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3792 |25 |20 |1173 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3793 |25 |0 |1175 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3794 |26 |0 |838 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3795 |26 |0 |839 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3796 |26 |20 |836 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3797 |26 |20 |837 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3798 |26 |0 |840 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3799 |59 |0 |1125 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3800 |59 |0 |1129 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3801 |59 |0 |1128 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3802 |59 |0 |1126 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3803 |59 |0 |1127 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3804 |48 |20 |1075 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3805 |49 |20 |1078 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3806 |49 |20 |1076 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3807 |49 |20 |1079 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3808 |49 |20 |1077 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3809 |50 |20 |1080 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3810 |51 |20 |1081 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3811 |52 |20 |1084 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3812 |52 |20 |1082 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3813 |52 |20 |1085 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3814 |52 |20 |1083 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3815 |53 |20 |1086 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3816 |27 |0 |841 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3817 |27 |0 |843 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3818 |27 |0 |842 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3819 |28 |0 |845 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3820 |28 |0 |847 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3821 |28 |0 |846 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3822 |38 |0 |1029 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3823 |38 |0 |1027 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3824 |38 |0 |1030 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3825 |38 |0 |1028 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3826 |38 |0 |1031 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3827 |39 |0 |1011 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3828 |39 |0 |1012 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3829 |39 |0 |1008 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3830 |39 |0 |1009 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3831 |39 |0 |1007 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3832 |39 |0 |1010 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3833 |40 |0 |1018 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3834 |40 |0 |1016 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3835 |40 |0 |1019 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3836 |40 |0 |1017 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3837 |40 |0 |1020 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3838 |41 |0 |1025 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3839 |41 |0 |1026 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3840 |41 |0 |1022 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3841 |41 |0 |1023 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3842 |41 |0 |1021 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3843 |41 |0 |1024 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3844 |22 |0 |806 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |3845 |22 |0 |804 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |3846 |22 |0 |805 |500 |100 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |3847 |22 |0 |803 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |3848 |21 |0 |802 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |3849 |21 |0 |799 |500 |100 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3850 |21 |0 |800 |500 |114 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |3851 |21 |0 |798 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |3852 |21 |0 |797 |500 |160 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3853 |21 |0 |801 |500 |160 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3854 |17 |0 |532 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |3855 |17 |0 |530 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |3856 |17 |0 |531 |500 |100 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |3857 |17 |0 |529 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |3858 |4 |0 |392 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |3859 |4 |0 |404 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |3860 |4 |0 |406 |500 |114 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |3861 |4 |0 |410 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |3862 |4 |0 |527 |500 |160 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3863 |4 |0 |788 |500 |160 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3864 |5 |0 |469 |500 |148 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |3865 |5 |0 |471 |500 |100 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3866 |5 |0 |498 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3867 |5 |0 |540 |500 |100 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3868 |7 |0 |463 |500 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |3869 |7 |0 |462 |500 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |3870 |7 |0 |541 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3871 |7 |0 |464 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3872 |6 |0 |475 |500 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |3873 |6 |0 |474 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |3874 |6 |0 |542 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3875 |18 |0 |487 |750 |100 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3876 |18 |0 |543 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3877 |9 |0 |457 |500 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |3878 |9 |0 |456 |500 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |3879 |9 |0 |544 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3880 |9 |0 |458 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3881 |9 |1 |22838 |500 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3882 |9 |1 |22837 |500 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3883 |10 |0 |481 |500 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |3884 |10 |0 |480 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |3885 |10 |0 |545 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3886 |10 |0 |482 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3887 |10 |1 |22998 |500 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3888 |10 |1 |22997 |500 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3889 |57 |0 |1112 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3890 |57 |0 |1113 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3891 |57 |0 |1110 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3892 |57 |0 |1109 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3893 |57 |0 |1111 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3894 |57 |0 |1114 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3895 |60 |0 |1139 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3896 |60 |0 |1140 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3897 |60 |0 |1137 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3898 |60 |0 |1136 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3899 |60 |0 |1138 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3900 |60 |0 |1141 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3901 |58 |0 |1118 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3902 |58 |0 |1119 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3903 |58 |0 |1116 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3904 |58 |0 |1115 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3905 |58 |0 |1117 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3906 |58 |0 |1120 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3907 |23 |20 |821 |500 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3908 |23 |20 |816 |500 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3909 |23 |20 |814 |500 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3910 |23 |20 |820 |500 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3911 |23 |20 |817 |500 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3912 |23 |20 |815 |500 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3913 |23 |20 |818 |500 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3914 |23 |20 |819 |500 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3915 |24 |0 |824 |500 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3916 |24 |0 |827 |500 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3917 |24 |0 |825 |500 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3918 |24 |0 |828 |500 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3919 |24 |0 |826 |500 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3920 |24 |0 |829 |500 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3921 |24 |0 |822 |500 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3922 |24 |0 |823 |500 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3923 |61 |20 |1212 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3924 |61 |20 |1210 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3925 |61 |20 |1213 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3926 |61 |20 |1211 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3927 |54 |0 |1091 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3928 |54 |0 |1095 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3929 |54 |0 |1092 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3930 |54 |0 |1094 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3931 |54 |0 |1099 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3932 |54 |0 |1100 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3933 |54 |0 |1101 |500 |100 |0 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3934 |54 |0 |1102 |500 |100 |1 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3935 |54 |20 |1090 |500 |100 |0 |4 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3936 |55 |0 |1093 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3937 |55 |0 |1098 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3938 |55 |0 |1096 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3939 |55 |0 |1097 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3940 |47 |0 |1071 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3941 |47 |20 |1061 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3942 |47 |20 |1066 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3943 |45 |20 |741 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3944 |43 |20 |745 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3945 |46 |20 |766 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3946 |3 |0 |903 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3947 |3 |0 |909 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3948 |3 |0 |918 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3949 |3 |0 |921 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3950 |3 |20 |888 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3951 |3 |20 |1218 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3952 |3 |20 |1215 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3953 |3 |20 |1221 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3954 |3 |20 |900 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3955 |30 |20 |899 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3956 |31 |20 |934 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3957 |32 |0 |937 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3958 |32 |0 |941 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3959 |32 |0 |947 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3960 |32 |0 |949 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3961 |32 |20 |927 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3962 |32 |20 |1226 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3963 |32 |20 |1224 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3964 |32 |20 |1228 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3965 |32 |20 |935 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3966 |33 |0 |957 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3967 |33 |0 |959 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3968 |33 |0 |962 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3969 |33 |0 |963 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3970 |33 |20 |953 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3971 |33 |20 |954 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3972 |33 |20 |955 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3973 |33 |20 |956 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3974 |33 |20 |952 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3975 |34 |20 |952 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3976 |29 |0 |881 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3977 |29 |20 |869 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3978 |29 |0 |877 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3979 |29 |0 |879 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3980 |29 |20 |873 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3981 |29 |20 |867 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3982 |29 |19 |29033 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3983 |29 |20 |865 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3984 |19 |0 |977 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3985 |19 |1 |29485 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3986 |19 |0 |979 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3987 |19 |0 |981 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3988 |19 |20 |965 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3989 |19 |20 |1230 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3990 |19 |20 |1232 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3991 |19 |20 |1247 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3992 |35 |20 |1246 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3993 |36 |20 |1248 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3994 |37 |0 |995 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3995 |37 |1 |29592 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3996 |37 |0 |997 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3997 |37 |0 |999 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3998 |37 |20 |983 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3999 |37 |20 |1234 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |4000 |37 |20 |1236 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |4001 |37 |20 |1249 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4002 |25 |0 |1174 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4003 |25 |0 |1176 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4004 |25 |20 |1172 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4005 |25 |20 |1173 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4006 |25 |0 |1175 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4007 |26 |0 |838 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4008 |26 |0 |839 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4009 |26 |20 |836 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4010 |26 |20 |837 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4011 |26 |0 |840 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4012 |59 |0 |1125 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4013 |59 |0 |1129 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4014 |59 |0 |1128 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4015 |59 |0 |1126 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4016 |59 |0 |1127 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4017 |48 |20 |1075 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4018 |49 |20 |1078 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4019 |49 |20 |1076 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4020 |49 |20 |1079 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4021 |49 |20 |1077 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4022 |50 |20 |1080 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4023 |51 |20 |1081 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4024 |52 |20 |1084 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4025 |52 |20 |1082 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4026 |52 |20 |1085 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4027 |52 |20 |1083 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4028 |53 |20 |1086 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4029 |27 |0 |841 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4030 |27 |0 |843 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4031 |27 |0 |842 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4032 |28 |0 |845 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4033 |28 |0 |847 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4034 |28 |0 |846 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4035 |38 |0 |1029 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4036 |38 |0 |1027 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4037 |38 |0 |1030 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4038 |38 |0 |1028 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4039 |38 |0 |1031 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4040 |39 |0 |1011 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4041 |39 |0 |1012 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4042 |39 |0 |1008 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4043 |39 |0 |1009 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4044 |39 |0 |1007 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4045 |39 |0 |1010 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4046 |40 |0 |1018 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4047 |40 |0 |1016 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4048 |40 |0 |1019 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4049 |40 |0 |1017 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4050 |40 |0 |1020 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4051 |41 |0 |1025 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4052 |41 |0 |1026 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4053 |41 |0 |1022 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4054 |41 |0 |1023 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4055 |41 |0 |1021 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4056 |41 |0 |1024 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4057 |22 |0 |806 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |4058 |22 |0 |804 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |4059 |22 |0 |805 |500 |100 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |4060 |22 |0 |803 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |4061 |21 |0 |802 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |4062 |21 |0 |799 |500 |100 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4063 |21 |0 |800 |500 |114 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |4064 |21 |0 |798 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |4065 |21 |0 |797 |500 |160 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4066 |21 |0 |801 |500 |160 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4067 |17 |0 |532 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |4068 |17 |0 |530 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |4069 |17 |0 |531 |500 |100 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |4070 |17 |0 |529 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |4071 |4 |0 |392 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |4072 |4 |0 |404 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |4073 |4 |0 |406 |500 |114 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |4074 |4 |0 |410 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |4075 |4 |0 |527 |500 |160 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4076 |4 |0 |788 |500 |160 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4077 |5 |0 |469 |500 |148 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |4078 |5 |0 |471 |500 |100 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4079 |5 |0 |498 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4080 |5 |0 |540 |500 |100 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4081 |7 |0 |463 |500 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |4082 |7 |0 |462 |500 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |4083 |7 |0 |541 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4084 |7 |0 |464 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4085 |6 |0 |475 |500 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |4086 |6 |0 |474 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |4087 |6 |0 |542 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4088 |18 |0 |487 |750 |100 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4089 |18 |0 |543 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4090 |9 |0 |457 |500 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |4091 |9 |0 |456 |500 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |4092 |9 |0 |544 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4093 |9 |0 |458 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4094 |9 |1 |22838 |500 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4095 |9 |1 |22837 |500 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4096 |10 |0 |481 |500 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |4097 |10 |0 |480 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |4098 |10 |0 |545 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4099 |10 |0 |482 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4100 |10 |1 |22998 |500 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4101 |10 |1 |22997 |500 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4102 |57 |0 |1112 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4103 |57 |0 |1113 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4104 |57 |0 |1110 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4105 |57 |0 |1109 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4106 |57 |0 |1111 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4107 |57 |0 |1114 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4108 |60 |0 |1139 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4109 |60 |0 |1140 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4110 |60 |0 |1137 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4111 |60 |0 |1136 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4112 |60 |0 |1138 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4113 |60 |0 |1141 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4114 |58 |0 |1118 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4115 |58 |0 |1119 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4116 |58 |0 |1116 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4117 |58 |0 |1115 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4118 |58 |0 |1117 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4119 |58 |0 |1120 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4120 |23 |20 |821 |500 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4121 |23 |20 |816 |500 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4122 |23 |20 |814 |500 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4123 |23 |20 |820 |500 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4124 |23 |20 |817 |500 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4125 |23 |20 |815 |500 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4126 |23 |20 |818 |500 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4127 |23 |20 |819 |500 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4128 |24 |0 |824 |500 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4129 |24 |0 |827 |500 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4130 |24 |0 |825 |500 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4131 |24 |0 |828 |500 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4132 |24 |0 |826 |500 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4133 |24 |0 |829 |500 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4134 |24 |0 |822 |500 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4135 |24 |0 |823 |500 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |4136 |61 |20 |1212 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4137 |61 |20 |1210 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4138 |61 |20 |1213 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4139 |61 |20 |1211 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4140 |54 |0 |1091 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4141 |54 |0 |1095 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4142 |54 |0 |1092 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4143 |54 |0 |1094 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4144 |54 |0 |1099 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4145 |54 |0 |1100 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4146 |54 |0 |1101 |500 |100 |0 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4147 |54 |0 |1102 |500 |100 |1 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4148 |54 |20 |1090 |500 |100 |0 |4 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4149 |55 |0 |1093 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4150 |55 |0 |1098 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4151 |55 |0 |1096 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4152 |55 |0 |1097 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4153 |47 |0 |1071 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4154 |47 |20 |1061 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4155 |47 |20 |1066 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4156 |45 |20 |741 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4157 |43 |20 |745 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4158 |46 |20 |766 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4159 |3 |0 |903 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4160 |3 |0 |909 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4161 |3 |0 |918 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4162 |3 |0 |921 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4163 |3 |20 |888 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4164 |3 |20 |1218 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4165 |3 |20 |1215 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4166 |3 |20 |1221 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4167 |3 |20 |900 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4168 |30 |20 |899 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4169 |31 |20 |934 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4170 |32 |0 |937 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4171 |32 |0 |941 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4172 |32 |0 |947 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4173 |32 |0 |949 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4174 |32 |20 |927 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4175 |32 |20 |1226 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4176 |32 |20 |1224 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4177 |32 |20 |1228 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4178 |32 |20 |935 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4179 |33 |0 |957 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4180 |33 |0 |959 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4181 |33 |0 |962 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4182 |33 |0 |963 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4183 |33 |20 |953 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4184 |33 |20 |954 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4185 |33 |20 |955 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4186 |33 |20 |956 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4187 |33 |20 |952 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4188 |34 |20 |952 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4189 |29 |0 |881 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4190 |29 |20 |869 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4191 |29 |0 |877 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4192 |29 |0 |879 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4193 |29 |20 |873 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4194 |29 |20 |867 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4195 |29 |19 |29033 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4196 |29 |20 |865 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4197 |19 |0 |977 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4198 |19 |1 |29485 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4199 |19 |0 |979 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4200 |19 |0 |981 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4201 |19 |20 |965 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4202 |19 |20 |1230 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4203 |19 |20 |1232 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4204 |19 |20 |1247 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4205 |35 |20 |1246 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4206 |36 |20 |1248 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4207 |37 |0 |995 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4208 |37 |1 |29592 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4209 |37 |0 |997 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4210 |37 |0 |999 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4211 |37 |20 |983 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4212 |37 |20 |1234 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4213 |37 |20 |1236 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |4214 |37 |20 |1249 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
TABLE |applications
FIELDS|applicationid|hostid|name |flags|
@@ -520,14 +522,6 @@ ROW |453 |10100 |POP service |0 |
ROW |454 |10101 |SMTP service |0 |
ROW |455 |10102 |SSH service |0 |
ROW |456 |10103 |Telnet service |0 |
-ROW |732 |10169 |Classes |0 |
-ROW |733 |10169 |Compilation |0 |
-ROW |734 |10169 |Garbage collector |0 |
-ROW |735 |10169 |Memory |0 |
-ROW |736 |10169 |Memory pool |0 |
-ROW |737 |10169 |Operating system |0 |
-ROW |738 |10169 |Runtime |0 |
-ROW |739 |10169 |Threads |0 |
ROW |740 |10170 |MySQL |0 |
ROW |741 |10171 |Fans |0 |
ROW |742 |10171 |Temperature |0 |
@@ -535,23 +529,6 @@ ROW |743 |10171 |Voltage |0 |
ROW |744 |10172 |Fans |0 |
ROW |745 |10172 |Temperature |0 |
ROW |746 |10172 |Voltage |0 |
-ROW |747 |10173 |Clusters |0 |
-ROW |748 |10173 |General |0 |
-ROW |749 |10173 |Log |0 |
-ROW |750 |10174 |CPU |0 |
-ROW |751 |10174 |Disks |0 |
-ROW |752 |10174 |Filesystems |0 |
-ROW |753 |10174 |General |0 |
-ROW |754 |10174 |Interfaces |0 |
-ROW |755 |10174 |Memory |0 |
-ROW |756 |10174 |Network |0 |
-ROW |757 |10174 |Storage |0 |
-ROW |758 |10175 |CPU |0 |
-ROW |759 |10175 |Datastore |0 |
-ROW |760 |10175 |General |0 |
-ROW |761 |10175 |Hardware |0 |
-ROW |762 |10175 |Memory |0 |
-ROW |763 |10175 |Network |0 |
ROW |771 |10183 |Network interfaces |0 |
ROW |780 |10186 |Status |0 |
ROW |782 |10188 |Network interfaces |0 |
@@ -796,7 +773,6 @@ ROW |1108 |10260 |Sessions |0 |
ROW |1109 |10260 |Tomcat |0 |
ROW |1110 |10261 |Zabbix server |0 |
ROW |1111 |10262 |Zabbix proxy |0 |
-ROW |1112 |10173 |Datastore |0 |
ROW |1114 |10263 |PostgreSQL |0 |
ROW |1115 |10263 |Zabbix raw items |0 |
ROW |1116 |10264 |Apache |0 |
@@ -1010,6 +986,13 @@ ROW |1337 |10328 |PostgreSQL |0 |
ROW |1338 |10328 |Zabbix raw items |0 |
ROW |1339 |10329 |Oracle |0 |
ROW |1340 |10329 |Zabbix raw items |0 |
+ROW |1341 |10169 |JMX |0 |
+ROW |1342 |10173 |VMware |0 |
+ROW |1343 |10174 |VMware |0 |
+ROW |1344 |10175 |VMware |0 |
+ROW |1345 |10333 |Oracle |0 |
+ROW |1346 |10333 |Zabbix raw items |0 |
+ROW |1347 |10233 |Wireless |0 |
TABLE |interface
FIELDS|interfaceid|hostid|main|type|useip|ip |dns |port |
@@ -1139,3941 +1122,4055 @@ ROW |119 |Oracle force log status
ROW |120 |Oracle log mode |
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 |26856 |16 | |10169 |mp PS Old Gen max |jmx["java.lang:type=MemoryPool,name=PS Old Gen",Usage.max] |1h |1w |365d |0 |3 | |B | | |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 |26857 |16 | |10169 |mp PS Old Gen committed |jmx["java.lang:type=MemoryPool,name=PS Old Gen",Usage.committed] |1m |1w |365d |0 |3 | |B | | |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 |26858 |16 | |10169 |mp PS Old Gen used |jmx["java.lang:type=MemoryPool,name=PS Old Gen",Usage.used] |1m |1w |365d |0 |3 | |B | | |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 |26859 |16 | |10169 |mp PS Perm Gen committed |jmx["java.lang:type=MemoryPool,name=PS Perm Gen",Usage.committed] |1m |1w |365d |0 |3 | |B | | |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 |26860 |16 | |10169 |mp PS Perm Gen max |jmx["java.lang:type=MemoryPool,name=PS Perm Gen",Usage.max] |1h |1w |365d |0 |3 | |B | | |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 |26861 |16 | |10169 |mp Perm Gen used |jmx["java.lang:type=MemoryPool,name=Perm Gen",Usage.used] |1m |1w |365d |0 |3 | |B | | |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 |26862 |16 | |10169 |mp Perm Gen max |jmx["java.lang:type=MemoryPool,name=Perm Gen",Usage.max] |1h |1w |365d |0 |3 | |B | | |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 |26863 |16 | |10169 |mp Code Cache committed |jmx["java.lang:type=MemoryPool,name=Code Cache",Usage.committed] |1m |1w |365d |0 |3 | |B | | |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 |26864 |16 | |10169 |mp CMS Perm Gen used |jmx["java.lang:type=MemoryPool,name=CMS Perm Gen",Usage.used] |1m |1w |365d |0 |3 | |B | | |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 |26865 |16 | |10169 |mp Code Cache max |jmx["java.lang:type=MemoryPool,name=Code Cache",Usage.max] |1h |1w |365d |0 |3 | |B | | |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 |26866 |16 | |10169 |mp Code Cache used |jmx["java.lang:type=MemoryPool,name=Code Cache",Usage.used] |1m |1w |365d |0 |3 | |B | | |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 |26867 |16 | |10169 |mp Perm Gen committed |jmx["java.lang:type=MemoryPool,name=Perm Gen",Usage.committed] |1m |1w |365d |0 |3 | |B | | |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 |26868 |16 | |10169 |mp PS Perm Gen used |jmx["java.lang:type=MemoryPool,name=PS Perm Gen",Usage.used] |1m |1w |365d |0 |3 | |B | | |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 |26869 |16 | |10169 |mp Tenured Gen committed |jmx["java.lang:type=MemoryPool,name=Tenured Gen",Usage.committed] |1m |1w |365d |0 |3 | |B | | |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 |26870 |16 | |10169 |th Daemon Thread Count |jmx["java.lang:type=Threading",DaemonThreadCount] |1m |1w |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 |26871 |16 | |10169 |jvm Version |jmx["java.lang:type=Runtime",VmVersion] |1h |1w |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 |26872 |16 | |10169 |th Peak Thread Count |jmx["java.lang:type=Threading",PeakThreadCount] |1m |1w |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 |26873 |16 | |10169 |th Thread Count |jmx["java.lang:type=Threading",ThreadCount] |1m |1w |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 |26874 |16 | |10169 |th Total Started Thread Count |jmx["java.lang:type=Threading",TotalStartedThreadCount] |1m |1w |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 |26875 |16 | |10169 |jvm Name |jmx["java.lang:type=Runtime",VmName] |1h |1w |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 |26876 |16 | |10169 |jvm Uptime |jmx["java.lang:type=Runtime",Uptime] |1m |1w |365d |0 |3 | |uptime | | |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 |26877 |16 | |10169 |mp Tenured Gen used |jmx["java.lang:type=MemoryPool,name=Tenured Gen",Usage.used] |1m |1w |365d |0 |3 | |B | | |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 |26878 |16 | |10169 |mp Tenured Gen max |jmx["java.lang:type=MemoryPool,name=Tenured Gen",Usage.max] |1h |1w |365d |0 |3 | |B | | |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 |26879 |16 | |10169 |os Max File Descriptor Count |jmx["java.lang:type=OperatingSystem",MaxFileDescriptorCount] |1h |1w |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 |26880 |16 | |10169 |os Open File Descriptor Count |jmx["java.lang:type=OperatingSystem",OpenFileDescriptorCount] |1m |1w |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 |26881 |16 | |10169 |os Process CPU Load |jmx["java.lang:type=OperatingSystem",ProcessCpuLoad] |1m |1w |365d |0 |0 | |% | | |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 |26882 |16 | |10169 |mp CMS Perm Gen max |jmx["java.lang:type=MemoryPool,name=CMS Perm Gen",Usage.max] |1h |1w |365d |0 |3 | |B | | |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 |26883 |16 | |10169 |mp CMS Perm Gen committed |jmx["java.lang:type=MemoryPool,name=CMS Perm Gen",Usage.committed] |1m |1w |365d |0 |3 | |B | | |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 |26884 |16 | |10169 |gc MarkSweepCompact number of collections per second |jmx["java.lang:type=GarbageCollector,name=MarkSweepCompact",CollectionCount] |1m |1w |365d |0 |0 | | | | |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 |26885 |16 | |10169 |gc Copy accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=Copy",CollectionTime] |1m |1w |365d |0 |0 | |s | | |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 |26886 |16 | |10169 |gc MarkSweepCompact accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=MarkSweepCompact",CollectionTime] |1m |1w |365d |0 |0 | |s | | |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 |26887 |16 | |10169 |gc ParNew number of collections per second |jmx["java.lang:type=GarbageCollector,name=ParNew",CollectionCount] |1m |1w |365d |0 |0 | | | | |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 |26888 |16 | |10169 |gc ParNew accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=ParNew",CollectionTime] |1m |1w |365d |0 |0 | |s | | |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 |26889 |16 | |10169 |gc Copy number of collections per second |jmx["java.lang:type=GarbageCollector,name=Copy",CollectionCount] |1m |1w |365d |0 |0 | | | | |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 |26890 |16 | |10169 |gc ConcurrentMarkSweep accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=ConcurrentMarkSweep",CollectionTime] |1m |1w |365d |0 |0 | |s | | |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 |26891 |16 | |10169 |cl Unloaded Class Count |jmx["java.lang:type=ClassLoading",UnloadedClassCount] |1m |1w |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 |26892 |16 | |10169 |cl Total Loaded Class Count |jmx["java.lang:type=ClassLoading",TotalLoadedClassCount] |1m |1w |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 |26893 |16 | |10169 |comp Name of the current JIT compiler |jmx["java.lang:type=Compilation",Name] |1h |1w |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 |26894 |16 | |10169 |comp Accumulated time spent in compilation |jmx["java.lang:type=Compilation",TotalCompilationTime] |1m |1w |365d |0 |0 | |s | | |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 |26895 |16 | |10169 |gc ConcurrentMarkSweep number of collections per second |jmx["java.lang:type=GarbageCollector,name=ConcurrentMarkSweep",CollectionCount] |1m |1w |365d |0 |0 | | | | |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 |26896 |16 | |10169 |gc PS MarkSweep number of collections per second |jmx["java.lang:type=GarbageCollector,name=PS MarkSweep",CollectionCount] |1m |1w |365d |0 |0 | | | | |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 |26897 |16 | |10169 |gc PS MarkSweep accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=PS MarkSweep",CollectionTime] |1m |1w |365d |0 |0 | |s | | |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 |26898 |16 | |10169 |mem Object Pending Finalization Count |jmx["java.lang:type=Memory",ObjectPendingFinalizationCount] |1m |1w |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 |26899 |16 | |10169 |mem Non-Heap Memory used |jmx["java.lang:type=Memory",NonHeapMemoryUsage.used] |1m |1w |365d |0 |3 | |B | | |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 |26900 |16 | |10169 |mp CMS Old Gen committed |jmx["java.lang:type=MemoryPool,name=CMS Old Gen",Usage.committed] |1m |1w |365d |0 |3 | |B | | |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 |26901 |16 | |10169 |mp CMS Old Gen max |jmx["java.lang:type=MemoryPool,name=CMS Old Gen",Usage.max] |1h |1w |365d |0 |3 | |B | | |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 |26902 |16 | |10169 |mp CMS Old Gen used |jmx["java.lang:type=MemoryPool,name=CMS Old Gen",Usage.used] |1m |1w |365d |0 |3 | |B | | |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 |26903 |16 | |10169 |mem Non-Heap Memory max |jmx["java.lang:type=Memory",NonHeapMemoryUsage.max] |1h |1w |365d |0 |3 | |B | | |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 |26904 |16 | |10169 |mem Non-Heap Memory committed |jmx["java.lang:type=Memory",NonHeapMemoryUsage.committed] |1m |1w |365d |0 |3 | |B | | |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 |26905 |16 | |10169 |gc PS Scavenge accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=PS Scavenge",CollectionTime] |1m |1w |365d |0 |0 | |s | | |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 |26906 |16 | |10169 |gc PS Scavenge number of collections per second |jmx["java.lang:type=GarbageCollector,name=PS Scavenge",CollectionCount] |1m |1w |365d |0 |0 | | | | |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 |26907 |16 | |10169 |mem Heap Memory committed |jmx["java.lang:type=Memory",HeapMemoryUsage.committed] |1m |1w |365d |0 |3 | |B | | |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 |26908 |16 | |10169 |mem Heap Memory max |jmx["java.lang:type=Memory",HeapMemoryUsage.max] |1h |1w |365d |0 |3 | |B | | |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 |26909 |16 | |10169 |mem Heap Memory used |jmx["java.lang:type=Memory",HeapMemoryUsage.used] |1m |1w |365d |0 |3 | |B | | |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 |26910 |16 | |10169 |cl Loaded Class Count |jmx["java.lang:type=ClassLoading",LoadedClassCount] |1m |1w |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 |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 |26944 |3 | |10173 |Version |vmware.version[{$URL}] |1h |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26945 |3 | |10173 |Full name |vmware.fullname[{$URL}] |1h |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26946 |3 | |10173 |Event log |vmware.eventlog[{$URL},skip] |1m |90d |0 |0 |2 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26947 |3 | |10174 |Memory size |vmware.vm.memory.size[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Total size of configured memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26948 |3 | |10174 |Host memory usage |vmware.vm.memory.size.usage.host[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$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 |26949 |3 | |10174 |Guest memory usage |vmware.vm.memory.size.usage.guest[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$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 |26950 |3 | |10174 |Power state |vmware.vm.powerstate[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | | | | |NULL |12 | | |0 |{$USERNAME} |{$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 |26951 |3 | |10174 |Committed storage space |vmware.vm.storage.committed[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$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 |26952 |3 | |10174 |Uptime |vmware.vm.uptime[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |System uptime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26953 |3 | |10174 |Unshared storage space |vmware.vm.storage.unshared[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$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 |26954 |3 | |10174 |Uncommitted storage space |vmware.vm.storage.uncommitted[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$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 |26955 |3 | |10174 |Swapped memory |vmware.vm.memory.size.swapped[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$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 |26956 |3 | |10174 |Shared memory |vmware.vm.memory.size.shared[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$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 |26957 |3 | |10174 |CPU usage |vmware.vm.cpu.usage[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |Hz | | |NULL |NULL | | |0 |{$USERNAME} |{$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 |26958 |3 | |10174 |CPU ready |vmware.vm.cpu.ready[{$URL},{HOST.HOST}] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | |ms | | |NULL |NULL | | |0 |{$USERNAME} |{$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 |26959 |3 | |10174 |Number of virtual CPUs |vmware.vm.cpu.num[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$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 |26960 |3 | |10174 |Datacenter name |vmware.vm.datacenter.name[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$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 |26961 |3 | |10174 |Hypervisor name |vmware.vm.hv.name[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$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 |26962 |3 | |10174 |Private memory |vmware.vm.memory.size.private[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$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 |26963 |3 | |10174 |Compressed memory |vmware.vm.memory.size.compressed[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$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 |26964 |3 | |10174 |Ballooned memory |vmware.vm.memory.size.ballooned[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$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 |26965 |3 | |10174 |Cluster name |vmware.vm.cluster.name[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$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 |26966 |3 | |10175 |Number of bytes transmitted |vmware.hv.network.out[{$URL},{HOST.HOST},bps] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26967 |3 | |10175 |Number of bytes received |vmware.hv.network.in[{$URL},{HOST.HOST},bps] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26968 |3 | |10175 |Used memory |vmware.hv.memory.used[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$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 |26969 |3 | |10175 |Ballooned memory |vmware.hv.memory.size.ballooned[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$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 |26970 |3 | |10175 |Health state rollup |vmware.hv.sensor.health.state[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | | | | |NULL |13 | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The host health state rollup sensor value: gray - unknown, 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 |26971 |3 | |10175 |Overall status |vmware.hv.status[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | | | | |NULL |13 | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The overall alarm status of the host: gray - unknown, 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 |26972 |3 | |10175 |Number of guest VMs |vmware.hv.vm.num[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Number of guest virtual machines. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26973 |3 | |10175 |Version |vmware.hv.version[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Dot-separated version string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26974 |3 | |10175 |Uptime |vmware.hv.uptime[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |System uptime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26975 |3 | |10175 |Vendor |vmware.hv.hw.vendor[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The hardware vendor identification. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26976 |3 | |10175 |Bios UUID |vmware.hv.hw.uuid[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The hardware BIOS identification. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26977 |3 | |10175 |CPU frequency |vmware.hv.hw.cpu.freq[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | |Hz | | |NULL |NULL | | |0 |{$USERNAME} |{$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 |26978 |3 | |10175 |Full name |vmware.hv.fullname[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$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 |26979 |3 | |10175 |Datacenter name |vmware.hv.datacenter.name[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Datacenter name of the hypervisor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26980 |3 | |10175 |CPU usage |vmware.hv.cpu.usage[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |Hz | | |NULL |NULL | | |0 |{$USERNAME} |{$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 |26981 |3 | |10175 |CPU model |vmware.hv.hw.cpu.model[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The CPU model. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26982 |3 | |10175 |CPU cores |vmware.hv.hw.cpu.num[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$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 |26983 |3 | |10175 |Model |vmware.hv.hw.model[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The system model identification. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26984 |3 | |10175 |Total memory |vmware.hv.hw.memory[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The physical memory size. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26985 |3 | |10175 |CPU threads |vmware.hv.hw.cpu.threads[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$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 |26986 |3 | |10175 |Cluster name |vmware.hv.cluster.name[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$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 |26987 |3 | |10173 |Discover VMware clusters |vmware.cluster.discovery[{$URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |1 |NULL |Discovery of clusters |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26988 |3 | |10173 |Discover VMware hypervisors |vmware.hv.discovery[{$URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |1 |NULL |Discovery of hypervisors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26989 |3 | |10173 |Discover VMware VMs |vmware.vm.discovery[{$URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |1 |NULL |Discovery of guest virtual machines. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26990 |3 | |10174 |Network device discovery |vmware.vm.net.if.discovery[{$URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |1 |NULL |Discovery of all network devices. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26991 |3 | |10174 |Disk device discovery |vmware.vm.vfs.dev.discovery[{$URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |1 |NULL |Discovery of all disk devices. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26992 |3 | |10174 |Mounted filesystem discovery |vmware.vm.vfs.fs.discovery[{$URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$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 |26993 |3 | |10175 |Datastore discovery |vmware.hv.datastore.discovery[{$URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26994 |3 | |10173 |Status of "{#CLUSTER.NAME}" cluster |vmware.cluster.status[{$URL},{#CLUSTER.NAME}] |1m |90d |365d |0 |3 | | | | |NULL |13 | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26995 |3 | |10174 |Number of packets transmitted on interface {#IFDESC} |vmware.vm.net.if.out[{$URL},{HOST.HOST},{#IFNAME},pps] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26996 |3 | |10174 |Number of bytes transmitted on interface {#IFDESC} |vmware.vm.net.if.out[{$URL},{HOST.HOST},{#IFNAME},bps] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26997 |3 | |10174 |Number of packets received on interface {#IFDESC} |vmware.vm.net.if.in[{$URL},{HOST.HOST},{#IFNAME},pps] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26998 |3 | |10174 |Number of bytes received on interface {#IFDESC} |vmware.vm.net.if.in[{$URL},{HOST.HOST},{#IFNAME},bps] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |26999 |3 | |10174 |Average number of writes to the disk {#DISKDESC} |vmware.vm.vfs.dev.write[{$URL},{HOST.HOST},{#DISKNAME},ops] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27000 |3 | |10174 |Average number of bytes written to the disk {#DISKDESC} |vmware.vm.vfs.dev.write[{$URL},{HOST.HOST},{#DISKNAME},bps] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27001 |3 | |10174 |Average number of reads from the disk {#DISKDESC} |vmware.vm.vfs.dev.read[{$URL},{HOST.HOST},{#DISKNAME},ops] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27002 |3 | |10174 |Average number of bytes read from the disk {#DISKDESC} |vmware.vm.vfs.dev.read[{$URL},{HOST.HOST},{#DISKNAME},bps] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27003 |3 | |10174 |Used disk space on {#FSNAME} |vmware.vm.vfs.fs.size[{$URL},{HOST.HOST},{#FSNAME},used] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27004 |3 | |10174 |Total disk space on {#FSNAME} |vmware.vm.vfs.fs.size[{$URL},{HOST.HOST},{#FSNAME},total] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27005 |3 | |10174 |Free disk space on {#FSNAME} (percentage) |vmware.vm.vfs.fs.size[{$URL},{HOST.HOST},{#FSNAME},pfree] |{$VMWARE_INTERVAL} |90d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27006 |3 | |10174 |Free disk space on {#FSNAME} |vmware.vm.vfs.fs.size[{$URL},{HOST.HOST},{#FSNAME},free] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27007 |3 | |10175 |Average write latency of the datastore {#DATASTORE} |vmware.hv.datastore.write[{$URL},{HOST.HOST},{#DATASTORE},latency] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27008 |3 | |10175 |Total size of datastore {#DATASTORE} |vmware.hv.datastore.size[{$URL},{HOST.HOST},{#DATASTORE}] |{$VMWARE_PERF_INTERVAL:datastore}|90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27009 |3 | |10175 |Free space on datastore {#DATASTORE} (percentage) |vmware.hv.datastore.size[{$URL},{HOST.HOST},{#DATASTORE},pfree] |{$VMWARE_PERF_INTERVAL:datastore}|90d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27010 |3 | |10175 |Average read latency of the datastore {#DATASTORE} |vmware.hv.datastore.read[{$URL},{HOST.HOST},{#DATASTORE},latency] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27031 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10183 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27032 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10183 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27065 |3 | |10186 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27066 |3 | |10186 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27067 |3 | |10186 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27078 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10188 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27079 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27080 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27081 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27082 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27083 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27084 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27085 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27086 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27087 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27098 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10190 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27099 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27100 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27101 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27102 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27103 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27104 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27105 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27106 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27107 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27118 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10192 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27119 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27120 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27121 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27122 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27123 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27124 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27125 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27126 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27127 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27152 |20 |1.3.6.1.2.1.1.5.0 |10204 |System name |system.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27154 |5 | |10204 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27157 |17 | |10204 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27203 |20 |1.3.6.1.2.1.1.1.0 |10207 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27207 |20 |1.3.6.1.4.1.6527.3.1.2.1.1.9.0 |10207 |Used memory |vm.memory.used[sgiKbMemoryUsed.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The value of sgiKbMemoryUsed indicates the total pre-allocated pool memory, in kilobytes, currently in use on the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27208 |20 |1.3.6.1.4.1.6527.3.1.2.1.1.1.0 |10207 |CPU utilization |system.cpu.util[sgiCpuUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The value of sgiCpuUsage indicates the current CPU utilization for the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27209 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8,{#TEMP_SENSOR},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.17] |10207 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27210 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6527.3.1.2.2.1.4.1.2] |10207 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27211 |20 |discovery[{#ENT_NAME},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8,{#ENT_CLASS},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.7,{#ENT_SN},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5] |10207 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27212 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.{#SNMPINDEX} |10207 |{#SNMPVALUE}: Temperature |sensor.temp.value[tmnxHwTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The current temperature reading in degrees celsius from this hardware component's temperature sensor. If this component does not contain a temperature sensor, then the value -1 is returned. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27213 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.4.1.2.{#SNMPINDEX} |10207 |#{#SNMPINDEX}: Fan status |sensor.fan.status[tmnxChassisFanOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |23 | | |0 | | | | |2 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;Current status of the Fan tray. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27214 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5.{#SNMPINDEX} |10207 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[tmnxHwSerialNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TIMETRA-CHASSIS-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27236 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.6.0 |10208 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27237 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.10.0 |10208 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27238 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.7.0 |10208 |Overall system health status |system.status[swOperStatus.0] |30s |2w |0d |0 |3 | | | | |NULL |25 | | |0 | | | | |0 |NULL |MIB: SW-MIB&eol;The current operational status of the switch.The states are as follow:&eol;online(1) means the switch is accessible by an external Fibre Channel port&eol;offline(2) means the switch is not accessible&eol;testing(3) means the switch is in a built-in test mode and is not accessible by an external Fibre Channel port&eol;faulty(4) means the switch is not operational. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27240 |20 |1.3.6.1.4.1.1588.2.1.1.1.26.1.0 |10208 |CPU utilization |system.cpu.util[swCpuUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB&eol;System's CPU usage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27242 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5] |10208 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27243 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5] |10208 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27244 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5] |10208 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27246 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[swSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |24 | | |0 | | | | |2 |NULL |MIB: SW-MIB&eol;Temperature status of testpoint: {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27247 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Temperature |sensor.temp.value[swSensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: SW-MIB&eol;Temperature readings of testpoint: {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27248 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[swSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |24 | | |0 | | | | |2 |NULL |MIB: SW-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27249 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Fan speed |sensor.fan.speed[swSensorValue.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: SW-MIB&eol;The current value (reading) of the sensor.&eol;The value, -2147483648, represents an unknown quantity.&eol;The fan value will be in RPM(revolution per minute) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27250 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Fan status |sensor.fan.status[swSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |24 | | |0 | | | | |2 |NULL |MIB: SW-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27294 |20 |1.3.6.1.4.1.1991.1.1.2.1.52.0 |10209 |CPU utilization |system.cpu.util[snAgGblCpuUtil1MinAvg.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The statistics collection of 1 minute CPU utilization. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27295 |20 |1.3.6.1.4.1.1991.1.1.2.1.11.0 |10210 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The version of the running software in the form'major.minor.maintenance[letters]' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27296 |20 |1.3.6.1.4.1.1991.1.1.1.1.2.0 |10210 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27297 |20 |1.3.6.1.4.1.1991.1.1.2.1.11.0 |10211 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The version of the running software in the form 'major.minor.maintenance[letters]' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27302 |20 |discovery[{#PSU_INDEX},1.3.6.1.4.1.1991.1.1.1.2.1.1.1] |10210 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasPwrSupplyTable: A table of each power supply information. Only installed power supply appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27303 |20 |discovery[{#FAN_INDEX},1.3.6.1.4.1.1991.1.1.1.3.1.1.1] |10210 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasFanTable: A table of each fan information. Only installed fan appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27304 |20 |discovery[{#SENSOR_DESCR},1.3.6.1.4.1.1991.1.1.2.13.1.1.3] |10210 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snAgentTempTable:Table to list temperatures of the modules in the device. This table is applicable to only those modules with temperature sensors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27306 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.1.1.18] |10210 |Temperature Discovery Chassis |temp.chassis.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Since temperature of the chassis is not available on all Brocade/Foundry hardware, this LLD is here to avoid unsupported items. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27307 |20 |discovery[{#PSU_UNIT},1.3.6.1.4.1.1991.1.1.1.2.2.1.1,{#PSU_INDEX},1.3.6.1.4.1.1991.1.1.1.2.2.1.2] |10211 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasPwrSupply2Table: A table of each power supply information for each unit. Only installed power supply appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27308 |20 |discovery[{#FAN_UNIT},1.3.6.1.4.1.1991.1.1.1.3.2.1.1,{#FAN_INDEX},1.3.6.1.4.1.1991.1.1.1.3.2.1.2] |10211 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasFan2Table: A table of each fan information for each unit. Only installed fan appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27309 |20 |discovery[{#SENSOR_DESCR},1.3.6.1.4.1.1991.1.1.2.13.3.1.4] |10211 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snAgentTemp2Table:Table to list temperatures of the modules in the device for each unit. This table is applicable to only those modules with temperature sensors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27310 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.3.31.2.1.1.5] |10211 |Stack Discovery |stack.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering snStackingConfigUnitTable for Model names |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27311 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.1.4.1.1.1] |10211 |Chassis Discovery |chassis.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasUnitIndex: The index to chassis table. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27312 |20 |1.3.6.1.4.1.1991.1.1.1.2.1.1.3.{#SNMPINDEX} |10210 |PSU {#PSU_INDEX}: Power supply status |sensor.psu.status[snChasPwrSupplyOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |26 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27313 |20 |1.3.6.1.4.1.1991.1.1.1.3.1.1.3.{#SNMPINDEX} |10210 |Fan {#FAN_INDEX}: Fan status |sensor.fan.status[snChasFanOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |27 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27314 |20 |1.3.6.1.4.1.1991.1.1.2.13.1.1.4.{#SNMPINDEX} |10210 |{#SENSOR_DESCR}: Temperature |sensor.temp.value[snAgentTempValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;Temperature of the sensor represented by this row. Each unit is 0.5 degrees Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27315 |20 |1.3.6.1.4.1.1991.1.1.1.1.18.{#SNMPINDEX} |10210 |Chassis #{#SNMPINDEX}: Temperature |sensor.temp.value[snChasActualTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;Temperature of the chassis. Each unit is 0.5 degrees Celcius.&eol;Only management module built with temperature sensor hardware is applicable.&eol;For those non-applicable management module, it returns no-such-name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27316 |20 |1.3.6.1.4.1.1991.1.1.1.2.2.1.4.{#SNMPINDEX} |10211 |Unit {#PSU_UNIT} PSU {#PSU_INDEX}: Power supply status |sensor.psu.status[snChasPwrSupply2OperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |26 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27317 |20 |1.3.6.1.4.1.1991.1.1.1.3.2.1.4.{#SNMPINDEX} |10211 |Unit {#FAN_UNIT} Fan {#FAN_INDEX}: Fan status |sensor.fan.status[snChasFan2OperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |27 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27318 |20 |1.3.6.1.4.1.1991.1.1.2.13.3.1.5.{#SNMPINDEX} |10211 |{#SENSOR_DESCR}: Temperature |sensor.temp.value[snAgentTemp2Value.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;Temperature of the sensor represented by this row. Each unit is 0.5 degrees Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27319 |20 |1.3.6.1.4.1.1991.1.1.3.31.2.1.1.5.{#SNMPINDEX} |10211 |Unit {#SNMPINDEX}: Hardware model name |system.hw.model[snStackingConfigUnitType.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-STACKING-MIB&eol;A description of the configured/active system type for each unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27320 |20 |1.3.6.1.4.1.1991.1.1.1.4.1.1.2.{#SNMPINDEX} |10211 |Unit {#SNMPVALUE}: Hardware serial number |system.hw.serialnumber[snChasUnitSerNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The serial number of the chassis for each unit. If the serial number is unknown or unavailable then the value should be a zero length string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27376 |20 |1.3.6.1.4.1.9.2.1.58 |10215 |CPU utilization |system.cpu.util[avgBusy5] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: OLD-CISCO-CPU-MIB&eol;5 minute exponentially-decayed moving average of the CPU busy percentage.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27378 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10216 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27379 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10216 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27390 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10212 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.&eol;http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27391 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10213 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&eol;indexed with cpmCPUTotalIndex .&eol;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&eol;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&eol;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27393 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10216 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27394 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10217 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status&eol;maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27395 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.5.1.2] |10217 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of power supply status maintained by the environmental monitor card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27396 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.4.1.2] |10217 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of fan status maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27415 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10212 |{#SNMPVALUE}: Free memory |vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27416 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10212 |{#SNMPVALUE}: Used memory |vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27417 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10213 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[cpmCPUTotal5minRev.{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;The cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27419 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10216 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27420 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10217 |{#SNMPVALUE}: Temperature status |sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current state of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27421 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10217 |{#SNMPVALUE}: Temperature |sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current measurement of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27422 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10217 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27423 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10217 |{#SENSOR_INFO}: Fan status |sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27473 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.9.1.1] |10221 |CPU and Memory and Flash Discovery |module.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27474 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.3.1.1] |10221 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A list of power supply residents in the S-series chassis. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27475 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.4.1.1] |10221 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27476 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.2.1.2] |10221 |Stack Unit Discovery |stack.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27478 |20 |1.3.6.1.4.1.6027.3.10.1.2.9.1.3.{#SNMPINDEX} |10221 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[chStackUnitCpuUtil1Min.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;CPU utilization in percentage for last 1 minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27479 |20 |1.3.6.1.4.1.6027.3.10.1.2.3.1.2.{#SNMPINDEX} |10221 |PSU {#SNMPVALUE}: Power supply status |sensor.psu.status[chSysPowerSupplyOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |31 | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The status of the power supply {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27480 |20 |1.3.6.1.4.1.6027.3.10.1.2.4.1.2.{#SNMPINDEX} |10221 |Fan {#SNMPVALUE}: Fan status |sensor.fan.status[chSysFanTrayOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |30 | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The status of the fan tray {#SNMPVALUE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27481 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.10.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Operating system |system.sw.os[chStackUnitCodeVersion.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;Current code version of this unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27482 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.21.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Hardware version(revision) |system.hw.version[chStackUnitProductRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The unit manufacturer's product revision |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27483 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.12.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Hardware serial number |system.hw.serialnumber[chStackUnitSerialNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The unit's serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27484 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.7.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Hardware model name |system.hw.model[chStackUnitModelID.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The plugged-in model ID for this unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27485 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.14.{#SNMPINDEX} |10221 |Device {#SNMPVALUE}: Temperature |sensor.temp.value[chStackUnitTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The temperature of the unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27508 |20 |1.3.6.1.2.1.47.1.1.1.1.8.1 |10222 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27509 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10222 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27510 |20 |1.3.6.1.2.1.1.1.0 |10222 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27511 |20 |1.3.6.1.4.1.171.10.97.2.36.1.1.3.0 |10222 |CPU utilization |system.cpu.util[myCPUUtilization5Min.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MY-PROCESS-MIB&eol;CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27512 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.35.1.1.1.2] |10222 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27513 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.23.1.2] |10222 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27514 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.18.1.3] |10222 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27515 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.21.1.3] |10222 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27517 |20 |1.3.6.1.4.1.171.10.97.2.1.1.23.1.3.{#SNMPINDEX} |10222 |{#SNMPVALUE}: Temperature |sensor.temp.value[mySystemTemperatureCurrent.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MY-SYSTEM-MIB&eol;Return the current temperature of the FastSwitch.The temperature display is not supported for the current temperature returns to 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27518 |20 |1.3.6.1.4.1.171.10.97.2.1.1.18.1.2.{#SNMPINDEX} |10222 |{#SNMPVALUE}: Power supply status |sensor.psu.status[mySystemElectricalSourceIsNormal.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |32 | | |0 | | | | |2 |NULL |MIB: MY-SYSTEM-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27519 |20 |1.3.6.1.4.1.171.10.97.2.1.1.21.1.2.{#SNMPINDEX} |10222 |{#SNMPVALUE}: Fan status |sensor.fan.status[mySystemFanIsNormal.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |32 | | |0 | | | | |2 |NULL |MIB: MY-SYSTEM-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27543 |20 |1.3.6.1.2.1.47.1.1.1.1.8.1 |10223 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27544 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10223 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27545 |20 |1.3.6.1.4.1.171.12.1.1.12.0 |10223 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: DLINK-AGENT-MIB&eol;A text string containing the serial number of this device. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27546 |20 |1.3.6.1.2.1.1.1.0 |10223 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27547 |20 |1.3.6.1.4.1.171.12.1.1.6.2.0 |10223 |CPU utilization |system.cpu.util[agentCPUutilizationIn1min.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: DLINK-AGENT-MIB&eol;The unit of time is 1 minute. The value will be between 0% (idle) and 100%(very busy). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27548 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.1.1.9.1.1] |10223 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27549 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.8.1.1] |10223 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27550 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.6.1.2,{#STATUS},1.3.6.1.4.1.171.12.11.1.6.1.3] |10223 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |swPowerID of EQUIPMENT-MIB::swPowerTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27551 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.7.1.2,{#STATUS},1.3.6.1.4.1.171.12.11.1.7.1.3] |10223 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |swFanID of EQUIPMENT-MIB::swFanTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27553 |20 |1.3.6.1.4.1.171.12.11.1.8.1.2.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Temperature |sensor.temp.value[swTemperatureCurrent.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EQUIPMENT-MIB&eol;The shelf current temperature. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27554 |20 |1.3.6.1.4.1.171.12.11.1.6.1.3.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Power supply status |sensor.psu.status[swPowerStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |34 | | |0 | | | | |2 |NULL |MIB: EQUIPMENT-MIB&eol;Indicates the current power status.&eol;lowVoltage : The voltage of the power unit is too low.&eol;overCurrent: The current of the power unit is too high.&eol;working : The power unit is working normally.&eol;fail : The power unit has failed.&eol;connect : The power unit is connected but not powered on.&eol;disconnect : The power unit is not connected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27555 |20 |1.3.6.1.4.1.171.12.11.1.7.1.3.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Fan status |sensor.fan.status[swFanStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |33 | | |0 | | | | |2 |NULL |MIB: EQUIPMENT-MIB&eol;Indicates the current fan status.&eol;speed-0 : If the fan function is normal and the fan does not spin due to the temperature not reaching the threshold, the status of the fan is speed 0.&eol;speed-low : Fan spin using the lowest speed.&eol;speed-middle: Fan spin using the middle speed.&eol;speed-high : Fan spin using the highest speed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27579 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10224 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27580 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10224 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27582 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10224 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27583 |20 |1.3.6.1.2.1.47.1.1.1.1.2.1 |10224 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27584 |20 |1.3.6.1.4.1.1916.1.1.1.8.0 |10224 |Device: Temperature |sensor.temp.value[extremeCurrentTemperature.0] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Temperature readings of testpoint: Device&eol;Reference: https://gtacknowledge.extremenetworks.com/articles/Q_A/Does-EXOS-support-temperature-polling-via-SNMP-on-all-nodes-in-a-stack |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27585 |20 |1.3.6.1.4.1.1916.1.1.1.7.0 |10224 |Device: Temperature status |sensor.temp.status[extremeOverTemperatureAlarm.0] |3m |2w |0d |0 |3 | | | | |NULL |37 | | |0 | | | | |0 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Temperature status of testpoint: Device |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27586 |20 |1.3.6.1.4.1.1916.1.32.1.2.0 |10224 |CPU utilization |system.cpu.util[extremeCpuMonitorTotalUtilization.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: EXTREME-SOFTWARE-MONITOR-MIB&eol;Total CPU utlization (percentage) as of last sampling. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27587 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.32.2.2.1.1] |10224 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27588 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.1.1.27.1.1] |10224 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Table of status of all power supplies in the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27589 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.1.1.9.1.1] |10224 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27591 |20 |1.3.6.1.4.1.1916.1.32.2.2.1.2.{#SNMPINDEX} |10224 |#{#SNMPVALUE}: Total memory |vm.memory.total[extremeMemoryMonitorSystemTotal.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EXTREME-SOFTWARE-MONITOR-MIB&eol;Total amount of DRAM in Kbytes in the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27593 |20 |1.3.6.1.4.1.1916.1.1.1.27.1.2.{#SNMPINDEX} |10224 |PSU {#SNMPVALUE}: Power supply status |sensor.psu.status[extremePowerSupplyStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |38 | | |0 | | | | |2 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Status of the power supply {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27594 |20 |1.3.6.1.4.1.1916.1.1.1.9.1.4.{#SNMPINDEX} |10224 |Fan {#SNMPVALUE}: Fan speed |sensor.fan.speed[extremeFanSpeed.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;The speed (RPM) of a cooling fan in the fantray {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27595 |20 |1.3.6.1.4.1.1916.1.1.1.9.1.2.{#SNMPINDEX} |10224 |Fan {#SNMPVALUE}: Fan status |sensor.fan.status[extremeFanOperational.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |36 | | |0 | | | | |2 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Operational status of a cooling fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27665 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.47.1.1.1.1.2,{#MODULE_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10227 |Module Discovery |module.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Filter limits results to 'Module level1' or Fabric Modules |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27666 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.47.1.1.1.1.2,{#MODULE_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10227 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering modules temperature (same filter as in Module Discovery) plus and temperature sensors |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27667 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_DESCR},1.3.6.1.2.1.47.1.1.1.1.2] |10227 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of PhysicalClass - 7: fan(7) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27668 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_DESCR},1.3.6.1.2.1.47.1.1.1.1.2] |10227 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of PhysicalClass - 6: powerSupply(6) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27669 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10227 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27671 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.6.{#SNMPINDEX} |10227 |{#MODULE_NAME}: CPU utilization |system.cpu.util[hh3cEntityExtCpuUsage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;The CPU usage for this entity. Generally, the CPU usage&eol;will calculate the overall CPU usage on the entity, and it&eol;is not sensible with the number of CPU on the entity |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27672 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.12.{#SNMPINDEX} |10227 |{#SNMPVALUE}: Temperature |sensor.temp.value[hh3cEntityExtTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;The temperature for the {#SNMPVALUE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27673 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.19.{#SNMPINDEX} |10227 |{#ENT_NAME}: Fan status |sensor.fan.status[hh3cEntityExtErrorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |39 | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;Indicate the error state of this entity object.&eol;fanError(41) means that the fan stops working. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27674 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.19.{#SNMPINDEX} |10227 |{#ENT_NAME}: Power supply status |sensor.psu.status[hh3cEntityExtErrorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |39 | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;Indicate the error state of this entity object.&eol;psuError(51) means that the Power Supply Unit is in the state of fault.&eol;rpsError(61) means the Redundant Power Supply is in the state of fault. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27675 |20 |1.3.6.1.2.1.47.1.1.1.1.10.{#SNMPINDEX} |10227 |{#ENT_NAME}: Operating system |system.sw.os[entPhysicalSoftwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27676 |20 |1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX} |10227 |{#ENT_NAME}: Hardware version(revision) |system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27677 |20 |1.3.6.1.2.1.47.1.1.1.1.9.{#SNMPINDEX} |10227 |{#ENT_NAME}: Firmware version |system.hw.firmware[entPhysicalFirmwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27678 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10227 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27679 |20 |1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX} |10227 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalDescr.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27745 |20 |discovery[{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10229 |MPU Discovery |mpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |http://support.huawei.com/enterprise/KnowledgebaseReadAction.action?contentId=KB1000090234. Filter limits results to Main Processing Units |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27746 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10229 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27747 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2011.5.25.31.1.1.10.1.1] |10229 |FAN Discovery |discovery.fans |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27748 |20 |1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX} |10229 |{#ENT_NAME}: Hardware version(revision) |system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27749 |20 |1.3.6.1.2.1.47.1.1.1.1.10.{#SNMPINDEX} |10229 |{#ENT_NAME}: Operating system |system.sw.os[entPhysicalSoftwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27750 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10229 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27751 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.{#SNMPINDEX} |10229 |{#ENT_NAME}: Temperature |sensor.temp.value[hwEntityTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB&eol;The temperature for the {#SNMPVALUE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27753 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.{#SNMPINDEX} |10229 |{#ENT_NAME}: CPU utilization |system.cpu.util[hwEntityCpuUsage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB&eol;The CPU usage for this entity. Generally, the CPU usage will calculate the overall CPU usage on the entity, and itis not sensible with the number of CPU on the entity.&eol;Reference: http://support.huawei.com/enterprise/KnowledgebaseReadAction.action?contentId=KB1000090234 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27754 |20 |1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX} |10229 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalDescr.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27755 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.10.1.7.{#SNMPINDEX} |10229 |#{#SNMPVALUE}: Fan status |sensor.fan.status[hwEntityFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |41 | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27777 |20 |1.3.6.1.4.1.10222.2.1.1.1.0 |10230 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ICS-CHASSIS-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27778 |20 |1.3.6.1.4.1.10222.2.1.1.1.0 |10230 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ICS-CHASSIS-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27779 |20 |discovery[{#SENSOR_TYPE},1.3.6.1.4.1.10222.2.1.9.8.1.2,{#SENSOR_INFO},1.3.6.1.4.1.10222.2.1.9.8.1.7] |10230 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering sensor's table with temperature filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27780 |20 |discovery[{#ENT_CLASS},1.3.6.1.4.1.10222.2.1.1.9.1.3,{#ENT_NAME},1.3.6.1.4.1.10222.2.1.1.9.1.2] |10230 |Unit Discovery |unit.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27781 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.10222.2.1.4.7.1.2] |10230 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A textual description of the power supply, that can be assigned by the administrator. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27782 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.10222.2.1.6.5.1.2] |10230 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |icsChassisFanDescription of icsChassisFanTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27783 |20 |1.3.6.1.4.1.10222.2.1.9.8.1.3.{#SNMPINDEX} |10230 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[icsChassisSensorSlotOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |43 | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The operational status of the sensor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27784 |20 |1.3.6.1.4.1.10222.2.1.9.8.1.8.{#SNMPINDEX} |10230 |{#SENSOR_INFO}: Temperature |sensor.temp.value[icsChassisSensorSlotValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The current value read from the sensor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27785 |20 |1.3.6.1.4.1.10222.2.1.1.10.1.1.{#SNMPINDEX} |10230 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[icsChassisSystemUnitFruSerialNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The serial number of the FRU. If not available, this value is a zero-length string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27786 |20 |1.3.6.1.4.1.10222.2.1.4.7.1.3.{#SNMPINDEX} |10230 |{#SNMPVALUE}: Power supply status |sensor.psu.status[icsChassisPowerSupplyEntry.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |44 | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;Actual status of the power supply:&eol;(1) unknown: status not known.&eol;(2) disabled: power supply is disabled.&eol;(3) failed - power supply is unable to supply power due to failure.&eol;(4) warning - power supply is supplying power, but an output or sensor is bad or warning.&eol;(5) standby - power supply believed usable,but not supplying power.&eol;(6) engaged - power supply is supplying power.&eol;(7) redundant - power supply is supplying power, but not needed.&eol;(8) notPresent - power supply is supplying power is not present. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27787 |20 |1.3.6.1.4.1.10222.2.1.6.5.1.3.{#SNMPINDEX} |10230 |{#SNMPVALUE}: Fan status |sensor.fan.status[icsChassisFanOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |42 | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The operational status of the fan unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27812 |20 |1.3.6.1.4.1.2636.3.1.2.0 |10231 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: JUNIPER-MIB&eol;The name, model, or detailed description of the box,indicating which product the box is about, for example 'M40'. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27813 |20 |1.3.6.1.4.1.2636.3.1.3.0 |10231 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: JUNIPER-MIB&eol;The serial number of this subject, blank if unknown or unavailable. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27814 |20 |1.3.6.1.4.1.2636.3.4.2.3.1.0 |10231 |Overall system health status |system.status[jnxRedAlarmState.0] |30s |2w |0d |0 |3 | | | | |NULL |46 | | |0 | | | | |0 |NULL |MIB: JUNIPER-ALARM-MIB&eol;The red alarm indication on the craft interface panel.&eol;The red alarm is on when there is some system&eol;failure or power supply failure or the system&eol;is experiencing a hardware malfunction or some&eol;threshold is being exceeded.&eol;&eol;This red alarm state could be turned off by the&eol;ACO/LT (Alarm Cut Off / Lamp Test) button on the&eol;front panel module. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27815 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5] |10231 |CPU and Memory Discovery |jnxOperatingTable.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for CPU and Memory&eol;http://kb.juniper.net/InfoCenter/index?page=content&id=KB17526&actp=search. Filter limits results to Routing Engines |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27816 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.7,{#SENSOR_INFO},1.3.6.1.4.1.2636.3.1.13.1.5] |10231 |Temperature discovery |jnxOperatingTable.discovery.temp |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for Temperature&eol;http://kb.juniper.net/InfoCenter/index?page=content&id=KB17526&actp=search. Filter limits results to Routing Engines |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27817 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5.4] |10231 |FAN Discovery |jnxOperatingTable.discovery.fans |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for Fans |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27818 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5.2] |10231 |PSU Discovery |jnxOperatingTable.discovery.psu |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for Power Supplies |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27821 |20 |1.3.6.1.4.1.2636.3.1.13.1.7.{#SNMPINDEX} |10231 |{#SENSOR_INFO}: Temperature |sensor.temp.value[jnxOperatingTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB&eol;The temperature in Celsius (degrees C) of {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27822 |20 |1.3.6.1.4.1.2636.3.1.13.1.6.4.{#SNMPINDEX} |10231 |{#SNMPVALUE}: Fan status |sensor.fan.status[jnxOperatingState.4.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |47 | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27823 |20 |1.3.6.1.4.1.2636.3.1.13.1.6.2.{#SNMPINDEX} |10231 |{#SNMPVALUE}: Power supply status |sensor.psu.status[jnxOperatingState.2.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |47 | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB&eol;If they are using DC power supplies there is a known issue on PR 1064039 where the fans do not detect the temperature correctly and fail to cool the power supply causing the shutdown to occur.&eol;This is fixed in Junos 13.3R7 https://forums.juniper.net/t5/Routing/PEM-0-not-OK-MX104/m-p/289644#M14122 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27893 |20 |1.3.6.1.2.1.1.1.0 |10233 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27894 |20 |1.3.6.1.4.1.14988.1.1.7.3.0 |10233 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MIKROTIK-MIB&eol;RouterBOARD serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27895 |20 |1.3.6.1.4.1.14988.1.1.7.4.0 |10233 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MIKROTIK-MIB&eol;Current firmware version |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27897 |20 |1.3.6.1.4.1.14988.1.1.3.10.0 |10233 |Device: Temperature |sensor.temp.value[mtxrHlTemperature] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MIKROTIK-MIB&eol;(mtxrHlTemperature) Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..)&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 |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). Might be missing in entry models (RB750, RB450G..) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27906 |15 | |10233 |Disk-{#SNMPINDEX}: Space utilization |vfs.fs.pused[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vfs.fs.used[hrStorageSize.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for Disk-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27907 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10233 |Disk-{#SNMPINDEX}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in&eol;units of hrStorageAllocationUnits. This object is&eol;writable to allow remote configuration of the size of&eol;the storage area in those cases where such an&eol;operation makes sense and is possible on the&eol;underlying system. For example, the amount of main&eol;memory allocated to a buffer pool might be modified or&eol;the amount of disk space allocated to virtual memory&eol;might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27908 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10233 |Disk-{#SNMPINDEX}: Used space |vfs.fs.used[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27930 |20 |1.3.6.1.4.1.4526.10.1.1.1.3.0 |10234 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27931 |20 |1.3.6.1.4.1.4526.10.1.1.1.4.0 |10234 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB&eol;Serial number of the switch |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27935 |20 |1.3.6.1.4.1.4526.10.1.1.5.2.0 |10234 |Total memory |vm.memory.total[agentSwitchCpuProcessMemAvailable.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB&eol;The total Memory allocated for the tasks |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27936 |20 |1.3.6.1.4.1.4526.10.1.1.4.9.0 |10234 |CPU utilization |system.cpu.util[agentSwitchCpuProcessTotalUtilization.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB&eol;CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27937 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.4526.10.43.1.8.1.1] |10234 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |FASTPATH-BOXSERVICES-PRIVATE-MIB::boxServicesTempSensorsTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27938 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.4526.10.43.1.6.1.1] |10234 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |FASTPATH-BOXSERVICES-PRIVATE-MIB::1.3.6.1.4.1.4526.10.43.1.6.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27939 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.4526.10.43.1.7.1.1] |10234 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |FASTPATH-BOXSERVICES-PRIVATE-MIB::boxServicesPowSupplyIndex |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27940 |20 |1.3.6.1.4.1.4526.10.43.1.8.1.3.{#SNMPINDEX} |10234 |#{#SNMPVALUE}: Temperature status |sensor.temp.status[boxServicesTempSensorState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |51 | | |0 | | | | |2 |NULL |MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;The state of temperature sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27941 |20 |1.3.6.1.4.1.4526.10.43.1.8.1.5.{#SNMPINDEX} |10234 |#{#SNMPVALUE}: Temperature |sensor.temp.value[boxServicesTempSensorTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;The temperature value reported by sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27942 |20 |1.3.6.1.4.1.4526.10.43.1.6.1.3.{#SNMPINDEX} |10234 |#{#SNMPVALUE}: Fan status |sensor.fan.status[boxServicesFanItemState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |50 | | |0 | | | | |2 |NULL |MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;The status of fan |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27943 |20 |1.3.6.1.4.1.4526.10.43.1.7.1.3.{#SNMPINDEX} |10234 |#{#SNMPVALUE}: Power supply status |sensor.psu.status[boxServicesPowSupplyItemState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |49 | | |0 | | | | |2 |NULL |MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;The status of power supply |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27967 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10235 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27968 |20 |1.3.6.1.2.1.47.1.1.1.1.8.1 |10235 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27970 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10235 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27971 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10235 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27972 |20 |1.3.6.1.4.1.27514.100.1.11.7.0 |10235 |Used memory |vm.memory.used[switchMemoryBusy.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: QTECH-MIB&eol;Used memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27973 |20 |1.3.6.1.4.1.27514.100.1.11.6.0 |10235 |Total memory |vm.memory.total[switchMemorySize.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: QTECH-MIB&eol;Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27975 |20 |1.3.6.1.4.1.27514.100.1.11.10.0 |10235 |CPU utilization |system.cpu.util[switchCpuUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: QTECH-MIB&eol;CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27997 |20 |1.3.6.1.4.1.11863.6.1.1.5.0 |10236 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TPLINK-SYSINFO-MIB&eol;The hardware version of the product. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27998 |20 |1.3.6.1.4.1.11863.6.1.1.6.0 |10236 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TPLINK-SYSINFO-MIB&eol;The software version of the product. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27999 |20 |1.3.6.1.4.1.11863.6.1.1.8.0 |10236 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TPLINK-SYSINFO-MIB&eol;The Serial number of the product. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28000 |20 |1.3.6.1.4.1.11863.6.1.1.5.0 |10236 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TPLINK-SYSINFO-MIB&eol;The hardware version of the product. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28001 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.11863.6.4.1.1.1.1.1] |10236 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering TPLINK-SYSMONITOR-MIB::tpSysMonitorCpuTable, displays the CPU utilization of all UNITs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28002 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.11863.6.4.1.2.1.1.1] |10236 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering TPLINK-SYSMONITOR-MIB::tpSysMonitorMemoryTable, displays the memory utilization of all UNITs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28003 |20 |1.3.6.1.4.1.11863.6.4.1.1.1.1.3.{#SNMPINDEX} |10236 |#{#SNMPVALUE}: CPU utilization |system.cpu.util[tpSysMonitorCpu1Minute.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TPLINK-SYSMONITOR-MIB&eol;Displays the CPU utilization in 1 minute.&eol;Reference: http://www.tp-link.com/faq-1330.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28026 |20 |1.2.840.10036.3.1.2.1.3.5 |10237 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IEEE802dot11-MIB&eol;A printable string used to identify the manufacturer's product name of the resource. Maximum string length is 128 octets. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28027 |20 |1.2.840.10036.3.1.2.1.4.5 |10237 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IEEE802dot11-MIB&eol;Printable string used to identify the manufacturer's product version of the resource. Maximum string length is 128 octets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28031 |20 |1.3.6.1.4.1.10002.1.1.1.4.2.1.3.2 |10237 |CPU utilization |system.cpu.util[loadValue.2] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FROGFOOT-RESOURCES-MIB&eol;5 minute load average of processor load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28141 |20 |1.3.6.1.4.1.11.2.14.11.5.1.1.3.0 |10250 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: NETSWITCH-MIB&eol;Contains the operating code version number (also known as software or firmware).&eol;For example, a software version such as A.08.01 is described as follows:&eol;A the function set available in your router&eol;08 the common release number&eol;01 updates to the current common release |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28142 |20 |1.3.6.1.4.1.11.2.36.1.1.2.9.0 |10250 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SEMI-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28143 |20 |1.3.6.1.4.1.11.2.14.11.5.1.9.6.1.0 |10250 |CPU utilization |system.cpu.util[hpSwitchCpuStat.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: STATISTICS-MIB&eol;The CPU utilization in percent(%).&eol;Reference: http://h20564.www2.hpe.com/hpsc/doc/public/display?docId=emr_na-c02597344&sp4ts.oid=51079 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28144 |20 |discovery[{#SENSOR_TYPE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2,{#SENSOR_PRECISION},1.3.6.1.2.1.99.1.1.1.3] |10250 |Temperature Discovery |temp.precision0.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with celsius filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28145 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.1] |10250 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of NETSWITCH-MIB::hpLocalMemTable, A table that contains information on all the local memory for each slot. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28146 |20 |discovery[{#ENT_CLASS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.2,{#ENT_DESCR},1.3.6.1.4.1.11.2.14.11.1.2.6.1.7,{#ENT_STATUS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.4] |10250 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of hpicfSensorObjectId that ends with: 11.2.3.7.8.3.2 - fans and are present |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28147 |20 |discovery[{#ENT_CLASS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.2,{#ENT_DESCR},1.3.6.1.4.1.11.2.14.11.1.2.6.1.7,{#ENT_STATUS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.4] |10250 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of hpicfSensorObjectId that ends with: 11.2.3.7.8.3.1 - power supplies and are present |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28148 |20 |discovery[{#ENT_CLASS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.2,{#ENT_DESCR},1.3.6.1.4.1.11.2.14.11.1.2.6.1.7,{#ENT_STATUS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.4] |10250 |Temp Status Discovery |temp.status.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of hpicfSensorObjectId that ends with: 11.2.3.7.8.3.3 - over temp status and are present |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28149 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10250 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28150 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10250 |{#SENSOR_INFO}: Temperature |sensor.temp.value[entPhySensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28153 |20 |1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.7.{#SNMPINDEX} |10250 |#{#SNMPVALUE}: Used memory |vm.memory.used[hpLocalMemAllocBytes.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: NETSWITCH-MIB&eol;The number of currently allocated bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28154 |20 |1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.{#SNMPINDEX} |10250 |{#ENT_DESCR}: Fan status |sensor.fan.status[hpicfSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |40 | | |0 | | | | |2 |NULL |MIB: HP-ICF-CHASSIS&eol;Actual status indicated by the sensor: {#ENT_DESCR} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28155 |20 |1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.{#SNMPINDEX} |10250 |{#ENT_DESCR}: Power supply status |sensor.psu.status[hpicfSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |40 | | |0 | | | | |2 |NULL |MIB: HP-ICF-CHASSIS&eol;Actual status indicated by the sensor: {#ENT_DESCR} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28156 |20 |1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.{#SNMPINDEX} |10250 |{#ENT_DESCR}: Temperature status |sensor.temp.status[hpicfSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |40 | | |0 | | | | |2 |NULL |MIB: HP-ICF-CHASSIS&eol;Actual status indicated by the sensor: {#ENT_DESCR} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28157 |20 |1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX} |10250 |{#ENT_NAME}: Hardware version(revision) |system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28158 |20 |1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX} |10250 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalDescr.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28196 |20 |discovery[{#SENSOR_TYPE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2,{#SENSOR_PRECISION},1.3.6.1.2.1.99.1.1.1.3] |10251 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with celsius filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28197 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2] |10251 |Fan Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with rpm filter |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28198 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10251 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28199 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10251 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28200 |20 |1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[entPhySensorOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |18 | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The operational status of the sensor {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28201 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Temperature |sensor.temp.value[entPhySensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28202 |20 |1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Fan status |sensor.fan.status[entPhySensorOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |18 | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The operational status of the sensor {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28203 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Fan speed |sensor.fan.speed[entPhySensorValue.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28204 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10251 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28205 |20 |1.3.6.1.2.1.47.1.1.1.1.13.{#SNMPINDEX} |10251 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalModelName.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28206 |20 |1.3.6.1.2.1.131.1.1.1.3.{#SNMPINDEX} |10251 |{#ENT_NAME}: Power supply status |sensor.psu.status[entStateOper.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |48 | | |0 | | | | |2 |NULL |MIB: ENTITY-STATE-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28244 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10252 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&eol;indexed with cpmCPUTotalIndex .&eol;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&eol;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&eol;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28246 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.5.{#SNMPINDEX} |10252 |{#SNMPVALUE}: CPU utilization |system.cpu.util[cpmCPUTotal5min.{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;The overall CPU busy percentage in the last 5 minute&eol;period. This object deprecates the avgBusy5 object from&eol;the OLD-CISCO-SYSTEM-MIB. This object is deprecated&eol;by cpmCPUTotal5minRev which has the changed range&eol;of value (0..100)&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28248 |5 | |10047 |Zabbix preprocessing queue |zabbix[preprocessing_queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28250 |5 | |10048 |Utilization of vmware data collector processes, in % |zabbix[process,vmware collector,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |28251 |5 | |10048 |Zabbix vmware cache, % used |zabbix[vmware,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |28306 |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] |10254 |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 |28307 |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] |10254 |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 |28308 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10254 |Entity discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28309 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10254 |PSU discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28323 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Temperature |sensor.temp.value[entPhySensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28324 |20 |1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[entPhySensorOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |18 | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The operational status of the sensor {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28325 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Fan speed |sensor.fan.speed[entPhySensorValue.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28326 |20 |1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Fan status |sensor.fan.status[entPhySensorOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |18 | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The operational status of the sensor {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28327 |20 |1.3.6.1.2.1.47.1.1.1.1.13.{#SNMPINDEX} |10254 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalModelName.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28328 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10254 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28329 |20 |1.3.6.1.2.1.131.1.1.1.3.{#SNMPINDEX} |10254 |{#ENT_NAME}: Power supply status |sensor.psu.status[entStateOper.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |48 | | |0 | | | | |2 |NULL |MIB: ENTITY-STATE-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28341 |20 |1.3.6.1.4.1.674.10892.5.2.1.0 |10255 |Overall system health status |system.status[globalSystemStatus.0] |30s |2w |0d |0 |3 | | | | |NULL |59 | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the overall rollup status of all components in the system being monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28342 |20 |1.3.6.1.4.1.674.10892.5.1.3.12.0 |10255 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the model name of the system. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28344 |20 |1.3.6.1.4.1.674.10892.5.1.3.2.0 |10255 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the service tag of the system. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28345 |20 |1.3.6.1.4.1.674.10892.5.1.1.8.0 |10255 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the firmware version of a remote access card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28346 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.20.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.674.10892.5.4.700.20.1.8] |10255 |Temperature CPU Discovery |temp.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Probe Table IDRAC-MIB-SMIv2::temperatureProbeTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28347 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.20.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.674.10892.5.4.700.20.1.8] |10255 |Temperature Ambient Discovery |temp.ambient.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Probe Table IDRAC-MIB-SMIv2::temperatureProbeTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28348 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.600.12.1.5,{#PSU_DESCR},1.3.6.1.4.1.674.10892.5.4.600.12.1.8] |10255 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::powerSupplyTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28349 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.12.1.5,{#FAN_DESCR},1.3.6.1.4.1.674.10892.5.4.700.12.1.8,{#TYPE},1.3.6.1.4.1.674.10892.5.4.700.12.1.7] |10255 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::coolingDeviceTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28350 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1,{#DISK_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2] |10255 |Physical Disk Discovery |physicaldisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::physicalDiskTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28351 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1,{#DISK_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2] |10255 |Virtual Disk Discovery |virtualdisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::virtualDiskTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28352 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38,{#CNTLR_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79] |10255 |Array Controller Discovery |physicaldisk.arr.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::controllerTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28353 |20 |discovery[{#BATTERY_NUM},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1] |10255 |Array Controller Cache Discovery |array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::batteryTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28354 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} |10255 |{#SENSOR_LOCALE}: Temperature |sensor.temp.value[temperatureProbeReading.CPU.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0020.0001.0006 This attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete. When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete,the value returned for this attribute is the temperature that the probeis reading in tenths of degrees Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28355 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} |10255 |{#SENSOR_LOCALE}: Temperature status |sensor.temp.status[temperatureProbeStatus.CPU.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0020.0001.0005 This attribute defines the probe status of the temperature probe. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28356 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} |10255 |{#SENSOR_LOCALE}: Temperature |sensor.temp.value[temperatureProbeReading.Ambient.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0020.0001.0006 This attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete. When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete,the value returned for this attribute is the temperature that the probeis reading in tenths of degrees Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28357 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} |10255 |{#SENSOR_LOCALE}: Temperature status |sensor.temp.status[temperatureProbeStatus.Ambient.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0020.0001.0005 This attribute defines the probe status of the temperature probe. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28358 |20 |1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX} |10255 |{#PSU_DESCR}: Power supply status |sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |59 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0600.0012.0001.0005 This attribute defines the status of the power supply. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28359 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX} |10255 |{#FAN_DESCR}: Fan status |sensor.fan.status[coolingDeviceStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0012.0001.0005 This attribute defines the probe status of the cooling device. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28360 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX} |10255 |{#FAN_DESCR}: Fan speed |sensor.fan.speed[coolingDeviceReading.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0012.0001.0006 This attribute defines the reading for a cooling device&eol;of subtype other than coolingDeviceSubTypeIsDiscrete. When the value&eol;for coolingDeviceSubType is other than coolingDeviceSubTypeIsDiscrete, the&eol;value returned for this attribute is the speed in RPM or the OFF/ON value&eol;of the cooling device. When the value for coolingDeviceSubType is&eol;coolingDeviceSubTypeIsDiscrete, a value is not returned for this attribute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28361 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk status |system.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}] |3m |90d |0d |0 |3 | | | | |NULL |61 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The status of the physical disk itself without the propagation of any contained component status.&eol;Possible values:&eol;1: Other&eol;2: Unknown&eol;3: OK&eol;4: Non-critical&eol;5: Critical&eol;6: Non-recoverable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28362 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk serial number |system.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}] |1d |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The physical disk's unique identification number from the manufacturer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28363 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk S.M.A.R.T. status |system.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}] |3m |90d |0d |0 |3 | | | | |NULL |62 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;Indicates whether the physical disk has received a predictive failure alert. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28364 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk model name |system.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The model number of the physical disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28365 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.27.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk part number |system.hw.physicaldisk.part_number[physicalDiskPartNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The part number of the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28366 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk media type |system.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}] |1h |2w |0d |0 |3 | | | | |NULL |63 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The media type of the physical disk. Possible Values:&eol;1: The media type could not be determined.&eol;2: Hard Disk Drive (HDD).&eol;3: Solid State Drive (SSD). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28367 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX} |10255 |{#DISK_NAME}: Disk size |system.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}] |1h |2w |0d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The size of the physical disk in megabytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28368 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Layout type |system.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |65 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The virtual disk's RAID type.&eol;Possible values:&eol;1: Not one of the following&eol;2: RAID-0&eol;3: RAID-1&eol;4: RAID-5&eol;5: RAID-6&eol;6: RAID-10&eol;7: RAID-50&eol;8: RAID-60&eol;9: Concatenated RAID 1&eol;10: Concatenated RAID 5 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28369 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Current state |system.hw.virtualdisk.state[virtualDiskOperationalState.{#SNMPINDEX}] |3m |2w |365d |0 |3 | | | | |NULL |66 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The state of the virtual disk when there are progressive operations ongoing.&eol;Possible values:&eol;1: There is no active operation running.&eol;2: The virtual disk configuration has changed. The physical disks included in the virtual disk are being modified to support the new configuration.&eol;3: A Consistency Check (CC) is being performed on the virtual disk.&eol;4: The virtual disk is being initialized.&eol;5: BackGround Initialization (BGI) is being performed on the virtual disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28370 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Read policy |system.hw.virtualdisk.readpolicy[virtualDiskReadPolicy.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The read policy used by the controller for read operations on this virtual disk.&eol;Possible values:&eol;1: No Read Ahead.&eol;2: Read Ahead.&eol;3: Adaptive Read Ahead. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28371 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Write policy |system.hw.virtualdisk.writepolicy[virtualDiskWritePolicy.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |67 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The write policy used by the controller for write operations on this virtual disk.&eol;Possible values:&eol;1: Write Through.&eol;2: Write Back.&eol;3: Force Write Back. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28372 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Disk size |system.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}] |1h |2w |0d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The size of the virtual disk in megabytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28373 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Status |system.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}] |3m |2w |365d |0 |3 | | | | |NULL |69 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The current state of this virtual disk (which includes any member physical disks.)&eol;Possible states:&eol;1: The current state could not be determined.&eol;2: The virtual disk is operating normally or optimally.&eol;3: The virtual disk has encountered a failure. The data on disk is lost or is about to be lost.&eol;4: The virtual disk encounterd a failure with one or all of the constituent redundant physical disks.&eol;The data on the virtual disk might no longer be fault tolerant. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28374 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX} |10255 |{#CNTLR_NAME}: Disk array controller status |system.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |59 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The status of the controller itself without the propagation of any contained component status.&eol;Possible values:&eol;1: Other&eol;2: Unknown&eol;3: OK&eol;4: Non-critical&eol;5: Critical&eol;6: Non-recoverable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28375 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX} |10255 |{#CNTLR_NAME}: Disk array controller model |system.hw.diskarray.model[controllerName.{#SNMPINDEX}] |1d |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The controller's name as represented in Storage Management. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28376 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX} |10255 |Battery {#BATTERY_NUM}: Disk array cache controller battery status |system.hw.diskarray.cache.battery.status[batteryState.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |64 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;Current state of battery.&eol;Possible values:&eol;1: The current state could not be determined.&eol;2: The battery is operating normally.&eol;3: The battery has failed and needs to be replaced.&eol;4: The battery temperature is high or charge level is depleting.&eol;5: The battery is missing or not detected.&eol;6: The battery is undergoing the re-charge phase.&eol;7: The battery voltage or charge level is below the threshold. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28388 |20 |1.3.6.1.4.1.232.6.2.6.1.0 |10256 |System: Temperature status |sensor.temp.status[cpqHeThermalCondition.0] |3m |2w |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 |1h |2w |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 |1h |2w |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 System |tempDescr.discovery.io |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 |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}] |6m |90d |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}] |1h |1w |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}] |3m |90d |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}] |3m |90d |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}] |6m |90d |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}] |6m |90d |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 |28410 |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}] |6m |90d |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 |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}] |3m |2w |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}] |3m |2w |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 |1w |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}] |1d |90d |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 |1w |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. |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 |1w |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}] |3m |90d |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}] |3m |90d |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}] |1d |90d |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}] |1h |2w |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}] |1h |2w |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}] |1h |2w |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}] |3m |2w |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}] |1h |2w |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}] |1h |2w |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 |28501 |16 | |10260 |jk-8009 bytes received per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_AJP}\"", bytesReceived] |1m |1w |365d |0 |0 | |B | | |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 |28502 |16 | |10260 |Maximum number of active sessions so far |jmx["Catalina:type=Manager,context=/,host=localhost",maxActive] |1m |1w |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 |28503 |16 | |10260 |http-8080 threads busy |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_HTTP}\"",currentThreadsBusy] |1m |1w |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 |28504 |16 | |10260 |http-8080 threads allocated |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_HTTP}\"",currentThreadCount] |1m |1w |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 |28505 |16 | |10260 |http-8443 threads max |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",maxThreads] |1h |1w |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 |28506 |16 | |10260 |http-8443 threads busy |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",currentThreadsBusy] |1m |1w |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 |28507 |16 | |10260 |http-8443 threads allocated |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",currentThreadCount] |1m |1w |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 |28508 |16 | |10260 |jk-8009 threads max |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_AJP}\"",maxThreads] |1h |1w |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 |28509 |16 | |10260 |jk-8009 threads busy |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_AJP}\"",currentThreadsBusy] |1m |1w |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 |28510 |16 | |10260 |jk-8009 threads allocated |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_AJP}\"",currentThreadCount] |1m |1w |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 |28511 |16 | |10260 |Tomcat version |jmx["Catalina:type=Server",serverInfo] |1h |1w |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 |28512 |16 | |10260 |http-8443 gzip compression |jmx["Catalina:type=ProtocolHandler,port=8443",compression] |1h |1w |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 |28513 |16 | |10260 |http-8080 gzip compression |jmx["Catalina:type=ProtocolHandler,port=8080",compression] |1h |1w |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 |28514 |16 | |10260 |Number of sessions created by this manager per second |jmx["Catalina:type=Manager,context=/,host=localhost",sessionCounter] |1m |1w |365d |0 |0 | | | | |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 |28515 |16 | |10260 |Number of sessions we rejected due to maxActive being reached |jmx["Catalina:type=Manager,context=/,host=localhost",rejectedSessions] |1m |1w |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 |28516 |16 | |10260 |The maximum number of active Sessions allowed, or -1 for no limit |jmx["Catalina:type=Manager,context=/,host=localhost",maxActiveSessions] |1h |1w |365d |0 |0 | | | | |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 |28517 |16 | |10260 |jk-8009 bytes sent per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_AJP}\"",bytesSent] |1m |1w |365d |0 |0 | |B | | |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 |28518 |16 | |10260 |Number of active sessions at this moment |jmx["Catalina:type=Manager,context=/,host=localhost",activeSessions] |1m |1w |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 |28519 |16 | |10260 |http-8080 requests per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTP}\"",requestCount] |1m |1w |365d |0 |0 | | | | |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 |28520 |16 | |10260 |http-8080 request processing time |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTP}\"",processingTime] |1m |1w |365d |0 |0 | |s | | |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 |28521 |16 | |10260 |http-8080 errors per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTP}\"",errorCount] |1m |1w |365d |0 |0 | | | | |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 |28522 |16 | |10260 |http-8080 bytes sent per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTP}\"",bytesSent] |1m |1w |365d |0 |0 | |B | | |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 |28523 |16 | |10260 |http-8080 bytes received per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTP}\"",bytesReceived] |1m |1w |365d |0 |0 | |B | | |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 |28524 |16 | |10260 |http-8443 requests per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",requestCount] |1m |1w |365d |0 |0 | | | | |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 |28525 |16 | |10260 |http-8443 request processing time |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",processingTime] |1m |1w |365d |0 |0 | |s | | |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 |28526 |16 | |10260 |http-8443 errors per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",errorCount] |1m |1w |365d |0 |0 | | | | |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 |28527 |16 | |10260 |http-8443 bytes sent per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTPS}\"", bytesSent] |1m |1w |365d |0 |0 | |B | | |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 |28528 |16 | |10260 |http-8443 bytes received per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",bytesReceived] |1m |1w |365d |0 |0 | |B | | |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 |28529 |16 | |10260 |jk-8009 requests per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_AJP}\"",requestCount] |1m |1w |365d |0 |0 | | | | |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 |28530 |16 | |10260 |jk-8009 request processing time |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_AJP}\"",processingTime] |1m |1w |365d |0 |0 | |s | | |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 |28531 |16 | |10260 |jk-8009 errors per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_AJP}\"",errorCount] |1m |1w |365d |0 |0 | | | | |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 |28532 |16 | |10260 |http-8080 threads max |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_HTTP}\"",maxThreads] |1h |1w |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 |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 |28542 |18 | |10261 |History index cache, % used |wcache.index.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28543 |18 | |10261 |Configuration cache, % used |rcache.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28544 |18 | |10261 |Value cache, % used |vcache.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28545 |18 | |10261 |Value cache hits |vcache.cache.hits |0 |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28546 |18 | |10261 |Value cache misses |vcache.cache.misses |0 |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28547 |18 | |10261 |Value cache operating mode |vcache.cache.mode |0 |1w |365d |0 |3 | | | | |NULL |15 | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28548 |18 | |10261 |VMware cache, % used |vmware.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28549 |18 | |10261 |History write cache, % used |wcache.history.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28550 |18 | |10261 |Number of processed values per second |wcache.values |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28551 |18 | |10261 |Trend write cache, % used |wcache.trend.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28552 |18 | |10261 |Utilization of unreachable poller data collector processes, in % |process.unreachable_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28553 |18 | |10261 |Number of processed numeric (float) values per second |wcache.values.float |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28554 |18 | |10261 |Number of processed log values per second |wcache.values.log |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28555 |18 | |10261 |Number of processed not supported values per second |wcache.values.not_supported |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28556 |18 | |10261 |Number of processed character values per second |wcache.values.str |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28557 |18 | |10261 |Number of processed text values per second |wcache.values.text |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28558 |18 | |10261 |Number of processed numeric (unsigned) values per second |wcache.values.uint |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28559 |18 | |10261 |Utilization of vmware data collector processes, in % |process.vmware_collector.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28560 |18 | |10261 |Preprocessing queue |preprocessing_queue |0 |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28561 |18 | |10261 |Utilization of alerter internal processes, in % |process.alerter.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28562 |18 | |10261 |Utilization of ipmi manager internal processes, in % |process.ipmi_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28563 |18 | |10261 |Utilization of alert manager internal processes, in % |process.alert_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28564 |18 | |10261 |Utilization of configuration syncer internal processes, in % |process.configuration_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28565 |18 | |10261 |Utilization of discoverer data collector processes, in % |process.discoverer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28566 |18 | |10261 |Utilization of escalator internal processes, in % |process.escalator.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28567 |18 | |10261 |Utilization of history syncer internal processes, in % |process.history_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28568 |18 | |10261 |Utilization of housekeeper internal processes, in % |process.housekeeper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28569 |18 | |10261 |Utilization of http poller data collector processes, in % |process.http_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28570 |18 | |10261 |Utilization of icmp pinger data collector processes, in % |process.icmp_pinger.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28571 |18 | |10261 |Utilization of ipmi poller data collector processes, in % |process.ipmi_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28572 |18 | |10261 |Utilization of timer internal processes, in % |process.timer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28573 |18 | |10261 |Utilization of java poller data collector processes, in % |process.java_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28574 |18 | |10261 |Utilization of poller data collector processes, in % |process.poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28575 |18 | |10261 |Utilization of preprocessing manager internal processes, in % |process.preprocessing_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28576 |18 | |10261 |Utilization of preprocessing worker internal processes, in % |process.preprocessing_worker.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28577 |18 | |10261 |Utilization of proxy poller data collector processes, in % |process.proxy_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28578 |18 | |10261 |Utilization of self-monitoring internal processes, in % |process.self-monitoring.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28579 |18 | |10261 |Utilization of snmp trapper data collector processes, in % |process.snmp_trapper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28580 |18 | |10261 |Utilization of task manager internal processes, in % |process.task_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28581 |18 | |10261 |Utilization of trapper data collector processes, in % |process.trapper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28582 |18 | |10261 |Utilization of LLD manager internal processes, in % |process.lld_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28583 |18 | |10261 |Utilization of LLD worker internal processes, in % |process.lld_worker.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28584 |18 | |10261 |LLD queue |lld_queue |0 |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |28588 |18 | |10262 |Utilization of vmware data collector processes, in % |process.vmware_collector.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28589 |18 | |10262 |Number of processed numeric (unsigned) values per second |wcache.values.uint |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28590 |18 | |10262 |Number of processed text values per second |wcache.values.text |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28591 |18 | |10262 |Number of processed character values per second |wcache.values.str |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28592 |18 | |10262 |Number of processed not supported values per second |wcache.values.not_supported |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28593 |18 | |10262 |Number of processed log values per second |wcache.values.log |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28594 |18 | |10262 |Number of processed numeric (float) values per second |wcache.values.float |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28595 |18 | |10262 |Number of processed values per second |wcache.values |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28596 |18 | |10262 |History index cache, % used |wcache.index.pused |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28597 |18 | |10262 |History write cache, % used |wcache.history.pused |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28598 |18 | |10262 |VMware cache, % used |vmware.buffer.pused |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28599 |18 | |10262 |Configuration cache, % used |rcache.buffer.pused |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28600 |18 | |10262 |Utilization of configuration syncer internal processes, in % |process.configuration_syncer.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28601 |18 | |10262 |Utilization of data sender internal processes, in % |process.data_sender.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28602 |18 | |10262 |Utilization of trapper data collector processes, in % |process.trapper.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28603 |18 | |10262 |Utilization of task manager internal processes, in % |process.task_manager.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28604 |18 | |10262 |Utilization of snmp trapper data collector processes, in % |process.snmp_trapper.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28605 |18 | |10262 |Utilization of self-monitoring internal processes, in % |process.self-monitoring.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28606 |18 | |10262 |Utilization of poller data collector processes, in % |process.poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28607 |18 | |10262 |Utilization of java poller data collector processes, in % |process.java_poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28608 |18 | |10262 |Utilization of ipmi poller data collector processes, in % |process.ipmi_poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28609 |18 | |10262 |Utilization of ipmi manager internal processes, in % |process.ipmi_manager.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28610 |18 | |10262 |Utilization of icmp pinger data collector processes, in % |process.icmp_pinger.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28611 |18 | |10262 |Utilization of http poller data collector processes, in % |process.http_poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28612 |18 | |10262 |Utilization of housekeeper internal processes, in % |process.housekeeper.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28613 |18 | |10262 |Utilization of history syncer internal processes, in % |process.history_syncer.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28614 |18 | |10262 |Utilization of heartbeat sender internal processes, in % |process.heartbeat_sender.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28615 |18 | |10262 |Utilization of discoverer data collector processes, in % |process.discoverer.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28616 |18 | |10262 |Utilization of unreachable poller data collector processes, in % |process.unreachable_poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |28620 |3 | |10173 |Discover VMware datastores |vmware.datastore.discovery[{$URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28621 |3 | |10173 |Average read latency of the datastore {#DATASTORE} |vmware.datastore.read[{$URL},{#DATASTORE},latency] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28622 |3 | |10173 |Free space on datastore {#DATASTORE} (percentage) |vmware.datastore.size[{$URL},{#DATASTORE},pfree] |{$VMWARE_PERF_INTERVAL:datastore}|90d |365d |0 |3 | |% | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28623 |3 | |10173 |Total size of datastore {#DATASTORE} |vmware.datastore.size[{$URL},{#DATASTORE}] |{$VMWARE_PERF_INTERVAL:datastore}|90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28624 |3 | |10173 |Average write latency of the datastore {#DATASTORE} |vmware.datastore.write[{$URL},{#DATASTORE},latency] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28671 |0 | |10263 |PostgreSQL: Get connections sum |pgsql.connections.sum["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_activity&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ACTIVITY-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28672 |0 | |10263 |PostgreSQL: Get locks |pgsql.locks["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_locks per database&eol;https://www.postgresql.org/docs/current/explicit-locking.html#LOCKING-TABLES |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28673 |0 | |10263 |Status: Ping time |pgsql.ping.time["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28674 |0 | |10263 |Status: Ping |pgsql.ping["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28675 |0 | |10263 |PostgreSQL: Get queries |pgsql.queries["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}","{$PG.QUERY_ETIME.MAX.WARN}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics by query execution time |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28676 |0 | |10263 |Replication: standby count |pgsql.replication.count["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of standby servers |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28677 |0 | |10263 |Replication: lag in seconds |pgsql.replication.lag.sec["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Replication lag with Master in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28678 |0 | |10263 |Replication: recovery role |pgsql.replication.recovery_role["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |76 | | |0 | | | | |0 |NULL |Replication role: 1 — recovery is still in progress (standby mode), 0 — master mode. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28679 |0 | |10263 |Replication: status |pgsql.replication.status["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |77 | | |0 | | | | |0 |NULL |Replication status: 0 — streaming is down, 1 — streaming is up, 2 — master mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28680 |0 | |10263 |Status: Config hash |pgsql.config.hash["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |15m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |PostgreSQL configuration hash |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28681 |0 | |10263 |Status: Cache hit ratio % |pgsql.cache.hit["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache hit ratio |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28682 |0 | |10263 |PostgreSQL: Get bgwriter |pgsql.bgwriter["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics about the background writer process's activity |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28683 |0 | |10263 |PostgreSQL: Get transactions |pgsql.transactions["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect metrics by transaction execution time |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28684 |0 | |10263 |Status: Uptime |pgsql.uptime["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28685 |0 | |10263 |Status: Version |pgsql.version["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |PostgreSQL version |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28686 |0 | |10263 |PostgreSQL: Get WAL |pgsql.wal.stat["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |5m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Master item to collect WAL metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28687 |0 | |10263 |PostgreSQL: Get dbstat |pgsql.dbstat["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_database per database&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-DATABASE-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28688 |18 | |10263 |Transactions: Max idle transaction time |pgsql.transactions.idle |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Current max idle transaction time |0 |30d |0 | |28683 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28689 |18 | |10263 |Transactions: Max active transaction time |pgsql.transactions.active |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Current max active transaction time |0 |30d |0 | |28683 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28690 |18 | |10263 |Transactions: Max prepared transaction time |pgsql.transactions.prepared |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Current max prepared transaction time |0 |30d |0 | |28683 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28691 |18 | |10263 |Transactions: Max waiting transaction time |pgsql.transactions.waiting |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Current max waiting transaction time |0 |30d |0 | |28683 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28692 |18 | |10263 |WAL: Segments count |pgsql.wal.count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of WAL segments |0 |30d |0 | |28686 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28693 |18 | |10263 |Bgwriter: Buffers allocated per second |pgsql.bgwriter.buffers_alloc.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers allocated |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28694 |18 | |10263 |Bgwriter: Buffers written directly by a backend per second |pgsql.bgwriter.buffers_backend.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written directly by a backend |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28695 |18 | |10263 |Bgwriter: Checkpoint write time |pgsql.bgwriter.checkpoint_write_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Total amount of time that has been spent in the portion of checkpoint processing where files are written to disk, in milliseconds |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28696 |18 | |10263 |Bgwriter: Buffers backend fsync per second |pgsql.bgwriter.buffers_backend_fsync.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times a backend had to execute its own fsync call (normally the background writer handles those even when the backend does its own write) |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28697 |18 | |10263 |Bgwriter: Buffers written during checkpoints per second |pgsql.bgwriter.buffers_checkpoint.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written during checkpoints |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28698 |18 | |10263 |Bgwriter: Buffers written by the background writer per second |pgsql.bgwriter.buffers_clean.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written by the background writer |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28699 |18 | |10263 |Bgwriter: Requested checkpoints per second |pgsql.bgwriter.checkpoints_req.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of requested checkpoints that have been performed |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28700 |18 | |10263 |Bgwriter: Scheduled checkpoints per second |pgsql.bgwriter.checkpoints_timed.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of scheduled checkpoints that have been performed |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28701 |18 | |10263 |Bgwriter: Checkpoint sync time |pgsql.bgwriter.checkpoint_sync_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Total amount of time that has been spent in the portion of checkpoint processing where files are synchronized to disk |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28702 |18 | |10263 |Bgwriter: Max written per second |pgsql.bgwriter.maxwritten_clean.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times the background writer stopped a cleaning scan because it had written too many buffers |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28703 |18 | |10263 |Connections sum: Waiting |pgsql.connections.sum.waiting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of waiting connections&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#WAIT-EVENT-TABLE |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28704 |18 | |10263 |Connections sum: Active |pgsql.connections.sum.active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections executing a query |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28705 |18 | |10263 |Connections sum: Idle |pgsql.connections.sum.idle |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections waiting for a new client command |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28706 |18 | |10263 |Connections sum: Idle in transaction |pgsql.connections.sum.idle_in_transaction |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections in a transaction state, but not executing a query |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28707 |18 | |10263 |Connections sum: Prepared |pgsql.connections.sum.prepared |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of prepared transactions&eol;https://www.postgresql.org/docs/current/sql-prepare-transaction.html |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28708 |18 | |10263 |Connections sum: Total |pgsql.connections.sum.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28709 |18 | |10263 |Connections sum: Total % |pgsql.connections.sum.total_pct |0 |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections in percentage |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28710 |18 | |10263 |WAL: Bytes written |pgsql.wal.write |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |WAL write in bytes |0 |30d |0 | |28686 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |28715 |18 | |10263 |DB {#DBNAME}: Detected conflicts per second |pgsql.dbstat.conflicts.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of queries canceled due to conflicts with recovery in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28716 |18 | |10263 |DB {#DBNAME}: Locks total |pgsql.locks.total["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of locks in the database |0 |30d |0 | |28672 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28717 |18 | |10263 |DB {#DBNAME}: Sequential scans per second |pgsql.scans.seq.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sequential scans in the database |0 |30d |0 | |28714 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28718 |18 | |10263 |DB {#DBNAME}: Index scans per second |pgsql.scans.idx.rate["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of index scans in the database |0 |30d |0 | |28714 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28719 |18 | |10263 |DB {#DBNAME}: Queries sum transaction time |pgsql.queries.tx.time_sum["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum transaction query time |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28720 |18 | |10263 |DB {#DBNAME}: Queries max transaction time |pgsql.queries.tx.time_max["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Max transaction query time |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28721 |18 | |10263 |DB {#DBNAME}: Queries slow transaction count |pgsql.queries.tx.slow_count["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Slow transaction query count |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28722 |18 | |10263 |DB {#DBNAME}: Queries sum query time |pgsql.queries.query.time_sum["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum query time |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28723 |18 | |10263 |DB {#DBNAME}: Queries max query time |pgsql.queries.query.time_max["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Max query time |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28724 |18 | |10263 |DB {#DBNAME}: Queries slow query count |pgsql.queries.query.slow_count["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Slow query count |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28725 |18 | |10263 |DB {#DBNAME}: Queries sum maintenance time |pgsql.queries.mro.time_sum["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum maintenance query time |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28726 |18 | |10263 |DB {#DBNAME}: Queries max maintenance time |pgsql.queries.mro.time_max["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Max maintenance query time |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28727 |18 | |10263 |DB {#DBNAME}: Queries slow maintenance count |pgsql.queries.mro.slow_count["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Slow maintenance query count |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28728 |18 | |10263 |DB {#DBNAME}: Disk blocks read per second |pgsql.dbstat.blks_read.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of disk blocks read in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28729 |18 | |10263 |DB {#DBNAME}: Detected deadlocks per second |pgsql.dbstat.deadlocks.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of detected deadlocks in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28730 |18 | |10263 |DB {#DBNAME}: Blocks hit per second |pgsql.dbstat.blks_hit.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of times disk blocks were found already in the buffer cache, so that a read was not necessary |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28731 |18 | |10263 |DB {#DBNAME}: Frozen XID before avtovacuum % |pgsql.frozenxid.prc_before_av["{#DBNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |reventing Transaction ID Wraparound Failures&eol;https://www.postgresql.org/docs/current/routine-vacuuming.html#VACUUM-FOR-WRAPAROUND |0 |30d |0 | |28713 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28732 |18 | |10263 |DB {#DBNAME}: Rollbacks per second |pgsql.dbstat.xact_rollback.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of transactions in this database that have been rolled back |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28733 |18 | |10263 |DB {#DBNAME}: Commits per second |pgsql.dbstat.xact_commit.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of transactions in this database that have been committed |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28734 |18 | |10263 |DB {#DBNAME}: Tuples updated per second |pgsql.dbstat.tup_updated.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows updated by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28735 |18 | |10263 |DB {#DBNAME}: Tuples returned per second |pgsql.dbstat.tup_returned.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows updated by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28736 |18 | |10263 |DB {#DBNAME}: Tuples inserted per second |pgsql.dbstat.tup_inserted.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows inserted by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28737 |18 | |10263 |DB {#DBNAME}: Tuples fetched per second |pgsql.dbstat.tup_fetched.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows fetched by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28738 |18 | |10263 |DB {#DBNAME}: Tuples deleted per second |pgsql.dbstat.tup_deleted.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows deleted by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28739 |18 | |10263 |DB {#DBNAME}: Temp_files created per second |pgsql.dbstat.temp_files.rate["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of temporary files created by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28740 |18 | |10263 |DB {#DBNAME}: Temp_bytes written per second |pgsql.dbstat.temp_bytes.rate["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total amount of data written to temporary files by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28741 |18 | |10263 |DB {#DBNAME}: Frozen XID before stop % |pgsql.frozenxid.prc_before_stop["{#DBNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Preventing Transaction ID Wraparound Failures&eol;https://www.postgresql.org/docs/current/routine-vacuuming.html#VACUUM-FOR-WRAPAROUND |0 |30d |0 | |28713 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |28778 |18 | |10265 |Apache: Workers starting up |apache.workers.starting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in starting state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28779 |18 | |10265 |Apache: Workers slot with no current process |apache.workers.slot |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of slots with no current process |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28780 |18 | |10265 |Apache: Workers sending reply |apache.workers.sending |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in sending state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28781 |18 | |10265 |Apache: Workers reading request |apache.workers.reading |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in reading state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28782 |18 | |10265 |Apache: Workers logging |apache.workers.logging |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in logging state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28783 |18 | |10265 |Apache: Workers keepalive (read) |apache.workers.keepalive |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in keepalive state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28784 |18 | |10265 |Apache: Workers idle cleanup |apache.workers.cleanup |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in cleanup state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28785 |18 | |10265 |Apache: Workers finishing |apache.workers.finishing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in finishing state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28786 |18 | |10265 |Apache: Workers closing connection |apache.workers.closing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in closing state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28787 |18 | |10265 |Apache: Workers DNS lookup |apache.workers.dnslookup |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in dnslookup state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28788 |18 | |10265 |Apache: Total workers idle |apache.workers_total.idle |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of idle worker threads/processes |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28789 |18 | |10265 |Apache: Total workers busy |apache.workers_total.busy |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of busy worker threads/processes |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28790 |18 | |10265 |Apache: Version |apache.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Service version |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28791 |18 | |10265 |Apache: Uptime |apache.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Service uptime in seconds |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28792 |18 | |10265 |Apache: Total requests |apache.requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |A total number of accesses |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28793 |18 | |10265 |Apache: Requests per second |apache.requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Calculated as change rate for 'Total requests' stat.&eol;ReqPerSec is not used, as it counts average since last Apache server start. |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28794 |18 | |10265 |Apache: Bytes per second |apache.bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Calculated as change rate for 'Total bytes' stat.&eol;BytesPerSec is not used, as it counts average since last Apache server start. |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28795 |18 | |10265 |Apache: Total bytes |apache.bytes |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total bytes served |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28796 |18 | |10265 |Apache: Workers waiting for connection |apache.workers.waiting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in waiting state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28797 |18 | |10265 |Event MPM discovery |apache.mpm.event.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics if event MPM is used&eol;https://httpd.apache.org/docs/current/mod/event.html |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28798 |18 | |10265 |Apache: Connections async closing |apache.connections[async_closing{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async connections in closing state (only applicable to event MPM) |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28799 |18 | |10265 |Apache: Connections async keep alive |apache.connections[async_keep_alive{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async connections in keep-alive state (only applicable to event MPM) |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28800 |18 | |10265 |Apache: Connections async writing |apache.connections[async_writing{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async connections in writing state (only applicable to event MPM) |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28801 |18 | |10265 |Apache: Connections total |apache.connections[total{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of total connections |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28802 |18 | |10265 |Apache: Bytes per request |apache.bytes[per_request{#SINGLETON}] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Average number of client requests per second |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28803 |18 | |10265 |Apache: Number of async processes |apache.process[num{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async processes |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |28811 |18 | |10266 |Nginx: Connections waiting |nginx.connections.waiting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of idle client connections waiting for a request. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28812 |18 | |10266 |Nginx: Connections writing |nginx.connections.writing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of connections where nginx is writing the response back to the client. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28813 |18 | |10266 |Nginx: Connections active |nginx.connections.active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of active client connections including Waiting connections. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28814 |18 | |10266 |Nginx: Connections reading |nginx.connections.reading |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of connections where nginx is reading the request header. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28815 |18 | |10266 |Nginx: Connections handled per second |nginx.connections.handled.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of handled connections. Generally, the parameter value is the same as accepts unless some resource limits have been reached (for example, the worker_connections limit). |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28816 |18 | |10266 |Nginx: Connections dropped per second |nginx.connections.dropped.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of dropped client connections. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28817 |18 | |10266 |Nginx: Connections accepted per second |nginx.connections.accepted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of accepted client connections. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28818 |18 | |10266 |Nginx: Requests per second |nginx.requests.total.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of client requests. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28819 |18 | |10266 |Nginx: Requests total |nginx.requests.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of client requests. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28820 |18 | |10266 |Nginx: Version |nginx.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |28824 |18 | |10267 |Nginx: Requests total |nginx.requests.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of client requests. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28825 |18 | |10267 |Nginx: Requests per second |nginx.requests.total.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of client requests. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28826 |18 | |10267 |Nginx: Connections accepted per second |nginx.connections.accepted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of accepted client connections. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28827 |18 | |10267 |Nginx: Connections dropped per second |nginx.connections.dropped.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of dropped client connections. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28828 |18 | |10267 |Nginx: Connections handled per second |nginx.connections.handled.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of handled connections. Generally, the parameter value is the same as accepts unless some resource limits have been reached (for example, the worker_connections limit). |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28829 |18 | |10267 |Nginx: Connections active |nginx.connections.active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of active client connections including Waiting connections. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28830 |18 | |10267 |Nginx: Connections reading |nginx.connections.reading |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of connections where nginx is reading the request header. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28831 |18 | |10267 |Nginx: Connections waiting |nginx.connections.waiting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of idle client connections waiting for a request. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28832 |18 | |10267 |Nginx: Connections writing |nginx.connections.writing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of connections where nginx is writing the response back to the client. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28833 |18 | |10267 |Nginx: Version |nginx.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |28914 |18 | |10170 |Performance: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28915 |18 | |10170 |Performance: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28916 |18 | |10170 |Performance: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28917 |18 | |10170 |Performance: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28918 |18 | |10170 |Performance: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28919 |18 | |10170 |Connections: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server started. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28920 |18 | |10170 |Throughput: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28921 |18 | |10170 |Throughput: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28922 |18 | |10170 |Performance: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28923 |18 | |10170 |Connections: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads in the thread cache. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28924 |18 | |10170 |Connections: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently open connections. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28925 |18 | |10170 |Connections: Threads created |mysql.threads_created |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28926 |18 | |10170 |Connections: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads that are not sleeping. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28927 |18 | |10170 |Info: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of seconds that the server has been up. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28928 |18 | |10170 |Performance: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28929 |18 | |10170 |Connections: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28930 |18 | |10170 |Performance: InnoDB buffer pool pages free |mysql.innodb_buffer_pool_pages_free |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28931 |18 | |10170 |Connections: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28932 |18 | |10170 |Throughput: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28933 |18 | |10170 |Throughput: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28934 |18 | |10170 |Throughput: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28935 |18 | |10170 |Throughput: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28936 |18 | |10170 |Throughput: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28937 |18 | |10170 |Throughput: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28938 |18 | |10170 |Connections: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28939 |18 | |10170 |Connections: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed attempts to connect to the MySQL server. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28940 |18 | |10170 |Connections: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28941 |18 | |10170 |Connections: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28942 |18 | |10170 |Connections: Connection errors peer address per second |mysql.connection_errors_peer_address.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors while searching for the connecting client IP address. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28943 |18 | |10170 |Connections: Connection errors select per second |mysql.connection_errors_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28944 |18 | |10170 |Connections: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library refused. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28945 |18 | |10170 |Performance: Created tmp tables on disk |mysql.created_tmp_disk_tables |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28946 |18 | |10170 |Performance: Created tmp files on disk |mysql.created_tmp_files |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |How many temporary files mysqld has created. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28947 |18 | |10170 |Performance: Created tmp tables on memory |mysql.created_tmp_tables |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |28952 |18 | |10170 |Replication: Seconds Behind Master {#MASTERHOST} |mysql.seconds_behind_master["{#MASTERHOST}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of seconds that the slave SQL thread is behind processing the master binary log. A high number (or an increasing one) can indicate that the slave is unable to handle events from the master in a timely fashion. |0 |30d |0 | |28951 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28953 |18 | |10170 |Replication: Slave IO Running {#MASTERHOST} |mysql.slave_io_running["{#MASTERHOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the I/O thread for reading the master's binary log is running. Normally, you want this to be Yes unless you have not yet started replication or have explicitly stopped it with STOP SLAVE. |0 |30d |0 | |28951 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28954 |18 | |10170 |Replication: Slave SQL Running {#MASTERHOST} |mysql.slave_sql_running["{#MASTERHOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the SQL thread for executing events in the relay log is running. As with the I/O thread, this should normally be Yes. |0 |30d |0 | |28951 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |29009 |18 | |10270 |CPU discovery |cpu.discovery[snmp] |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |This discovery will create set of per core CPU metrics from UCD-SNMP-MIB, using {#CPU.COUNT} in preprocessing. That's the only reason why LLD is used. |0 |30d |0 | |28990 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |29048 |18 | |10270 |CPU utilization |system.cpu.util[snmp,{#SNMPINDEX}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |CPU utilization in % |0 |30d |0 | |29017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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/current/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/current/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 |29198 |18 | |10272 |CPU utilization |system.cpu.util |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |29099 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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/current/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/current/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 |29347 |18 | |10278 |CPU utilization |system.cpu.util |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |29285 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |29398 |18 | |10285 |System local time |system.localtime[node_exporter] |0 |7d |365d |0 |0 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29399 |18 | |10285 |CPU steal time |system.cpu.steal[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29400 |18 | |10285 |Free swap space |system.swap.free[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29401 |18 | |10285 |Total swap space |system.swap.total[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29402 |18 | |10285 |Available memory |vm.memory.available[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/current/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29403 |18 | |10285 |Total memory |vm.memory.total[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29404 |18 | |10285 |System boot time |system.boottime[node_exporter] |0 |7d |365d |0 |0 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29405 |18 | |10285 |Context switches per second |system.cpu.switches[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29406 |18 | |10285 |Interrupts per second |system.cpu.intr[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29407 |18 | |10285 |CPU guest nice time |system.cpu.guest_nice[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29408 |18 | |10285 |CPU guest time |system.cpu.guest[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Guest time (time spent running a virtual CPU for a guest operating system) |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29409 |18 | |10285 |CPU interrupt time |system.cpu.interrupt[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29410 |18 | |10285 |CPU iowait time |system.cpu.iowait[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29411 |18 | |10285 |CPU nice time |system.cpu.nice[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29412 |18 | |10285 |CPU softirq time |system.cpu.softirq[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing software interrupts. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29413 |18 | |10285 |CPU user time |system.cpu.user[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29414 |18 | |10285 |System name |system.name[node_exporter] |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29415 |18 | |10285 |Version of node_exporter running |agent.version[node_exporter] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29416 |18 | |10285 |CPU idle time |system.cpu.idle[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29417 |18 | |10285 |Number of CPUs |system.cpu.num[node_exporter] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29418 |18 | |10285 |Load average (15m avg) |system.cpu.load.avg15[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29419 |18 | |10285 |Load average (5m avg) |system.cpu.load.avg5[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29420 |18 | |10285 |Load average (1m avg) |system.cpu.load.avg1[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29421 |18 | |10285 |System uptime |system.uptime[node_exporter] |0 |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29422 |18 | |10285 |Operating system architecture |system.sw.arch[node_exporter] |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29423 |18 | |10285 |Number of open file descriptors |fd.open[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29424 |18 | |10285 |Maximum number of open file descriptors |kernel.maxfiles[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29425 |18 | |10285 |System description |system.descr[node_exporter] |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Labeled system information as provided by the uname system call. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29426 |18 | |10285 |CPU system time |system.cpu.system[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29427 |18 | |10285 |CPU utilization |system.cpu.util[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |29416 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29428 |18 | |10285 |Operating system |system.sw.os[node_exporter] |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |29425 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29429 |18 | |10285 |Network interface discovery |net.if.discovery[node_exporter] |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces. Requires node_exporter v0.18 and up. |0 |30d |1 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29430 |18 | |10285 |Mounted filesystem discovery |vfs.fs.discovery[node_exporter] |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29431 |18 | |10285 |Block devices discovery |vfs.dev.discovery[node_exporter] |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |29436 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[node_exporter,"{#IFNAME}"] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29437 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[node_exporter,"{#IFNAME}"] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29438 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[node_exporter"{#IFNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29439 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[node_exporter,"{#IFNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29440 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[node_exporter,"{#IFNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29441 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[node_exporter,"{#IFNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29442 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[node_exporter,"{#IFNAME}"] |0 |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Sets value to 0 if metric is missing in node_exporter output. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29443 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[node_exporter,"{#IFNAME}"] |0 |7d |0d |0 |3 | | | | |NULL |78 | | |0 | | | | |2 |NULL |node_network_protocol_type protocol_type value of /sys/class/net/<iface>. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29444 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[node_exporter,"{#IFNAME}"] |0 |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29445 |18 | |10285 |{#FSNAME}: Free space |vfs.fs.free[node_exporter,"{#FSNAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29446 |18 | |10285 |{#FSNAME}: Total space |vfs.fs.total[node_exporter,"{#FSNAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29447 |18 | |10285 |{#FSNAME}: Free inodes in % |vfs.fs.inode.pfree[node_exporter,"{#FSNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29448 |18 | |10285 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29449 |18 | |10285 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29450 |18 | |10285 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29451 |18 | |10285 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29452 |18 | |10285 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29453 |18 | |10285 |{#DEVNAME}: Disk utilization |vfs.dev.util[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |29687 |18 | |10301 |RabbitMQ: Memory used |rabbitmq.node.mem_used |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory used in bytes |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29688 |18 | |10301 |RabbitMQ: Disk free alarm |rabbitmq.node.disk_free_alarm |0 |7d |365d |0 |3 | | | | |NULL |83 | | |0 | | | | |0 |NULL |Does the node have disk alarm |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29691 |18 | |10301 |RabbitMQ: Used file descriptors |rabbitmq.node.fd_used |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Used file descriptors |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29692 |18 | |10301 |RabbitMQ: Uptime |rabbitmq.node.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Uptime in milliseconds |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29693 |18 | |10301 |RabbitMQ: Memory alarm |rabbitmq.node.mem_alarm |0 |7d |365d |0 |3 | | | | |NULL |83 | | |0 | | | | |0 |NULL |Does the host has memory alarm |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29694 |18 | |10301 |RabbitMQ: Memory limit |rabbitmq.node.mem_limit |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory usage high watermark in bytes |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29695 |18 | |10301 |RabbitMQ: Is running |rabbitmq.node.running |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Is the node running or not |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29696 |18 | |10301 |RabbitMQ: Number of network partitions |rabbitmq.node.partitions |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of network partitions this node is seeing |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29697 |18 | |10301 |RabbitMQ: Sockets available |rabbitmq.node.sockets_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |File descriptors available for use as sockets |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29698 |18 | |10301 |RabbitMQ: Free disk space |rabbitmq.node.disk_free |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current free disk space |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29699 |18 | |10301 |RabbitMQ: Runtime run queue |rabbitmq.node.run_queue |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Average number of Erlang processes waiting to run |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29700 |18 | |10301 |RabbitMQ: Disk free limit |rabbitmq.node.disk_free_limit |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Disk free space limit in bytes |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29701 |18 | |10301 |RabbitMQ: Sockets used |rabbitmq.node.sockets_used |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of file descriptors used as sockets |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29703 |18 | |10301 |Queues discovery |rabbitmq.queues.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual queue metrics |0 |30d |1 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29720 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages |rabbitmq.queue.messages["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of the total messages in the queue |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29721 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered |rabbitmq.queue.messages.deliver["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages delivered in acknowledgement mode to consumers |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29722 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages redelivered |rabbitmq.queue.messages.redeliver["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29723 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages published per second |rabbitmq.queue.messages.publish.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of messages published |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29724 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages published |rabbitmq.queue.messages.publish["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29725 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered per second |rabbitmq.queue.messages.deliver_get.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29726 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered |rabbitmq.queue.messages.deliver_get["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29727 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered per second |rabbitmq.queue.messages.deliver.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages delivered in acknowledgement mode to consumers |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29728 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages acknowledged per second |rabbitmq.queue.messages.ack.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number per second of messages delivered to clients and acknowledged |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29729 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages per second |rabbitmq.queue.messages.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count per second of the total messages in the queue |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29730 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages acknowledged |rabbitmq.queue.messages.ack["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages delivered to clients and acknowledged |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29731 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages unacknowledged per second |rabbitmq.queue.messages_unacknowledged.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number per second of messages delivered to clients but not yet acknowledged |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29732 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages unacknowledged |rabbitmq.queue.messages_unacknowledged["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages delivered to clients but not yet acknowledged |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29733 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages ready per second |rabbitmq.queue.messages_ready.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number per second of messages ready to be delivered to clients |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29734 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages ready |rabbitmq.queue.messages_ready["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages ready to be delivered to clients |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29735 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Memory |rabbitmq.queue.memory["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Bytes of memory consumed by the Erlang process associated with the queue, including stack, heap and internal structures |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29736 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Consumers |rabbitmq.queue.consumers["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of consumers |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29737 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages redelivered per second |rabbitmq.queue.messages.redeliver.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |29746 |18 | |10302 |RabbitMQ: Messages returned redeliver |rabbitmq.overview.messages.redeliver |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29747 |18 | |10302 |RabbitMQ: Messages returned unroutable per second |rabbitmq.overview.messages.return_unroutable.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages returned to publisher as unroutable per second |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29748 |18 | |10302 |RabbitMQ: Messages returned unroutable |rabbitmq.overview.messages.return_unroutable |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages returned to publisher as unroutable |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29749 |18 | |10302 |RabbitMQ: Messages publish_out per second |rabbitmq.overview.messages.publish_out.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages published from this overview into queues per second,0,rabbitmq,total msgs pub out rate |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29750 |18 | |10302 |RabbitMQ: Messages publish_out |rabbitmq.overview.messages.publish_out |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published from this overview into queues |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29751 |18 | |10302 |RabbitMQ: Messages publish_in per second |rabbitmq.overview.messages.publish_in.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages published from channels into this overview per sec |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29752 |18 | |10302 |RabbitMQ: Messages publish_in |rabbitmq.overview.messages.publish_in |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published from channels into this overview |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29753 |18 | |10302 |RabbitMQ: Messages published per second |rabbitmq.overview.messages.publish.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages published per second |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29754 |18 | |10302 |RabbitMQ: Messages published |rabbitmq.overview.messages.publish |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29755 |18 | |10302 |RabbitMQ: Messages delivered per second |rabbitmq.overview.messages.deliver_get.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29756 |18 | |10302 |RabbitMQ: Messages delivered |rabbitmq.overview.messages.deliver_get |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29757 |18 | |10302 |RabbitMQ: Messages confirmed per second |rabbitmq.overview.messages.confirm.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages confirmed per second |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29758 |18 | |10302 |RabbitMQ: Messages confirmed |rabbitmq.overview.messages.confirm |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages confirmed |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29759 |18 | |10302 |RabbitMQ: Messages acknowledged per second |rabbitmq.overview.messages.ack.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages delivered to clients and acknowledged per second |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29760 |18 | |10302 |RabbitMQ: Messages acknowledged |rabbitmq.overview.messages.ack |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of messages delivered to clients and acknowledged |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29761 |18 | |10302 |RabbitMQ: Messages unacknowledged |rabbitmq.overview.queue_totals.messages.unacknowledged |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of unacknowledged messages |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29762 |18 | |10302 |RabbitMQ: Messages ready for delivery |rabbitmq.overview.queue_totals.messages.ready |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of messages ready for deliver |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29763 |18 | |10302 |RabbitMQ: Messages total |rabbitmq.overview.queue_totals.messages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of messages (ready plus unacknowledged) |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29764 |18 | |10302 |RabbitMQ: Exchanges total |rabbitmq.overview.object_totals.exchanges |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of exchanges |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29765 |18 | |10302 |RabbitMQ: Consumers total |rabbitmq.overview.object_totals.consumers |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of consumers |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29766 |18 | |10302 |RabbitMQ: Queues total |rabbitmq.overview.object_totals.queues |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of queues |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29767 |18 | |10302 |RabbitMQ: Channels total |rabbitmq.overview.object_totals.channels |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of channels |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29768 |18 | |10302 |RabbitMQ: Connections total |rabbitmq.overview.object_totals.connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29769 |18 | |10302 |RabbitMQ: Messages returned redeliver per second |rabbitmq.overview.messages.redeliver.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of subset of messages in deliver_get which had the redelivered flag set per second |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29771 |18 | |10303 |RabbitMQ: Number of network partitions |rabbitmq.node.partitions |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of network partitions this node is seeing |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29772 |18 | |10303 |RabbitMQ: Uptime |rabbitmq.node.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Uptime in milliseconds |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29773 |18 | |10303 |RabbitMQ: Disk free alarm |rabbitmq.node.disk_free_alarm |0 |7d |365d |0 |3 | | | | |NULL |83 | | |0 | | | | |0 |NULL |Does the node have disk alarm |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29774 |18 | |10303 |RabbitMQ: Memory alarm |rabbitmq.node.mem_alarm |0 |7d |365d |0 |3 | | | | |NULL |83 | | |0 | | | | |0 |NULL |Does the host has memory alarm |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29775 |18 | |10303 |RabbitMQ: Is running |rabbitmq.node.running |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Is the node running or not |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29776 |18 | |10303 |RabbitMQ: Sockets used |rabbitmq.node.sockets_used |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of file descriptors used as sockets |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29777 |18 | |10303 |RabbitMQ: Sockets available |rabbitmq.node.sockets_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |File descriptors available for use as sockets |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29779 |18 | |10303 |RabbitMQ: Runtime run queue |rabbitmq.node.run_queue |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Average number of Erlang processes waiting to run |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29780 |18 | |10303 |RabbitMQ: Memory used |rabbitmq.node.mem_used |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory used in bytes |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29781 |18 | |10303 |RabbitMQ: Disk free limit |rabbitmq.node.disk_free_limit |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Disk free space limit in bytes |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29782 |18 | |10303 |RabbitMQ: Free disk space |rabbitmq.node.disk_free |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current free disk space |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29783 |18 | |10303 |RabbitMQ: Used file descriptors |rabbitmq.node.fd_used |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Used file descriptors |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29784 |18 | |10303 |RabbitMQ: Memory limit |rabbitmq.node.mem_limit |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory usage high watermark in bytes |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29785 |18 | |10302 |Exchanges discovery |rabbitmq.exchanges.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual exchange metrics |0 |30d |1 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29786 |18 | |10303 |Queues discovery |rabbitmq.queues.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual queue metrics |0 |30d |1 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29787 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages acknowledged |rabbitmq.exchange.messages.ack["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages delivered to clients and acknowledged |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29788 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages acknowledged per second |rabbitmq.exchange.messages.ack.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages delivered to clients and acknowledged per second |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29789 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages confirmed |rabbitmq.exchange.messages.confirm["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages confirmed |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29790 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages confirmed per second |rabbitmq.exchange.messages.confirm.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages confirmed per second |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29791 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages delivered |rabbitmq.exchange.messages.deliver_get["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29792 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages delivered per second |rabbitmq.exchange.messages.deliver_get.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29793 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages published |rabbitmq.exchange.messages.publish["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29794 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages published per second |rabbitmq.exchange.messages.publish.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages published per second |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29795 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_in |rabbitmq.exchange.messages.publish_in["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published from channels into this overview |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29796 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_in per second |rabbitmq.exchange.messages.publish_in.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages published from channels into this overview per sec |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29797 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_out |rabbitmq.exchange.messages.publish_out["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published from this overview into queues |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29798 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_out per second |rabbitmq.exchange.messages.publish_out.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages published from this overview into queues per second,0,rabbitmq,total msgs pub out rate |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29799 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages returned unroutable |rabbitmq.exchange.messages.return_unroutable["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages returned to publisher as unroutable |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29800 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages returned unroutable per second|rabbitmq.exchange.messages.return_unroutable.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages returned to publisher as unroutable per second |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29801 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages redelivered |rabbitmq.exchange.messages.redeliver["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29802 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages redelivered per second |rabbitmq.exchange.messages.redeliver.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of subset of messages in deliver_get which had the redelivered flag set per second |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29803 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages |rabbitmq.queue.messages["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of the total messages in the queue |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29804 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered |rabbitmq.queue.messages.deliver["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages delivered in acknowledgement mode to consumers |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29805 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages redelivered |rabbitmq.queue.messages.redeliver["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29806 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages published per second |rabbitmq.queue.messages.publish.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of messages published |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29807 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages published |rabbitmq.queue.messages.publish["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29808 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered per second |rabbitmq.queue.messages.deliver_get.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29809 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered |rabbitmq.queue.messages.deliver_get["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29810 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered per second |rabbitmq.queue.messages.deliver.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages delivered in acknowledgement mode to consumers |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29811 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages acknowledged per second |rabbitmq.queue.messages.ack.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number per second of messages delivered to clients and acknowledged |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29812 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages per second |rabbitmq.queue.messages.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count per second of the total messages in the queue |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29813 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages acknowledged |rabbitmq.queue.messages.ack["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages delivered to clients and acknowledged |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29814 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages unacknowledged per second |rabbitmq.queue.messages_unacknowledged.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number per second of messages delivered to clients but not yet acknowledged |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29815 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages unacknowledged |rabbitmq.queue.messages_unacknowledged["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages delivered to clients but not yet acknowledged |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29816 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages ready per second |rabbitmq.queue.messages_ready.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number per second of messages ready to be delivered to clients |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29817 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages ready |rabbitmq.queue.messages_ready["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages ready to be delivered to clients |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29818 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Memory |rabbitmq.queue.memory["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Bytes of memory consumed by the Erlang process associated with the queue, including stack, heap and internal structures |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29819 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Consumers |rabbitmq.queue.consumers["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of consumers |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29820 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages redelivered per second |rabbitmq.queue.messages.redeliver.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29821 |18 | |10261 |Utilization of alert syncer internal processes, in % |process.alert_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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] |30s |2w |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 |30000 |18 | |10300 |RabbitMQ: Messages returned redeliver |rabbitmq.overview.messages.redeliver |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30001 |18 | |10300 |RabbitMQ: Messages returned unroutable per second |rabbitmq.overview.messages.return_unroutable.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages returned to publisher as unroutable per second |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30002 |18 | |10300 |RabbitMQ: Messages returned unroutable |rabbitmq.overview.messages.return_unroutable |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages returned to publisher as unroutable |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30003 |18 | |10300 |RabbitMQ: Messages publish_out per second |rabbitmq.overview.messages.publish_out.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages published from this overview into queues per second,0,rabbitmq,total msgs pub out rate |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30004 |18 | |10300 |RabbitMQ: Messages publish_out |rabbitmq.overview.messages.publish_out |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published from this overview into queues |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30005 |18 | |10300 |RabbitMQ: Messages publish_in per second |rabbitmq.overview.messages.publish_in.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages published from channels into this overview per sec |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30006 |18 | |10300 |RabbitMQ: Messages publish_in |rabbitmq.overview.messages.publish_in |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published from channels into this overview |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30007 |18 | |10300 |RabbitMQ: Messages published per second |rabbitmq.overview.messages.publish.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages published per second |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30008 |18 | |10300 |RabbitMQ: Messages published |rabbitmq.overview.messages.publish |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30009 |18 | |10300 |RabbitMQ: Messages delivered per second |rabbitmq.overview.messages.deliver_get.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30010 |18 | |10300 |RabbitMQ: Messages delivered |rabbitmq.overview.messages.deliver_get |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30011 |18 | |10300 |RabbitMQ: Messages confirmed per second |rabbitmq.overview.messages.confirm.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages confirmed per second |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30012 |18 | |10300 |RabbitMQ: Messages confirmed |rabbitmq.overview.messages.confirm |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages confirmed |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30013 |18 | |10300 |RabbitMQ: Messages acknowledged per second |rabbitmq.overview.messages.ack.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages delivered to clients and acknowledged per second |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30014 |18 | |10300 |RabbitMQ: Messages acknowledged |rabbitmq.overview.messages.ack |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of messages delivered to clients and acknowledged |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30015 |18 | |10300 |RabbitMQ: Messages unacknowledged |rabbitmq.overview.queue_totals.messages.unacknowledged |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of unacknowledged messages |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30016 |18 | |10300 |RabbitMQ: Messages ready for delivery |rabbitmq.overview.queue_totals.messages.ready |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of messages ready for deliver |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30017 |18 | |10300 |RabbitMQ: Messages total |rabbitmq.overview.queue_totals.messages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of messages (ready plus unacknowledged) |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30018 |18 | |10300 |RabbitMQ: Exchanges total |rabbitmq.overview.object_totals.exchanges |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of exchanges |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30019 |18 | |10300 |RabbitMQ: Consumers total |rabbitmq.overview.object_totals.consumers |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of consumers |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30020 |18 | |10300 |RabbitMQ: Queues total |rabbitmq.overview.object_totals.queues |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of queues |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30021 |18 | |10300 |RabbitMQ: Channels total |rabbitmq.overview.object_totals.channels |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of channels |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30022 |18 | |10300 |RabbitMQ: Connections total |rabbitmq.overview.object_totals.connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30023 |18 | |10300 |RabbitMQ: Messages returned redeliver per second |rabbitmq.overview.messages.redeliver.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of subset of messages in deliver_get which had the redelivered flag set per second |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30024 |18 | |10301 |RabbitMQ: Management plugin version |rabbitmq.node.overview.management_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the management plugin in use |0 |30d |0 | |29653 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30025 |18 | |10301 |RabbitMQ: RabbitMQ version |rabbitmq.node.overview.rabbitmq_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of RabbitMQ on the node which processed this request |0 |30d |0 | |29653 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30026 |18 | |10300 |Exchanges discovery |rabbitmq.exchanges.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual exchange metrics |0 |30d |1 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30027 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages acknowledged |rabbitmq.exchange.messages.ack["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages delivered to clients and acknowledged |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30028 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages acknowledged per second |rabbitmq.exchange.messages.ack.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages delivered to clients and acknowledged per second |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30029 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages confirmed |rabbitmq.exchange.messages.confirm["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages confirmed |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30030 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages confirmed per second |rabbitmq.exchange.messages.confirm.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages confirmed per second |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30031 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages delivered |rabbitmq.exchange.messages.deliver_get["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30032 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages delivered per second |rabbitmq.exchange.messages.deliver_get.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30033 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages published |rabbitmq.exchange.messages.publish["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30034 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages published per second |rabbitmq.exchange.messages.publish.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages published per second |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30035 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_in |rabbitmq.exchange.messages.publish_in["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published from channels into this overview |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30036 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_in per second |rabbitmq.exchange.messages.publish_in.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages published from channels into this overview per sec |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30037 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_out |rabbitmq.exchange.messages.publish_out["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published from this overview into queues |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30038 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_out per second |rabbitmq.exchange.messages.publish_out.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages published from this overview into queues per second,0,rabbitmq,total msgs pub out rate |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30039 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages returned unroutable |rabbitmq.exchange.messages.return_unroutable["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages returned to publisher as unroutable |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30040 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages returned unroutable per second|rabbitmq.exchange.messages.return_unroutable.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages returned to publisher as unroutable per second |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30041 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages redelivered |rabbitmq.exchange.messages.redeliver["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30042 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages redelivered per second |rabbitmq.exchange.messages.redeliver.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of subset of messages in deliver_get which had the redelivered flag set per second |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |30044 |18 | |10303 |RabbitMQ: Management plugin version |rabbitmq.node.overview.management_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the management plugin in use |0 |30d |0 | |30043 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30045 |18 | |10303 |RabbitMQ: RabbitMQ version |rabbitmq.node.overview.rabbitmq_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of RabbitMQ on the node which processed this request |0 |30d |0 | |30043 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |30191 |18 | |10308 |HAProxy: Uptime |haproxy.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30190 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30192 |18 | |10308 |HAProxy: Version |haproxy.version |0 |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30190 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30193 |18 | |10308 |BACKEND discovery |haproxy.backend.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery backends |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30194 |18 | |10308 |FRONTEND discovery |haproxy.frontend.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery frontends |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30195 |18 | |10308 |Servers discovery |haproxy.server.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery servers |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |30197 |18 | |10308 |HAProxy Backend {#PXNAME}: Responses denied per second |haproxy.backend.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30198 |18 | |10308 |HAProxy Backend {#PXNAME}: Errors connection per second |haproxy.backend.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30199 |18 | |10308 |HAProxy Backend {#PXNAME}: Response errors per second |haproxy.backend.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30200 |18 | |10308 |HAProxy Backend {#PXNAME}: Unassigned requests |haproxy.backend.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30201 |18 | |10308 |HAProxy Backend {#PXNAME}: Time in queue |haproxy.backend.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30202 |18 | |10308 |HAProxy Backend {#PXNAME}: Responses time |haproxy.backend.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average backend response time (in ms) for the last 1,024 requests |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30203 |18 | |10308 |HAProxy Backend {#PXNAME}: Status |haproxy.backend.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30204 |18 | |10308 |HAProxy Backend {#PXNAME}: Redispatched requests per second |haproxy.backend.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30205 |18 | |10308 |HAProxy Backend {#PXNAME}: Retried connections per second |haproxy.backend.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30206 |18 | |10308 |HAProxy Frontend {#PXNAME}: Incoming traffic |haproxy.frontend.bin[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the frontend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30207 |18 | |10308 |HAProxy Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend.bout[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the frontend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30208 |18 | |10308 |HAProxy Frontend {#PXNAME}: Denied requests per second |haproxy.frontend.dreq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Requests denied due to security concerns (ACL-restricted) per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30209 |18 | |10308 |HAProxy Frontend {#PXNAME}: Request errors per second |haproxy.frontend.ereq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of request errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30210 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 1xx per second |haproxy.frontend.hrsp_1xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of informational HTTP responses per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30211 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 2xx per second |haproxy.frontend.hrsp_2xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of successful HTTP responses per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30212 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 3xx per second |haproxy.frontend.hrsp_3xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP redirections per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30213 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 4xx per second |haproxy.frontend.hrsp_4xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP client errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30214 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 5xx per second |haproxy.frontend.hrsp_5xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP server errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30215 |18 | |10308 |HAProxy Frontend {#PXNAME}: Sessions rate |haproxy.frontend.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sessions created per second |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30216 |18 | |10308 |HAProxy Frontend {#PXNAME}: Requests rate |haproxy.frontend.req_rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |HTTP requests per second |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30217 |18 | |10308 |HAProxy Frontend {#PXNAME}: Established sessions |haproxy.frontend.scur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of established sessions. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30218 |18 | |10308 |HAProxy Frontend {#PXNAME}: Session limits |haproxy.frontend.slim[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30219 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30220 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30221 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30222 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 4xx per second |haproxy.server.hrsp_4xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP client errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30223 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 5xx per second |haproxy.server.hrsp_5xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP server errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30224 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Unassigned requests |haproxy.server.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30225 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Time in queue |haproxy.server.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30226 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Responses time |haproxy.server.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average server response time (in ms) for the last 1,024 requests. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30227 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Status |haproxy.server.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30228 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30229 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |30234 |18 | |10309 |HAProxy: Uptime |haproxy.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30231 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30235 |18 | |10309 |HAProxy: Version |haproxy.version |0 |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30231 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30236 |18 | |10309 |BACKEND discovery |haproxy.backend.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery backends |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30237 |18 | |10309 |FRONTEND discovery |haproxy.frontend.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery frontends |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30238 |18 | |10309 |Servers discovery |haproxy.server.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery servers |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |30240 |18 | |10309 |HAProxy Backend {#PXNAME}: Responses denied per second |haproxy.backend.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30241 |18 | |10309 |HAProxy Backend {#PXNAME}: Errors connection per second |haproxy.backend.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30242 |18 | |10309 |HAProxy Backend {#PXNAME}: Response errors per second |haproxy.backend.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30243 |18 | |10309 |HAProxy Backend {#PXNAME}: Unassigned requests |haproxy.backend.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30244 |18 | |10309 |HAProxy Backend {#PXNAME}: Time in queue |haproxy.backend.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30245 |18 | |10309 |HAProxy Backend {#PXNAME}: Responses time |haproxy.backend.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average backend response time (in ms) for the last 1,024 requests |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30246 |18 | |10309 |HAProxy Backend {#PXNAME}: Status |haproxy.backend.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30247 |18 | |10309 |HAProxy Backend {#PXNAME}: Redispatched requests per second |haproxy.backend.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30248 |18 | |10309 |HAProxy Backend {#PXNAME}: Retried connections per second |haproxy.backend.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30249 |18 | |10309 |HAProxy Frontend {#PXNAME}: Incoming traffic |haproxy.frontend.bin[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the frontend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30250 |18 | |10309 |HAProxy Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend.bout[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the frontend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30251 |18 | |10309 |HAProxy Frontend {#PXNAME}: Denied requests per second |haproxy.frontend.dreq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Requests denied due to security concerns (ACL-restricted) per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30252 |18 | |10309 |HAProxy Frontend {#PXNAME}: Request errors per second |haproxy.frontend.ereq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of request errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30253 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 1xx per second |haproxy.frontend.hrsp_1xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of informational HTTP responses per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30254 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 2xx per second |haproxy.frontend.hrsp_2xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of successful HTTP responses per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30255 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 3xx per second |haproxy.frontend.hrsp_3xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP redirections per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30256 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 4xx per second |haproxy.frontend.hrsp_4xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP client errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30257 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 5xx per second |haproxy.frontend.hrsp_5xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP server errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30258 |18 | |10309 |HAProxy Frontend {#PXNAME}: Sessions rate |haproxy.frontend.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sessions created per second |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30259 |18 | |10309 |HAProxy Frontend {#PXNAME}: Requests rate |haproxy.frontend.req_rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |HTTP requests per second |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30260 |18 | |10309 |HAProxy Frontend {#PXNAME}: Established sessions |haproxy.frontend.scur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of established sessions. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30261 |18 | |10309 |HAProxy Frontend {#PXNAME}: Session limits |haproxy.frontend.slim[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30262 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30263 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30264 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30265 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 4xx per second |haproxy.server.hrsp_4xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP client errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30266 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 5xx per second |haproxy.server.hrsp_5xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP server errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30267 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Unassigned requests |haproxy.server.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30268 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Time in queue |haproxy.server.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30269 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Responses time |haproxy.server.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average server response time (in ms) for the last 1,024 requests. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30270 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Status |haproxy.server.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30271 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30272 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |30277 |18 | |10310 |Redis: Blocked clients |redis.clients.blocked |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections waiting on a blocking call |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30278 |18 | |10310 |Redis: TCP port |redis.server.tcp_port |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |TCP/IP listen port |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30279 |18 | |10310 |Redis: Expired keys |redis.stats.expired_keys |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of key expiration events |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30280 |18 | |10310 |Redis: Evicted keys |redis.stats.evicted_keys |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of evicted keys due to maxmemory limit |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30281 |18 | |10310 |Redis: Uptime |redis.server.uptime |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of seconds since Redis server start |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30282 |18 | |10310 |Redis: Redis mode |redis.server.redis_mode |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The server's mode ("standalone", "sentinel" or "cluster") |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30283 |18 | |10310 |Redis: Redis version |redis.server.redis_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the Redis server |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30284 |18 | |10310 |Redis: Instantaneous operations per sec |redis.stats.instantaneous_ops.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of commands processed per second |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30285 |18 | |10310 |Redis: Process id |redis.server.process_id |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |PID of the server process |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30286 |18 | |10310 |Redis: Replication role |redis.replication.role |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Value is "master" if the instance is replica of no one, or "slave" if the instance is a replica of some master instance. Note that a replica can be master of another replica (chained replication). |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30287 |18 | |10310 |Redis: Replication backlog size |redis.replication.repl_backlog_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total size in bytes of the replication backlog buffer |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30288 |18 | |10310 |Redis: Replication backlog history length |redis.replication.repl_backlog_histlen |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of data in the backlog sync buffer |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30289 |18 | |10310 |Redis: Instantaneous input bytes per second |redis.stats.instantaneous_input.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The network's read rate per second in KB/sec |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30290 |18 | |10310 |Redis: Keyspace hits |redis.stats.keyspace_hits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of successful lookup of keys in the main dictionary |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30291 |18 | |10310 |Redis: Instantaneous output bytes per second |redis.stats.instantaneous_output.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The network's write rate per second in KB/sec |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30292 |18 | |10310 |Redis: Replication backlog active |redis.replication.repl_backlog_active |0 |7d |365d |0 |3 | | | | |NULL |90 | | |0 | | | | |0 |NULL |Flag indicating replication backlog is active |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30293 |18 | |10310 |Redis: Keyspace misses |redis.stats.keyspace_misses |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of failed lookup of keys in the main dictionary |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30294 |18 | |10310 |Redis: Latest fork usec |redis.stats.latest_fork_usec |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Duration of the latest fork operation in microseconds |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30295 |18 | |10310 |Redis: Migrate cached sockets |redis.stats.migrate_cached_sockets |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of sockets open for MIGRATE purposes |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30296 |18 | |10310 |Redis: Pubsub channels |redis.stats.pubsub_channels |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Global number of pub/sub channels with client subscriptions |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30297 |18 | |10310 |Redis: Pubsub patterns |redis.stats.pubsub_patterns |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Global number of pub/sub pattern with client subscriptions |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30298 |18 | |10310 |Redis: Rejected connections |redis.stats.rejected_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections rejected because of maxclients limit |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30299 |18 | |10310 |Redis: Sync full |redis.stats.sync_full |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of full resyncs with replicas |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30300 |18 | |10310 |Redis: Sync partial err |redis.stats.sync_partial_err |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of denied partial resync requests |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30301 |18 | |10310 |Redis: Sync partial ok |redis.stats.sync_partial_ok |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of accepted partial resync requests |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30302 |18 | |10310 |Redis: Total commands processed |redis.stats.total_commands_processed |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of commands processed by the server |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30303 |18 | |10310 |Redis: Total connections received |redis.stats.total_connections_received |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections accepted by the server |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30304 |18 | |10310 |Redis: Total net input bytes |redis.stats.total_net_input_bytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of bytes read from the network |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30305 |18 | |10310 |Redis: Replication backlog first byte offset |redis.replication.repl_backlog_first_byte_offset |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The master offset of the replication backlog buffer |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30306 |18 | |10310 |Redis: Connected slaves |redis.replication.connected_slaves |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connected slaves |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30307 |18 | |10310 |Redis: Master replication offset |redis.replication.master_repl_offset |0 |7d |365d |0 |3 | |B | | |NULL |91 | | |0 | | | | |0 |NULL |Replication offset reported by the master |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30308 |18 | |10310 |Redis: Memory used RSS |redis.memory.used_memory_rss |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes that Redis allocated as seen by the operating system |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30309 |18 | |10310 |Redis: Max input buffer |redis.clients.max_input_buffer |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The biggest input buffer among current client connections |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30310 |18 | |10310 |Redis: Max output buffer |redis.clients.max_output_buffer |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The biggest output buffer among current client connections |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30311 |18 | |10310 |Redis: Cluster enabled |redis.cluster.enabled |0 |7d |365d |0 |3 | | | | |NULL |90 | | |0 | | | | |0 |NULL |Indicate Redis cluster is enabled |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30312 |18 | |10310 |Redis: Max clients |redis.config.maxclients |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Max number of connected clients at the same time.&eol;Once the limit is reached Redis will close all the new connections sending an error "max number of clients reached". |0 |30d |0 | |30275 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30313 |18 | |10310 |Redis: CPU sys |redis.cpu.sys |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |System CPU consumed by the Redis server |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30314 |18 | |10310 |Redis: CPU sys children |redis.cpu.sys_children |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |System CPU consumed by the background processes |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30315 |18 | |10310 |Redis: CPU user |redis.cpu.user |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |User CPU consumed by the Redis server |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30316 |18 | |10310 |Redis: CPU user children |redis.cpu.user_children |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |User CPU consumed by the background processes |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30317 |18 | |10310 |Redis: Memory fragmentation ratio |redis.memory.fragmentation_ratio |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This ratio is an indication of memory mapping efficiency:&eol; — Value over 1.0 indicate that memory fragmentation is very likely. Consider restarting the Redis server so the operating system can recover fragmented memory, especially with a ratio over 1.5.&eol; — Value under 1.0 indicate that Redis likely has insufficient memory available. Consider optimizing memory usage or adding more RAM.&eol;&eol;Note: If your peak memory usage is much higher than your current memory usage, the memory fragmentation ratio may be unreliable.&eol;&eol;https://redis.io/topics/memory-optimization |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30318 |18 | |10310 |Redis: Memory used |redis.memory.used_memory |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of bytes allocated by Redis using its allocator |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30319 |18 | |10310 |Redis: Memory used Lua |redis.memory.used_memory_lua |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of memory used by the Lua engine |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30320 |18 | |10310 |Redis: Memory used peak |redis.memory.used_memory_peak |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Peak memory consumed by Redis (in bytes) |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30321 |18 | |10310 |Redis: AOF current rewrite time sec |redis.persistence.aof_current_rewrite_time_sec |0 |7d |365d |0 |0 | |s | | |NULL |92 | | |0 | | | | |0 |NULL |Duration of the on-going AOF rewrite operation if any |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30322 |18 | |10310 |Redis: Connected clients |redis.clients.connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connected clients |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30323 |18 | |10310 |Redis: AOF enabled |redis.persistence.aof_enabled |0 |7d |365d |0 |3 | | | | |NULL |90 | | |0 | | | | |0 |NULL |Flag indicating AOF logging is activated |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30324 |18 | |10310 |Redis: AOF last bgrewrite status |redis.persistence.aof_last_bgrewrite_status |0 |7d |365d |0 |3 | | | | |NULL |89 | | |0 | | | | |0 |NULL |Status of the last AOF rewrite operation |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30325 |18 | |10310 |Redis: AOF last rewrite time sec |redis.persistence.aof_last_rewrite_time_sec |0 |7d |365d |0 |0 | |s | | |NULL |92 | | |0 | | | | |0 |NULL |Duration of the last AOF rewrite |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30326 |18 | |10310 |Redis: AOF last write status |redis.persistence.aof_last_write_status |0 |7d |365d |0 |3 | | | | |NULL |89 | | |0 | | | | |0 |NULL |Status of the last write operation to the AOF |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30327 |18 | |10310 |Redis: AOF rewrite in progress |redis.persistence.aof_rewrite_in_progress |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Flag indicating a AOF rewrite operation is on-going |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30328 |18 | |10310 |Redis: AOF rewrite scheduled |redis.persistence.aof_rewrite_scheduled |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Flag indicating an AOF rewrite operation will be scheduled once the on-going RDB save is complete |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30329 |18 | |10310 |Redis: Dump loading |redis.persistence.loading |0 |7d |365d |0 |3 | | | | |NULL |90 | | |0 | | | | |0 |NULL |Flag indicating if the load of a dump file is on-going |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30330 |18 | |10310 |Redis: RDB bgsave in progress |redis.persistence.rdb_bgsave_in_progress |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"1" if bgsave is in progress and "0" otherwise |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30331 |18 | |10310 |Redis: RDB changes since last save |redis.persistence.rdb_changes_since_last_save |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of changes since the last background save |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30332 |18 | |10310 |Redis: RDB current bgsave time sec |redis.persistence.rdb_current_bgsave_time_sec |0 |7d |365d |0 |0 | |s | | |NULL |92 | | |0 | | | | |0 |NULL |Duration of the on-going RDB save operation if any |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30333 |18 | |10310 |Redis: RDB last bgsave status |redis.persistence.rdb_last_bgsave_status |0 |7d |365d |0 |3 | | | | |NULL |89 | | |0 | | | | |0 |NULL |Status of the last RDB save operation |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30334 |18 | |10310 |Redis: RDB last bgsave time sec |redis.persistence.rdb_last_bgsave_time_sec |0 |7d |365d |0 |0 | |s | | |NULL |92 | | |0 | | | | |0 |NULL |Duration of the last bg_save operation |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30335 |18 | |10310 |Redis: RDB last save time |redis.persistence.rdb_last_save_time |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Epoch-based timestamp of last successful RDB save |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30336 |18 | |10310 |Redis: Total net output bytes |redis.stats.total_net_output_bytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of bytes written to the network |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |30338 |18 | |10310 |Keyspace discovery |redis.keyspace.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual keyspace metrics |0 |30d |1 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30339 |18 | |10310 |Version 4+ metrics discovery |redis.metrics.v4.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics for versions 4+ |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30340 |18 | |10310 |Version 5+ metrics discovery |redis.metrics.v5.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics for versions 5+ |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30341 |18 | |10310 |AOF metrics discovery |redis.persistence.aof.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If AOF is activated, additional metrics will be added |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30342 |18 | |10310 |Replication metrics discovery |redis.replication.master.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If the instance is the master and the slaves are connected, additional metrics are provided |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30343 |18 | |10310 |Slave metrics discovery |redis.replication.slave.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If the instance is a replica, additional metrics are provided |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |30348 |18 | |10310 |DB {#DB}: Average TTL |redis.db.avg_ttl["{#DB}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average TTL |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30349 |18 | |10310 |DB {#DB}: Expires |redis.db.expires["{#DB}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of keys with an expiration |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30350 |18 | |10310 |DB {#DB}: Keys |redis.db.keys["{#DB}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of keys |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30351 |18 | |10310 |Redis: Active defrag running{#SINGLETON} |redis.memory.active_defrag_running[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Flag indicating if active defragmentation is active |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30352 |18 | |10310 |Redis: RDB last CoW size{#SINGLETON} |redis.persistence.rdb_last_cow_size[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The size in bytes of copy-on-write allocations during the last RDB save operation |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30353 |18 | |10310 |Redis: Expired time cap reached count{#SINGLETON} |redis.stats.expired_time_cap_reached_count[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30354 |18 | |10310 |Redis: Expired stale %{#SINGLETON} |redis.stats.expired_stale_perc[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30355 |18 | |10310 |Redis: Active defrag misses{#SINGLETON} |redis.stats.active_defrag_misses[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of aborted value reallocations started by the active defragmentation process |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30356 |18 | |10310 |Redis: Active defrag key misses{#SINGLETON} |redis.stats.active_defrag_key_misses[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of keys that were skipped by the active defragmentation process |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30357 |18 | |10310 |Redis: Active defrag key hits{#SINGLETON} |redis.stats.active_defrag_key_hits[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of keys that were actively defragmented |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30358 |18 | |10310 |Redis: Active defrag hits{#SINGLETON} |redis.stats.active_defrag_hits[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of value reallocations performed by active the defragmentation process |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30359 |18 | |10310 |Redis: Executable path{#SINGLETON} |redis.server.executable[{#SINGLETON}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The path to the server's executable |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30360 |18 | |10310 |Redis: Replication second offset{#SINGLETON} |redis.replication.second_repl_offset[{#SINGLETON}] |0 |7d |365d |0 |0 | |B | | |NULL |91 | | |0 | | | | |2 |NULL |Offset up to which replication IDs are accepted |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30361 |18 | |10310 |Redis: AOF last CoW size{#SINGLETON} |redis.persistence.aof_last_cow_size[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The size in bytes of copy-on-write allocations during the last AOF rewrite operation |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30362 |18 | |10310 |Redis: Lazyfree pending objects{#SINGLETON} |redis.memory.lazyfree_pending_objects[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of objects waiting to be freed (as a result of calling UNLINK, or FLUSHDB and FLUSHALL with the ASYNC option) |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30363 |18 | |10310 |Redis: Memory used startup{#SINGLETON} |redis.memory.used_memory_startup[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Initial amount of memory consumed by Redis at startup in bytes |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30364 |18 | |10310 |Redis: Memory used peak %{#SINGLETON} |redis.memory.used_memory_peak_perc[{#SINGLETON}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |The percentage of used_memory_peak out of used_memory |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30365 |18 | |10310 |Redis: Memory used overhead{#SINGLETON} |redis.memory.used_memory_overhead[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The sum in bytes of all overheads that the server allocated for managing its internal data structures |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30366 |18 | |10310 |Redis: Memory used dataset{#SINGLETON} |redis.memory.used_memory_dataset[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The size in bytes of the dataset |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30367 |18 | |10310 |Redis: Memory used dataset %{#SINGLETON} |redis.memory.used_memory_dataset_perc[{#SINGLETON}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |The percentage of used_memory_dataset out of the net memory usage (used_memory minus used_memory_startup) |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30368 |18 | |10310 |Redis: Total system memory{#SINGLETON} |redis.memory.total_system_memory[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total amount of memory that the Redis host has |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30369 |18 | |10310 |Redis: Max memory{#SINGLETON} |redis.memory.maxmemory[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum amount of memory allocated to the Redisdb system |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30370 |18 | |10310 |Redis: Max memory policy{#SINGLETON} |redis.memory.maxmemory_policy[{#SINGLETON}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The value of the maxmemory-policy configuration directive |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30371 |18 | |10310 |Redis: Slave expires tracked keys{#SINGLETON} |redis.stats.slave_expires_tracked_keys[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of keys tracked for expiry purposes (applicable only to writable replicas) |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30372 |18 | |10310 |Redis: Allocator active{#SINGLETON} |redis.memory.allocator_active[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30373 |18 | |10310 |Redis: Memory clients normal{#SINGLETON} |redis.memory.mem_clients_normal[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30374 |18 | |10310 |Redis: Memory RSS overhead ratio{#SINGLETON} |redis.memory.rss_overhead_ratio[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30375 |18 | |10310 |Redis: Memory RSS overhead bytes{#SINGLETON} |redis.memory.rss_overhead_bytes[{#SINGLETON}] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30376 |18 | |10310 |Redis: Memory replication backlog{#SINGLETON} |redis.memory.replication_backlog[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30377 |18 | |10310 |Redis: Memory number of cached scripts{#SINGLETON} |redis.memory.number_of_cached_scripts[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30378 |18 | |10310 |Redis: Memory not counted for evict{#SINGLETON} |redis.memory.not_counted_for_evict[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30379 |18 | |10310 |Redis: Memory clients slaves{#SINGLETON} |redis.memory.mem_clients_slaves[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30380 |18 | |10310 |Redis: Memory AOF buffer{#SINGLETON} |redis.memory.mem_aof_buffer[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Size of the AOF buffer |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30381 |18 | |10310 |Redis: Allocator allocated{#SINGLETON} |redis.memory.allocator_allocated[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30382 |18 | |10310 |Redis: Memory fragmentation bytes{#SINGLETON} |redis.memory.fragmentation_bytes[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30383 |18 | |10310 |Redis: Allocator RSS ratio{#SINGLETON} |redis.memory.allocator_rss_ratio[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30384 |18 | |10310 |Redis: Allocator RSS bytes{#SINGLETON} |redis.memory.allocator_rss_bytes[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30385 |18 | |10310 |Redis: Allocator resident{#SINGLETON} |redis.memory.allocator_resident[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30386 |18 | |10310 |Redis: Allocator fragmentation ratio{#SINGLETON} |redis.memory.allocator_frag_ratio[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30387 |18 | |10310 |Redis: Allocator fragmentation bytes{#SINGLETON} |redis.memory.allocator_frag_bytes[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30388 |18 | |10310 |Redis: Memory used scripts{#SINGLETON} |redis.memory.used_memory_scripts[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30389 |18 | |10310 |Redis: AOF base size{#SINGLETON} |redis.persistence.aof_base_size[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |AOF file size on latest startup or rewrite |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30390 |18 | |10310 |Redis: AOF buffer length{#SINGLETON} |redis.persistence.aof_buffer_length[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Size of the AOF buffer |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30391 |18 | |10310 |Redis: AOF current size{#SINGLETON} |redis.persistence.aof_current_size[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |AOF current file size |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30392 |18 | |10310 |Redis: AOF delayed fsync{#SINGLETON} |redis.persistence.aof_delayed_fsync[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Delayed fsync counter |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30393 |18 | |10310 |Redis: AOF pending background I/O fsync{#SINGLETON} |redis.persistence.aof_pending_bio_fsync[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of fsync pending jobs in background I/O queue |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30394 |18 | |10310 |Redis: AOF pending rewrite{#SINGLETON} |redis.persistence.aof_pending_rewrite[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |90 | | |0 | | | | |2 |NULL |Flag indicating an AOF rewrite operation will |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30395 |18 | |10310 |Redis: AOF rewrite buffer length{#SINGLETON} |redis.persistence.aof_rewrite_buffer_length[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Size of the AOF rewrite buffer |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30396 |18 | |10310 |Redis slave {#SLAVE_IP}:{#SLAVE_PORT}: Replication lag in bytes |redis.replication.lag_bytes["{#SLAVE_IP}:{#SLAVE_PORT}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Replication lag in bytes |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30397 |18 | |10310 |Redis: Master host{#SINGLETON} |redis.replication.master_host[{#SINGLETON}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Host or IP address of the master |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30398 |18 | |10310 |Redis: Master last I/O seconds ago{#SINGLETON} |redis.replication.master_last_io_seconds_ago[{#SINGLETON}] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of seconds since the last interaction with master |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30399 |18 | |10310 |Redis: Master link status{#SINGLETON} |redis.replication.master_link_status[{#SINGLETON}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Status of the link (up/down) |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30400 |18 | |10310 |Redis: Master port{#SINGLETON} |redis.replication.master_port[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Master listening TCP port |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30401 |18 | |10310 |Redis: Master sync in progress{#SINGLETON} |redis.replication.master_sync_in_progress[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicate the master is syncing to the replica |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30402 |18 | |10310 |Redis: Slave priority{#SINGLETON} |redis.replication.slave_priority[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The priority of the instance as a candidate for failover |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30403 |18 | |10310 |Redis: Slave priority{#SINGLETON} |redis.replication.slave_read_only[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Flag indicating if the replica is read-only |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30404 |18 | |10310 |Redis: Slave replication offset{#SINGLETON} |redis.replication.slave_repl_offset[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The replication offset of the replica instance |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |30436 |18 | |10316 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30437 |18 | |10316 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30438 |18 | |10316 |MySQL: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30439 |18 | |10316 |MySQL: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30440 |18 | |10316 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30441 |18 | |10316 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server started. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30442 |18 | |10316 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30443 |18 | |10316 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30444 |18 | |10316 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30445 |18 | |10316 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30446 |18 | |10316 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads in the thread cache. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30447 |18 | |10316 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently open connections. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30449 |18 | |10316 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads that are not sleeping. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30450 |18 | |10316 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of seconds that the server has been up. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30451 |18 | |10316 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests per second. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30452 |18 | |10316 |MySQL: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30453 |18 | |10316 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30454 |18 | |10316 |MySQL: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30455 |18 | |10316 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30456 |18 | |10316 |MySQL: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30457 |18 | |10316 |MySQL: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30458 |18 | |10316 |MySQL: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30459 |18 | |10316 |MySQL: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30460 |18 | |10316 |MySQL: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30461 |18 | |10316 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30462 |18 | |10316 |MySQL: Connection errors peer address per second |mysql.connection_errors_peer_address.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors while searching for the connecting client IP address. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30463 |18 | |10316 |MySQL: InnoDB buffer pool pages free |mysql.innodb_buffer_pool_pages_free |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30464 |18 | |10316 |MySQL: Connection errors select per second |mysql.connection_errors_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30465 |18 | |10316 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library refused. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30466 |18 | |10316 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30470 |18 | |10316 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30471 |18 | |10316 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |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 |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 |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 |30484 |18 | |10317 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30485 |18 | |10317 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30486 |18 | |10317 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests per second. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30487 |18 | |10317 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30488 |18 | |10317 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30489 |18 | |10317 |MySQL: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30490 |18 | |10317 |MySQL: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30491 |18 | |10317 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30492 |18 | |10317 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server started. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30493 |18 | |10317 |MySQL: InnoDB buffer pool pages free |mysql.innodb_buffer_pool_pages_free |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30494 |18 | |10317 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30495 |18 | |10317 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30496 |18 | |10317 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads in the thread cache. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30497 |18 | |10317 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently open connections. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30499 |18 | |10317 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads that are not sleeping. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30500 |18 | |10317 |MySQL: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30503 |18 | |10317 |MySQL: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30504 |18 | |10317 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30505 |18 | |10317 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30506 |18 | |10317 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30507 |18 | |10317 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30508 |18 | |10317 |MySQL: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30509 |18 | |10317 |MySQL: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30510 |18 | |10317 |MySQL: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30512 |18 | |10317 |MySQL: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30513 |18 | |10317 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30514 |18 | |10317 |MySQL: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30515 |18 | |10317 |MySQL: Connection errors peer address per second |mysql.connection_errors_peer_address.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors while searching for the connecting client IP address. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30516 |18 | |10317 |MySQL: Connection errors select per second |mysql.connection_errors_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30517 |18 | |10317 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library refused. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30518 |18 | |10317 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30519 |18 | |10317 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of seconds that the server has been up. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |1h |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 |30524 |18 | |10317 |MySQL: Replication Seconds Behind Master {#MASTER_HOST} |mysql.seconds_behind_master["{#MASTER_HOST}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of seconds that the slave SQL thread is behind processing the master binary log.&eol;A high number (or an increasing one) can indicate that the slave is unable to handle events&eol;from the master in a timely fashion. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30525 |18 | |10317 |MySQL: Replication Slave IO Running {#MASTER_HOST} |mysql.slave_io_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the I/O thread for reading the master's binary log is running. &eol;Normally, you want this to be Yes unless you have not yet started replication or have &eol;explicitly stopped it with STOP SLAVE. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30526 |18 | |10317 |MySQL: Replication Slave SQL Running {#MASTER_HOST} |mysql.slave_sql_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the SQL thread for executing events in the relay log is running. &eol;As with the I/O thread, this should normally be Yes. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |30532 |18 | |10318 |Docker: Architecture |docker.architecture |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30533 |18 | |10318 |Docker: Live restore enabled |docker.live_restore.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30534 |18 | |10318 |Docker: Logging driver |docker.logging_driver |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30535 |18 | |10318 |Docker: Memory limit enabled |docker.mem_limit.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30536 |18 | |10318 |Docker: Memory total |docker.mem.total |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30537 |18 | |10318 |Docker: Name |docker.name |0 |1h |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30538 |18 | |10318 |Docker: NCPU |docker.ncpu |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30539 |18 | |10318 |Docker: Nfd |docker.nfd |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of used File Descriptors |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30540 |18 | |10318 |Docker: NEvents listener |docker.nevents_listener |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30541 |18 | |10318 |Docker: Kernel version |docker.kernel_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30542 |18 | |10318 |Docker: OomKill disabled |docker.oomkill.disabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30543 |18 | |10318 |Docker: Operating system |docker.operating_system |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30544 |18 | |10318 |Docker: OS type |docker.os_type |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30545 |18 | |10318 |Docker: Pids limit enabled |docker.pids_limit.enabled |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30546 |18 | |10318 |Docker: Docker root dir |docker.root_dir |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30547 |18 | |10318 |Docker: Server version |docker.server_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30548 |18 | |10318 |Docker: Swap limit enabled |docker.swap_limit.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30549 |18 | |10318 |Docker: Layers size |docker.layers_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30527 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30550 |18 | |10318 |Docker: IPv4 Forwarding enabled |docker.ipv4_forwarding.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30551 |18 | |10318 |Docker: Kernel memory enabled |docker.kernel_mem.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30552 |18 | |10318 |Docker: CPU Set enabled |docker.cpu_set.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL |https://docs.docker.com/config/containers/resource_constraints/#configure-the-default-cfs-scheduler |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30553 |18 | |10318 |Docker: Containers size |docker.containers_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30527 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30554 |18 | |10318 |Docker: Containers paused |docker.containers.paused |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of containers paused on this host |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30555 |18 | |10318 |Docker: Containers running |docker.containers.running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of containers running on this host |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30556 |18 | |10318 |Docker: Containers stopped |docker.containers.stopped |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of containers stopped on this host |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30557 |18 | |10318 |Docker: Containers total |docker.containers.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of containers on this host |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30558 |18 | |10318 |Docker: CPU CFS Period enabled |docker.cpu_cfs_period.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL |https://docs.docker.com/config/containers/resource_constraints/#configure-the-default-cfs-scheduler |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30559 |18 | |10318 |Docker: CPU CFS Quota enabled |docker.cpu_cfs_quota.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL |https://docs.docker.com/config/containers/resource_constraints/#configure-the-default-cfs-scheduler |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30560 |18 | |10318 |Docker: CPU Shares enabled |docker.cpu_shares.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL |https://docs.docker.com/config/containers/resource_constraints/#configure-the-default-cfs-scheduler |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30561 |18 | |10318 |Docker: Kernel memory TCP enabled |docker.kernel_mem_tcp.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30562 |18 | |10318 |Docker: Debug enabled |docker.debug.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30563 |18 | |10318 |Docker: Default runtime |docker.default_runtime |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30564 |18 | |10318 |Docker: Storage driver |docker.driver |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Docker storage driver &eol; https://docs.docker.com/storage/storagedriver/ |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30565 |18 | |10318 |Docker: Goroutines |docker.goroutines |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of goroutines |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30566 |18 | |10318 |Docker: Images size |docker.images_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30527 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30567 |18 | |10318 |Docker: Images available |docker.images.top_level |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of top-level images |0 |30d |0 | |30531 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30568 |18 | |10318 |Docker: Images total |docker.images.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of images with intermediate image layers |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30569 |18 | |10318 |Docker: Cgroup driver |docker.cgroup_driver |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30570 |18 | |10318 |Docker: Volumes size |docker.volumes_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30527 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |30575 |18 | |10318 |Container {#NAME}: Online CPUs |docker.container_stats.online_cpus["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30576 |18 | |10318 |Container {#NAME}: Memory commit bytes |docker.container_stats.memory.commit_bytes["{#NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30577 |18 | |10318 |Container {#NAME}: Memory commit peak bytes |docker.container_stats.memory.commit_peak_bytes["{#NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30578 |18 | |10318 |Container {#NAME}: Memory maximum usage |docker.container_stats.memory.max_usage["{#NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30579 |18 | |10318 |Container {#NAME}: Memory private working set |docker.container_stats.memory.private_working_set["{#NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30580 |18 | |10318 |Container {#NAME}: Memory usage |docker.container_stats.memory.usage["{#NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30581 |18 | |10318 |Container {#NAME}: Created |docker.container_info.created["{#NAME}"] |0 |7d |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30582 |18 | |10318 |Container {#NAME}: CPU total usage per second |docker.container_stats.cpu_usage.total.rate["{#NAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30583 |18 | |10318 |Container {#NAME}: Networks bytes received per second |docker.networks.rx_bytes["{#NAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30584 |18 | |10318 |Container {#NAME}: Networks incoming packets dropped per second |docker.networks.rx_dropped["{#NAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30585 |18 | |10318 |Container {#NAME}: Networks errors received per second |docker.networks.rx_errors["{#NAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30586 |18 | |10318 |Container {#NAME}: Networks packets received per second |docker.networks.rx_packets["{#NAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30587 |18 | |10318 |Container {#NAME}: Networks bytes sent per second |docker.networks.tx_bytes["{#NAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30588 |18 | |10318 |Container {#NAME}: Networks outgoing packets dropped per second |docker.networks.tx_dropped["{#NAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30589 |18 | |10318 |Container {#NAME}: Networks errors sent per second |docker.networks.tx_errors["{#NAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30590 |18 | |10318 |Container {#NAME}: CPU usermode usage per second |docker.container_stats.cpu_usage.user.rate["{#NAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30591 |18 | |10318 |Container {#NAME}: Throttling periods |docker.container_stats.cpu_usage.throttling_periods["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of periods with throttling active |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30592 |18 | |10318 |Container {#NAME}: Finished at |docker.container_info.finished["{#NAME}"] |0 |7d |365d |0 |0 | |unixtime| | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30593 |18 | |10318 |Container {#NAME}: OOMKilled |docker.container_info.state.oomkilled["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30594 |18 | |10318 |Container {#NAME}: Image |docker.container_info.image["{#NAME}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30528 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30595 |18 | |10318 |Container {#NAME}: Restart count |docker.container_info.restart_count["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30596 |18 | |10318 |Container {#NAME}: Started at |docker.container_info.started["{#NAME}"] |0 |7d |365d |0 |0 | |unixtime| | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30597 |18 | |10318 |Container {#NAME}: Dead |docker.container_info.state.dead["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30598 |18 | |10318 |Container {#NAME}: Error |docker.container_info.state.error["{#NAME}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30599 |18 | |10318 |Container {#NAME}: Exit code |docker.container_info.state.exitcode["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30600 |18 | |10318 |Container {#NAME}: Paused |docker.container_info.state.paused["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30601 |18 | |10318 |Container {#NAME}: Throttled time |docker.container_stats.cpu_usage.throttled_time["{#NAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Aggregate time the container was throttled for in nanoseconds |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30602 |18 | |10318 |Container {#NAME}: Pid |docker.container_info.state.pid["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30603 |18 | |10318 |Container {#NAME}: Restarting |docker.container_info.state.restarting["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30604 |18 | |10318 |Container {#NAME}: Running |docker.container_info.state.running["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30605 |18 | |10318 |Container {#NAME}: Status |docker.container_info.state.status["{#NAME}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30606 |18 | |10318 |Container {#NAME}: CPU kernelmode usage per second |docker.container_stats.cpu_usage.kernel.rate["{#NAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30607 |18 | |10318 |Container {#NAME}: Throttled periods |docker.container_stats.cpu_usage.throttled_periods["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of periods when the container hits its throttling limit |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30608 |18 | |10318 |Container {#NAME}: Networks packets sent per second |docker.networks.tx_packets["{#NAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30609 |18 | |10318 |Image {#NAME}: Created |docker.image.created["{#ID}"] |0 |7d |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30531 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30610 |18 | |10318 |Image {#NAME}: Size |docker.image.size["{#ID}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30531 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |30613 |18 | |10319 |Memcached: Commands: FLUSH per second |memcached.commands.flush.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The flush_all command invalidates all items in the database. This operation incurs a performance penalty and shouldn’t take place in production, so check your debug scripts. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30614 |18 | |10319 |Memcached: Bytes used |memcached.stats.bytes |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current number of bytes used to store items. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30615 |18 | |10319 |Memcached: Uptime |memcached.uptime |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of seconds since Memcached server start |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30616 |18 | |10319 |Memcached: New items per second |memcached.stats.total_items.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of new items stored per second. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30617 |18 | |10319 |Memcached: Threads |memcached.stats.threads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of worker threads requested |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30618 |18 | |10319 |Memcached: Misses per second |memcached.stats.misses.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of missed GET requests (items requested but not found) per second. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30619 |18 | |10319 |Memcached: Hits per second |memcached.stats.hits.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of successful GET requests (items requested and found) per second. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30620 |18 | |10319 |Memcached: Evictions per second |memcached.stats.evictions.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"An eviction is when an item that still has time to live is removed from the cache because a brand new item needs to be allocated.&eol;The item is selected with a pseudo-LRU mechanism.&eol;A high number of evictions coupled with a low hit rate means your application is setting a large number of keys that are never used again." |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30621 |18 | |10319 |Memcached: Current number of items stored |memcached.stats.curr_items |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Current number of items stored by this instance. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30622 |18 | |10319 |Memcached: Written bytes per second |memcached.stats.bytes_written.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The network's read rate per second in B/sec |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30623 |18 | |10319 |Memcached: Read bytes per second |memcached.stats.bytes_read.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The network's read rate per second in B/sec |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30624 |18 | |10319 |Memcached: Process id |memcached.process_id |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |PID of the server process |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30625 |18 | |10319 |Memcached: Commands: GET per second |memcached.commands.get.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of GET requests received by server per second. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30626 |18 | |10319 |Memcached: CPU user |memcached.cpu.user |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |User CPU consumed by the Memcached server |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30627 |18 | |10319 |Memcached: CPU sys |memcached.cpu.sys |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |System CPU consumed by the Memcached server |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30628 |18 | |10319 |Memcached: Throttled connections |memcached.connections.throttled.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times a client connection was throttled. When sending GETs in batch mode and the connection contains too many requests (limited by -R parameter) the connection might be throttled to prevent starvation. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30629 |18 | |10319 |Memcached: Connection structures |memcached.connections.structures |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connection structures allocated by the server |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30630 |18 | |10319 |Memcached: New connections per second |memcached.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections opened per second |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30631 |18 | |10319 |Memcached: Queued connections per second |memcached.connections.queued.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times that memcached has hit its connections limit and disabled its listener |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30632 |18 | |10319 |Memcached: Max connections |memcached.connections.max |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Max number of concurrent connections |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30633 |18 | |10319 |Memcached: Open connections |memcached.connections.current |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of clients presently connected |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30634 |18 | |10319 |Memcached: Maximum number of bytes |memcached.config.limit_maxbytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum number of bytes allowed in cache. You can adjust this setting via a config file or the command line while starting your Memcached server. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30635 |18 | |10319 |Memcached: Commands: SET per second |memcached.commands.set.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of SET requests received by server per second. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30636 |18 | |10319 |Memcached: Memcached version |memcached.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the Memcached server |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |30642 |18 | |10320 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30643 |18 | |10320 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30644 |18 | |10320 |MySQL: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30645 |18 | |10320 |MySQL: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30646 |18 | |10320 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30647 |18 | |10320 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server started. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30648 |18 | |10320 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30649 |18 | |10320 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30650 |18 | |10320 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30651 |18 | |10320 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30652 |18 | |10320 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads in the thread cache. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30653 |18 | |10320 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently open connections. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30655 |18 | |10320 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads that are not sleeping. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30656 |18 | |10320 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of seconds that the server has been up. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30657 |18 | |10320 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests per second. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30658 |18 | |10320 |MySQL: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30659 |18 | |10320 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30660 |18 | |10320 |MySQL: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30661 |18 | |10320 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30662 |18 | |10320 |MySQL: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30663 |18 | |10320 |MySQL: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30664 |18 | |10320 |MySQL: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30665 |18 | |10320 |MySQL: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30666 |18 | |10320 |MySQL: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30667 |18 | |10320 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30668 |18 | |10320 |MySQL: Connection errors peer address per second |mysql.connection_errors_peer_address.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors while searching for the connecting client IP address. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30669 |18 | |10320 |MySQL: InnoDB buffer pool pages free |mysql.innodb_buffer_pool_pages_free |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30670 |18 | |10320 |MySQL: Connection errors select per second |mysql.connection_errors_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30671 |18 | |10320 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library refused. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30672 |18 | |10320 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30676 |18 | |10320 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30677 |18 | |10320 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |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 |30682 |18 | |10320 |MySQL: Replication Seconds Behind Master {#MASTER_HOST} |mysql.replication.seconds_behind_master["{#MASTER_HOST}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of seconds that the slave SQL thread is behind processing the master binary log.&eol;A high number (or an increasing one) can indicate that the slave is unable to handle events&eol;from the master in a timely fashion. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30683 |18 | |10320 |MySQL: Replication Slave IO Running {#MASTER_HOST} |mysql.replication.slave_io_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the I/O thread for reading the master's binary log is running. &eol;Normally, you want this to be Yes unless you have not yet started replication or have &eol;explicitly stopped it with STOP SLAVE. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30684 |18 | |10320 |MySQL: Replication Slave SQL Running {#MASTER_HOST} |mysql.replication.slave_sql_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the SQL thread for executing events in the relay log is running. &eol;As with the I/O thread, this should normally be Yes. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |30686 |18 | |10321 |Discrete sensors discovery |ipmi.discrete.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the discrete IPMI sensors. |0 |30d |1 | |30685 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30687 |18 | |10321 |Threshold sensors discovery |ipmi.sensors.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the threshold IPMI sensors. |0 |30d |1 | |30685 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30688 |18 | |10321 |IPMI: {#SENSOR_ID} |ipmi.state_text[{#SENSOR_ID}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |It is a state of the discrete IPMI sensor. |0 |30d |0 | |30685 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30689 |18 | |10321 |IPMI: {#SENSOR_ID}, {#SENSOR_UNIT} |ipmi.value[{#SENSOR_ID}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |It is a state of the threshold IPMI sensor. |0 |30d |0 | |30685 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |30695 |18 | |10322 |ES: Number of non-deleted documents |es.indices.docs.count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of non-deleted documents across all primary shards assigned to the selected nodes.&eol;This number is based on the documents in Lucene segments and may include the documents from nested fields. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30696 |18 | |10322 |ES: Cluster uptime |es.nodes.jvm.max_uptime[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Uptime duration in seconds since JVM has last started. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30697 |18 | |10322 |ES: Total size of all file stores |es.nodes.fs.total_in_bytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size in bytes of all file stores across all selected nodes. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30698 |18 | |10322 |ES: Total available size to JVM in all file stores |es.nodes.fs.available_in_bytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of bytes available to JVM in the file stores across all selected nodes.&eol;Depending on OS or process-level restrictions, this number may be less than nodes.fs.free_in_byes. &eol;This is the actual amount of free disk space the selected Elasticsearch nodes can use. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30699 |18 | |10322 |ES: Nodes with the master role |es.nodes.count.master |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of selected nodes with the master role. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30700 |18 | |10322 |ES: Nodes with the ingest role |es.nodes.count.ingest |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of selected nodes with the ingest role. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30701 |18 | |10322 |ES: Nodes with the data role |es.nodes.count.data |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of selected nodes with the data role. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30702 |18 | |10322 |ES: Delayed unassigned shards |es.cluster.delayed_unassigned_shards |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of shards whose allocation has been delayed by the timeout settings. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30703 |18 | |10322 |ES: Indices with shards assigned to nodes |es.indices.count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of indices with shards assigned to the selected nodes. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30704 |18 | |10322 |ES: Task max waiting in queue |es.cluster.task_max_waiting_in_queue |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The time expressed in seconds since the earliest initiated task is waiting for being performed. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30705 |18 | |10322 |ES: Cluster health status |es.cluster.status |0 |7d |365d |0 |3 | | | | |NULL |94 | | |0 | | | | |0 |NULL |Health status of the cluster, based on the state of its primary and replica shards. Statuses are:&eol;green&eol;All shards are assigned.&eol;yellow&eol;All primary shards are assigned, but one or more replica shards are unassigned. If a node in the cluster fails, some data could be unavailable until that node is repaired.&eol;red&eol;One or more primary shards are unassigned, so some data is unavailable. This can occur briefly during cluster startup as primary shards are assigned. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30706 |18 | |10322 |ES: Number of relocating shards |es.cluster.relocating_shards |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of shards that are under relocation. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30707 |18 | |10322 |ES: Number of pending tasks |es.cluster.number_of_pending_tasks |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of cluster-level changes that have not yet been executed. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30708 |18 | |10322 |ES: Number of nodes |es.cluster.number_of_nodes |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of nodes within the cluster. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30709 |18 | |10322 |ES: Number of data nodes |es.cluster.number_of_data_nodes |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of nodes that are dedicated to data nodes. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30710 |18 | |10322 |ES: Number of initializing shards |es.cluster.initializing_shards |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of shards that are under initialization. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30711 |18 | |10322 |ES: Inactive shards percentage |es.cluster.inactive_shards_percent_as_number |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The ratio of inactive shards in the cluster expressed as a percentage. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30712 |18 | |10322 |ES: Number of unassigned shards |es.cluster.unassigned_shards |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of shards that are not allocated. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30713 |19 | |10322 |Cluster nodes discovery |es.nodes.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$ELASTICSEARCH.USERNAME}|{$ELASTICSEARCH.PASSWORD}| | |1 |NULL |Discovery ES cluster nodes. |0 |30d |0 | |NULL |15s |{$ELASTICSEARCH.SCHEME}://{HOST.CONN}:{$ELASTICSEARCH.PORT}/_nodes/_all/nodes | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30714 |15 | |10322 |ES {#ES.NODE}: Query latency |es.node.indices.search.query_latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |last(es.node.indices.search.query_time_in_millis[{#ES.NODE}]) / &bsn;( last(es.node.indices.search.query_total[{#ES.NODE}]) + (last(es.node.indices.search.query_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average query latency calculated by sampling the total number of queries and the total elapsed time at regular intervals. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30715 |15 | |10322 |ES {#ES.NODE}: Flush latency |es.node.indices.flush.latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |last(es.node.indices.flush.total_time_in_millis[{#ES.NODE}]) / ( last(es.node.indices.flush.total[{#ES.NODE}]) + (last(es.node.indices.flush.total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average flush latency calculated from the available flush.total and flush.total_time_in_millis metrics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30716 |15 | |10322 |ES {#ES.NODE}: Indexing latency |es.node.indices.indexing.index_latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |last(es.node.indices.indexing.index_time_in_millis[{#ES.NODE}]) / ( last(es.node.indices.indexing.index_total[{#ES.NODE}]) + (last(es.node.indices.indexing.index_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average indexing latency calculated from the available index_total and index_time_in_millis metrics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30717 |15 | |10322 |ES {#ES.NODE}: Fetch latency |es.node.indices.search.fetch_latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |last(es.node.indices.search.fetch_time_in_millis[{#ES.NODE}]) / ( last(es.node.indices.search.fetch_total[{#ES.NODE}]) + (last(es.node.indices.search.fetch_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average fetch latency calculated by sampling the total number of fetches and the total elapsed time at regular intervals. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30718 |18 | |10322 |ES {#ES.NODE}: Refresh thread pool active threads |es.node.thread_pool.refresh.active[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of active threads in the refresh thread pool. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30719 |18 | |10322 |ES {#ES.NODE}: Total number of query |es.node.indices.search.query_total[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of query operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30720 |18 | |10322 |ES {#ES.NODE}: Rate of queries |es.node.indices.search.query.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of query operations per second. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30721 |18 | |10322 |ES {#ES.NODE}: Amount of JVM heap committed |es.node.jvm.mem.heap_committed_in_bytes[{#ES.NODE}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The amount of memory, in bytes, available for use by the heap. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30722 |18 | |10322 |ES {#ES.NODE}: Maximum JVM memory available for use |es.node.jvm.mem.heap_max_in_bytes[{#ES.NODE}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The maximum amount of memory, in bytes, available for use by the heap. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30723 |18 | |10322 |ES {#ES.NODE}: Amount of JVM heap currently in use |es.node.jvm.mem.heap_used_in_bytes[{#ES.NODE}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The memory, in bytes, currently in use by the heap. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30724 |18 | |10322 |ES {#ES.NODE}: Percent of JVM heap currently in use |es.node.jvm.mem.heap_used_percent[{#ES.NODE}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |The percentage of memory currently in use by the heap. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30725 |18 | |10322 |ES {#ES.NODE}: Node uptime |es.node.jvm.uptime[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |JVM uptime in seconds. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30726 |18 | |10322 |ES {#ES.NODE}: Total available size |es.node.fs.total.available_in_bytes[{#ES.NODE}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of bytes available to this Java virtual machine on all file stores. &eol;Depending on OS or process level restrictions, this might appear less than fs.total.free_in_bytes. &eol;This is the actual amount of free disk space the Elasticsearch node can utilize. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30727 |18 | |10322 |ES {#ES.NODE}: Refresh thread pool executor tasks completed |es.node.thread_pool.refresh.completed.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks completed by the refresh thread pool executor. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30728 |18 | |10322 |ES {#ES.NODE}: Time spent performing query |es.node.indices.search.query_time[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in seconds spent performing query operations for the last measuring span. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30729 |18 | |10322 |ES {#ES.NODE}: Refresh thread pool executor tasks rejected |es.node.thread_pool.refresh.rejected.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks rejected by the refresh thread pool executor. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30730 |18 | |10322 |ES {#ES.NODE}: Search thread pool active threads |es.node.thread_pool.search.active[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of active threads in the search thread pool. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30731 |18 | |10322 |ES {#ES.NODE}: Search thread pool executor tasks completed |es.node.thread_pool.search.completed.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks completed by the search thread pool executor. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30732 |18 | |10322 |ES {#ES.NODE}: Search thread pool tasks in queue |es.node.thread_pool.search.queue[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks in queue for the search thread pool. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30733 |18 | |10322 |ES {#ES.NODE}: Search thread pool executor tasks rejected |es.node.thread_pool.search.rejected.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks rejected by the search thread pool executor. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30734 |18 | |10322 |ES {#ES.NODE}: Write thread pool active threads |es.node.thread_pool.write.active[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of active threads in the write thread pool. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30735 |18 | |10322 |ES {#ES.NODE}: Write thread pool executor tasks completed |es.node.thread_pool.write.completed.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks completed by the write thread pool executor. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30736 |18 | |10322 |ES {#ES.NODE}: Write thread pool tasks in queue |es.node.thread_pool.write.queue[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks in queue for the write thread pool. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30737 |18 | |10322 |ES {#ES.NODE}: Refresh thread pool tasks in queue |es.node.thread_pool.refresh.queue[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks in queue for the refresh thread pool. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30738 |18 | |10322 |ES {#ES.NODE}: Current query operations |es.node.indices.search.query_current[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of query operations currently running. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30739 |18 | |10322 |ES {#ES.NODE}: Total time spent performing query |es.node.indices.search.query_time_in_millis[{#ES.NODE}] |0 |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in milliseconds spent performing query operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30740 |18 | |10322 |ES {#ES.NODE}: Time spent throttling operations |es.node.indices.indexing.throttle_time[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in seconds spent throttling operations for the last measuring span. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30741 |18 | |10322 |ES {#ES.NODE}: Number of open HTTP connections |es.node.http.current_open[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of currently open HTTP connections for the node. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30742 |18 | |10322 |ES {#ES.NODE}: Rate of HTTP connections opened |es.node.http.opened.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of HTTP connections opened for the node per second. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30743 |18 | |10322 |ES {#ES.NODE}: Total time spent on flushing indices to disk |es.node.indices.flush.total_time_in_millis[{#ES.NODE}] |0 |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Total time in milliseconds spent performing flush operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30744 |18 | |10322 |ES {#ES.NODE}: Total number of index flushes to disk |es.node.indices.flush.total[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of flush operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30745 |18 | |10322 |ES {#ES.NODE}: Current indexing operations |es.node.indices.indexing.index_current[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of indexing operations currently running. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30746 |18 | |10322 |ES {#ES.NODE}: Total time spent performing indexing |es.node.indices.indexing.index_time_in_millis[{#ES.NODE}] |0 |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Total time in milliseconds spent performing indexing operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30747 |18 | |10322 |ES {#ES.NODE}: Total number of indexing |es.node.indices.indexing.index_total[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of indexing operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30748 |18 | |10322 |ES {#ES.NODE}: Time spent throttling merge operations |es.node.indices.merges.total_throttled_time[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in seconds spent throttling merge operations for the last measuring span. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30749 |18 | |10322 |ES {#ES.NODE}: Total size |es.node.fs.total.total_in_bytes[{#ES.NODE}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total size (in bytes) of all file stores. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30750 |18 | |10322 |ES {#ES.NODE}: Time spent throttling recovery operations |es.node.indices.recovery.throttle_time[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in seconds spent throttling recovery operations for the last measuring span. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30751 |18 | |10322 |ES {#ES.NODE}: Rate of index refreshes |es.node.indices.refresh.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of refresh operations per second. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30752 |18 | |10322 |ES {#ES.NODE}: Time spent performing refresh |es.node.indices.refresh.time[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in seconds spent performing refresh operations for the last measuring span. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30753 |18 | |10322 |ES {#ES.NODE}: Current fetch operations |es.node.indices.search.fetch_current[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of fetch operations currently running. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30754 |18 | |10322 |ES {#ES.NODE}: Total time spent performing fetch |es.node.indices.search.fetch_time_in_millis[{#ES.NODE}] |0 |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in milliseconds spent performing fetch operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30755 |18 | |10322 |ES {#ES.NODE}: Time spent performing fetch |es.node.indices.search.fetch_time[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in seconds spent performing fetch operations for the last measuring span. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30756 |18 | |10322 |ES {#ES.NODE}: Total number of fetch |es.node.indices.search.fetch_total[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of fetch operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30757 |18 | |10322 |ES {#ES.NODE}: Rate of fetch |es.node.indices.search.fetch.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of fetch operations per second. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30758 |18 | |10322 |ES {#ES.NODE}: Write thread pool executor tasks rejected |es.node.thread_pool.write.rejected.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks rejected by the write thread pool executor. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30759 |18 | |10308 |TCP BACKEND discovery |haproxy.backend_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery TCP backends |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30760 |18 | |10308 |TCP FRONTEND discovery |haproxy.frontend_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery TCP frontends |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30761 |18 | |10308 |TCP Servers discovery |haproxy.server_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery tcp servers |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |30763 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Responses denied per second |haproxy.backend_tcp.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30764 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Errors connection per second |haproxy.backend_tcp.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30765 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Response errors per second |haproxy.backend_tcp.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30766 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Unassigned requests |haproxy.backend_tcp.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30767 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Time in queue |haproxy.backend_tcp.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30768 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Responses time |haproxy.backend_tcp.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average backend response time (in ms) for the last 1,024 requests |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30769 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Status |haproxy.backend_tcp.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30770 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Redispatched requests per second |haproxy.backend_tcp.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30771 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Retried connections per second |haproxy.backend_tcp.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30772 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Incoming traffic |haproxy.frontend_tcp.bin[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the frontend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30773 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend_tcp.bout[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the frontend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30774 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Denied requests per second |haproxy.frontend_tcp.dreq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Requests denied due to security concerns (ACL-restricted) per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30775 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Request errors per second |haproxy.frontend_tcp.ereq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of request errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30776 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Sessions rate |haproxy.frontend_tcp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sessions created per second |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30777 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Requests rate |haproxy.frontend_tcp.req_rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |HTTP requests per second |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30778 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Established sessions |haproxy.frontend_tcp.scur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of established sessions. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30779 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Session limits |haproxy.frontend_tcp.slim[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30780 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server_tcp.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30781 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server_tcp.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30782 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server_tcp.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30783 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Unassigned requests |haproxy.server_tcp.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30784 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Time in queue |haproxy.server_tcp.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30785 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Responses time |haproxy.server_tcp.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average server response time (in ms) for the last 1,024 requests. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30786 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Status |haproxy.server_tcp.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30787 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server_tcp.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30788 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server_tcp.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |30791 |18 | |10309 |TCP BACKEND discovery |haproxy.backend_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery TCP backends |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30792 |18 | |10309 |TCP FRONTEND discovery |haproxy.frontend_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery TCP frontends |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30793 |18 | |10309 |TCP Servers discovery |haproxy.server_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery tcp servers |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |30795 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Responses denied per second |haproxy.backend_tcp.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30796 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Errors connection per second |haproxy.backend_tcp.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30797 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Response errors per second |haproxy.backend_tcp.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30798 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Unassigned requests |haproxy.backend_tcp.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30799 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Time in queue |haproxy.backend_tcp.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30800 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Responses time |haproxy.backend_tcp.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average backend response time (in ms) for the last 1,024 requests |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30801 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Status |haproxy.backend_tcp.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30802 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Redispatched requests per second |haproxy.backend_tcp.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30803 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Retried connections per second |haproxy.backend_tcp.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30804 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Incoming traffic |haproxy.frontend_tcp.bin[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the frontend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30805 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend_tcp.bout[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the frontend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30806 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Denied requests per second |haproxy.frontend_tcp.dreq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Requests denied due to security concerns (ACL-restricted) per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30807 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Request errors per second |haproxy.frontend_tcp.ereq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of request errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30808 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Sessions rate |haproxy.frontend_tcp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sessions created per second |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30809 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Requests rate |haproxy.frontend_tcp.req_rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |HTTP requests per second |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30810 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Established sessions |haproxy.frontend_tcp.scur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of established sessions. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30811 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Session limits |haproxy.frontend_tcp.slim[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30812 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server_tcp.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30813 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server_tcp.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30814 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server_tcp.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30815 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Unassigned requests |haproxy.server_tcp.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30816 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Time in queue |haproxy.server_tcp.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30817 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Responses time |haproxy.server_tcp.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average server response time (in ms) for the last 1,024 requests. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30818 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Status |haproxy.server_tcp.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30819 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server_tcp.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30820 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server_tcp.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |30831 |18 | |10323 |ClickHouse: Write syscalls in fly |clickhouse.write |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of write (write, pwrite, io_getevents, etc.) syscalls in fly |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30832 |18 | |10323 |ClickHouse: Total replication tasks in queue |clickhouse.replicas.sum.queue.size |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30833 |18 | |10323 |ClickHouse: New queries per second |clickhouse.query.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30834 |18 | |10323 |ClickHouse: Read syscalls in fly |clickhouse.read |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of read (read, pread, io_getevents, etc.) syscalls in fly |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30835 |18 | |10323 |ClickHouse: Read bytes per second |clickhouse.read_bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |"Number of bytes (the number of bytes before decompression) read from compressed sources (files, network)." |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30836 |18 | |10323 |ClickHouse: ZooKeeper wait time |clickhouse.zookeper.wait.time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent in waiting for ZooKeeper operations. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30837 |18 | |10323 |ClickHouse: Replication lag across all tables |clickhouse.replicas.max.absolute.delay |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum replica queue delay relative to current time |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30838 |18 | |10323 |ClickHouse: Total number read-only Replicas |clickhouse.replicas.readonly.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"Number of Replicated tables that are currently in readonly state &eol;due to re-initialization after ZooKeeper session loss &eol;or due to startup without ZooKeeper configured." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30839 |18 | |10323 |ClickHouse: Revision |clickhouse.revision |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Revision of the server. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30840 |18 | |10323 |ClickHouse: ZooKeeper exeptions per second |clickhouse.zookeper.exeptions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of ZooKeeper exceptions that does not belong to user/hardware exceptions. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30841 |18 | |10323 |ClickHouse: New SELECT queries per second |clickhouse.select_query.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of SELECT queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30842 |18 | |10323 |ClickHouse: ZooKeeper user exeptions per second |clickhouse.zookeper.user_exeptions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of ZooKeeper exceptions caused by no znodes, bad version, node exists, node empty and no children for ephemeral. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30843 |18 | |10323 |ClickHouse: ZooKeeper sessions |clickhouse.zookeper.session |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of sessions (connections) to ZooKeeper. Should be no more than one. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30844 |18 | |10323 |ClickHouse: ZooKeeper requests |clickhouse.zookeper.request |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of requests to ZooKeeper in progress. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30845 |18 | |10323 |ClickHouse: ZooKeeper hardware exeptions per second |clickhouse.zookeper.hw_exeptions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of ZooKeeper exceptions caused by session moved/expired, connection loss, marshalling error, operation timed out and invalid zhandle state. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30846 |18 | |10323 |ClickHouse: Uptime |clickhouse.uptime |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of seconds since ClickHouse server start |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30847 |18 | |10323 |ClickHouse: Current running queries |clickhouse.query.current |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of executing queries |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30848 |18 | |10323 |ClickHouse: Current distribute connections |clickhouse.connections.distribute |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections to remote servers sending data that was INSERTed into Distributed tables. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30849 |18 | |10323 |ClickHouse: Current HTTP connections |clickhouse.connections.http |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections to HTTP server. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30850 |18 | |10323 |ClickHouse: Allocated bytes |clickhouse.jemalloc.allocated |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total number of bytes allocated by the application." |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30851 |18 | |10323 |ClickHouse: Current Interserver connections |clickhouse.connections.interserver |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections from other replicas to fetch parts. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30852 |18 | |10323 |ClickHouse: Current MySQL connections |clickhouse.connections.mysql |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections to MySQL server. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30853 |18 | |10323 |ClickHouse: Current TCP connections |clickhouse.connections.tcp |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections to TCP server (clients with native interface). |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30854 |18 | |10323 |ClickHouse: Current distributed files to insert |clickhouse.distributed.files |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of pending files to process for asynchronous insertion into Distributed tables. Number of files for every shard is summed. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30855 |18 | |10323 |ClickHouse: Distributed connection fail with retry per second |clickhouse.distributed.files.fail.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"Connection failures after all retries in replicated DB connection pool" |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30856 |18 | |10323 |ClickHouse: Distributed connection fail with retry per second |clickhouse.distributed.files.retry.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Connection retries in replicated DB connection pool |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30857 |18 | |10323 |ClickHouse: New INSERT queries per second |clickhouse.insert_query.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of INSERT queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30858 |18 | |10323 |ClickHouse: Delayed insert queries |clickhouse.insert.delay |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"Number of INSERT queries that are throttled due to high number of active data parts for partition in a MergeTree table." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30859 |18 | |10323 |ClickHouse: Inserted bytes per second |clickhouse.inserted_bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of uncompressed bytes inserted in all tables. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30860 |18 | |10323 |ClickHouse: Inserted rows per second |clickhouse.inserted_rows.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of rows inserted in all tables. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30861 |18 | |10323 |ClickHouse: Mapped memory |clickhouse.jemalloc.mapped |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total number of bytes in active extents mapped by the allocator." |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30862 |18 | |10323 |ClickHouse: Network errors per second |clickhouse.network.error.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Network errors (timeouts and connection failures) during query execution, background pool tasks and DNS cache update. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30863 |18 | |10323 |ClickHouse: Resident memory |clickhouse.jemalloc.resident |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Maximum number of bytes in physically resident data pages mapped by the allocator, &eol;comprising all pages dedicated to allocator metadata, pages backing active allocations, &eol;and unused dirty pages." |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30864 |18 | |10323 |ClickHouse: Max count of parts per partition across all tables |clickhouse.max.part.count.for.partition |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"Clickhouse MergeTree table engine split each INSERT query to partitions (PARTITION BY expression) and add one or more PARTS per INSERT inside each partition, &eol;after that background merge process run." |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30865 |18 | |10323 |ClickHouse: Memory used for queries |clickhouse.memory.tracking |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in currently executing queries." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30866 |18 | |10323 |ClickHouse: Memory used for background merges |clickhouse.memory.tracking.background |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in background processing pool (that is dedicated for backround merges, mutations and fetches).&eol; Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa. This happens naturally due to caches for tables indexes and doesn't indicate memory leaks." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30867 |18 | |10323 |ClickHouse: Memory used for backround moves |clickhouse.memory.tracking.background.moves |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in background processing pool (that is dedicated for backround moves). Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa.&eol; This happens naturally due to caches for tables indexes and doesn't indicate memory leaks." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30868 |18 | |10323 |ClickHouse: Memory used for merges |clickhouse.memory.tracking.merges |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated for background merges. Included in MemoryTrackingInBackgroundProcessingPool. Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa. &eol;This happens naturally due to caches for tables indexes and doesn't indicate memory leaks." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30869 |18 | |10323 |ClickHouse: Memory used for background schedule pool |clickhouse.memory.tracking.schedule.pool |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in background schedule pool (that is dedicated for bookkeeping tasks of Replicated tables)." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30870 |18 | |10323 |ClickHouse: Uncompressed bytes merged per second |clickhouse.merge_bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Uncompressed bytes that were read for background merges |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30871 |18 | |10323 |ClickHouse: Merged rows per second |clickhouse.merge_rows.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rows read for background merges. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30872 |18 | |10323 |ClickHouse: Current running merges |clickhouse.merge.current |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of executing background merges |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30873 |18 | |10323 |ClickHouse: ZooKeeper watches |clickhouse.zookeper.watch |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of watches (e.g., event subscriptions) in ZooKeeperr. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30874 |18 | |10323 |Dictionaries |clickhouse.dictionaries.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Info about dictionaries |0 |30d |1 | |30830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30875 |18 | |10323 |Replicas |clickhouse.replicas.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Info about replicas |0 |30d |1 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30876 |18 | |10323 |Tables |clickhouse.tables.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Info about tables |0 |30d |1 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30877 |18 | |10323 |ClickHouse: Dictionary {#NAME}: Bytes allocated |clickhouse.dictionary.bytes_allocated["{#NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The amount of RAM the dictionary uses. |0 |30d |0 | |30830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30878 |18 | |10323 |ClickHouse: Dictionary {#NAME}: Element count |clickhouse.dictionary.element_count["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of items stored in the dictionary. |0 |30d |0 | |30830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30879 |18 | |10323 |ClickHouse: Dictionary {#NAME}: Load factor |clickhouse.dictionary.load_factor["{#NAME}"] |0 |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |The percentage filled in the dictionary (for a hashed dictionary, the percentage filled in the hash table). |0 |30d |0 | |30830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30880 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Active replicas |clickhouse.replica.active_replicas["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of replicas of this table that have a session in ZooKeeper (i.e., the number of functioning replicas). (Have a non-zero value only where there is an active session with ZooKeeper). |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30881 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica future parts |clickhouse.replica.future_parts["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of data parts that will appear as the result of INSERTs or merges that haven’t been done yet. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30882 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica queue inserts size |clickhouse.replica.inserts_in_queue["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of inserts of blocks of data that need to be made. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30883 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica readonly |clickhouse.replica.is_readonly["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |95 | | |0 | | | | |2 |NULL |Whether the replica is in read-only mode.&eol;This mode is turned on if the config doesn’t have sections with ZooKeeper, if an unknown error occurred when reinitializing sessions in ZooKeeper, and during session reinitialization in ZooKeeper. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30884 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica session expired |clickhouse.replica.is_session_expired["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |95 | | |0 | | | | |2 |NULL |True if the ZooKeeper session expired |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30885 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica lag |clickhouse.replica.lag["{#DB}.{#TABLE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Difference between log_max_index and log_pointer |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30886 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica log max index |clickhouse.replica.log_max_index["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum entry number in the log of general activity. (Have a non-zero value only where there is an active session with ZooKeeper). |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30887 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica log pointer |clickhouse.replica.log_pointer["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum entry number in the log of general activity that the replica copied to its execution queue, plus one. (Have a non-zero value only where there is an active session with ZooKeeper). |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30888 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica queue merges size |clickhouse.replica.merges_in_queue["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of merges waiting to be made. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30889 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica parts to check |clickhouse.replica.parts_to_check["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of data parts in the queue for verification. A part is put in the verification queue if there is suspicion that it might be damaged. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30890 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica queue size |clickhouse.replica.queue_size["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Size of the queue for operations waiting to be performed. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30891 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Total replicas |clickhouse.replica.total_replicas["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of known replicas of this table. (Have a non-zero value only where there is an active session with ZooKeeper). |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30892 |18 | |10323 |ClickHouse: {#DB}: Bytes |clickhouse.db.bytes["{#DB}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Database size in bytes. |0 |30d |0 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30893 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Bytes |clickhouse.table.bytes["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Table size in bytes. Database: {#DB}, table: {#TABLE} |0 |30d |0 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30894 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Parts |clickhouse.table.parts["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of parts of the table. Database: {#DB}, table: {#TABLE} |0 |30d |0 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30895 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Rows |clickhouse.table.rows["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of rows in the table. Database: {#DB}, table: {#TABLE} |0 |30d |0 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |30897 |18 | |10264 |Apache: Workers reading request |apache.workers.reading |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in reading state |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30898 |18 | |10264 |Apache: Workers waiting for connection |apache.workers.waiting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in waiting state |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30899 |18 | |10264 |Apache: Workers starting up |apache.workers.starting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in starting state |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30900 |18 | |10264 |Apache: Workers slot with no current process |apache.workers.slot |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of slots with no current process |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30901 |18 | |10264 |Apache: Workers sending reply |apache.workers.sending |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in sending state |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30902 |18 | |10264 |Apache: Total bytes |apache.bytes |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total bytes served |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30903 |18 | |10264 |Apache: Bytes per second |apache.bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Calculated as change rate for 'Total bytes' stat.&eol;BytesPerSec is not used, as it counts average since last Apache server start. |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30904 |18 | |10264 |Apache: Workers keepalive (read) |apache.workers.keepalive |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in keepalive state |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30905 |18 | |10264 |Apache: Workers finishing |apache.workers.finishing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in finishing state |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30906 |18 | |10264 |Apache: Workers DNS lookup |apache.workers.dnslookup |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in dnslookup state |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30907 |18 | |10264 |Apache: Workers closing connection |apache.workers.closing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in closing state |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30908 |18 | |10264 |Apache: Workers idle cleanup |apache.workers.cleanup |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in cleanup state |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30909 |18 | |10264 |Apache: Total workers idle |apache.workers_total.idle |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of idle worker threads/processes |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30910 |18 | |10264 |Apache: Total workers busy |apache.workers_total.busy |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of busy worker threads/processes |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30911 |18 | |10264 |Apache: Version |apache.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Service version |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30912 |18 | |10264 |Apache: Uptime |apache.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Service uptime in seconds |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30913 |18 | |10264 |Apache: Requests per second |apache.requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Calculated as change rate for 'Total requests' stat.&eol;ReqPerSec is not used, as it counts average since last Apache server start. |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30914 |18 | |10264 |Apache: Total requests |apache.requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |A total number of accesses |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30915 |18 | |10264 |Apache: Workers logging |apache.workers.logging |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in logging state |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30916 |18 | |10264 |Event MPM discovery |apache.mpm.event.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics if event MPM is used&eol;https://httpd.apache.org/docs/current/mod/event.html |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30917 |18 | |10264 |Apache: Bytes per request |apache.bytes[per_request{#SINGLETON}] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Average number of client requests per second |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30918 |18 | |10264 |Apache: Connections async closing |apache.connections[async_closing{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async connections in closing state (only applicable to event MPM) |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30919 |18 | |10264 |Apache: Connections async keep alive |apache.connections[async_keep_alive{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async connections in keep-alive state (only applicable to event MPM) |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30920 |18 | |10264 |Apache: Connections async writing |apache.connections[async_writing{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async connections in writing state (only applicable to event MPM) |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30921 |18 | |10264 |Apache: Connections total |apache.connections[total{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of total connections |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30922 |18 | |10264 |Apache: Number of async processes |apache.process[num{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async processes |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |30927 |18 | |10324 |Etcd: Open file descriptors |etcd.open.fds |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of open file descriptors. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30928 |18 | |10324 |Etcd: Proposals applied per second |etcd.proposals.applied.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of consensus proposals applied. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30929 |18 | |10324 |Etcd: Proposals committed per second |etcd.proposals.committed.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of consensus proposals committed. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30930 |18 | |10324 |Etcd: Proposals failed per second |etcd.proposals.failed.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed proposals seen. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30931 |18 | |10324 |Etcd: Proposals pending |etcd.proposals.pending |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of pending proposals to commit. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30932 |18 | |10324 |Etcd: PUT per second |etcd.put.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of puts seen by this member per second. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30933 |18 | |10324 |Etcd: Range per second |etcd.range.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of ranges seen by this member per second. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30934 |18 | |10324 |Etcd: Reads per second |etcd.reads.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of reads action by (get/getRecursive), local to this member. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30935 |18 | |10324 |Etcd: Client gRPC received bytes per second |etcd.network.grpc.received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from grpc clients per second |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30936 |18 | |10324 |Etcd: Resident memory |etcd.res.bytes |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Resident memory size in bytes. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30937 |18 | |10324 |Etcd: Server version |etcd.server.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the Etcd server. |0 |30d |0 | |30926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30938 |18 | |10324 |Etcd: Transaction per second |etcd.txn.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of transactions seen by this member per second. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30939 |18 | |10324 |Etcd: Uptime |etcd.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Etcd server uptime. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30940 |18 | |10324 |Etcd: Virtual memory |etcd.virtual.bytes |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Virtual memory size in bytes. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30941 |18 | |10324 |Etcd: Writes per second |etcd.writes.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of writes (e.g. set/compareAndDelete) seen by this member. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30942 |18 | |10324 |Etcd: Client gRPC sent bytes per second |etcd.network.grpc.sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent from grpc clients per second |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30943 |18 | |10324 |Etcd: Cluster version |etcd.cluster.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the Etcd cluster. |0 |30d |0 | |30926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30944 |18 | |10324 |Etcd: Maximum open file descriptors |etcd.max.fds |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Maximum number of open file descriptors. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30945 |18 | |10324 |Etcd: Server has a leader |etcd.has.leader |0 |7d |365d |0 |3 | | | | |NULL |97 | | |0 | | | | |0 |NULL |Whether or not a leader exists. 1 is existence, 0 is not. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30946 |18 | |10324 |Etcd: DB size |etcd.db.size |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total size of the underlying database. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30947 |18 | |10324 |Etcd: Deletes per second |etcd.delete.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of deletes seen by this member per second. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30948 |18 | |10324 |Etcd: Pending events |etcd.events.sent.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of pending events to be sent. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30949 |18 | |10324 |Etcd: RPCs received per second |etcd.grpc.received.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of RPC stream messages received on the server. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30950 |18 | |10324 |Etcd: RPCs sent per second |etcd.grpc.sent.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of gRPC stream messages sent by the server. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30951 |18 | |10324 |Etcd: RPCs started per second |etcd.grpc.started.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of RPCs started on the server. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30952 |18 | |10324 |Etcd: HTTP 4XX |etcd.http.requests.4xx.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of handle failures of requests (non-watches), by method (GET/PUT etc.), and code 4XX. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30953 |18 | |10324 |Etcd: CPU |etcd.cpu.util |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Total user and system CPU time spent in seconds. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30954 |18 | |10324 |Etcd: HTTP 5XX |etcd.http.requests.5xx.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of handle failures of requests (non-watches), by method (GET/PUT etc.), and code 5XX. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30955 |18 | |10324 |Etcd: HTTP requests received |etcd.http.requests.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of requests received into the system (successfully parsed and authd). |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30956 |18 | |10324 |Etcd: Server is a leader |etcd.is.leader |0 |7d |365d |0 |3 | | | | |NULL |97 | | |0 | | | | |0 |NULL |Whether or not this member is a leader. 1 if is, 0 otherwise. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30957 |18 | |10324 |Etcd: Keys compacted per second |etcd.keys.compacted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of DB keys compacted per second. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30958 |18 | |10324 |Etcd: Keys expired per second |etcd.keys.expired.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of expired keys per second. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30959 |18 | |10324 |Etcd: Keys total |etcd.keys.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of keys. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30960 |18 | |10324 |Etcd: Leader changes |etcd.leader.changes |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The the number of leader changes the member has seen since its start. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30961 |18 | |10324 |gRPC codes discovery |etcd.grpc_code.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30962 |18 | |10324 |Peers discovery |etcd.peer.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30963 |18 | |10324 |Etcd: RPCs completed with code {#GRPC.CODE} |etcd.grpc.handled.rate[{#GRPC.CODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of RPCs completed on the server with grpc_code {#GRPC.CODE} |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30964 |18 | |10324 |Etcd: Etcd peer {#ETCD.PEER}: Bytes received |etcd.bytes.received.rate[{#ETCD.PEER}] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of bytes received from peer with ID {#ETCD.PEER} |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30965 |18 | |10324 |Etcd: Etcd peer {#ETCD.PEER}: Bytes sent |etcd.bytes.sent.rate[{#ETCD.PEER}] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of bytes sent to peer with ID {#ETCD.PEER} |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30966 |18 | |10324 |Etcd: Etcd peer {#ETCD.PEER}: Receive failures failures |etcd.received.fail.rate[{#ETCD.PEER}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of receive failures from the peer with ID {#ETCD.PEER} |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30967 |18 | |10324 |Etcd: Etcd peer {#ETCD.PEER}: Send failures |etcd.sent.fail.rate[{#ETCD.PEER}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of send failures from peer with ID {#ETCD.PEER} |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |31052 |18 | |10262 |Version |version |0 |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of Zabbix proxy. |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31053 |18 | |10261 |Version |version |0 |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of Zabbix server. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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, &bsn;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, &bsn;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'&bsn; AND OBJECT_NAME = '{$MSSQL.INSTANCE}:Buffer Manager') b ON a.OBJECT_NAME = b.OBJECT_NAME&bsn;WHERE a.counter_name = 'Buffer cache hit ratio'&bsn;AND a.OBJECT_NAME = '{$MSSQL.INSTANCE}:Buffer Manager'&bsn;UNION&bsn;SELECT a.object_name, 'WorktablesFromCacheRatio' as counter_name, '' as instance_name, &bsn;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'&bsn; AND OBJECT_NAME = '{$MSSQL.INSTANCE}:Access Methods') b ON a.OBJECT_NAME = b.OBJECT_NAME&bsn;WHERE a.counter_name = 'Worktables From Cache Ratio'&bsn;AND a.OBJECT_NAME = '{$MSSQL.INSTANCE}:Access Methods'&bsn;UNION&bsn;SELECT a.object_name, 'CacheHitRatio' as counter_name, '_Total' as instance_name, &bsn;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'&bsn; AND OBJECT_NAME = '{$MSSQL.INSTANCE}:Plan Cache'&bsn; AND instance_name = '_Total') b ON a.OBJECT_NAME = b.OBJECT_NAME&bsn;WHERE a.counter_name = 'Cache Hit Ratio'&bsn; AND a.OBJECT_NAME = '{$MSSQL.INSTANCE}:Plan Cache'&bsn; 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 |31059 |18 | |10327 |MSSQL: Average latch wait time base |mssql.average_latch_wait_time_base |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |For internal use only. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31060 |18 | |10327 |MSSQL: Table lock escalations per second |mssql.table_lock_escalations.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times locks on a table were escalated to the TABLE or HoBT granularity. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31061 |18 | |10327 |MSSQL: Memory grants pending |mssql.memory_grants_pending |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Specifies the total number of processes waiting for a workspace memory grant. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31062 |18 | |10327 |MSSQL: Total lock requests per second that have deadlocks |mssql.number_deadlocks_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of lock requests per second that resulted in a deadlock. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31063 |18 | |10327 |MSSQL: Errors per second (DB offline errors) |mssql.offline_errors_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31064 |18 | |10327 |MSSQL: Page life expectancy |mssql.page_life_expectancy |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of seconds a page will stay in the buffer pool without references. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31065 |18 | |10327 |MSSQL: Page lookups per second |mssql.page_lookups_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of requests per second to find a page in the buffer pool. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31066 |18 | |10327 |MSSQL: Page reads per second |mssql.page_reads_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of physical database page reads that are issued per second. This statistic displays the total number of physical page reads across all databases. Because physical I/O is expensive, you may be able to minimize the cost, either by using a larger data cache, intelligent indexes, and more efficient queries, or by changing the database design. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31067 |18 | |10327 |MSSQL: Page splits per second |mssql.page_splits_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of page splits per second that occur as the result of overflowing index pages. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31068 |18 | |10327 |MSSQL: Page writes per second |mssql.page_writes_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of physical database page writes that are issued per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31069 |18 | |10327 |MSSQL: Number of blocked processes |mssql.processes_blocked |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of currently blocked processes. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31070 |18 | |10327 |MSSQL: Read-ahead pages per second |mssql.readahead_pages_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of pages read per second in anticipation of use. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31071 |18 | |10327 |MSSQL: Safe auto-params per second |mssql.safe_autoparams_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of safe auto-parameterization attempts per second. Safe refers to a determination that a cached execution plan can be shared between different similar-looking Transact-SQL statements. SQL Server makes many auto-parameterization attempts some of which turn out to be safe and others fail. Note that auto-parameterizations are also known as simple parameterizations in later versions of SQL Server. This does not include forced parameterizations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31072 |18 | |10327 |MSSQL: SQL compilations per second |mssql.sql_compilations_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of SQL compilations per second. Indicates the number of times the compile code path is entered. Includes compiles caused by statement-level recompilations in SQL Server. After SQL Server user activity is stable, this value reaches a steady state. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31073 |18 | |10327 |MSSQL: SQL re-compilations per second |mssql.sql_recompilations_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of statement recompiles per second. Counts the number of times statement recompiles are triggered. Generally, you want the recompiles to be low. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31074 |18 | |10327 |MSSQL: Target pages |mssql.target_pages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The optimum number of pages in the buffer pool. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31075 |18 | |10327 |MSSQL: Maximum workspace memory |mssql.maximum_workspace_memory |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the maximum amount of memory available for executing processes, such as hash, sort, bulk copy, and index creation operations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31076 |18 | |10327 |MSSQL: Target server memory |mssql.target_server_memory |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the ideal amount of memory the server can consume. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31077 |18 | |10327 |MSSQL: Total latch wait Time |mssql.total_latch_wait_time |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Total latch wait time (in milliseconds) for latch requests in the last second. This value should stay stable compared to the number of latch waits per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31078 |18 | |10327 |MSSQL: Total server memory |mssql.total_server_memory |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Specifies the amount of memory the server has committed using the memory manager. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31079 |18 | |10327 |MSSQL: Total transactions number |mssql.transactions |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently active transactions of all types. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31080 |18 | |10327 |MSSQL: Total transactions per second |mssql.transactions_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of transactions started for all databases per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31081 |18 | |10327 |MSSQL: Unsafe auto-params per second |mssql.unsafe_autoparams_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of unsafe auto-parameterization attempts per second. For example, the query has some characteristics that prevent the cached plan from being shared. These are designated as unsafe. This does not count the number of forced parameterizations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31082 |18 | |10327 |MSSQL: Uptime |mssql.uptime |0 |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MS SQL Server uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31083 |18 | |10327 |MSSQL: Number users connected |mssql.user_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users connected to MS SQL Server. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31084 |18 | |10327 |MSSQL: Errors per second (User errors) |mssql.user_errors_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31085 |18 | |10327 |MSSQL: Version |mssql.version |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MS SQL Server version. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31086 |18 | |10327 |MSSQL: Work files created per second |mssql.workfiles_created_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of work files created per second. For example, work files could be used to store temporary results for hash joins and hash aggregates. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31087 |18 | |10327 |MSSQL: Work tables created per second |mssql.worktables_created_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of work tables created per second. For example, work tables could be used to store temporary results for query spool, lob variables, XML variables, and cursors. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31088 |18 | |10327 |MSSQL: Worktables from cache ratio |mssql.worktables_from_cache_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Percentage of work tables created where the initial two pages of the work table were not allocated but were immediately available from the work table cache. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31089 |18 | |10327 |MSSQL: Memory grants outstanding |mssql.memory_grants_outstanding |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Specifies the total number of processes that have successfully acquired a workspace memory grant. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31090 |18 | |10327 |MSSQL: Logouts per second |mssql.logouts_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of logout operations started per second. Any value over 2 may indicate insufcient connection pooling. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31091 |18 | |10327 |MSSQL: Average latch wait time raw |mssql.average_latch_wait_time_raw |0 |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Average latch wait time (in milliseconds) for latch requests that had to wait. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31092 |18 | |10327 |MSSQL: Forwarded records per second |mssql.forwarded_records_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of records per second fetched through forwarded record pointers. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31093 |18 | |10327 |MSSQL: Total average wait time base |mssql.average_wait_time_base |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |For internal use only. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31094 |18 | |10327 |MSSQL: Total average wait time raw |mssql.average_wait_time_raw |0 |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Average amount of wait time (in milliseconds) for each lock request that resulted in a wait. Information for all locks. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31095 |18 | |10327 |MSSQL: Batch requests per second |mssql.batch_requests_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of Transact-SQL command batches received per second. This statistic is affected by all constraints (such as I/O, number of users, cache size, complexity of requests, and so on). High batch requests mean good throughput. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31096 |18 | |10327 |MSSQL: Buffer cache hit ratio |mssql.buffer_cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the percentage of pages found in the buffer cache without having to read from disk. The ratio is the total number of cache hits divided by the total number of cache lookups over the last few thousand page accesses. After a long period of time, the ratio moves very little. Because reading from the cache is much less expensive than reading from disk, you want this ratio to be high. Generally, you can increase the buffer cache hit ratio by increasing the amount of memory available to SQL Server or by using the buffer pool extension feature. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31097 |18 | |10327 |MSSQL: Cache hit ratio |mssql.cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Ratio between cache hits and lookups. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31098 |18 | |10327 |MSSQL: Cache object counts |mssql.cache_object_counts |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cache objects in the cache. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31099 |18 | |10327 |MSSQL: Cache objects in use |mssql.cache_objects_in_use |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cache objects in use. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31100 |18 | |10327 |MSSQL: Cache pages |mssql.cache_pages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of 8-kilobyte (KB) pages used by cache objects. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31101 |18 | |10327 |MSSQL: Checkpoint pages per second |mssql.checkpoint_pages_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of pages flushed to disk per second by a checkpoint or other operation that require all dirty pages to be flushed. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31102 |18 | |10327 |MSSQL: Total data file size |mssql.data_files_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total size of all the data files. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31103 |18 | |10327 |MSSQL: Database pages |mssql.database_pages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of pages in the buffer pool with database content. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31104 |18 | |10327 |MSSQL: Total errors per second |mssql.errors_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31105 |18 | |10327 |MSSQL: Failed auto-params per second |mssql.failed_autoparams_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of failed auto-parameterization attempts per second. This should be small. Note that auto-parameterizations are also known as simple parameterizations in later versions of SQL Server. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31106 |18 | |10327 |MSSQL: Free list stalls per second |mssql.free_list_stalls_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of requests per second that had to wait for a free page. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31107 |18 | |10327 |MSSQL: Logins per second |mssql.logins_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of logins started per second. This does not include pooled connections. Any value over 2 may indicate insufcient connection pooling. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31108 |18 | |10327 |MSSQL: Full scans per second |mssql.full_scans_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of unrestricted full scans per second. These can be either base-table or full-index scans. Values greater than 1 or 2 indicate that we are having table / Index page scans. If we see high CPU then we need to investigate this counter, otherwise if the full scans are on small tables we can ignore this counter. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31109 |18 | |10327 |MSSQL: Granted Workspace Memory |mssql.granted_workspace_memory |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Specifies the total amount of memory currently granted to executing processes, such as hash, sort, bulk copy, and index creation operations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31110 |18 | |10327 |MSSQL: Index searches per second |mssql.index_searches_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of index searches per second. These are used to start a range scan, reposition a range scan, revalidate a scan point, fetch a single index record, and search down the index to locate where to insert a new row. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31111 |18 | |10327 |MSSQL: Errors per second (Info errors) |mssql.info_errors_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31112 |18 | |10327 |MSSQL: Errors per second (Kill connection errors) |mssql.kill_connection_errors_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31113 |18 | |10327 |MSSQL: Latch waits per second |mssql.latch_waits_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of latch requests that could not be granted immediately. Latches are lightweight means of holding a very transient server resource, such as an address in memory. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31114 |18 | |10327 |MSSQL: Lazy writes per second |mssql.lazy_writes_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of buffers written per second by the buffer manager's lazy writer. The lazy writer is a system process that flushes out batches of dirty, aged buffers (buffers that contain changes that must be written back to disk before the buffer can be reused for a different page) and makes them available to user processes. The lazy writer eliminates the need to perform frequent checkpoints in order to create available buffers. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31115 |18 | |10327 |MSSQL: Total lock requests per second |mssql.lock_requests_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of new locks and lock conversions per second requested from the lock manager. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31116 |18 | |10327 |MSSQL: Total lock requests per second that timed out |mssql.lock_timeouts_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of lock requests per second that timed out, including requests for NOWAIT locks. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31117 |18 | |10327 |MSSQL: Lock wait time |mssql.lock_wait_time |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Average of total wait time (in milliseconds) for locks in the last second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31118 |18 | |10327 |MSSQL: Total lock requests per second that required waiting |mssql.lock_waits_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of lock requests per second that required the caller to wait. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31119 |18 | |10327 |MSSQL: Total log file size |mssql.log_files_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total size of all the transaction log files. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31120 |18 | |10327 |MSSQL: Auto-param attempts per second |mssql.autoparam_attempts_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of auto-parameterization attempts per second. Total should be the sum of the failed, safe, and unsafe auto-parameterizations. Auto-parameterization occurs when an instance of SQL Server tries to parameterize a Transact-SQL request by replacing some literals with parameters so that reuse of the resulting cached execution plan across multiple similar-looking requests is possible. Note that auto-parameterizations are also known as simple parameterizations in newer versions of SQL Server. This counter does not include forced parameterizations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31121 |18 | |10327 |MSSQL: Total log file used size |mssql.log_files_used_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The cumulative used size of all the log files in the database. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31122 |11 | |10327 |Availability groups discovery |db.odbc.discovery[availability_groups,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name as group_name &bsn;FROM sys.availability_groups | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Discovery the existed availability groups. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31123 |11 | |10327 |Database discovery |db.odbc.discovery[dbname,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name as dbname &bsn;FROM sys.databases | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Scanning databases in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31124 |11 | |10327 |Local database discovery |db.odbc.discovery[local_db,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT ag.name AS group_name, arcs.replica_server_name AS replica_name,&bsn;db_name(drs.database_id) AS dbname, drs.is_local&bsn;FROM sys.dm_hadr_database_replica_states drs JOIN sys.dm_hadr_availability_replica_cluster_states arcs&bsn;ON arcs.replica_id = drs.replica_id&bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id&bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id&bsn;WHERE drs.is_local = 1 | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Discovery of the local availability databases. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31125 |11 | |10327 |Mirroring discovery |db.odbc.discovery[mirrors,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT db_name(database_id) as dbname&bsn;FROM sys.database_mirroring&bsn;WHERE mirroring_state_desc IS NOT NULL | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |To see the row for a database other than master or tempdb, you must&eol;either be the database owner or have at least ALTER ANY DATABASE or VIEW ANY&eol;DATABASE server-level permission or CREATE DATABASE permission in the master&eol;database. To see non-NULL values on a mirror database, you must be a member&eol;of the sysadmin fixed server role. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31126 |11 | |10327 |Non-local database discovery |db.odbc.discovery[non-local_db,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT ag.name AS group_name, arcs.replica_server_name AS replica_name,&bsn;db_name(drs.database_id) AS dbname, drs.is_local&bsn;FROM sys.dm_hadr_database_replica_states drs JOIN sys.dm_hadr_availability_replica_cluster_states arcs &bsn;ON arcs.replica_id = drs.replica_id &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id&bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id&bsn;WHERE drs.is_local = 0 | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Discovery of the non-local (not local to the SQL Server instance) availability databases. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31127 |11 | |10327 |Replication discovery |db.odbc.discovery[replicas,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT ag.name as group_name, &bsn;arcs.replica_server_name as replica_name&bsn;FROM sys.dm_hadr_availability_replica_cluster_states as arcs &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id&bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Discovery of the database replicas. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31128 |11 | |10327 |MSSQL AG '{#GROUP_NAME}': Get replica states |db.odbc.get[{#GROUP_NAME}_replica_states,"{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT ag.name as group_name,&bsn;ISNULL(ags.primary_recovery_health, 2) as primary_recovery_health,&bsn;ISNULL(ags.primary_replica, 'Unknown') as primary_replica,&bsn;ISNULL(ags.secondary_recovery_health, 2) as secondary_recovery_health,&bsn;ags.synchronization_health as synchronization_health&bsn;FROM sys.dm_hadr_availability_group_states ags JOIN sys.availability_groups ag ON ag.group_id = ags.group_id | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting replica states - name, primary and secondary health, synchronization health. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31129 |11 | |10327 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}': Get local DB states |db.odbc.get["{#GROUP_NAME}_{#DBNAME}_local_db.states","{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT drs.database_state as database_state, &bsn;drs.is_suspended as is_suspended, &bsn;drs.synchronization_health as synchronization_health, &bsn;ag.name as group_name,&bsn;arcs.replica_server_name as replica_name,&bsn;db_name(drs.database_id) as dbname&bsn;FROM sys.dm_hadr_database_replica_states drs &bsn;JOIN sys.dm_hadr_availability_replica_cluster_states arcs ON arcs.replica_id = drs.replica_id &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id &bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting the states of the local availability database. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31130 |11 | |10327 |MSSQL Mirroring '{#DBNAME}': Get the mirror state |db.odbc.get["{#DBNAME}_mirroring_state","{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT ISNULL(m.mirroring_role,0) as mirroring_role,&bsn;ISNULL(m.mirroring_role_sequence,0) as mirroring_role_sequence,&bsn;ISNULL(m.mirroring_state,7) as mirroring_state,&bsn;ISNULL(m.mirroring_witness_state,3) as mirroring_witness_state,&bsn;ISNULL(m.mirroring_safety_level,3) as mirroring_safety_level,&bsn;db_name(m.database_id) as dbname &bsn;FROM sys.database_mirroring as m&bsn;WHERE m.mirroring_state_desc IS NOT NULL | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting mirrors state |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31131 |11 | |10327 |MSSQL AG '{#GROUP_NAME}' Non-Local DB '{#DBNAME}': Get non-local DB states |db.odbc.get["{#GROUP_NAME}_{#DBNAME}_non-local_db.states","{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT drs.log_send_queue_size as log_send_queue_size,&bsn;drs.redo_queue_size as redo_queue_size,&bsn;ag.name as group_name,&bsn;arcs.replica_server_name as replica_name,&bsn;db_name(drs.database_id) as dbname&bsn;FROM sys.dm_hadr_database_replica_states drs &bsn;JOIN sys.dm_hadr_availability_replica_cluster_states arcs ON arcs.replica_id = drs.replica_id &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id &bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting the states of the non-local availability database. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31132 |11 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Get the replica state |db.odbc.get["{#GROUP_NAME}_{#REPLICA_NAME}_replica.state","{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT ars.connected_state as connected_state,&bsn;ars.is_local as is_local,&bsn;arcs.join_state as join_state,&bsn;ISNULL(ars.operational_state,6) as operational_state,&bsn;ISNULL(ars.recovery_health,2) as recovery_health,&bsn;ars.role as role,&bsn;ars.synchronization_health as synchronization_health,&bsn;ag.name as group_name, &bsn;arcs.replica_server_name as replica_name&bsn;FROM sys.dm_hadr_availability_replica_cluster_states as arcs &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id&bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id&bsn;WHERE ag.name = '{#GROUP_NAME}' AND arcs.replica_server_name = '{#REPLICA_NAME}' | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting the database replica states. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31133 |18 | |10327 |MSSQL AG '{#GROUP_NAME}': Primary replica recovery health |mssql.primary_recovery_health["{#GROUP_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |103 | | |0 | | | | |2 |NULL |Indicates the recovery health of the primary replica:&eol;0 = In progress&eol;1 = Online&eol;2 = Unavailable |0 |30d |0 | |31128 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31134 |18 | |10327 |MSSQL AG '{#GROUP_NAME}': Primary replica name |mssql.primary_replica["{#GROUP_NAME}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Name of the server instance that is hosting the current primary replica. |0 |30d |0 | |31128 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31135 |18 | |10327 |MSSQL AG '{#GROUP_NAME}': Secondary replica recovery health |mssql.secondary_recovery_health["{#GROUP_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |103 | | |0 | | | | |2 |NULL |Indicates the recovery health of a secondary replica replica:&eol;0 = In progress&eol;1 = Online&eol;2 = Unavailable |0 |30d |0 | |31128 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31136 |18 | |10327 |MSSQL AG '{#GROUP_NAME}': Synchronization health |mssql.synchronization_health["{#GROUP_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |106 | | |0 | | | | |2 |NULL |Reflects a rollup of the synchronization_health of all availability replicas in the availability group:&eol;0: Not healthy. None of the availability replicas have a healthy.&eol;1: Partially healthy. The synchronization health of some, but not all, availability replicas is healthy.&eol;2: Healthy. The synchronization health of every availability replica is healthy. |0 |30d |0 | |31128 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31137 |18 | |10327 |MSSQL DB '{#DBNAME}': Active transactions |mssql.db.active_transactions["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of active transactions for the database. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31138 |18 | |10327 |MSSQL DB '{#DBNAME}': Data file size |mssql.db.data_files_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Cumulative size of all the data files in the database including any automatic growth. Monitoring this counter is useful, for example, for determining the correct size of tempdb. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31139 |18 | |10327 |MSSQL DB '{#DBNAME}': Log bytes flushed per second |mssql.db.log_bytes_flushed_sec.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of log bytes flushed per second. Useful for determining trends and utilization of the transaction log. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31140 |18 | |10327 |MSSQL DB '{#DBNAME}': Log file size |mssql.db.log_files_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Cumulative size of all the transaction log files in the database. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31141 |18 | |10327 |MSSQL DB '{#DBNAME}': Log file used size |mssql.db.log_files_used_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The cumulative used size of all the log files in the database. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31142 |18 | |10327 |MSSQL DB '{#DBNAME}': Log flush wait time |mssql.db.log_flush_wait_time["{#DBNAME}"] |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Total wait time (in milliseconds) to flush the log. On an AlwaysOn secondary database, this value indicates the wait time for log records to be hardened to disk. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31143 |18 | |10327 |MSSQL DB '{#DBNAME}': Log flush waits per second |mssql.db.log_flush_waits_sec.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of commits per second waiting for the log flush. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31144 |18 | |10327 |MSSQL DB '{#DBNAME}': Log flushes per second |mssql.db.log_flushes_sec.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of log flushes per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31145 |18 | |10327 |MSSQL DB '{#DBNAME}': Log growths |mssql.db.log_growths["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of times the transaction log for the database has been expanded. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31146 |18 | |10327 |MSSQL DB '{#DBNAME}': Log shrinks |mssql.db.log_shrinks["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of times the transaction log for the database has been shrunk. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31147 |18 | |10327 |MSSQL DB '{#DBNAME}': Log truncations |mssql.db.log_truncations["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times the transaction log has been shrunk. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31148 |18 | |10327 |MSSQL DB '{#DBNAME}': Percent log used |mssql.db.percent_log_used["{#DBNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Percentage of space in the log that is in use. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31149 |18 | |10327 |MSSQL DB '{#DBNAME}': State |mssql.db.state["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |99 | | |0 | | | | |2 |NULL |0 = ONLINE&eol;1 = RESTORING&eol;2 = RECOVERING &pipe; SQL Server 2008 and later&eol;3 = RECOVERY_PENDING &pipe; SQL Server 2008 and later&eol;4 = SUSPECT&eol;5 = EMERGENCY &pipe; SQL Server 2008 and later&eol;6 = OFFLINE &pipe; SQL Server 2008 and later&eol;7 = COPYING &pipe; Azure SQL Database Active Geo-Replication&eol;10 = OFFLINE_SECONDARY &pipe; Azure SQL Database Active Geo-Replication |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31150 |18 | |10327 |MSSQL DB '{#DBNAME}': Transactions per second |mssql.db.transactions_sec.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of transactions started for the database per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31151 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}': Suspended |mssql.local_db.is_suspended["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Database state:&eol;0 = Resumed&eol;1 = Suspended |0 |30d |0 | |31129 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31152 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}': State |mssql.local_db.state["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |99 | | |0 | | | | |2 |NULL |0 = Online&eol;1 = Restoring&eol;2 = Recovering&eol;3 = Recovery pending&eol;4 = Suspect&eol;5 = Emergency&eol;6 = Offline |0 |30d |0 | |31129 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31153 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}': Synchronization health |mssql.local_db.synchronization_health["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |106 | | |0 | | | | |2 |NULL |Reflects the intersection of the synchronization state of a database that is joined to the availability group on the availability replica and the availability mode of the availability replica (synchronous-commit or asynchronous-commit mode):&eol;0 = Not healthy. The synchronization_state of the database is 0 (NOT SYNCHRONIZING).&eol;1 = Partially healthy. A database on a synchronous-commit availability replica is considered &eol;partially healthy if synchronization_state is 1 (SYNCHRONIZING).&eol;2 = Healthy. A database on an synchronous-commit availability replica is considered healthy if synchronization_state is 2 (SYNCHRONIZED), and a database on an asynchronous-commit availability replica is considered healthy if synchronization_state is 1 (SYNCHRONIZING). |0 |30d |0 | |31129 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31154 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': Role sequence |mssql.mirroring.role_sequence["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times that mirroring partners have switched the principal and mirror roles due to a failover or forced service. |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31155 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': Role |mssql.mirroring.role["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |109 | | |0 | | | | |2 |NULL |Current role of the local database plays in the database mirroring session.&eol;1 = Principal&eol;2 = Mirror |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31156 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': Safety level |mssql.mirroring.safety_level["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |110 | | |0 | | | | |2 |NULL |Safety setting for updates on the mirror database:&eol;0 = Unknown state&eol;1 = Off [asynchronous]&eol;2 = Full [synchronous] |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31157 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': State |mssql.mirroring.state["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |108 | | |0 | | | | |2 |NULL |State of the mirror database and of the database mirroring session.&eol;0 = Suspended&eol;1 = Disconnected from the other partner&eol;2 = Synchronizing&eol;3 = Pending Failover&eol;4 = Synchronized&eol;5 = The partners are not synchronized. Failover is not possible now.&eol;6 = The partners are synchronized. Failover is potentially possible. For information about the requirements for failover see, Database Mirroring Operating Modes. |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31158 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': Witness state |mssql.mirroring.witness_state["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |111 | | |0 | | | | |2 |NULL |State of the witness in the database mirroring session of the database:&eol;0 = Unknown&eol;1 = Connected&eol;2 = Disconnected |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31159 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Non-Local DB '{#DBNAME}': Log queue size |mssql.non-local_db.log_send_queue_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Amount of log records of the primary database that has not been sent to the secondary databases. |0 |30d |0 | |31131 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31160 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Non-Local DB '{#DBNAME}': Redo log queue size |mssql.non-local_db.redo_queue_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Amount of log records in the log files of the secondary replica that has not yet been redone. |0 |30d |0 | |31131 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31161 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Connected state |mssql.replica.connected_state["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |100 | | |0 | | | | |2 |NULL |Whether a secondary replica is currently connected to the primary replica:&eol;0 : Disconnected. The response of an availability replica to the DISCONNECTED state depends on its role:&eol;On the primary replica, if a secondary replica is disconnected, its secondary databases are marked as NOT SYNCHRONIZED on the primary replica, which waits for the secondary to reconnect;&eol;On a secondary replica, upon detecting that it is disconnected, the secondary replica attempts to reconnect to the primary replica.&eol;1 : Connected. Each primary replica tracks the connection state for every secondary replica in the same availability group. Secondary replicas track the connection state of only the primary replica. |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31162 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Is local |mssql.replica.is_local["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |107 | | |0 | | | | |2 |NULL |Whether the replica is local:&eol;0 = Indicates a remote secondary replica in an availability group whose primary replica is hosted by the local server instance. This value occurs only on the primary replica location.&eol;1 = Indicates a local replica. On secondary replicas, this is the only available value for the availability group to which the replica belongs. |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31163 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Join state |mssql.replica.join_state["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |101 | | |0 | | | | |2 |NULL |0 = Not joined&eol;1 = Joined, standalone instance&eol;2 = Joined, failover cluster instance |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31164 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Operational state |mssql.replica.operational_state["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |102 | | |0 | | | | |2 |NULL |Current operational state of the replica:&eol;0 = Pending failover&eol;1 = Pending&eol;2 = Online&eol;3 = Offline&eol;4 = Failed&eol;5 = Failed, no quorum&eol;6 = Not local |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31165 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Recovery health |mssql.replica.recovery_health["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |103 | | |0 | | | | |2 |NULL |Rollup of the database_state column of the sys.dm_hadr_database_replica_states dynamic management view:&eol;0 : In progress. At least one joined database has a database state other than ONLINE &eol;(database_state is not 0).&eol;1 : Online. All the joined databases have a database state of ONLINE (database_state is 0). |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31166 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Role |mssql.replica.role["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |104 | | |0 | | | | |2 |NULL |Current Always On availability groups role of a local replica or a connected remote replica:&eol;0 = Resolving&eol;1 = Primary&eol;2 = Secondary |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31167 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Sync health |mssql.replica.synchronization_health["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |106 | | |0 | | | | |2 |NULL |Reflects a rollup of the database synchronization state (synchronization_state)of all joined availability databases (also known as replicas) and the availability mode of the replica (synchronous-commit or asynchronous-commit mode). The rollup will reflect the least healthy accumulated state the databases on the replica:&eol;0 : Not healthy. At least one joined database is in the NOT SYNCHRONIZING state.&eol;1 : Partially healthy. Some replicas are not in the target synchronization state: synchronous-commit replicas should be synchronized, and asynchronous-commit replicas should be synchronizing.&eol;2 : Healthy. All replicas are in the target synchronization state: synchronous-commit replicas are synchronized, and asynchronous-commit replicas are synchronizing. |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31168 |18 | |10316 |MySQL: Threads created per second |mysql.threads_created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31169 |18 | |10316 |MySQL: Created tmp tables on disk per second |mysql.created_tmp_disk_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31170 |18 | |10316 |MySQL: Created tmp files on disk per second |mysql.created_tmp_files.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |How many temporary files mysqld has created. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31171 |18 | |10316 |MySQL: Created tmp tables on memory per second |mysql.created_tmp_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31172 |18 | |10320 |MySQL: Threads created per second |mysql.threads_created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31173 |18 | |10320 |MySQL: Created tmp tables on disk per second |mysql.created_tmp_disk_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31174 |18 | |10320 |MySQL: Created tmp files on disk per second |mysql.created_tmp_files.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |How many temporary files mysqld has created. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31175 |18 | |10320 |MySQL: Created tmp tables on memory per second |mysql.created_tmp_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31176 |18 | |10317 |MySQL: Threads created per second |mysql.threads_created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31177 |18 | |10317 |MySQL: Created tmp tables on disk per second |mysql.created_tmp_disk_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31178 |18 | |10317 |MySQL: Created tmp tables on memory per second |mysql.created_tmp_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31179 |18 | |10317 |MySQL: Created tmp files on disk per second |mysql.created_tmp_files.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |How many temporary files mysqld has created. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |31184 |0 | |10328 |PostgreSQL: Cache hit |pgsql.cache.hit["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |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 |31187 |0 | |10328 |PostgreSQL: Age of oldest xid |pgsql.oldest.xid["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |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 |31197 |18 | |10328 |Dbstat: Rows fetched |pgsql.dbstat.sum.tup_fetched.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows fetched by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31198 |18 | |10328 |Dbstat: Backends connected |pgsql.dbstat.sum.numbackends |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connected backends |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31199 |18 | |10328 |Dbstat: Deadlocks |pgsql.dbstat.sum.deadlocks.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of deadlocks detected |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31200 |18 | |10328 |Dbstat: Number temp bytes |pgsql.dbstat.sum.temp_bytes.rate |0 |7d |365d |0 |0 | |b | | |NULL |NULL | | |0 | | | | |0 |NULL |Total amount of data written to temporary files by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31201 |18 | |10328 |Dbstat: Number temp bytes |pgsql.dbstat.sum.temp_files.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of temporary files created by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31202 |18 | |10328 |Dbstat: Rows deleted |pgsql.dbstat.sum.tup_deleted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows deleted by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31203 |18 | |10328 |Archive: Count of archive files |pgsql.archive.count_archived_files |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_activity&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ARCHIVER-VIEW |0 |30d |0 | |31195 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31204 |18 | |10328 |Dbstat: Rows inserted |pgsql.dbstat.sum.tup_inserted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows inserted by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31205 |18 | |10328 |Dbstat: Rows returned |pgsql.dbstat.sum.tup_returned.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows returned by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31206 |18 | |10328 |Dbstat: Rows updated |pgsql.dbstat.sum.tup_updated.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows updated by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31207 |18 | |10328 |Dbstat: Committed transactions |pgsql.dbstat.sum.xact_commit.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions that have been committed |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31208 |18 | |10328 |Dbstat: Roll backed transactions |pgsql.dbstat.sum.xact_rollback.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions that have been rolled back |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31209 |18 | |10328 |Dbstat: Checksum failures |pgsql.dbstat.sum.checksum_failures.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of data page checksum failures detected (or on a shared object), or NULL if data checksums are not enabled. This metric included in PostgreSQL 12 |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31210 |18 | |10328 |WAL: Segments count |pgsql.wal.count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of WAL segments |0 |30d |0 | |31196 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31211 |18 | |10328 |Dbstat: Conflicts |pgsql.dbstat.sum.conflicts.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of queries canceled due to conflicts with recovery. (Conflicts occur only on standby servers; see pg_stat_database_conflicts for details.) |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31212 |18 | |10328 |Dbstat: Blocks write time |pgsql.dbstat.sum.blk_write_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent writing data file blocks by backends, in milliseconds |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31213 |18 | |10328 |Dbstat: Disk blocks read |pgsql.dbstat.sum.blks_read.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of disk blocks read |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31214 |18 | |10328 |Checkpoint: Checkpoint sync time |pgsql.bgwriter.sync_time.rate |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Total amount of time that has been spent in the portion of checkpoint processing where files are synchronized to disk |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31215 |18 | |10328 |Archive: Count of attempts to archive files |pgsql.archive.failed_trying_to_archive |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_activity&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ARCHIVER-VIEW |0 |30d |0 | |31195 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31216 |18 | |10328 |Archive: Count of files need to archive |pgsql.archive.size_files_to_archive |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Size of files to archive |0 |30d |0 | |31195 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31217 |18 | |10328 |Bgwriter: Buffers allocated |pgsql.bgwriter.buffers_alloc.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers allocated |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31218 |18 | |10328 |Bgwriter: Times a backend execute its own fsync |pgsql.bgwriter.buffers_backend_fsync.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times a backend had to execute its own fsync call (normally the background writer handles those even when the backend does its own write) |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31219 |18 | |10328 |Bgwriter: Buffers written directly by a backend |pgsql.bgwriter.buffers_backend.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written directly by a backend |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31220 |18 | |10328 |Checkpoint: Buffers checkpoints written |pgsql.bgwriter.buffers_checkpoint.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written during checkpoints |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31221 |18 | |10328 |Checkpoint: Buffers background written |pgsql.bgwriter.buffers_clean.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written by the background writer |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31222 |18 | |10328 |Checkpoint: Checkpoint write time |pgsql.bgwriter.checkpoint_write_time.rate |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Total amount of time that has been spent in the portion of checkpoint processing where files are written to disk, in milliseconds |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31223 |18 | |10328 |Checkpoint: Requested |pgsql.bgwriter.checkpoints_req.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of requested checkpoints that have been performed |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31224 |18 | |10328 |Checkpoint: By timeout |pgsql.bgwriter.checkpoints_timed.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of scheduled checkpoints that have been performed |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31225 |18 | |10328 |Bgwriter: Number of bgwriter stopped |pgsql.bgwriter.maxwritten_clean.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times the background writer stopped a cleaning scan because it had written too many buffers |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31226 |18 | |10328 |Connections sum: Active |pgsql.connections.active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections executing a query |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31227 |18 | |10328 |Dbstat: Hit blocks read |pgsql.dbstat.sum.blks_hit.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times disk blocks were found already in the buffer cache |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31228 |18 | |10328 |Connections sum: Disabled |pgsql.connections.disabled |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of disabled connections |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31229 |18 | |10328 |Connections sum: Fastpath function call |pgsql.connections.fastpath_function_call |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections executing a fast-path function |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31230 |18 | |10328 |Connections sum: Idle |pgsql.connections.idle |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections waiting for a new client command |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31231 |18 | |10328 |Connections sum: Idle in transaction |pgsql.connections.idle_in_transaction |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections in a transaction state, but not executing a query |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31232 |18 | |10328 |Connections sum: Idle in transaction (aborted) |pgsql.connections.idle_in_transaction_aborted |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections in a transaction state, but not executing a query and one of the statements in the transaction caused an error. |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31233 |18 | |10328 |Connections sum: Prepared |pgsql.connections.prepared |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of prepared transactions&eol;https://www.postgresql.org/docs/current/sql-prepare-transaction.html |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31234 |18 | |10328 |Connections sum: Total |pgsql.connections.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31235 |18 | |10328 |Connections sum: Total % |pgsql.connections.total_pct |0 |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections in percentage |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31236 |18 | |10328 |Connections sum: Waiting |pgsql.connections.waiting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of waiting connections&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#WAIT-EVENT-TABLE |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31237 |18 | |10328 |Dbstat: Blocks read time |pgsql.dbstat.sum.blk_read_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent reading data file blocks by backends, in milliseconds |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31238 |18 | |10328 |Archive: Count of files in archive_status need to archive |pgsql.archive.count_files_to_archive |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |31195 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31239 |18 | |10328 |WAL: Bytes written |pgsql.wal.write |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |WAL write in bytes |0 |30d |0 | |31196 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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}"] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Database age |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31242 |0 | |10328 |DB {#DBNAME}: Database size |pgsql.db.size["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Database size |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31243 |0 | |10328 |DB {#DBNAME}: Get bloating tables |pgsql.db.bloating_tables["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number оf bloating tables |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31244 |18 | |10328 |DB {#DBNAME}: Tuples returned per second |pgsql.dbstat.tup_returned.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of rows returned by queries in this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31245 |18 | |10328 |DB {#DBNAME}: Num of shareupdateexclusive locks |pgsql.locks.shareupdateexclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of shareupdateexclusive locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31246 |18 | |10328 |DB {#DBNAME}: Num of sharerowexclusive locks |pgsql.locks.sharerowexclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of total sharerowexclusive for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31247 |18 | |10328 |DB {#DBNAME}: Num of share locks |pgsql.locks.share["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of share locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31248 |18 | |10328 |DB {#DBNAME}: Num of rowshare locks |pgsql.locks.rowshare["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of rowshare locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31249 |18 | |10328 |DB {#DBNAME}: Num of rowexclusive locks |pgsql.locks.rowexclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of rowexclusive locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31250 |18 | |10328 |DB {#DBNAME}: Num of exclusive locks |pgsql.locks.exclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of exclusive locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31251 |18 | |10328 |DB {#DBNAME}: Num of accessshare locks |pgsql.locks.accessshare["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of accessshare locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31252 |18 | |10328 |DB {#DBNAME}: Num of accessexclusive locks |pgsql.locks.accessexclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of accessexclusive locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31253 |18 | |10328 |DB {#DBNAME}: Rollbacks per second |pgsql.dbstat.xact_rollback.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of transactions in this database that have been rolled back |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31254 |18 | |10328 |DB {#DBNAME}: Commits per second |pgsql.dbstat.xact_commit.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of transactions in this database that have been committed |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31255 |18 | |10328 |DB {#DBNAME}: Tuples updated per second |pgsql.dbstat.tup_updated.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows updated by queries in this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31256 |18 | |10328 |DB {#DBNAME}: Tuples fetched per second |pgsql.dbstat.tup_fetched.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows fetched by queries in this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31257 |18 | |10328 |DB {#DBNAME}: Tuples inserted per second |pgsql.dbstat.tup_inserted.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows inserted by queries in this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31258 |18 | |10328 |DB {#DBNAME}: Tuples deleted per second |pgsql.dbstat.tup_deleted.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows deleted by queries in this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31259 |18 | |10328 |DB {#DBNAME}: Temp_files created per second |pgsql.dbstat.temp_files.rate["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of temporary files created by queries in this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31260 |18 | |10328 |DB {#DBNAME}: Temp_bytes written per second |pgsql.dbstat.temp_bytes.rate["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total amount of data written to temporary files by queries in this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31261 |18 | |10328 |DB {#DBNAME}: Backends connected |pgsql.dbstat.numbackends["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of backends currently connected to this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31262 |18 | |10328 |DB {#DBNAME}: Detected deadlocks per second |pgsql.dbstat.deadlocks.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of detected deadlocks in this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31263 |18 | |10328 |DB {#DBNAME}: Detected conflicts per second |pgsql.dbstat.conflicts.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of queries canceled due to conflicts with recovery in this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31264 |18 | |10328 |DB {#DBNAME}: Checksum failures |pgsql.dbstat.checksum_failures.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of data page checksum failures detected in this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31265 |18 | |10328 |DB {#DBNAME}: Disk blocks read per second |pgsql.dbstat.blks_read.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of disk blocks read in this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31266 |18 | |10328 |DB {#DBNAME}: Blocks hit per second |pgsql.dbstat.blks_hit.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of times disk blocks were found already in the buffer cache, so that a read was not necessary |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31267 |18 | |10328 |DB {#DBNAME}: Disk blocks read per second |pgsql.dbstat.blk_write_time.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time spent writing data file blocks by backends, in milliseconds |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31268 |18 | |10328 |DB {#DBNAME}: Disk blocks read per second |pgsql.dbstat.blk_read_time.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time spent reading data file blocks by backends, in milliseconds |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31269 |18 | |10328 |DB {#DBNAME}: Num of total locks |pgsql.locks.total["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of total locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31270 |18 | |10274 |Memory utilization |vm.memory.utilization |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |29103 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |31285 |18 | |10275 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |31278 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31286 |18 | |10275 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |31278 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31287 |18 | |10275 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |31278 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31288 |18 | |10275 |{#DEVNAME}: Disk utilization |vfs.dev.util[{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |31278 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31289 |18 | |10275 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |31278 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31290 |18 | |10275 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |31278 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31303 |18 | |10280 |Memory utilization |vm.memory.utilization |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |29289 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |31313 |18 | |10281 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |31309 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31314 |18 | |10281 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |31309 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31315 |18 | |10281 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |31309 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31316 |18 | |10281 |{#DEVNAME}: Disk utilization |vfs.dev.util[{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |31309 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31317 |18 | |10281 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |31309 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31318 |18 | |10281 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |31309 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |31331 |18 | |10287 |Free swap space in % |system.swap.pfree |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |31326 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |31349 |18 | |10294 |Free swap space in % |system.swap.pfree |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |31344 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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&bsn;df.tablespace_name AS tablespace,&bsn;df.type AS TYPE,&bsn;SUM(df.bytes) AS used_bytes,&bsn;SUM(df.max_bytes) AS max_bytes,&bsn;SUM(f.free) AS free_bytes,&bsn;ROUND(SUM(df.bytes)/ SUM(df.max_bytes)* 100, 2) AS used_pct,&bsn;DECODE(df.status, 'ONLINE', 1, 'OFFLINE', 2, 'READ ONLY', 3, 0) AS status&bsn;FROM ( SELECT&bsn; ddf.file_id,&bsn; dt.contents AS TYPE,&bsn; dt.STATUS ,&bsn; ddf.file_name,&bsn; ddf.tablespace_name,&bsn; TRUNC(ddf.bytes) AS bytes,&bsn; TRUNC(GREATEST(ddf.bytes, ddf.maxbytes)) AS max_bytes&bsn; FROM&bsn; dba_data_files ddf,&bsn; dba_tablespaces dt&bsn; WHERE&bsn; ddf.tablespace_name = dt.tablespace_name ) df,&bsn; ( SELECT TRUNC(SUM(bytes)) AS FREE, file_id FROM dba_free_space GROUP BY file_id ) f&bsn; WHERE df.file_id = f.file_id (+)&bsn; GROUP BY df.tablespace_name, df.TYPE, df.status&bsn;UNION ALL&bsn;SELECT&bsn; Y.name AS tablespace_name,&bsn; Y.type AS TYPE,&bsn; SUM(Y.bytes) AS bytes,&bsn; SUM(Y.max_bytes) AS max_bytes,&bsn; MAX(NVL(Y.free_bytes, 0)) AS FREE,&bsn; ROUND(SUM(Y.bytes)/ SUM(Y.max_bytes)* 100, 2) AS used_pct,&bsn; DECODE(Y.tbs_status, 'ONLINE', 1, 'OFFLINE', 2, 'READ ONLY', 3, 0) AS status&bsn; FROM ( SELECT&bsn; dtf.tablespace_name AS name,&bsn; dt.contents AS TYPE,&bsn; dt.STATUS AS tbs_status,&bsn; dtf.status AS status,&bsn; dtf.bytes AS bytes,&bsn; (SELECT&bsn; ((f.total_blocks - s.tot_used_blocks)* vp.value)&bsn; FROM ( SELECT tablespace_name, SUM(used_blocks) tot_used_blocks FROM gv$sort_segment&bsn; WHERE tablespace_name != 'DUMMY'&bsn; GROUP BY tablespace_name) s,&bsn; ( SELECT tablespace_name, SUM(blocks) total_blocks FROM dba_temp_files&bsn; WHERE tablespace_name != 'DUMMY'&bsn; GROUP BY tablespace_name) f,&bsn; ( SELECT value FROM v$parameter WHERE name = 'db_block_size') vp&bsn; WHERE&bsn; f.tablespace_name = s.tablespace_name&bsn; AND f.tablespace_name = dtf.tablespace_name ) AS free_bytes,&bsn; CASE WHEN dtf.maxbytes = 0 THEN dtf.bytes&bsn; ELSE dtf.maxbytes END AS max_bytes&bsn; FROM&bsn; sys.dba_temp_files dtf,&bsn; sys.dba_tablespaces dt&bsn; WHERE&bsn; dtf.tablespace_name = dt.tablespace_name ) Y&bsn; GROUP BY Y.name, Y.TYPE, Y.tbs_status ORDER BY tablespace;| |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 |31366 |11 | |10329 |Oracle: Get system metrics |db.odbc.get[get_system_metrics,"{$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) AS METRIC, to_number(VALUE)&bsn; FROM V$SYSTEM_PARAMETER WHERE NAME IN ('sessions', 'processes', 'db_files')&bsn;UNION&bsn; SELECT 'SESSION::' &pipe;&pipe; INITCAP(STATUS)&pipe;&pipe; ' ' &pipe;&pipe; INITCAP(TYPE) AS METRIC, COUNT(*) AS VALUE&bsn; FROM V$SESSION GROUP BY STATUS, TYPE&bsn;UNION&bsn; SELECT 'SESSION::Total', COUNT(*) AS VALUE&bsn; FROM V$SESSION&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 gv$session)&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 'FRA::Space Limit' AS METRIC, space_limit AS VALUE FROM V$RECOVERY_FILE_DEST&bsn;UNION&bsn; SELECT 'FRA::Space Used', space_used AS VALUE FROM V$RECOVERY_FILE_DEST&bsn;UNION&bsn; SELECT 'FRA::Space Reclaimable', space_reclaimable AS VALUE FROM V$RECOVERY_FILE_DEST&bsn;UNION&bsn; SELECT 'FRA::Number Of Files', number_of_files AS VALUE 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(*) AS VALUE FROM V$RESTORE_POINT&bsn;UNION&bsn; SELECT 'PROC::Procnum', COUNT(*) FROM v$process&bsn;UNION&bsn; SELECT 'DATAFILE::Count', COUNT(*) FROM v$datafile&bsn;UNION&bsn; SELECT 'SGA::' &pipe;&pipe; INITCAP(pool), SUM(bytes) 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}');| |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 |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 |31370 |18 | |10329 |Oracle: Version |oracle.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Oracle Server version. |0 |30d |0 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31371 |18 | |10329 |Oracle: Sessions lock rate |oracle.session_lock_rate |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The percentage of locked sessions. Locks are mechanisms that prevent destructive interaction between transactions accessing the same resource—either user objects such as tables and rows or system objects not visible to users, such as shared data structures in memory and data dictionary rows. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31372 |18 | |10329 |Oracle: Physical writes per second |oracle.physical_writes_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Writes per second. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31373 |18 | |10329 |Oracle: Number of processes |oracle.processes_count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31374 |18 | |10329 |Oracle: Processes limit |oracle.processes_limit |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Max user processes. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31375 |18 | |10329 |Oracle: Redo logs available to switch |oracle.redo_logs_available |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of available for log switching inactive/unused REDO logs. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31376 |18 | |10329 |Oracle: Rows per sort |oracle.rows_per_sort |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The average number of rows per sort for all types of sorts performed. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31377 |18 | |10329 |Oracle: SQL service response time |oracle.service_response_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |SQL service response time in seconds. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31378 |18 | |10329 |Oracle: Active background sessions |oracle.session_active_background |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active background sessions. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31379 |18 | |10329 |Oracle: Active user sessions |oracle.session_active_user |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active user sessions. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31380 |18 | |10329 |Oracle: Sessions concurrency |oracle.session_concurrency_rate |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The percentage of concurrency. Concurrency is a DB behaviour when different transactions request to change the same resource - in case of modifying data transactions sequentially block temporarily the right to change data, the rest of the transactions are waiting for access. In the case when access for resource is locked for a long time, then the concurrency grows (like the transaction queue) and this often has an extremely negative impact on performance. A high contention value does not indicate the root cause of the problem, but is a signal to search for it. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31381 |18 | |10329 |Oracle: Session count |oracle.session_count |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Session count. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31382 |18 | |10329 |Oracle: Inactive user sessions |oracle.session_inactive_user |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of inactive user sessions. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31383 |18 | |10329 |Oracle: Sessions limit |oracle.session_limit |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |User and system sessions. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31384 |18 | |10329 |Oracle: Sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME}s |oracle.session_long_time_locked |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of the prolongely locked sessions. (You can change maximum session lock duration in seconds for query by {$ORACLE.SESSION.LOCK.MAX.TIME} macro. Default 600 sec) |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31385 |18 | |10329 |Oracle: User rollbacks per second |oracle.user_rollbacks_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times that users manually issue the ROLLBACK statement or an error occurred during a user's transactions. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31386 |18 | |10329 |Oracle: SGA, buffer cache |oracle.sga_buffer_cache |0 |7d |365d |0 |3 | |Bytes | | |NULL |NULL | | |0 | | | | |0 |NULL |The size of the cache of standard blocks. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31387 |18 | |10329 |Oracle: Physical writes bytes per second |oracle.physical_write_bytes_rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Write bytes per second. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31388 |18 | |10329 |Oracle: SGA, java pool |oracle.sga_java_pool |0 |7d |365d |0 |3 | |Bytes | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory is allocated from the java pool. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31389 |18 | |10329 |Oracle: SGA, large pool |oracle.sga_large_pool |0 |7d |365d |0 |3 | |Bytes | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory is allocated from the large pool. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31390 |18 | |10329 |Oracle: SGA, log buffer |oracle.sga_log_buffer |0 |7d |365d |0 |3 | |Bytes | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes allocated for the redo log buffer. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31391 |18 | |10329 |Oracle: SGA, shared pool |oracle.sga_shared_pool |0 |7d |365d |0 |3 | |Bytes | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory is allocated from the shared pool. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31392 |18 | |10329 |Oracle: Shared pool free % |oracle.shared_pool_free |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Shared pool free memory percent. Free/Total |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31393 |18 | |10329 |Oracle: Total sorts per user call |oracle.sorts_per_user_call |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total sorts per user call. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31394 |18 | |10329 |Oracle: Temp space used |oracle.temp_space_used |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Temp space used. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31395 |18 | |10329 |Oracle: PGA, Total allocated |oracle.total_pga_allocated |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current amount of PGA memory allocated by the instance. The Oracle Database attempts to keep this number below the value of the PGA_AGGREGATE_TARGET initialization parameter. However, it is possible for the PGA allocated to exceed that value by a small percentage and for a short period of time when the work area workload is increasing very rapidly or when PGA_AGGREGATE_TARGET is set to a small value. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31396 |18 | |10329 |Oracle: PGA, Total freeable |oracle.total_pga_freeable |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes of PGA memory in all processes that could be freed back to the operating system. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31397 |18 | |10329 |Oracle: PGA, Total inuse |oracle.total_pga_used |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates how much PGA memory is currently consumed by work areas. This number can be used to determine how much memory is consumed by other consumers of the PGA memory (for example, PL/SQL or Java). |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31398 |18 | |10329 |Oracle: Uptime |oracle.uptime |0 |7d |0d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Oracle instance uptime in seconds. |0 |30d |0 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31399 |18 | |10329 |Oracle: User '{$ORACLE.USER}' expire password |oracle.user_expire_password |0 |7d |365d |0 |0 | |days | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of days before zabbix account password expired. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31400 |18 | |10329 |Oracle: SGA, fixed |oracle.sga_fixed |0 |7d |365d |0 |3 | |Bytes | | |NULL |NULL | | |0 | | | | |0 |NULL |The fixed SGA is an internal housekeeping area. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31401 |18 | |10329 |Oracle: Physical reads bytes per second |oracle.physical_read_bytes_rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Read bytes per second. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31402 |18 | |10329 |Oracle: Physical reads per second |oracle.physical_reads_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Reads per second. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31403 |18 | |10329 |Oracle: Enqueue timeouts per second |oracle.enqueue_timeouts_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Enqueue timeouts per second. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31404 |18 | |10329 |Oracle: Active parallel sessions |oracle.active_parallel_sessions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active parallel sessions. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31405 |18 | |10329 |Oracle: Active serial sessions |oracle.active_serial_sessions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active serial sessions. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31406 |18 | |10329 |Oracle: Average active sessions |oracle.active_sessions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The average active sessions at a point in time. It is the number of sessions that are either working or waiting. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31407 |18 | |10329 |Oracle: Archiver state |oracle.archiver_state |0 |7d |365d |0 |3 | | | | |NULL |116 | | |0 | | | | |0 |NULL |Automatic archiving status. |0 |30d |0 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31408 |18 | |10329 |Oracle: Buffer cache hit ratio |oracle.buffer_cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Ratio of buffer cache hits. (LogRead - PhyRead)/LogRead |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31409 |18 | |10329 |Oracle: Global cache blocks corrupted |oracle.cache_blocks_corrupt |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of blocks that encountered a corruption or checksum failure during interconnect. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31410 |18 | |10329 |Oracle: Global cache blocks lost |oracle.cache_blocks_lost |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of global cache blocks lost |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31411 |18 | |10329 |Oracle: Cursor cache hit ratio |oracle.cursor_cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Ratio of cursor cache hits. CursorCacheHit/SoftParse |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31412 |18 | |10329 |Oracle: Database CPU time ratio |oracle.database_cpu_time_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Calculated by dividing the total CPU used by the database by the Oracle time model statistic DB time. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31413 |18 | |10329 |Oracle: Database wait time ratio |oracle.database_wait_time_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Wait time: the time that the server process spends waiting for available shared resources (to be released by other server processes) such as latches, locks, data buffers, and so on |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31414 |18 | |10329 |Oracle: Datafiles count |oracle.db_files_count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Current number of datafile. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31415 |18 | |10329 |Oracle: Datafiles limit |oracle.db_files_limit |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Max allowable number of datafile. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31416 |18 | |10329 |Oracle: Disk sort per second |oracle.disk_sorts |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of sorts going to disk per second |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31417 |18 | |10329 |Oracle: FRA, Number of files |oracle.fra_number_of_files |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of files in the fast recovery area |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31418 |18 | |10329 |Oracle: PGA, Aggregate target parameter |oracle.pga_target |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current value of the PGA_AGGREGATE_TARGET initialization parameter. If this parameter is not set, then its value is 0 and automatic management of PGA memory is disabled. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31419 |18 | |10329 |Oracle: FRA, Number of restore points |oracle.fra_restore_point |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31420 |18 | |10329 |Oracle: FRA, Space limit |oracle.fra_space_limit |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of disk space (in bytes) that the database can use for the fast recovery area. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31421 |18 | |10329 |Oracle: FRA, Space reclaimable |oracle.fra_space_reclaimable |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total amount of disk space (in bytes) that can be created by deleting obsolete, redundant, and other low priority files from the fast recovery area. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31422 |18 | |10329 |Oracle: FRA, Used space |oracle.fra_space_used |0 |7d |365d |0 |3 | |Bytes | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of disk space (in bytes) used by fast recovery area files created in current and all previous fast recovery areas. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31423 |18 | |10329 |Oracle: FRA, Used space in % |oracle.fra_usable_pct |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31424 |18 | |10329 |Oracle: GC CR block received per second |oracle.gc_cr_block_received_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |GC CR block received per second. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31425 |18 | |10329 |Oracle: Instance hostname |oracle.instance_hostname |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Name of the host machine. |0 |30d |0 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31426 |18 | |10329 |Oracle: Instance name |oracle.instance_name |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Name of the instance. |0 |30d |0 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31427 |18 | |10329 |Oracle: Instance status |oracle.instance_status |0 |7d |365d |0 |3 | | | | |NULL |114 | | |0 | | | | |0 |NULL |Status of the instance. |0 |30d |0 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31428 |18 | |10329 |Oracle: Instance role |oracle.instance.role |0 |7d |365d |0 |3 | | | | |NULL |115 | | |0 | | | | |0 |NULL |Indicates whether the instance is an active instance or an inactive secondary instance. |0 |30d |0 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31429 |18 | |10329 |Oracle: Library cache hit ratio |oracle.library_cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Ratio of library cache hits. Hits/Pins |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31430 |18 | |10329 |Oracle: Logons per second |oracle.logons_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logon attempts. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31431 |18 | |10329 |Oracle: Long table scans per second |oracle.long_table_scans_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of long table scans per second. A table is considered 'long' if the table is not cached and if its high-water mark is greater than 5 blocks. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31432 |18 | |10329 |Oracle: PGA, Global memory bound |oracle.pga_global_bound |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum size of a work area executed in automatic mode. |0 |30d |0 | |31366 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31433 |18 | |10329 |Oracle: Memory sorts ratio |oracle.memory_sorts_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The percentage of sorts (from ORDER BY clauses or index building) that are done to disk vs in-memory. |0 |30d |0 | |31366 |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, 'PDB' AS TYPE 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 |31439 |18 | |10329 |Archivelog '{#DEST_NAME}': Error |oracle.archivelog_error["{#DEST_NAME}"] |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Displays the error text |0 |30d |0 | |31361 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31440 |18 | |10329 |Archivelog '{#DEST_NAME}': Last sequence |oracle.archivelog_log_sequence["{#DEST_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Identifies the sequence number of the last archived redo log to be archived |0 |30d |0 | |31361 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31441 |18 | |10329 |Archivelog '{#DEST_NAME}': Status |oracle.archivelog_log_status["{#DEST_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |118 | | |0 | | | | |2 |NULL |Identifies the current status of the destination: 1 - 'Valid', 2 - 'Dederred',3 - 'Error', 0 - 'Unknown' |0 |30d |0 | |31361 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31442 |18 | |10329 |ASM '{#DG_NAME}': Free size |oracle.asm_free_size["{#DG_NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Free size of ASM disk group. |0 |30d |0 | |31363 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31443 |18 | |10329 |ASM '{#DG_NAME}': Total size |oracle.asm_total_size["{#DG_NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total size of ASM disk group. |0 |30d |0 | |31363 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31444 |18 | |10329 |ASM '{#DG_NAME}': Free size |oracle.asm_used_pct["{#DG_NAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Usage percent of ASM disk group. |0 |30d |0 | |31363 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31445 |18 | |10329 |Oracle Database '{#DBNAME}': Force logging |oracle.db_force_logging["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |119 | | |0 | | | | |2 |NULL |Indicates whether the database is under force logging mode (YES) or not (NO) |0 |30d |0 | |31367 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31446 |18 | |10329 |Oracle Database '{#DBNAME}': Log mode |oracle.db_log_mode["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |120 | | |0 | | | | |2 |NULL |Archive log mode, 0 - 'NOARCHIVELOG', 1 - 'ARCHIVELOG', 2 - 'MANUAL' |0 |30d |0 | |31367 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31447 |18 | |10329 |Oracle Database '{#DBNAME}': Open status |oracle.db_open_mode["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |112 | | |0 | | | | |2 |NULL |1 - 'MOUNTED', 2 - 'READ WRITE', 3 - 'READ ONLY', 4 - 'READ ONLY WITH APPLY' (A physical standby database is open in real-time query mode) |0 |30d |0 | |31367 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31448 |18 | |10329 |Oracle Database '{#DBNAME}': Role |oracle.db_role["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |113 | | |0 | | | | |2 |NULL |Current role of the database, 1 - 'SNAPSHOT STANDBY', 2 - 'LOGICAL STANDBY', 3 - 'PHYSICAL STANDBY', 4 - 'PRIMARY ', 5 -'FAR SYNC' |0 |30d |0 | |31367 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31449 |18 | |10329 |Oracle Database '{#DBNAME}': Open status |oracle.pdb_open_mode["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |112 | | |0 | | | | |2 |NULL |1 - 'MOUNTED', 2 - 'READ WRITE', 3 - 'READ ONLY', 4 - 'READ ONLY WITH APPLY' (A physical standby database is open in real-time query mode) |0 |30d |0 | |31368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31450 |18 | |10329 |Oracle TBS '{#TABLESPACE}': Tablespace free, bytes |oracle.tbs_free_bytes["{#TABLESPACE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |31362 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31451 |18 | |10329 |Oracle TBS '{#TABLESPACE}': Tablespace max size, bytes |oracle.tbs_max_bytes["{#TABLESPACE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |31362 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31452 |18 | |10329 |Oracle TBS '{#TABLESPACE}': Open status |oracle.tbs_status["{#TABLESPACE}"] |0 |7d |365d |0 |3 | | | | |NULL |117 | | |0 | | | | |2 |NULL |Tablespace status. 1 - 'ONLINE' 2 - 'OFFLINE' 3- 'READ ONLY' |0 |30d |0 | |31362 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31453 |18 | |10329 |Oracle TBS '{#TABLESPACE}': Tablespace usage, bytes |oracle.tbs_used_bytes["{#TABLESPACE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |31362 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31454 |18 | |10329 |Oracle TBS '{#TABLESPACE}': Tablespace usage percent |oracle.tbs_used_pct["{#TABLESPACE}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |31362 |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 |31457 |18 | |10291 |Network interfaces discovery |net.if.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of installed network interfaces. |0 |30d |1 | |31455 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |31471 |18 | |10291 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFNAME}"] |0 |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |31455 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31472 |18 | |10291 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status["{#IFNAME}"] |0 |7d |0 |0 |3 | | | | |NULL |81 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |31455 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31473 |18 | |10291 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFNAME}"] |0 |7d |0d |0 |3 | | | | |NULL |79 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |31455 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |31479 |18 | |10298 |Network interfaces discovery |net.if.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of installed network interfaces. |0 |30d |1 | |31477 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |31493 |18 | |10298 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFNAME}"] |0 |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |31477 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31494 |18 | |10298 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status["{#IFNAME}"] |0 |7d |0 |0 |3 | | | | |NULL |81 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |31477 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31495 |18 | |10298 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFNAME}"] |0 |7d |0d |0 |3 | | | | |NULL |79 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |31477 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10020 |0 | |10001 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |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 |10059 |0 | |10001 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29834 |20 |1.3.6.1.2.1.1.3.0 |10237 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29835 |20 |1.3.6.1.2.1.1.6.0 |10237 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29836 |20 |1.3.6.1.2.1.1.4.0 |10237 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29837 |20 |1.3.6.1.2.1.1.2.0 |10237 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29838 |20 |1.3.6.1.2.1.1.1.0 |10237 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10073 |5 | |10084 |Number of processed numeric (float) values per second |zabbix[wcache,values,float] |1m |1w |365d |0 |0 | | | | |10061 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10074 |5 | |10084 |Number of processed character values per second |zabbix[wcache,values,str] |1m |1w |365d |0 |0 | | | | |10062 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10075 |5 | |10084 |Number of processed log values per second |zabbix[wcache,values,log] |1m |1w |365d |0 |0 | | | | |10063 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10076 |5 | |10084 |Number of processed numeric (unsigned) values per second |zabbix[wcache,values,uint] |1m |1w |365d |0 |0 | | | | |10064 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10077 |5 | |10084 |Number of processed text values per second |zabbix[wcache,values,text] |1m |1w |365d |0 |0 | | | | |10065 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10078 |5 | |10084 |Number of processed not supported values per second |zabbix[wcache,values,not supported] |1m |1w |365d |0 |0 | | | | |10066 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22833 |0 | |10074 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |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 |22834 |0 | |10074 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22873 |0 | |10075 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |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 |22874 |0 | |10075 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22913 |0 | |10076 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |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 |22914 |0 | |10076 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22953 |0 | |10077 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |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 |22954 |0 | |10077 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22993 |0 | |10078 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |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 |22994 |0 | |10078 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23033 |0 | |10079 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |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 |23034 |0 | |10079 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23160 |0 | |10081 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |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 |23161 |0 | |10081 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23252 |5 | |10084 |Utilization of alerter internal processes, in % |zabbix[process,alerter,avg,busy] |1m |1w |365d |0 |0 | |% | | |22424 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23253 |5 | |10084 |Utilization of configuration syncer internal processes, in % |zabbix[process,configuration syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |22412 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23255 |5 | |10084 |Utilization of discoverer data collector processes, in % |zabbix[process,discoverer,avg,busy] |1m |1w |365d |0 |0 | |% | | |22430 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23256 |5 | |10084 |Utilization of escalator internal processes, in % |zabbix[process,escalator,avg,busy] |1m |1w |365d |0 |0 | |% | | |22422 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23257 |5 | |10084 |Utilization of history syncer internal processes, in % |zabbix[process,history syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |22406 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23258 |5 | |10084 |Utilization of housekeeper internal processes, in % |zabbix[process,housekeeper,avg,busy] |1m |1w |365d |0 |0 | |% | | |22408 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23259 |5 | |10084 |Utilization of http poller data collector processes, in % |zabbix[process,http poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |22402 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23260 |5 | |10084 |Utilization of icmp pinger data collector processes, in % |zabbix[process,icmp pinger,avg,busy] |1m |1w |365d |0 |0 | |% | | |22418 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23261 |5 | |10084 |Utilization of ipmi poller data collector processes, in % |zabbix[process,ipmi poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |22416 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23262 |5 | |10084 |Utilization of java poller data collector processes, in % |zabbix[process,java poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |22689 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23264 |5 | |10084 |Utilization of poller data collector processes, in % |zabbix[process,poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |22399 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23265 |5 | |10084 |Utilization of proxy poller data collector processes, in % |zabbix[process,proxy poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |22420 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23266 |5 | |10084 |Utilization of self-monitoring internal processes, in % |zabbix[process,self-monitoring,avg,busy] |1m |1w |365d |0 |0 | |% | | |22414 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23267 |5 | |10084 |Utilization of snmp trapper data collector processes, in % |zabbix[process,snmp trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |23171 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23268 |5 | |10084 |Utilization of timer internal processes, in % |zabbix[process,timer,avg,busy] |1m |1w |365d |0 |0 | |% | | |22426 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23269 |5 | |10084 |Utilization of trapper data collector processes, in % |zabbix[process,trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |22404 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23270 |5 | |10084 |Utilization of unreachable poller data collector processes, in % |zabbix[process,unreachable poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |22400 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23271 |5 | |10084 |Zabbix queue over 10 minutes |zabbix[queue,10m] |10m |1w |365d |0 |3 | | | | |22219 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23272 |5 | |10084 |Zabbix queue |zabbix[queue] |1m |1w |365d |0 |3 | | | | |23251 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23273 |5 | |10084 |Zabbix configuration cache, % used |zabbix[rcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |22189 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23274 |5 | |10084 |Zabbix history write cache, % used |zabbix[wcache,history,pused] |1m |1w |365d |0 |0 | |% | | |22183 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23275 |5 | |10084 |Zabbix history index cache, % used |zabbix[wcache,index,pused] |1m |1w |365d |0 |0 | |% | | |22396 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23276 |5 | |10084 |Zabbix trend write cache, % used |zabbix[wcache,trend,pused] |1m |1w |365d |0 |0 | |% | | |22185 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23277 |5 | |10084 |Number of processed values per second |zabbix[wcache,values] |1m |1w |365d |0 |0 | | | | |22187 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23287 |0 | |10084 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |10020 |10 | | |0 | | | | |0 |1 |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 |23288 |0 | |10084 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |10059 |NULL | | |0 | | | | |0 |1 | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23319 |0 | |10001 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23320 |0 | |10074 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23321 |0 | |10075 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23322 |0 | |10076 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23323 |0 | |10077 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23324 |0 | |10078 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23325 |0 | |10079 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23326 |0 | |10081 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23327 |0 | |10084 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23319 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23328 |5 | |10084 |Utilization of vmware data collector processes, in % |zabbix[process,vmware collector,avg,busy] |1m |1w |365d |0 |0 | |% | | |22401 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23620 |5 | |10084 |Zabbix value cache, % used |zabbix[vcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |22191 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23625 |5 | |10084 |Zabbix value cache hits |zabbix[vcache,cache,hits] |1m |1w |365d |0 |0 | |vps | | |22196 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23628 |5 | |10084 |Zabbix value cache misses |zabbix[vcache,cache,misses] |1m |1w |365d |0 |0 | |vps | | |22199 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23635 |5 | |10084 |Zabbix vmware cache, % used |zabbix[vmware,buffer,pused] |1m |1w |365d |0 |0 | |% | | |23634 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23662 |5 | |10084 |Zabbix value cache operating mode |zabbix[vcache,cache,mode] |1m |1w |365d |0 |3 | | | | |23661 |15 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23664 |5 | |10084 |Utilization of task manager internal processes, in % |zabbix[process,task manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |23663 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |25367 |5 | |10084 |Utilization of ipmi manager internal processes, in % |zabbix[process,ipmi manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |25366 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |25371 |5 | |10084 |Utilization of alert manager internal processes, in % |zabbix[process,alert manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |25370 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |25667 |5 | |10084 |Utilization of preprocessing manager internal processes, in % |zabbix[process,preprocessing manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |25665 |NULL | | |0 | | | | |0 |NULL | |0 |30 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |25668 |5 | |10084 |Utilization of preprocessing worker internal processes, in % |zabbix[process,preprocessing worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |25666 |NULL | | |0 | | | | |0 |NULL | |0 |30 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27149 |3 | |10204 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27067 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27150 |3 | |10204 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27066 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27151 |3 | |10204 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27065 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27180 |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]|10207 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27181 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27182 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27183 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27184 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27185 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27186 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27187 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27188 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27189 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27190 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10207 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27191 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |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 |27192 |3 | |10207 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27193 |3 | |10207 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27194 |3 | |10207 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27195 |17 | |10207 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27199 |20 |1.3.6.1.2.1.1.5.0 |10207 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27202 |5 | |10207 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27215 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10208 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27216 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27217 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27218 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27219 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27220 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27221 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27222 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27223 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |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 |27224 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27225 |3 | |10208 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27226 |3 | |10208 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27227 |3 | |10208 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27228 |17 | |10208 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27232 |20 |1.3.6.1.2.1.1.5.0 |10208 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27235 |5 | |10208 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27251 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10210 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27252 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27253 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27254 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27255 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27256 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27257 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27258 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27259 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |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 |27260 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27261 |3 | |10210 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27262 |3 | |10210 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27263 |3 | |10210 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27264 |17 | |10210 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27268 |20 |1.3.6.1.2.1.1.5.0 |10210 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27271 |5 | |10210 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27272 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10211 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27273 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27274 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27275 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27276 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27277 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27278 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27279 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27280 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |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 |27281 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27282 |3 | |10211 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27283 |3 | |10211 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27284 |3 | |10211 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27285 |17 | |10211 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27289 |20 |1.3.6.1.2.1.1.5.0 |10211 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27292 |5 | |10211 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27299 |20 |1.3.6.1.4.1.1991.1.1.2.1.52.0 |10210 |CPU utilization |system.cpu.util[snAgGblCpuUtil1MinAvg.0] |1m |7d |365d |0 |0 | |% | | |27294 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The statistics collection of 1 minute CPU utilization. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27301 |20 |1.3.6.1.4.1.1991.1.1.2.1.52.0 |10211 |CPU utilization |system.cpu.util[snAgGblCpuUtil1MinAvg.0] |1m |7d |365d |0 |0 | |% | | |27294 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The statistics collection of 1 minute CPU utilization. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27321 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10218 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27322 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27323 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27324 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27325 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27326 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27327 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27328 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27329 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27330 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27331 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10218 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27332 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |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 |27333 |3 | |10218 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27334 |3 | |10218 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27335 |3 | |10218 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27336 |17 | |10218 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27340 |20 |1.3.6.1.2.1.1.5.0 |10218 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27343 |5 | |10218 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27365 |3 | |10220 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27366 |3 | |10220 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27367 |3 | |10220 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27368 |17 | |10220 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27372 |20 |1.3.6.1.2.1.1.5.0 |10220 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27375 |5 | |10220 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27380 |20 |1.3.6.1.4.1.9.2.1.58 |10220 |CPU utilization |system.cpu.util[avgBusy5] |5m |7d |365d |0 |0 | |% | | |27376 |NULL | | |0 | | | | |0 |NULL |MIB: OLD-CISCO-CPU-MIB&eol;5 minute exponentially-decayed moving average of the CPU busy percentage.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27382 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10220 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |27378 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27383 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10220 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |27379 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27385 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10218 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |27378 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27386 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10218 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |27379 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27397 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10218 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |27390 |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 |27398 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10218 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |27391 |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 |27399 |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] |10218 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |27393 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27400 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10218 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |27394 |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 |27401 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.5.1.2] |10218 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |27395 |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 |27402 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.4.1.2] |10218 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |27396 |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 |27409 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10220 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |27390 |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 |27410 |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] |10220 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |27393 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27411 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10220 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |27394 |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 |27412 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.5.1.2] |10220 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |27395 |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 |27413 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.4.1.2] |10220 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |27396 |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 |27425 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10218 |{#SNMPVALUE}: Free memory |vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |27415 |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 |27426 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10218 |{#SNMPVALUE}: Used memory |vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |27416 |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 |27427 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10218 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[cpmCPUTotal5minRev.{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |27417 |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 |27428 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10218 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |27419 |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27429 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10218 |{#SNMPVALUE}: Temperature status |sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27420 |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 |27430 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10218 |{#SNMPVALUE}: Temperature |sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |27421 |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 |27431 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10218 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27422 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27432 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10218 |{#SENSOR_INFO}: Fan status |sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27423 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27443 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10220 |{#SNMPVALUE}: Free memory |vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |27415 |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 |27444 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10220 |{#SNMPVALUE}: Used memory |vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |27416 |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 |27445 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10220 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |27419 |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27446 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10220 |{#SNMPVALUE}: Temperature status |sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27420 |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 |27447 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10220 |{#SNMPVALUE}: Temperature |sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |27421 |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 |27448 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10220 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27422 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27449 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10220 |{#SENSOR_INFO}: Fan status |sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27423 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27450 |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]|10221 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27451 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27452 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27453 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27454 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27455 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27456 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27457 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27458 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27459 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27460 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10221 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27461 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |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 |27462 |3 | |10221 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27463 |3 | |10221 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27464 |3 | |10221 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27465 |17 | |10221 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27469 |20 |1.3.6.1.2.1.1.5.0 |10221 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27472 |5 | |10221 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27486 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10222 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27487 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27488 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27489 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27490 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27491 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27492 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27493 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27494 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |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 |27495 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27496 |3 | |10222 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27497 |3 | |10222 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27498 |3 | |10222 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27499 |17 | |10222 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27503 |20 |1.3.6.1.2.1.1.5.0 |10222 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27506 |5 | |10222 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27520 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10223 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27521 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27522 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27523 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27524 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27525 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27526 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27527 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27528 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27529 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27530 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10223 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27531 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |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 |27532 |3 | |10223 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27533 |3 | |10223 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27534 |3 | |10223 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27535 |17 | |10223 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27539 |20 |1.3.6.1.2.1.1.5.0 |10223 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27542 |5 | |10223 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27556 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10224 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27557 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27558 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27559 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27560 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27561 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27562 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27563 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27564 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27565 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27566 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10224 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27567 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |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 |27568 |3 | |10224 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27569 |3 | |10224 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27570 |3 | |10224 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27571 |17 | |10224 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27575 |20 |1.3.6.1.2.1.1.5.0 |10224 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27578 |5 | |10224 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27619 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10226 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27078 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27620 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27079 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27621 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27086 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27622 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27084 |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 |27623 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27082 |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 |27624 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27083 |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 |27625 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27085 |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 |27626 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27081 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27627 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27087 |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 |27628 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27080 |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 |27629 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10226 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27630 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10226 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |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 |27631 |3 | |10226 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27632 |3 | |10226 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27633 |3 | |10226 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27634 |17 | |10226 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27638 |20 |1.3.6.1.2.1.1.5.0 |10226 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27641 |5 | |10226 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27642 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10227 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27643 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27644 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27645 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27646 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27647 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27648 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27649 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27650 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27651 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27652 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10227 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27653 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |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 |27654 |3 | |10227 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27655 |3 | |10227 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27656 |3 | |10227 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27657 |17 | |10227 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27661 |20 |1.3.6.1.2.1.1.5.0 |10227 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27664 |5 | |10227 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27722 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10229 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27723 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27724 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27725 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27726 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27727 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27728 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27729 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27730 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27731 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27732 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10229 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27733 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |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 |27734 |3 | |10229 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27735 |3 | |10229 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27736 |3 | |10229 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27737 |17 | |10229 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27741 |20 |1.3.6.1.2.1.1.5.0 |10229 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27744 |5 | |10229 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27756 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10230 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27757 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27758 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27759 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27760 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27761 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27762 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27763 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27764 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |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 |27765 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27766 |3 | |10230 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27767 |3 | |10230 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27768 |3 | |10230 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27769 |17 | |10230 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27773 |20 |1.3.6.1.2.1.1.5.0 |10230 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27776 |5 | |10230 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27788 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10231 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27789 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27790 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27791 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27792 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27793 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27794 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27795 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27796 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27797 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27798 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10231 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27799 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |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 |27800 |3 | |10231 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27801 |3 | |10231 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27802 |3 | |10231 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27803 |17 | |10231 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27807 |20 |1.3.6.1.2.1.1.5.0 |10231 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27810 |5 | |10231 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27872 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10233 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27873 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27874 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27875 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27876 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27877 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27878 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27879 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27880 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |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 |27881 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27882 |3 | |10233 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27883 |3 | |10233 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27884 |3 | |10233 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27885 |17 | |10233 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27889 |20 |1.3.6.1.2.1.1.5.0 |10233 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27892 |5 | |10233 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27909 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10234 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27910 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27911 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27912 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27913 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27914 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27915 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27916 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27917 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |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 |27918 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27919 |3 | |10234 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27920 |3 | |10234 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27921 |3 | |10234 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27922 |17 | |10234 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27926 |20 |1.3.6.1.2.1.1.5.0 |10234 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27929 |5 | |10234 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27944 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10235 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27945 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27946 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27947 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27948 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27949 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27950 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27951 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27952 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27953 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27954 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10235 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27955 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |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 |27956 |3 | |10235 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27957 |3 | |10235 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27958 |3 | |10235 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27959 |17 | |10235 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27963 |20 |1.3.6.1.2.1.1.5.0 |10235 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27966 |5 | |10235 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27976 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10236 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27078 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27977 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27079 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27978 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27086 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27979 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27084 |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 |27980 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27082 |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 |27981 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27083 |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 |27982 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27085 |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 |27983 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27081 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27984 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27087 |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 |27985 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27080 |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 |27986 |3 | |10236 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27987 |3 | |10236 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27988 |3 | |10236 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27989 |17 | |10236 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27993 |20 |1.3.6.1.2.1.1.5.0 |10236 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27996 |5 | |10236 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28005 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10237 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27078 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28006 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27079 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28007 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27086 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28008 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27084 |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 |28009 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27082 |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 |28010 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27083 |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 |28011 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27085 |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 |28012 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27081 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28013 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27087 |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 |28014 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27080 |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 |28015 |3 | |10237 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28016 |3 | |10237 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28017 |3 | |10237 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28018 |17 | |10237 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28022 |20 |1.3.6.1.2.1.1.5.0 |10237 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28025 |5 | |10237 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28118 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10250 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28119 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28120 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28121 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28122 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28123 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28124 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28125 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28126 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28127 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |28128 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10250 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28129 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |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 |28130 |3 | |10250 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28131 |3 | |10250 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28132 |3 | |10250 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28133 |17 | |10250 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28137 |20 |1.3.6.1.2.1.1.5.0 |10250 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28140 |5 | |10250 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28175 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10251 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28176 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28177 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28178 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28179 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28180 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28181 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28182 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28183 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28184 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28185 |3 | |10251 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28186 |3 | |10251 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28187 |3 | |10251 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28188 |17 | |10251 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28192 |20 |1.3.6.1.2.1.1.5.0 |10251 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28195 |5 | |10251 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28207 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10253 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |27393 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28208 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10253 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |27419 |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28209 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10253 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |27379 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28210 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10253 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |27378 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28212 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.4.1.2] |10253 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |27396 |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 |28213 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.5.1.2] |10253 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |27395 |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 |28214 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10253 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |27394 |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 |28215 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10253 |{#SENSOR_INFO}: Fan status |sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27423 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28216 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10253 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27422 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28217 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10253 |{#SNMPVALUE}: Temperature status |sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27420 |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 |28218 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10253 |{#SNMPVALUE}: Temperature |sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |27421 |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 |28219 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10253 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |27390 |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 |28220 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10253 |{#SNMPVALUE}: Free memory |vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |27415 |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 |28222 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10253 |{#SNMPVALUE}: Used memory |vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |27416 |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 |28223 |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]|10253 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28224 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28225 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28226 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28227 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28228 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28229 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28230 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28231 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |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 |28232 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |28233 |3 | |10253 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28234 |3 | |10253 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28235 |3 | |10253 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28236 |17 | |10253 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28240 |20 |1.3.6.1.2.1.1.5.0 |10253 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28243 |5 | |10253 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28245 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10253 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |28244 |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&eol;indexed with cpmCPUTotalIndex .&eol;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&eol;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&eol;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28247 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.5.{#SNMPINDEX} |10253 |{#SNMPVALUE}: CPU utilization |system.cpu.util[cpmCPUTotal5min.{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |28246 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;The overall CPU busy percentage in the last 5 minute&eol;period. This object deprecates the avgBusy5 object from&eol;the OLD-CISCO-SYSTEM-MIB. This object is deprecated&eol;by cpmCPUTotal5minRev which has the changed range&eol;of value (0..100)&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28249 |5 | |10084 |Zabbix preprocessing queue |zabbix[preprocessing_queue] |1m |1w |365d |0 |3 | | | | |28248 |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28280 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10254 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28281 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |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 |28282 |3 | |10254 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28283 |3 | |10254 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28284 |3 | |10254 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28285 |17 | |10254 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28289 |20 |1.3.6.1.2.1.1.5.0 |10254 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28292 |5 | |10254 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28293 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10254 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28294 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28295 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28296 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28297 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28298 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28299 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28300 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28301 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |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 |28302 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |28330 |3 | |10255 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28331 |3 | |10255 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28332 |3 | |10255 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28333 |17 | |10255 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28337 |20 |1.3.6.1.2.1.1.5.0 |10255 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28340 |5 | |10255 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28377 |3 | |10256 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28378 |3 | |10256 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28379 |3 | |10256 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28380 |17 | |10256 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28384 |20 |1.3.6.1.2.1.1.5.0 |10256 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28387 |5 | |10256 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28454 |3 | |10258 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28455 |3 | |10258 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28456 |3 | |10258 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28457 |17 | |10258 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28461 |20 |1.3.6.1.2.1.1.5.0 |10258 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28464 |5 | |10258 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28482 |3 | |10259 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28483 |3 | |10259 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28484 |3 | |10259 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28485 |17 | |10259 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28489 |20 |1.3.6.1.2.1.1.5.0 |10259 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28492 |5 | |10259 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28534 |5 | |10084 |Zabbix LLD queue |zabbix[lld_queue] |1m |1w |365d |0 |3 | | | | |28533 |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 |28536 |5 | |10084 |Utilization of LLD manager internal processes, in % |zabbix[process,lld manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |28535 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28538 |5 | |10084 |Utilization of LLD worker internal processes, in % |zabbix[process,lld worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |28537 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28955 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10248 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28956 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |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 |28957 |3 | |10248 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28958 |3 | |10248 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28959 |3 | |10248 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28960 |17 | |10248 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28964 |20 |1.3.6.1.2.1.1.5.0 |10248 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28967 |5 | |10248 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28968 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10248 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28969 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28970 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28971 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28972 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28973 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28974 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28975 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28976 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |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 |28977 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |28993 |15 | |10248 |Memory utilization |vm.memory.util[snmp] |1m |7d |365d |0 |0 | |% | | |28978 |NULL |(last("vm.memory.total[memTotalReal.0]")-(last("vm.memory.free[memAvailReal.0]")+last("vm.memory.buffers[memBuffer.0]")+last("vm.memory.cached[memCached.0]")))/last("vm.memory.total[memTotalReal.0]")*100 | |0 | | | | |0 |NULL |Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28994 |20 |1.3.6.1.4.1.2021.4.6.0 |10248 |Free memory |vm.memory.free[memAvailReal.0] |1m |7d |365d |0 |3 | |B | | |28979 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28995 |20 |1.3.6.1.4.1.2021.4.14.0 |10248 |Memory (buffers) |vm.memory.buffers[memBuffer.0] |1m |7d |365d |0 |3 | |B | | |28980 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Memory used by kernel buffers (Buffers in /proc/meminfo) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28996 |20 |1.3.6.1.4.1.2021.4.15.0 |10248 |Memory (cached) |vm.memory.cached[memCached.0] |1m |7d |365d |0 |3 | |B | | |28981 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Memory used by the page cache and slabs (Cached and Slab in /proc/meminfo) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28997 |20 |1.3.6.1.4.1.2021.4.5.0 |10248 |Total memory |vm.memory.total[memTotalReal.0] |1m |7d |365d |0 |3 | |B | | |28982 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28998 |15 | |10248 |Available memory |vm.memory.available[snmp] |1m |7d |365d |0 |3 | |B | | |28983 |NULL |last("vm.memory.free[memAvailReal.0]")+last("vm.memory.buffers[memBuffer.0]")+last("vm.memory.cached[memCached.0]") | |0 | | | | |0 |NULL |Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28999 |20 |1.3.6.1.4.1.2021.4.3.0 |10248 |Total swap space |system.swap.total[memTotalSwap.0] |1m |7d |365d |0 |3 | |B | | |28984 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The total amount of swap space configured for this host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29000 |20 |1.3.6.1.4.1.2021.4.4.0 |10248 |Free swap space |system.swap.free[memAvailSwap.0] |1m |7d |365d |0 |3 | |B | | |28985 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of swap space currently unused or available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29001 |15 | |10248 |Free swap space in % |system.swap.pfree[snmp] |1m |7d |365d |0 |0 | |% | | |28986 |NULL |last("system.swap.free[memAvailSwap.0]")/last("system.swap.total[memTotalSwap.0]")*100 | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29002 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-1"] |10248 |Load average (1m avg) |system.cpu.load.avg1[laLoad.1] |1m |7d |365d |0 |0 | | | | |28987 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29003 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-5"] |10248 |Load average (5m avg) |system.cpu.load.avg5[laLoad.2] |1m |7d |365d |0 |0 | | | | |28988 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29004 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-15"] |10248 |Load average (15m avg) |system.cpu.load.avg15[laLoad.3] |1m |7d |365d |0 |0 | | | | |28989 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29005 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1] |10248 |Number of CPUs |system.cpu.num[snmp] |1m |7d |365d |0 |3 | | | | |28990 |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 |29006 |20 |1.3.6.1.4.1.2021.11.59.0 |10248 |Interrupts per second |system.cpu.intr[ssRawInterrupts.0] |1m |7d |365d |0 |0 | | | | |28991 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29007 |20 |1.3.6.1.4.1.2021.11.60.0 |10248 |Context switches per second |system.cpu.switches[ssRawContexts.0] |1m |7d |365d |0 |0 | | | | |28992 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29011 |20 |discovery[{#DEVNAME},1.3.6.1.4.1.2021.13.15.1.1.2] |10248 |Block devices discovery |vfs.dev.discovery[snmp] |1h |90d |0 |0 |4 | | | | |29008 |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 |29012 |18 | |10248 |CPU discovery |cpu.discovery[snmp] |0 |90d |0 |0 |4 | | | | |29009 |NULL | | |0 | | | | |1 |NULL |This discovery will create set of per core CPU metrics from UCD-SNMP-MIB, using {#CPU.COUNT} in preprocessing. That's the only reason why LLD is used. |0 |30d |0 | |29005 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29013 |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] |10248 |Mounted filesystem discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |29010 |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 |29031 |20 |1.3.6.1.4.1.2021.13.15.1.1.5.{#SNMPINDEX} |10248 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[diskIOReads.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |!r/s | | |29014 |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 |29032 |20 |1.3.6.1.4.1.2021.13.15.1.1.6.{#SNMPINDEX} |10248 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[diskIOWrites.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |!w/s | | |29015 |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 |29033 |20 |1.3.6.1.4.1.2021.13.15.1.1.9.{#SNMPINDEX} |10248 |{#DEVNAME}: Disk utilization |vfs.dev.util[diskIOLA1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29016 |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 |29034 |20 |1.3.6.1.4.1.2021.11.53.0 |10248 |CPU idle time |system.cpu.idle[ssCpuRawIdle.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29017 |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 |29035 |20 |1.3.6.1.4.1.2021.11.52.0 |10248 |CPU system time |system.cpu.system[ssCpuRawSystem.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29018 |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 |29036 |20 |1.3.6.1.4.1.2021.11.50.0 |10248 |CPU user time |system.cpu.user[ssCpuRawUser.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29019 |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 |29037 |20 |1.3.6.1.4.1.2021.11.64.0 |10248 |CPU steal time |system.cpu.steal[ssCpuRawSteal.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29020 |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 |29038 |20 |1.3.6.1.4.1.2021.11.61.0 |10248 |CPU softirq time |system.cpu.softirq[ssCpuRawSoftIRQ.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29021 |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 |29039 |20 |1.3.6.1.4.1.2021.11.51.0 |10248 |CPU nice time |system.cpu.nice[ssCpuRawNice.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29022 |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 |29040 |20 |1.3.6.1.4.1.2021.11.54.0 |10248 |CPU iowait time |system.cpu.iowait[ssCpuRawWait.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29023 |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 |29041 |20 |1.3.6.1.4.1.2021.11.56.0 |10248 |CPU interrupt time |system.cpu.interrupt[ssCpuRawInterrupt.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29024 |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 |29042 |20 |1.3.6.1.4.1.2021.11.65.0 |10248 |CPU guest time |system.cpu.guest[ssCpuRawGuest.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29025 |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 |29043 |20 |1.3.6.1.4.1.2021.11.66.0 |10248 |CPU guest nice time |system.cpu.guest_nice[ssCpuRawGuestNice.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29026 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29044 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10248 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |29027 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29045 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10248 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |29028 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29046 |15 | |10248 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29029 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29047 |20 |1.3.6.1.4.1.2021.9.1.10["index","1.3.6.1.4.1.2021.9.1.2", "{#FSNAME}"] |10248 |{#FSNAME}: Free inodes in % |vfs.fs.inode.pfree[dskPercentNode.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29030 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;If having problems collecting this item make sure access to UCD-SNMP-MIB is allowed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29049 |18 | |10248 |CPU utilization |system.cpu.util[snmp,{#SNMPINDEX}] |0 |7d |365d |0 |0 | |% | | |29048 |NULL | | |0 | | | | |2 |NULL |CPU utilization in % |0 |30d |0 | |29034 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29050 |3 | |10249 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29051 |3 | |10249 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29052 |3 | |10249 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29053 |17 | |10249 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29057 |20 |1.3.6.1.2.1.1.5.0 |10249 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29060 |5 | |10249 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29077 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10249 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27118 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29078 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27119 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29079 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27126 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29080 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27124 |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 |29081 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27122 |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 |29082 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27123 |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 |29083 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27125 |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 |29084 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27121 |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 |29085 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27127 |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 |29086 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27120 |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 |29124 |0 | |10001 |Number of CPUs |system.cpu.num |1m |7d |365d |0 |3 | | | | |29087 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29125 |0 | |10001 |CPU iowait time |system.cpu.util[,iowait] |1m |7d |365d |0 |0 | |% | | |29088 |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 |29126 |0 | |10001 |Context switches per second |system.cpu.switches |1m |7d |365d |0 |0 | | | | |29089 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29127 |0 | |10001 |CPU guest nice time |system.cpu.util[,guest_nice] |1m |7d |365d |0 |0 | |% | | |29090 |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 |29128 |0 | |10001 |CPU guest time |system.cpu.util[,guest] |1m |7d |365d |0 |0 | |% | | |29091 |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 |29129 |0 | |10001 |CPU softirq time |system.cpu.util[,softirq] |1m |7d |365d |0 |0 | |% | | |29092 |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 |29130 |0 | |10001 |CPU interrupt time |system.cpu.util[,interrupt] |1m |7d |365d |0 |0 | |% | | |29093 |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 |29131 |0 | |10001 |CPU steal time |system.cpu.util[,steal] |1m |7d |365d |0 |0 | |% | | |29094 |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 |29132 |0 | |10001 |CPU nice time |system.cpu.util[,nice] |1m |7d |365d |0 |0 | |% | | |29095 |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 |29133 |0 | |10001 |Load average (1m avg) |system.cpu.load[all,avg1] |1m |7d |365d |0 |0 | | | | |29096 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29134 |0 | |10001 |CPU user time |system.cpu.util[,user] |1m |7d |365d |0 |0 | |% | | |29097 |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 |29135 |0 | |10001 |CPU system time |system.cpu.util[,system] |1m |7d |365d |0 |0 | |% | | |29098 |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 |29136 |0 | |10001 |CPU idle time |system.cpu.util[,idle] |1m |7d |365d |0 |0 | |% | | |29099 |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 |29137 |0 | |10001 |Load average (15m avg) |system.cpu.load[all,avg15] |1m |7d |365d |0 |0 | | | | |29100 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29138 |0 | |10001 |Load average (5m avg) |system.cpu.load[all,avg5] |1m |7d |365d |0 |0 | | | | |29101 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29139 |0 | |10001 |Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |29102 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29140 |0 | |10001 |Available memory in % |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |29103 |NULL | | |0 | | | | |0 |NULL |Available memory as percentage of total. See also: https://www.zabbix.com/documentation/current/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29141 |0 | |10001 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |29104 |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29142 |0 | |10001 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |29105 |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/current/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29143 |0 | |10001 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |29106 |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 |29144 |0 | |10001 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |29107 |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 |29145 |0 | |10001 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |29108 |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 |29147 |0 | |10001 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |29110 |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 |29148 |0 | |10001 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime| | |29111 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29149 |0 | |10001 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime| | |29112 |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29150 |0 | |10001 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29113 |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29151 |0 | |10001 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29114 |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29152 |0 | |10001 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |29115 |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29153 |0 | |10001 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |29116 |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29154 |0 | |10001 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |29117 |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29155 |0 | |10001 |Number of processes |proc.num |1m |7d |365d |0 |3 | | | | |29118 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29156 |0 | |10001 |Number of running processes |proc.num[,,run] |1m |7d |365d |0 |3 | | | | |29119 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29157 |0 | |10001 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |15m |7d |0 |0 |1 | | | | |29120 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29158 |0 | |10001 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |29121 |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29159 |0 | |10001 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |29122 |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 |29160 |0 | |10001 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |29123 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29161 |0 | |10084 |Number of CPUs |system.cpu.num |1m |7d |365d |0 |3 | | | | |29124 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29162 |0 | |10084 |CPU iowait time |system.cpu.util[,iowait] |1m |7d |365d |0 |0 | |% | | |29125 |NULL | | |0 | | | | |0 |1 |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 |29163 |0 | |10084 |Context switches per second |system.cpu.switches |1m |7d |365d |0 |0 | | | | |29126 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29164 |0 | |10084 |CPU guest nice time |system.cpu.util[,guest_nice] |1m |7d |365d |0 |0 | |% | | |29127 |NULL | | |0 | | | | |0 |1 |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 |29165 |0 | |10084 |CPU guest time |system.cpu.util[,guest] |1m |7d |365d |0 |0 | |% | | |29128 |NULL | | |0 | | | | |0 |1 |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 |29166 |0 | |10084 |CPU softirq time |system.cpu.util[,softirq] |1m |7d |365d |0 |0 | |% | | |29129 |NULL | | |0 | | | | |0 |1 |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 |29167 |0 | |10084 |CPU interrupt time |system.cpu.util[,interrupt] |1m |7d |365d |0 |0 | |% | | |29130 |NULL | | |0 | | | | |0 |1 |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 |29168 |0 | |10084 |CPU steal time |system.cpu.util[,steal] |1m |7d |365d |0 |0 | |% | | |29131 |NULL | | |0 | | | | |0 |1 |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 |29169 |0 | |10084 |CPU nice time |system.cpu.util[,nice] |1m |7d |365d |0 |0 | |% | | |29132 |NULL | | |0 | | | | |0 |1 |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 |29170 |0 | |10084 |Load average (1m avg) |system.cpu.load[all,avg1] |1m |7d |365d |0 |0 | | | | |29133 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29171 |0 | |10084 |CPU user time |system.cpu.util[,user] |1m |7d |365d |0 |0 | |% | | |29134 |NULL | | |0 | | | | |0 |1 |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 |29172 |0 | |10084 |CPU system time |system.cpu.util[,system] |1m |7d |365d |0 |0 | |% | | |29135 |NULL | | |0 | | | | |0 |1 |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 |29173 |0 | |10084 |CPU idle time |system.cpu.util[,idle] |1m |7d |365d |0 |0 | |% | | |29136 |NULL | | |0 | | | | |0 |1 |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29174 |0 | |10084 |Load average (15m avg) |system.cpu.load[all,avg15] |1m |7d |365d |0 |0 | | | | |29137 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29175 |0 | |10084 |Load average (5m avg) |system.cpu.load[all,avg5] |1m |7d |365d |0 |0 | | | | |29138 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29176 |0 | |10084 |Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |29139 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29177 |0 | |10084 |Available memory in % |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |29140 |NULL | | |0 | | | | |0 |1 |Available memory as percentage of total. See also: https://www.zabbix.com/documentation/current/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29178 |0 | |10084 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |29141 |NULL | | |0 | | | | |0 |1 |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29179 |0 | |10084 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |29142 |NULL | | |0 | | | | |0 |1 |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/current/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29180 |0 | |10084 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |29143 |NULL | | |0 | | | | |0 |1 |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 |29181 |0 | |10084 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |29144 |NULL | | |0 | | | | |0 |1 |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 |29182 |0 | |10084 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |29145 |NULL | | |0 | | | | |0 |1 |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 |29184 |0 | |10084 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |29147 |NULL | | |0 | | | | |0 |1 |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 |29185 |0 | |10084 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime| | |29148 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29186 |0 | |10084 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime| | |29149 |NULL | | |0 | | | | |0 |1 |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29187 |0 | |10084 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29150 |NULL | | |0 | | | | |0 |1 |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29188 |0 | |10084 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29151 |NULL | | |0 | | | | |0 |1 |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29189 |0 | |10084 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |29152 |NULL | | |0 | | | | |0 |1 |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29190 |0 | |10084 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |29153 |NULL | | |0 | | | | |0 |1 |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29191 |0 | |10084 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |29154 |NULL | | |0 | | | | |0 |1 |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29192 |0 | |10084 |Number of processes |proc.num |1m |7d |365d |0 |3 | | | | |29155 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29193 |0 | |10084 |Number of running processes |proc.num[,,run] |1m |7d |365d |0 |3 | | | | |29156 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29194 |0 | |10084 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |15m |7d |0 |0 |1 | | | | |29157 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29195 |0 | |10084 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |29158 |NULL | | |0 | | | | |0 |1 | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29196 |0 | |10084 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |29159 |NULL | | |0 | | | | |0 |1 |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29197 |0 | |10084 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |29160 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29199 |18 | |10001 |CPU utilization |system.cpu.util |0 |7d |365d |0 |0 | |% | | |29198 |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |29136 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29200 |18 | |10084 |CPU utilization |system.cpu.util |0 |7d |365d |0 |0 | |% | | |29199 |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |29173 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29204 |0 | |10001 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |29201 |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 |29206 |0 | |10001 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |29203 |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29207 |0 | |10084 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |29204 |NULL | | |0 | | | | |1 |1 |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29209 |0 | |10084 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |29206 |NULL | | |0 | | | | |1 |1 |Discovery of network interfaces. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29224 |0 | |10001 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |29210 |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29225 |0 | |10001 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |29211 |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29226 |0 | |10001 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |29212 |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 |29227 |0 | |10001 |{#FSNAME}: Free inodes in % |vfs.fs.inode[{#FSNAME},pfree] |1m |7d |365d |0 |0 | |% | | |29213 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29230 |0 | |10001 |Interface {#IFNAME}: Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29216 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29231 |0 | |10001 |Interface {#IFNAME}: Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29217 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29232 |0 | |10001 |Interface {#IFNAME}: Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29218 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29233 |0 | |10001 |Interface {#IFNAME}: Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29219 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29234 |0 | |10001 |Interface {#IFNAME}: Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29220 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29235 |0 | |10001 |Interface {#IFNAME}: Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29221 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29236 |0 | |10001 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |29222 |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 |29237 |0 | |10001 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |29223 |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 |29238 |0 | |10084 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |29224 |NULL | | |0 | | | | |2 |1 |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29239 |0 | |10084 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |29225 |NULL | | |0 | | | | |2 |1 |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29240 |0 | |10084 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |29226 |NULL | | |0 | | | | |2 |1 |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29241 |0 | |10084 |{#FSNAME}: Free inodes in % |vfs.fs.inode[{#FSNAME},pfree] |1m |7d |365d |0 |0 | |% | | |29227 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29244 |0 | |10084 |Interface {#IFNAME}: Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29230 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29245 |0 | |10084 |Interface {#IFNAME}: Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29231 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29246 |0 | |10084 |Interface {#IFNAME}: Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29232 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29247 |0 | |10084 |Interface {#IFNAME}: Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29233 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29248 |0 | |10084 |Interface {#IFNAME}: Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29234 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29249 |0 | |10084 |Interface {#IFNAME}: Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29235 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29250 |0 | |10084 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |29236 |20 | | |0 | | | | |2 |1 |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 |29251 |0 | |10084 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |29237 |78 | | |0 | | | | |2 |1 |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 |29310 |7 | |10284 |Number of CPUs |system.cpu.num |1m |7d |365d |0 |3 | | | | |29273 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29311 |7 | |10284 |CPU iowait time |system.cpu.util[,iowait] |1m |7d |365d |0 |0 | |% | | |29274 |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 |29312 |7 | |10284 |Context switches per second |system.cpu.switches |1m |7d |365d |0 |0 | | | | |29275 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29313 |7 | |10284 |CPU guest nice time |system.cpu.util[,guest_nice] |1m |7d |365d |0 |0 | |% | | |29276 |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 |29314 |7 | |10284 |CPU guest time |system.cpu.util[,guest] |1m |7d |365d |0 |0 | |% | | |29277 |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 |29315 |7 | |10284 |CPU softirq time |system.cpu.util[,softirq] |1m |7d |365d |0 |0 | |% | | |29278 |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 |29316 |7 | |10284 |CPU interrupt time |system.cpu.util[,interrupt] |1m |7d |365d |0 |0 | |% | | |29279 |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 |29317 |7 | |10284 |CPU steal time |system.cpu.util[,steal] |1m |7d |365d |0 |0 | |% | | |29280 |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 |29318 |7 | |10284 |CPU nice time |system.cpu.util[,nice] |1m |7d |365d |0 |0 | |% | | |29281 |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 |29319 |7 | |10284 |Load average (1m avg) |system.cpu.load[all,avg1] |1m |7d |365d |0 |0 | | | | |29282 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29320 |7 | |10284 |CPU user time |system.cpu.util[,user] |1m |7d |365d |0 |0 | |% | | |29283 |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 |29321 |7 | |10284 |CPU system time |system.cpu.util[,system] |1m |7d |365d |0 |0 | |% | | |29284 |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 |29322 |7 | |10284 |CPU idle time |system.cpu.util[,idle] |1m |7d |365d |0 |0 | |% | | |29285 |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 |29323 |7 | |10284 |Load average (15m avg) |system.cpu.load[all,avg15] |1m |7d |365d |0 |0 | | | | |29286 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29324 |7 | |10284 |Load average (5m avg) |system.cpu.load[all,avg5] |1m |7d |365d |0 |0 | | | | |29287 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29325 |7 | |10284 |Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |29288 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29326 |7 | |10284 |Available memory in % |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |29289 |NULL | | |0 | | | | |0 |NULL |Available memory as percentage of total. See also: https://www.zabbix.com/documentation/current/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29327 |7 | |10284 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |29290 |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29328 |7 | |10284 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |29291 |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/current/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29329 |7 | |10284 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |29292 |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 |29330 |7 | |10284 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |29293 |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 |29331 |7 | |10284 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |29294 |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 |29333 |7 | |10284 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |29296 |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 |29334 |7 | |10284 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime| | |29297 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29335 |0 | |10284 |System local time |system.localtime |1m |7d |365d |1 |3 | |unixtime| | |29298 |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 |29336 |7 | |10284 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29299 |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29337 |7 | |10284 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29300 |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 |29338 |7 | |10284 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |29301 |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 |29339 |7 | |10284 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |29302 |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 |29340 |7 | |10284 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |29303 |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 |29341 |7 | |10284 |Number of processes |proc.num |1m |7d |365d |0 |3 | | | | |29304 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29342 |7 | |10284 |Number of running processes |proc.num[,,run] |1m |7d |365d |0 |3 | | | | |29305 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29343 |7 | |10284 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |15m |7d |0 |0 |1 | | | | |29306 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29344 |7 | |10284 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |29307 |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29345 |7 | |10284 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |29308 |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 |29346 |7 | |10284 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |29309 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29348 |18 | |10284 |CPU utilization |system.cpu.util |0 |7d |365d |0 |0 | |% | | |29347 |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |29322 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29352 |7 | |10284 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |29349 |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 |29354 |7 | |10284 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |29351 |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29369 |7 | |10284 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |29355 |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29370 |7 | |10284 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |29356 |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29371 |7 | |10284 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |29357 |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 |29372 |7 | |10284 |{#FSNAME}: Free inodes in % |vfs.fs.inode[{#FSNAME},pfree] |1m |7d |365d |0 |0 | |% | | |29358 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29375 |7 | |10284 |Interface {#IFNAME}: Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29361 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29376 |7 | |10284 |Interface {#IFNAME}: Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29362 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29377 |7 | |10284 |Interface {#IFNAME}: Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29363 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29378 |7 | |10284 |Interface {#IFNAME}: Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29364 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29379 |7 | |10284 |Interface {#IFNAME}: Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29365 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29380 |7 | |10284 |Interface {#IFNAME}: Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29366 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29381 |7 | |10284 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |29367 |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 |29382 |7 | |10284 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |29368 |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 |29480 |0 | |10081 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |29454 |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29481 |0 | |10081 |CPU interrupt time |perf_counter_en["\Processor Information(_total)\% Interrupt Time"] |1m |7d |365d |0 |0 | |% | | |29455 |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 |29482 |0 | |10081 |Context switches per second |perf_counter_en["\System\Context Switches/sec"] |1m |7d |365d |0 |0 | | | | |29456 |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 |29483 |0 | |10081 |CPU privileged time |perf_counter_en["\Processor Information(_total)\% Privileged Time"] |1m |7d |365d |0 |0 | |% | | |29457 |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 |29484 |0 | |10081 |CPU user time |perf_counter_en["\Processor Information(_total)\% User Time"] |1m |7d |365d |0 |0 | |% | | |29458 |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 |29485 |0 | |10081 |CPU queue length |perf_counter_en["\System\Processor Queue Length"] |1m |7d |365d |0 |0 | | | | |29459 |NULL | | |0 | | | | |0 |NULL |The Processor Queue Length shows the number of threads that are observed as delayed in the processor Ready Queue &eol;and are waiting to be executed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29486 |0 | |10081 |Used memory |vm.memory.size[used] |1m |7d |365d |0 |3 | |B | | |29460 |NULL | | |0 | | | | |0 |NULL |Used memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29487 |0 | |10081 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |29461 |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29488 |15 | |10081 |Memory utilization |vm.memory.util |1m |7d |365d |0 |0 | |% | | |29462 |NULL |last("vm.memory.size[used]") / last("vm.memory.size[total]") * 100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29489 |0 | |10081 |Cache bytes |perf_counter_en["\Memory\Cache Bytes"] |1m |7d |365d |0 |3 | |B | | |29463 |NULL | | |0 | | | | |0 |NULL |Cache Bytes is the sum of the Memory\\System Cache Resident Bytes, Memory\\System Driver Resident Bytes, &eol;Memory\\System Code Resident Bytes, and Memory\\Pool Paged Resident Bytes counters. This counter displays &eol;the last observed value only; it is not an average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29492 |0 | |10081 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |29466 |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29493 |0 | |10081 |Free system page table entries |perf_counter_en["\Memory\Free System Page Table Entries"] |1m |7d |365d |0 |3 | | | | |29467 |NULL | | |0 | | | | |0 |NULL |This indicates the number of page table entries not currently in use by the system. If the number is less &eol;than 5,000, there may well be a memory leak or you running out of memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29494 |0 | |10081 |Memory page faults per second |perf_counter_en["\Memory\Page Faults/sec"] |1m |7d |365d |0 |0 | | | | |29468 |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 |29495 |0 | |10081 |Memory pages per second |perf_counter_en["\Memory\Pages/sec"] |1m |7d |365d |0 |0 | | | | |29469 |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 |29496 |0 | |10081 |Memory pool non-paged |perf_counter_en["\Memory\Pool Nonpaged Bytes"] |1m |7d |365d |0 |3 | |B | | |29470 |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 |29498 |0 | |10081 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |29472 |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29499 |0 | |10081 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime| | |29473 |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29500 |0 | |10081 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29474 |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29501 |0 | |10081 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29475 |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29502 |0 | |10081 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |29476 |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29503 |0 | |10081 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |29477 |NULL | | |0 | | | | |0 |NULL |The number of threads used by all running processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29504 |0 | |10081 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |29478 |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29509 |0 | |10081 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |29506 |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 |29521 |0 | |10081 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |29512 |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29522 |0 | |10081 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |29513 |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29523 |0 | |10081 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |29514 |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 |29548 |5 | |10001 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29549 |5 | |10074 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29550 |5 | |10075 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29551 |5 | |10076 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29552 |5 | |10077 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29553 |5 | |10078 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29554 |5 | |10079 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29555 |5 | |10081 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29557 |5 | |10084 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29548 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29558 |7 | |10299 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |29546 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29559 |7 | |10299 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |29547 |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 |29560 |7 | |10299 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |29545 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29587 |7 | |10299 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |29561 |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29588 |7 | |10299 |CPU interrupt time |perf_counter_en["\Processor Information(_total)\% Interrupt Time"] |1m |7d |365d |0 |0 | |% | | |29562 |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 |29589 |7 | |10299 |Context switches per second |perf_counter_en["\System\Context Switches/sec"] |1m |7d |365d |0 |0 | | | | |29563 |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 |29590 |7 | |10299 |CPU privileged time |perf_counter_en["\Processor Information(_total)\% Privileged Time"] |1m |7d |365d |0 |0 | |% | | |29564 |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 |29591 |7 | |10299 |CPU user time |perf_counter_en["\Processor Information(_total)\% User Time"] |1m |7d |365d |0 |0 | |% | | |29565 |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 |29592 |7 | |10299 |CPU queue length |perf_counter_en["\System\Processor Queue Length"] |1m |7d |365d |0 |0 | | | | |29566 |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 |29593 |7 | |10299 |Used memory |vm.memory.size[used] |1m |7d |365d |0 |3 | |B | | |29567 |NULL | | |0 | | | | |0 |NULL |Used memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29594 |7 | |10299 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |29568 |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29595 |15 | |10299 |Memory utilization |vm.memory.util |1m |7d |365d |0 |0 | |% | | |29569 |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 |29596 |7 | |10299 |Cache bytes |perf_counter_en["\Memory\Cache Bytes"] |1m |7d |365d |0 |3 | |B | | |29570 |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 |29599 |7 | |10299 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |29573 |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 |29600 |7 | |10299 |Free system page table entries |perf_counter_en["\Memory\Free System Page Table Entries"] |1m |7d |365d |0 |3 | | | | |29574 |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 |29601 |7 | |10299 |Memory page faults per second |perf_counter_en["\Memory\Page Faults/sec"] |1m |7d |365d |0 |0 | | | | |29575 |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 |29602 |7 | |10299 |Memory pages per second |perf_counter_en["\Memory\Pages/sec"] |1m |7d |365d |0 |0 | | | | |29576 |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 |29603 |7 | |10299 |Memory pool non-paged |perf_counter_en["\Memory\Pool Nonpaged Bytes"] |1m |7d |365d |0 |3 | |B | | |29577 |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 |29605 |7 | |10299 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |29579 |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 |29606 |0 | |10299 |System local time |system.localtime |1m |7d |365d |1 |3 | |unixtime| | |29580 |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 |29607 |7 | |10299 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29581 |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29608 |7 | |10299 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29582 |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 |29609 |7 | |10299 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |29583 |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29610 |7 | |10299 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |29584 |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 |29611 |7 | |10299 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |29585 |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 |29616 |7 | |10299 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |29613 |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 |29628 |7 | |10299 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |29619 |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29629 |7 | |10299 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |29620 |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29630 |7 | |10299 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |29621 |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 |29823 |5 | |10084 |Utilization of alert syncer internal processes, in % |zabbix[process,alert syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |29822 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29849 |20 |1.3.6.1.2.1.1.3.0 |10207 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29850 |20 |1.3.6.1.2.1.1.6.0 |10207 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29851 |20 |1.3.6.1.2.1.1.4.0 |10207 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29852 |20 |1.3.6.1.2.1.1.2.0 |10207 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29853 |20 |1.3.6.1.2.1.1.1.0 |10207 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29854 |20 |1.3.6.1.2.1.1.3.0 |10208 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29855 |20 |1.3.6.1.2.1.1.6.0 |10208 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29856 |20 |1.3.6.1.2.1.1.4.0 |10208 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29857 |20 |1.3.6.1.2.1.1.2.0 |10208 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29858 |20 |1.3.6.1.2.1.1.1.0 |10208 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29859 |20 |1.3.6.1.2.1.1.3.0 |10210 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29860 |20 |1.3.6.1.2.1.1.6.0 |10210 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29861 |20 |1.3.6.1.2.1.1.4.0 |10210 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29862 |20 |1.3.6.1.2.1.1.2.0 |10210 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29863 |20 |1.3.6.1.2.1.1.1.0 |10210 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29864 |20 |1.3.6.1.2.1.1.3.0 |10211 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29865 |20 |1.3.6.1.2.1.1.6.0 |10211 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29866 |20 |1.3.6.1.2.1.1.4.0 |10211 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29867 |20 |1.3.6.1.2.1.1.2.0 |10211 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29868 |20 |1.3.6.1.2.1.1.1.0 |10211 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29869 |20 |1.3.6.1.2.1.1.3.0 |10218 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29870 |20 |1.3.6.1.2.1.1.6.0 |10218 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29871 |20 |1.3.6.1.2.1.1.4.0 |10218 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29872 |20 |1.3.6.1.2.1.1.2.0 |10218 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29873 |20 |1.3.6.1.2.1.1.1.0 |10218 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29874 |20 |1.3.6.1.2.1.1.3.0 |10220 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29875 |20 |1.3.6.1.2.1.1.6.0 |10220 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29876 |20 |1.3.6.1.2.1.1.4.0 |10220 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29877 |20 |1.3.6.1.2.1.1.2.0 |10220 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29878 |20 |1.3.6.1.2.1.1.1.0 |10220 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29879 |20 |1.3.6.1.2.1.1.3.0 |10221 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29880 |20 |1.3.6.1.2.1.1.6.0 |10221 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29881 |20 |1.3.6.1.2.1.1.4.0 |10221 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29882 |20 |1.3.6.1.2.1.1.2.0 |10221 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29883 |20 |1.3.6.1.2.1.1.1.0 |10221 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29884 |20 |1.3.6.1.2.1.1.3.0 |10222 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29885 |20 |1.3.6.1.2.1.1.6.0 |10222 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29886 |20 |1.3.6.1.2.1.1.4.0 |10222 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29887 |20 |1.3.6.1.2.1.1.2.0 |10222 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29888 |20 |1.3.6.1.2.1.1.1.0 |10222 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29889 |20 |1.3.6.1.2.1.1.3.0 |10223 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29890 |20 |1.3.6.1.2.1.1.6.0 |10223 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29891 |20 |1.3.6.1.2.1.1.4.0 |10223 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29892 |20 |1.3.6.1.2.1.1.2.0 |10223 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29893 |20 |1.3.6.1.2.1.1.1.0 |10223 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29894 |20 |1.3.6.1.2.1.1.3.0 |10224 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29895 |20 |1.3.6.1.2.1.1.6.0 |10224 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29896 |20 |1.3.6.1.2.1.1.4.0 |10224 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29897 |20 |1.3.6.1.2.1.1.2.0 |10224 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29898 |20 |1.3.6.1.2.1.1.1.0 |10224 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29899 |20 |1.3.6.1.2.1.1.3.0 |10226 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29900 |20 |1.3.6.1.2.1.1.6.0 |10226 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29901 |20 |1.3.6.1.2.1.1.4.0 |10226 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29902 |20 |1.3.6.1.2.1.1.2.0 |10226 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29903 |20 |1.3.6.1.2.1.1.1.0 |10226 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29904 |20 |1.3.6.1.2.1.1.3.0 |10227 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29905 |20 |1.3.6.1.2.1.1.6.0 |10227 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29906 |20 |1.3.6.1.2.1.1.4.0 |10227 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29907 |20 |1.3.6.1.2.1.1.2.0 |10227 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29908 |20 |1.3.6.1.2.1.1.1.0 |10227 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29909 |20 |1.3.6.1.2.1.1.3.0 |10229 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29910 |20 |1.3.6.1.2.1.1.6.0 |10229 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29911 |20 |1.3.6.1.2.1.1.4.0 |10229 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29912 |20 |1.3.6.1.2.1.1.2.0 |10229 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29913 |20 |1.3.6.1.2.1.1.1.0 |10229 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29914 |20 |1.3.6.1.2.1.1.3.0 |10230 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29915 |20 |1.3.6.1.2.1.1.6.0 |10230 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29916 |20 |1.3.6.1.2.1.1.4.0 |10230 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29917 |20 |1.3.6.1.2.1.1.2.0 |10230 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29918 |20 |1.3.6.1.2.1.1.1.0 |10230 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29919 |20 |1.3.6.1.2.1.1.3.0 |10231 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29920 |20 |1.3.6.1.2.1.1.6.0 |10231 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29921 |20 |1.3.6.1.2.1.1.4.0 |10231 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29922 |20 |1.3.6.1.2.1.1.2.0 |10231 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29923 |20 |1.3.6.1.2.1.1.1.0 |10231 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29924 |20 |1.3.6.1.2.1.1.3.0 |10233 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29925 |20 |1.3.6.1.2.1.1.6.0 |10233 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29926 |20 |1.3.6.1.2.1.1.4.0 |10233 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29927 |20 |1.3.6.1.2.1.1.2.0 |10233 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29928 |20 |1.3.6.1.2.1.1.1.0 |10233 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29929 |20 |1.3.6.1.2.1.1.3.0 |10234 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29930 |20 |1.3.6.1.2.1.1.6.0 |10234 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29931 |20 |1.3.6.1.2.1.1.4.0 |10234 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29932 |20 |1.3.6.1.2.1.1.2.0 |10234 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29933 |20 |1.3.6.1.2.1.1.1.0 |10234 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29934 |20 |1.3.6.1.2.1.1.3.0 |10235 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29935 |20 |1.3.6.1.2.1.1.6.0 |10235 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29936 |20 |1.3.6.1.2.1.1.4.0 |10235 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29937 |20 |1.3.6.1.2.1.1.2.0 |10235 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29938 |20 |1.3.6.1.2.1.1.1.0 |10235 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29939 |20 |1.3.6.1.2.1.1.3.0 |10236 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29940 |20 |1.3.6.1.2.1.1.6.0 |10236 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29941 |20 |1.3.6.1.2.1.1.4.0 |10236 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29942 |20 |1.3.6.1.2.1.1.2.0 |10236 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29943 |20 |1.3.6.1.2.1.1.1.0 |10236 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29944 |20 |1.3.6.1.2.1.1.3.0 |10250 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29945 |20 |1.3.6.1.2.1.1.6.0 |10250 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29946 |20 |1.3.6.1.2.1.1.4.0 |10250 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29947 |20 |1.3.6.1.2.1.1.2.0 |10250 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29948 |20 |1.3.6.1.2.1.1.1.0 |10250 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29949 |20 |1.3.6.1.2.1.1.3.0 |10251 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29950 |20 |1.3.6.1.2.1.1.6.0 |10251 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29951 |20 |1.3.6.1.2.1.1.4.0 |10251 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29952 |20 |1.3.6.1.2.1.1.2.0 |10251 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29953 |20 |1.3.6.1.2.1.1.1.0 |10251 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29954 |20 |1.3.6.1.2.1.1.3.0 |10253 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29955 |20 |1.3.6.1.2.1.1.6.0 |10253 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29956 |20 |1.3.6.1.2.1.1.4.0 |10253 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29957 |20 |1.3.6.1.2.1.1.2.0 |10253 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29958 |20 |1.3.6.1.2.1.1.1.0 |10253 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29959 |20 |1.3.6.1.2.1.1.3.0 |10254 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29960 |20 |1.3.6.1.2.1.1.6.0 |10254 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29961 |20 |1.3.6.1.2.1.1.4.0 |10254 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29962 |20 |1.3.6.1.2.1.1.2.0 |10254 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29963 |20 |1.3.6.1.2.1.1.1.0 |10254 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29964 |20 |1.3.6.1.2.1.1.3.0 |10255 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29965 |20 |1.3.6.1.2.1.1.6.0 |10255 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29966 |20 |1.3.6.1.2.1.1.4.0 |10255 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29967 |20 |1.3.6.1.2.1.1.2.0 |10255 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29968 |20 |1.3.6.1.2.1.1.1.0 |10255 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29969 |20 |1.3.6.1.2.1.1.3.0 |10256 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29970 |20 |1.3.6.1.2.1.1.6.0 |10256 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29971 |20 |1.3.6.1.2.1.1.4.0 |10256 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29972 |20 |1.3.6.1.2.1.1.2.0 |10256 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29973 |20 |1.3.6.1.2.1.1.1.0 |10256 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29974 |20 |1.3.6.1.2.1.1.3.0 |10258 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29975 |20 |1.3.6.1.2.1.1.6.0 |10258 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29976 |20 |1.3.6.1.2.1.1.4.0 |10258 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29977 |20 |1.3.6.1.2.1.1.2.0 |10258 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29978 |20 |1.3.6.1.2.1.1.1.0 |10258 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29979 |20 |1.3.6.1.2.1.1.3.0 |10259 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29980 |20 |1.3.6.1.2.1.1.6.0 |10259 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29981 |20 |1.3.6.1.2.1.1.4.0 |10259 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29982 |20 |1.3.6.1.2.1.1.2.0 |10259 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29983 |20 |1.3.6.1.2.1.1.1.0 |10259 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29984 |20 |1.3.6.1.2.1.1.3.0 |10248 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29985 |20 |1.3.6.1.2.1.1.6.0 |10248 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29986 |20 |1.3.6.1.2.1.1.4.0 |10248 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29987 |20 |1.3.6.1.2.1.1.2.0 |10248 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29988 |20 |1.3.6.1.2.1.1.1.0 |10248 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29989 |20 |1.3.6.1.2.1.1.3.0 |10249 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29990 |20 |1.3.6.1.2.1.1.6.0 |10249 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29991 |20 |1.3.6.1.2.1.1.4.0 |10249 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29992 |20 |1.3.6.1.2.1.1.2.0 |10249 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29993 |20 |1.3.6.1.2.1.1.1.0 |10249 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29995 |7 | |10284 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |29546 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29996 |7 | |10284 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |29547 |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 |29997 |7 | |10284 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |29545 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30046 |3 | |10304 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30047 |3 | |10304 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30048 |3 | |10304 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30049 |17 | |10304 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30050 |20 |1.3.6.1.2.1.1.4.0 |10304 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30051 |20 |1.3.6.1.2.1.1.1.0 |10304 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30052 |20 |1.3.6.1.2.1.1.6.0 |10304 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30053 |20 |1.3.6.1.2.1.1.5.0 |10304 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30054 |20 |1.3.6.1.2.1.1.2.0 |10304 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30055 |20 |1.3.6.1.2.1.1.3.0 |10304 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30056 |5 | |10304 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30095 |20 |1.3.6.1.4.1.1991.1.1.2.1.53.0 |10210 |Memory utilization |vm.memory.util[snAgGblDynMemUtil.0] |1m |7d |365d |0 |0 | |% | | |30094 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The system dynamic memory utilization, in unit of percentage.&eol;Deprecated: Refer to snAgSystemDRAMUtil.&eol;For NI platforms, refer to snAgentBrdMemoryUtil100thPercent |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30096 |20 |1.3.6.1.4.1.1991.1.1.2.1.53.0 |10211 |Memory utilization |vm.memory.util[snAgGblDynMemUtil.0] |1m |7d |365d |0 |0 | |% | | |30094 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The system dynamic memory utilization, in unit of percentage.&eol;Deprecated: Refer to snAgSystemDRAMUtil.&eol;For NI platforms, refer to snAgentBrdMemoryUtil100thPercent |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30098 |20 |1.3.6.1.2.1.1.1.0 |10218 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |30097 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30099 |20 |1.3.6.1.2.1.1.1.0 |10220 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |30097 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30100 |20 |1.3.6.1.2.1.1.1.0 |10253 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |30097 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30102 |15 | |10218 |{#SNMPVALUE}: Memory utilization |vm.memory.util[vm.memory.util.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30101 |NULL |last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]")/(last("vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}]")+last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30103 |15 | |10220 |{#SNMPVALUE}: Memory utilization |vm.memory.util[vm.memory.util.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30101 |NULL |last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]")/(last("vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}]")+last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30104 |15 | |10253 |{#SNMPVALUE}: Memory utilization |vm.memory.util[vm.memory.util.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30101 |NULL |last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]")/(last("vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}]")+last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30138 |0 | |10081 |CPU DPC time |perf_counter_en["\Processor Information(_total)\% DPC Time"] |1m |7d |365d |0 |0 | |% | | |30137 |NULL | | |0 | | | | |0 |NULL |Processor DPC time is the time that a single processor spent receiving and servicing deferred procedure &eol;calls (DPCs). DPCs are interrupts that run at a lower priority than standard interrupts. % DPC Time is a &eol;component of % Privileged Time because DPCs are executed in privileged mode. If a high % DPC Time is &eol;sustained, there may be a processor bottleneck or an application or hardware related issue that can &eol;significantly diminish overall system performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30140 |7 | |10299 |CPU DPC time |perf_counter_en["\Processor Information(_total)\% DPC Time"] |1m |7d |365d |0 |0 | |% | | |30139 |NULL | | |0 | | | | |0 |NULL |Processor DPC time is the time that a single processor spent receiving and servicing deferred procedure &eol;calls (DPCs). DPCs are interrupts that run at a lower priority than standard interrupts. % DPC Time is a &eol;component of % Privileged Time because DPCs are executed in privileged mode. If a high % DPC Time is &eol;sustained, there may be a processor bottleneck or an application or hardware related issue that can &eol;significantly diminish overall system performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30143 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10185 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |30142 |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30144 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10251 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |30143 |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30145 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10249 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |30143 |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30146 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10254 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |30143 |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30149 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10185 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |30147 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30150 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10185 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |30148 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30151 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10251 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |30149 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30152 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10251 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |30150 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30153 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10249 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |30149 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30154 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10249 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |30150 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30155 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10254 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |30149 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30156 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10254 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |30150 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30163 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10185 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30157 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30164 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10185 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30158 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30165 |15 | |10185 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30159 |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30166 |15 | |10185 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30160 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30167 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10185 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30161 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30168 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10185 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30162 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30169 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10251 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30163 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30170 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10251 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30164 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30171 |15 | |10251 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30165 |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30172 |15 | |10251 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30166 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30173 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10251 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30167 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30174 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10251 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30168 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30175 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10249 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30163 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30176 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10249 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30164 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30177 |15 | |10249 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30165 |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30178 |15 | |10249 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30166 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30179 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10249 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30167 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30180 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10249 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30168 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30181 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10254 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30163 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30182 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10254 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30164 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30183 |15 | |10254 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30165 |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30184 |15 | |10254 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30166 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30185 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10254 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30167 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30186 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10254 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30168 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30424 |0 | |10081 |Windows services discovery |service.discovery |1h |90d |0 |0 |4 | | | | |30423 |NULL | | |0 | | | | |1 |NULL |Discovery of Windows services of different types as defined in template's macros. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30426 |0 | |10081 |State of service "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) |service.info["{#SERVICE.NAME}",state] |1m |7d |365d |0 |3 | | | | |30425 |3 | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30428 |7 | |10299 |Windows services discovery |service.discovery |1h |90d |0 |0 |4 | | | | |30427 |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 |30430 |7 | |10299 |State of service "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) |service.info["{#SERVICE.NAME}",state] |1m |7d |365d |0 |3 | | | | |30429 |3 | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31271 |18 | |10001 |Memory utilization |vm.memory.utilization |0 |7d |365d |0 |0 | |% | | |31270 |NULL | | |0 | | | | |0 |NULL |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |29140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31272 |18 | |10084 |Memory utilization |vm.memory.utilization |0 |7d |365d |0 |0 | |% | | |31271 |NULL | | |0 | | | | |0 |NULL |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |29177 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31274 |0 | |10001 |Block devices discovery |vfs.dev.discovery |1h |90d |0 |0 |4 | | | | |31273 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31275 |0 | |10084 |Block devices discovery |vfs.dev.discovery |1h |90d |0 |0 |4 | | | | |31274 |NULL | | |0 | | | | |1 |1 | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31279 |15 | |10001 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |31276 |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 |31280 |15 | |10001 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |31277 |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 |31281 |0 | |10001 |{#DEVNAME}: Get stats |vfs.file.contents[/sys/block/{#DEVNAME}/stat] |1m |0 |0 |0 |4 | | | | |31278 |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 |31282 |15 | |10084 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |31279 |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 |31283 |15 | |10084 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |31280 |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 |31284 |0 | |10084 |{#DEVNAME}: Get stats |vfs.file.contents[/sys/block/{#DEVNAME}/stat] |1m |0 |0 |0 |4 | | | | |31281 |NULL | | |0 | | | | |2 |1 |Get contents of /sys/block/{#DEVNAME}/stat for disk stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31291 |18 | |10001 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31285 |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 | |31281 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31292 |18 | |10001 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!r/s | | |31286 |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |31281 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31293 |18 | |10001 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31287 |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |31281 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31294 |18 | |10001 |{#DEVNAME}: Disk utilization |vfs.dev.util[{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |31288 |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 | |31281 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31295 |18 | |10001 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!w/s | | |31289 |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |31281 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31296 |18 | |10001 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31290 |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |31281 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31297 |18 | |10084 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31291 |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 | |31284 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31298 |18 | |10084 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!r/s | | |31292 |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |31284 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31299 |18 | |10084 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31293 |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |31284 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31300 |18 | |10084 |{#DEVNAME}: Disk utilization |vfs.dev.util[{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |31294 |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 | |31284 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31301 |18 | |10084 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!w/s | | |31295 |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |31284 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31302 |18 | |10084 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31296 |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |31284 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31304 |18 | |10284 |Memory utilization |vm.memory.utilization |0 |7d |365d |0 |0 | |% | | |31303 |NULL | | |0 | | | | |0 |NULL |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |29326 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31306 |7 | |10284 |Block devices discovery |vfs.dev.discovery |1h |90d |0 |0 |4 | | | | |31305 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31310 |15 | |10284 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |31307 |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 |31311 |15 | |10284 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |31308 |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 |31312 |7 | |10284 |{#DEVNAME}: Get stats |vfs.file.contents[/sys/block/{#DEVNAME}/stat] |1m |0 |0 |0 |4 | | | | |31309 |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 |31319 |18 | |10284 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31313 |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 | |31312 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31320 |18 | |10284 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!r/s | | |31314 |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |31312 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31321 |18 | |10284 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31315 |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |31312 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31322 |18 | |10284 |{#DEVNAME}: Disk utilization |vfs.dev.util[{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |31316 |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 | |31312 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31323 |18 | |10284 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!w/s | | |31317 |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |31312 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31324 |18 | |10284 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31318 |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |31312 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31328 |0 | |10081 |Number of cores |wmi.get[root/cimv2,"Select NumberOfLogicalProcessors from Win32_ComputerSystem"] |1m |7d |365d |0 |3 | | | | |31325 |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 |31329 |0 | |10081 |Used swap space in % |perf_counter_en["\Paging file(_Total)\% Usage"] |1m |7d |365d |0 |0 | |% | | |31326 |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 |31330 |15 | |10081 |Free swap space |system.swap.free |1m |7d |365d |0 |3 | |B | | |31327 |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 |31332 |18 | |10081 |Free swap space in % |system.swap.pfree |0 |7d |365d |0 |0 | |% | | |31331 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |31329 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31334 |0 | |10081 |Physical disks discovery |perf_instance_en.discovery[PhysicalDisk] |1h |90d |0 |0 |4 | | | | |31333 |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 |31339 |0 | |10081 |{#DEVNAME}: Disk utilization |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Disk Time",60] |1m |7d |365d |0 |0 | |% | | |31335 |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 |31340 |0 | |10081 |{#DEVNAME}: Disk average queue size (avgqu-sz) |perf_counter_en["\PhysicalDisk({#DEVNAME})\Current Disk Queue Length",60] |1m |7d |365d |0 |0 | | | | |31336 |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 |31341 |0 | |10081 |{#DEVNAME}: Disk read rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Reads/sec",60] |1m |7d |365d |0 |0 | |!r/s | | |31337 |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 |31342 |0 | |10081 |{#DEVNAME}: Disk write rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Writes/sec",60] |1m |7d |365d |0 |0 | |!w/s | | |31338 |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 |31346 |7 | |10299 |Number of cores |wmi.get[root/cimv2,"Select NumberOfLogicalProcessors from Win32_ComputerSystem"] |1m |7d |365d |0 |3 | | | | |31343 |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 |31347 |7 | |10299 |Used swap space in % |perf_counter_en["\Paging file(_Total)\% Usage"] |1m |7d |365d |0 |0 | |% | | |31344 |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 |31348 |15 | |10299 |Free swap space |system.swap.free |1m |7d |365d |0 |3 | |B | | |31345 |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 |31350 |18 | |10299 |Free swap space in % |system.swap.pfree |0 |7d |365d |0 |0 | |% | | |31349 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |31347 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31352 |7 | |10299 |Physical disks discovery |perf_instance_en.discovery[PhysicalDisk] |1h |90d |0 |0 |4 | | | | |31351 |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 |31357 |7 | |10299 |{#DEVNAME}: Disk utilization |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Disk Time",60] |1m |7d |365d |0 |0 | |% | | |31353 |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 |31358 |7 | |10299 |{#DEVNAME}: Disk average queue size (avgqu-sz) |perf_counter_en["\PhysicalDisk({#DEVNAME})\Current Disk Queue Length",60] |1m |7d |365d |0 |0 | | | | |31354 |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 |31359 |7 | |10299 |{#DEVNAME}: Disk read rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Reads/sec",60] |1m |7d |365d |0 |0 | |!r/s | | |31355 |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 |31360 |7 | |10299 |{#DEVNAME}: Disk write rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Writes/sec",60] |1m |7d |365d |0 |0 | |!w/s | | |31356 |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 |31456 |0 | |10081 |Network interfaces WMI get |wmi.getall[root\cimv2,"select Name,Description,NetConnectionID,Speed,AdapterTypeId,NetConnectionStatus from win32_networkadapter where PhysicalAdapter=True and NetConnectionStatus>0"]|1m |0 |0 |0 |4 | | | | |31455 |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 |31458 |18 | |10081 |Network interfaces discovery |net.if.discovery |0 |90d |0 |0 |4 | | | | |31457 |NULL | | |0 | | | | |1 |NULL |Discovery of installed network interfaces. |0 |30d |1 | |31456 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31465 |0 | |10081 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |31459 |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 |31466 |0 | |10081 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |31460 |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 |31467 |0 | |10081 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |31461 |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 |31468 |0 | |10081 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |31462 |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 |31469 |0 | |10081 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |31463 |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 |31470 |0 | |10081 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |31464 |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 |31474 |18 | |10081 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFNAME}"] |0 |7d |0d |0 |3 | |bps | | |31471 |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |31456 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31475 |18 | |10081 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status["{#IFNAME}"] |0 |7d |0 |0 |3 | | | | |31472 |81 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |31456 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31476 |18 | |10081 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFNAME}"] |0 |7d |0d |0 |3 | | | | |31473 |79 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |31456 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31478 |7 | |10299 |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 | | | | |31477 |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 |31480 |18 | |10299 |Network interfaces discovery |net.if.discovery |0 |90d |0 |0 |4 | | | | |31479 |NULL | | |0 | | | | |1 |NULL |Discovery of installed network interfaces. |0 |30d |1 | |31478 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31487 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |31481 |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 |31488 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |31482 |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 |31489 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |31483 |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 |31490 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |31484 |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 |31491 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |31485 |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 |31492 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |31486 |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 |31496 |18 | |10299 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFNAME}"] |0 |7d |0d |0 |3 | |bps | | |31493 |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |31478 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31497 |18 | |10299 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status["{#IFNAME}"] |0 |7d |0 |0 |3 | | | | |31494 |81 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |31478 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31498 |18 | |10299 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFNAME}"] |0 |7d |0d |0 |3 | | | | |31495 |79 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |31478 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+FIELDS|itemid|type|snmp_oid |hostid|name |key_ |delay |history|trends|status|value_type|trapper_hosts|units |formula|logtimefmt |templateid|valuemapid|params |ipmi_sensor |authtype|username |password |publickey|privatekey|flags|interfaceid|description |inventory_link|lifetime|evaltype|jmx_endpoint |master_itemid|timeout|url |query_fields |posts|status_codes|follow_redirects|post_type|headers |retrieve_mode|request_method|output_format|verify_peer|verify_host|allow_traps|discover|
+ROW |10061 |5 | |10047 |Number of processed numeric (float) values per second |zabbix[wcache,values,float] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10062 |5 | |10047 |Number of processed character values per second |zabbix[wcache,values,str] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10063 |5 | |10047 |Number of processed log values per second |zabbix[wcache,values,log] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10064 |5 | |10047 |Number of processed numeric (unsigned) values per second |zabbix[wcache,values,uint] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10065 |5 | |10047 |Number of processed text values per second |zabbix[wcache,values,text] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10066 |5 | |10047 |Number of processed not supported values per second |zabbix[wcache,values,not supported] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10067 |5 | |10048 |Number of processed numeric (float) values per second |zabbix[wcache,values,float] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |10068 |5 | |10048 |Number of processed character values per second |zabbix[wcache,values,str] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |10069 |5 | |10048 |Number of processed log values per second |zabbix[wcache,values,log] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |10070 |5 | |10048 |Number of processed numeric (unsigned) values per second |zabbix[wcache,values,uint] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |10071 |5 | |10048 |Number of processed text values per second |zabbix[wcache,values,text] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |10072 |5 | |10048 |Number of processed not supported values per second |zabbix[wcache,values,not supported] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |22183 |5 | |10047 |Zabbix history write cache, % used |zabbix[wcache,history,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22185 |5 | |10047 |Zabbix trend write cache, % used |zabbix[wcache,trend,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22187 |5 | |10047 |Number of processed values per second |zabbix[wcache,values] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22189 |5 | |10047 |Zabbix configuration cache, % used |zabbix[rcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22191 |5 | |10047 |Zabbix value cache, % used |zabbix[vcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22196 |5 | |10047 |Zabbix value cache hits |zabbix[vcache,cache,hits] |1m |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22199 |5 | |10047 |Zabbix value cache misses |zabbix[vcache,cache,misses] |1m |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22219 |5 | |10047 |Zabbix queue over 10 minutes |zabbix[queue,10m] |10m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22231 |0 | |10050 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22232 |0 | |10050 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |NULL |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22396 |5 | |10047 |Zabbix history index cache, % used |zabbix[wcache,index,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22399 |5 | |10047 |Utilization of poller data collector processes, in % |zabbix[process,poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22400 |5 | |10047 |Utilization of unreachable poller data collector processes, in % |zabbix[process,unreachable poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22401 |5 | |10047 |Utilization of vmware data collector processes, in % |zabbix[process,vmware collector,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22402 |5 | |10047 |Utilization of http poller data collector processes, in % |zabbix[process,http poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22404 |5 | |10047 |Utilization of trapper data collector processes, in % |zabbix[process,trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22406 |5 | |10047 |Utilization of history syncer internal processes, in % |zabbix[process,history syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22408 |5 | |10047 |Utilization of housekeeper internal processes, in % |zabbix[process,housekeeper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22412 |5 | |10047 |Utilization of configuration syncer internal processes, in % |zabbix[process,configuration syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22414 |5 | |10047 |Utilization of self-monitoring internal processes, in % |zabbix[process,self-monitoring,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22416 |5 | |10047 |Utilization of ipmi poller data collector processes, in % |zabbix[process,ipmi poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22418 |5 | |10047 |Utilization of icmp pinger data collector processes, in % |zabbix[process,icmp pinger,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22420 |5 | |10047 |Utilization of proxy poller data collector processes, in % |zabbix[process,proxy poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22422 |5 | |10047 |Utilization of escalator internal processes, in % |zabbix[process,escalator,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22424 |5 | |10047 |Utilization of alerter internal processes, in % |zabbix[process,alerter,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22426 |5 | |10047 |Utilization of timer internal processes, in % |zabbix[process,timer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22430 |5 | |10047 |Utilization of discoverer data collector processes, in % |zabbix[process,discoverer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22689 |5 | |10047 |Utilization of java poller data collector processes, in % |zabbix[process,java poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22835 |0 | |10074 |Maximum number of opened files |kernel.maxfiles |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22836 |0 | |10074 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22837 |0 | |10074 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22838 |0 | |10074 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22839 |0 | |10074 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22840 |0 | |10074 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22841 |0 | |10074 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22842 |0 | |10074 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22843 |0 | |10074 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22844 |0 | |10074 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22845 |0 | |10074 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22846 |0 | |10074 |CPU interrupt time |system.cpu.util[,interrupt] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22848 |0 | |10074 |CPU nice time |system.cpu.util[,nice] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22851 |0 | |10074 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22852 |0 | |10074 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22853 |0 | |10074 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22854 |0 | |10074 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22855 |0 | |10074 |Free swap space |system.swap.size[,free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22856 |0 | |10074 |Free swap space in % |system.swap.size[,pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22857 |0 | |10074 |Total swap space |system.swap.size[,total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22858 |0 | |10074 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22859 |0 | |10074 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22860 |0 | |10074 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22861 |0 | |10074 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22862 |0 | |10074 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22863 |0 | |10074 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22867 |0 | |10074 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22868 |0 | |10074 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22869 |0 | |10074 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22870 |0 | |10074 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22871 |0 | |10074 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22872 |0 | |10074 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22875 |0 | |10075 |Maximum number of opened files |kernel.maxfiles |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22876 |0 | |10075 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22877 |0 | |10075 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22878 |0 | |10075 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22879 |0 | |10075 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22880 |0 | |10075 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22881 |0 | |10075 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22882 |0 | |10075 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22883 |0 | |10075 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22884 |0 | |10075 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22885 |0 | |10075 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22886 |0 | |10075 |CPU interrupt time |system.cpu.util[,interrupt] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22888 |0 | |10075 |CPU nice time |system.cpu.util[,nice] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22891 |0 | |10075 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22892 |0 | |10075 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22893 |0 | |10075 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22894 |0 | |10075 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22895 |0 | |10075 |Free swap space |system.swap.size[,free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22896 |0 | |10075 |Free swap space in % |system.swap.size[,pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22897 |0 | |10075 |Total swap space |system.swap.size[,total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22898 |0 | |10075 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22899 |0 | |10075 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22900 |0 | |10075 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22901 |0 | |10075 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22902 |0 | |10075 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22903 |0 | |10075 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22907 |0 | |10075 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22908 |0 | |10075 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22909 |0 | |10075 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22910 |0 | |10075 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22911 |0 | |10075 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22912 |0 | |10075 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22917 |0 | |10076 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22918 |0 | |10076 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22920 |0 | |10076 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22921 |0 | |10076 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22922 |0 | |10076 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22923 |0 | |10076 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22924 |0 | |10076 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22933 |0 | |10076 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22934 |0 | |10076 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22938 |0 | |10076 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22939 |0 | |10076 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22940 |0 | |10076 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22941 |0 | |10076 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22942 |0 | |10076 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22943 |0 | |10076 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22944 |0 | |10076 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22945 |0 | |10076 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22946 |0 | |10076 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22947 |0 | |10076 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22948 |0 | |10076 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22949 |0 | |10076 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22950 |0 | |10076 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22951 |0 | |10076 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22952 |0 | |10076 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22961 |0 | |10077 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22962 |0 | |10077 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22963 |0 | |10077 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22965 |0 | |10077 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22968 |0 | |10077 |CPU nice time |system.cpu.util[,nice] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22971 |0 | |10077 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22972 |0 | |10077 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22973 |0 | |10077 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22974 |0 | |10077 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22978 |0 | |10077 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22980 |0 | |10077 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22981 |0 | |10077 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22982 |0 | |10077 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22983 |0 | |10077 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22984 |0 | |10077 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22985 |0 | |10077 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22986 |0 | |10077 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22987 |0 | |10077 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22988 |0 | |10077 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22989 |0 | |10077 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22990 |0 | |10077 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22991 |0 | |10077 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22992 |0 | |10077 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22996 |0 | |10078 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22997 |0 | |10078 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22998 |0 | |10078 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22999 |0 | |10078 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23000 |0 | |10078 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23001 |0 | |10078 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23002 |0 | |10078 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23003 |0 | |10078 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23004 |0 | |10078 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23005 |0 | |10078 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23007 |0 | |10078 |CPU iowait time |system.cpu.util[,iowait] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23011 |0 | |10078 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23012 |0 | |10078 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23013 |0 | |10078 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23014 |0 | |10078 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23015 |0 | |10078 |Free swap space |system.swap.size[,free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23016 |0 | |10078 |Free swap space in % |system.swap.size[,pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23017 |0 | |10078 |Total swap space |system.swap.size[,total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23018 |0 | |10078 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23019 |0 | |10078 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23020 |0 | |10078 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23021 |0 | |10078 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23022 |0 | |10078 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23023 |0 | |10078 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23024 |0 | |10078 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23025 |0 | |10078 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23026 |0 | |10078 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23027 |0 | |10078 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23028 |0 | |10078 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23029 |0 | |10078 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23030 |0 | |10078 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23031 |0 | |10078 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23032 |0 | |10078 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23035 |0 | |10079 |Maximum number of opened files |kernel.maxfiles |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23036 |0 | |10079 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23039 |0 | |10079 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23041 |0 | |10079 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23042 |0 | |10079 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23043 |0 | |10079 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23053 |0 | |10079 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23054 |0 | |10079 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23058 |0 | |10079 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23059 |0 | |10079 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23060 |0 | |10079 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23061 |0 | |10079 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23062 |0 | |10079 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23063 |0 | |10079 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23067 |0 | |10079 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23068 |0 | |10079 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23069 |0 | |10079 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23070 |0 | |10079 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23071 |0 | |10079 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23072 |0 | |10079 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23073 |0 | |10075 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23074 |0 | |10075 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23075 |0 | |10074 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23076 |0 | |10074 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23077 |0 | |10079 |Incoming network traffic on en0 |net.if.in[en0] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23078 |0 | |10079 |Outgoing network traffic on en0 |net.if.out[en0] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23108 |0 | |10076 |CPU available physical processors in the shared pool |system.stat[cpu,app] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23109 |0 | |10076 |CPU entitled capacity consumed |system.stat[cpu,ec] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23110 |0 | |10076 |CPU idle time |system.stat[cpu,id] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23111 |0 | |10076 |CPU logical processor utilization |system.stat[cpu,lbusy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23112 |0 | |10076 |CPU number of physical processors consumed |system.stat[cpu,pc] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23113 |0 | |10076 |CPU system time |system.stat[cpu,sy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23114 |0 | |10076 |CPU user time |system.stat[cpu,us] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23115 |0 | |10076 |CPU iowait time |system.stat[cpu,wa] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23116 |0 | |10076 |Amount of data transferred |system.stat[disk,bps] |1m |1w |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23117 |0 | |10076 |Number of transfers |system.stat[disk,tps] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23118 |0 | |10076 |Processor units is entitled to receive |system.stat[ent] |1h |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23119 |0 | |10076 |Kernel thread context switches |system.stat[faults,cs] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23120 |0 | |10076 |Device interrupts |system.stat[faults,in] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23121 |0 | |10076 |System calls |system.stat[faults,sy] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23122 |0 | |10076 |Length of the swap queue |system.stat[kthr,b] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23123 |0 | |10076 |Length of the run queue |system.stat[kthr,r] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23124 |0 | |10076 |Active virtual pages |system.stat[memory,avm] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23125 |0 | |10076 |Free real memory |system.stat[memory,fre] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23126 |0 | |10076 |File page-ins per second |system.stat[page,fi] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23127 |0 | |10076 |File page-outs per second |system.stat[page,fo] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23128 |0 | |10076 |Pages freed (page replacement) |system.stat[page,fr] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23129 |0 | |10076 |Pages paged in from paging space |system.stat[page,pi] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23130 |0 | |10076 |Pages paged out to paging space |system.stat[page,po] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23131 |0 | |10076 |Pages scanned by page-replacement algorithm |system.stat[page,sr] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23171 |5 | |10047 |Utilization of snmp trapper data collector processes, in % |zabbix[process,snmp trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23251 |5 | |10047 |Zabbix queue |zabbix[queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23318 |0 | |10050 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23329 |0 | |10074 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23340 |5 | |10048 |Number of processed values per second |zabbix[wcache,values] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23341 |5 | |10048 |Zabbix history index cache, % used |zabbix[wcache,index,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23342 |5 | |10048 |Zabbix history write cache, % used |zabbix[wcache,history,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23343 |5 | |10048 |Utilization of self-monitoring internal processes, in % |zabbix[process,self-monitoring,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23344 |5 | |10048 |Utilization of snmp trapper data collector processes, in % |zabbix[process,snmp trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23345 |5 | |10048 |Utilization of trapper data collector processes, in % |zabbix[process,trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23346 |5 | |10048 |Utilization of unreachable poller data collector processes, in % |zabbix[process,unreachable poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23347 |5 | |10048 |Utilization of configuration syncer internal processes, in % |zabbix[process,configuration syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23348 |5 | |10048 |Utilization of poller data collector processes, in % |zabbix[process,poller,avg,busy] |1m |1w |365d |0 |0 |localhost |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23349 |5 | |10048 |Utilization of java poller data collector processes, in % |zabbix[process,java poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23350 |5 | |10048 |Utilization of history syncer internal processes, in % |zabbix[process,history syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23351 |5 | |10048 |Utilization of heartbeat sender internal processes, in % |zabbix[process,heartbeat sender,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23352 |5 | |10048 |Utilization of discoverer data collector processes, in % |zabbix[process,discoverer,avg,busy] |1m |1w |365d |0 |0 |localhost |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23353 |5 | |10048 |Utilization of housekeeper internal processes, in % |zabbix[process,housekeeper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23354 |5 | |10048 |Utilization of http poller data collector processes, in % |zabbix[process,http poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23355 |5 | |10048 |Utilization of ipmi poller data collector processes, in % |zabbix[process,ipmi poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23356 |5 | |10048 |Utilization of icmp pinger data collector processes, in % |zabbix[process,icmp pinger,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23357 |5 | |10048 |Zabbix configuration cache, % used |zabbix[rcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23358 |5 | |10048 |Zabbix queue |zabbix[queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23359 |5 | |10048 |Zabbix queue over 10 minutes |zabbix[queue,10m] |10m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23360 |5 | |10048 |Utilization of data sender internal processes, in % |zabbix[process,data sender,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23540 |0 | |10075 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23634 |5 | |10047 |Zabbix vmware cache, % used |zabbix[vmware,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23644 |3 | |10093 |FTP service is running |net.tcp.service[ftp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23645 |3 | |10094 |HTTP service is running |net.tcp.service[http] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23646 |3 | |10095 |HTTPS service is running |net.tcp.service[https] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23647 |3 | |10096 |IMAP service is running |net.tcp.service[imap] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23648 |3 | |10097 |LDAP service is running |net.tcp.service[ldap] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23649 |3 | |10098 |NNTP service is running |net.tcp.service[nntp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23650 |3 | |10099 |NTP service is running |net.udp.service[ntp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23651 |3 | |10100 |POP service is running |net.tcp.service[pop] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23652 |3 | |10101 |SMTP service is running |net.tcp.service[smtp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23653 |3 | |10102 |SSH service is running |net.tcp.service[ssh] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23654 |3 | |10103 |Telnet service is running |net.tcp.service[telnet] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23661 |5 | |10047 |Zabbix value cache operating mode |zabbix[vcache,cache,mode] |1m |1w |365d |0 |3 | | | | |NULL |15 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23663 |5 | |10047 |Utilization of task manager internal processes, in % |zabbix[process,task manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25366 |5 | |10047 |Utilization of ipmi manager internal processes, in % |zabbix[process,ipmi manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25368 |5 | |10048 |Utilization of ipmi manager internal processes, in % |zabbix[process,ipmi manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |25369 |5 | |10048 |Utilization of task manager internal processes, in % |zabbix[process,task manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |25370 |5 | |10047 |Utilization of alert manager internal processes, in % |zabbix[process,alert manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25665 |5 | |10047 |Utilization of preprocessing manager internal processes, in % |zabbix[process,preprocessing manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25666 |5 | |10047 |Utilization of preprocessing worker internal processes, in % |zabbix[process,preprocessing worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26925 |12 | |10171 |Power |power |1m |1w |365d |0 |3 | | | | |NULL |NULL | |power |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26926 |12 | |10171 |Processor Vcc |processor_vcc |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |Processor Vcc |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26927 |12 | |10171 |System Fan 3 |system_fan_3 |1m |1w |365d |0 |0 | |RPM | | |NULL |NULL | |System Fan 3 |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26928 |12 | |10171 |BB Ambient Temp |bb_ambient_temp |1m |1w |365d |0 |0 | |C | | |NULL |NULL | |BB Ambient Temp |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26929 |12 | |10171 |BB +5.0V |bb_5.0v |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +5.0V |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26930 |12 | |10171 |BB +3.3V |bb_3.3v |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +3.3V |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26931 |12 | |10171 |BB +3.3V STBY |bb_3.3v_stby |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +3.3V STBY |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26932 |12 | |10171 |BB +1.8V SM |bb_1.8v_sm |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +1.8V SM |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26933 |12 | |10172 |Front Panel Temp |front_panel_temp |1m |1w |365d |0 |0 | |C | | |NULL |NULL | |Front Panel Temp|0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26934 |12 | |10172 |Power |power |1m |1w |365d |0 |3 | | | | |NULL |NULL | |power |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26935 |12 | |10172 |System Fan 2 |system_fan_2 |1m |1w |365d |0 |0 | |RPM | | |NULL |NULL | |System Fan 2 |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26936 |12 | |10172 |System Fan 3 |system_fan_3 |1m |1w |365d |0 |0 | |RPM | | |NULL |NULL | |System Fan 3 |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26937 |12 | |10172 |BB +5.0V |bb_5.0v |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +5.0V |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26938 |12 | |10172 |BB +3.3V STBY |bb_3.3v_stby |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +3.3V STBY |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26939 |12 | |10172 |BB +1.05V PCH |bb_1.05v_pch |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +1.05V PCH |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26940 |12 | |10172 |BB +1.1V P1 Vccp |bb_1.1v_p1_vccp |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +1.1V P1 Vccp|0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26941 |12 | |10172 |BB +1.5V P1 DDR3 |bb_1.5v_p1_ddr3 |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +1.5V P1 DDR3|0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26942 |12 | |10172 |BB +3.3V |bb_3.3v |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +3.3V |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26943 |12 | |10172 |Baseboard Temp |baseboard_temp |1m |1w |365d |0 |0 | |C | | |NULL |NULL | |Baseboard Temp |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27031 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10183 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27032 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10183 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27065 |3 | |10186 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27066 |3 | |10186 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27067 |3 | |10186 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27078 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10188 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27079 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27080 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27081 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27082 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27083 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27084 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27085 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27086 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27087 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27098 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10190 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27099 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27100 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27101 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27102 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27103 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27104 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27105 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27106 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27107 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27118 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10192 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27119 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27120 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27121 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27122 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27123 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27124 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27125 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27126 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27127 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27152 |20 |1.3.6.1.2.1.1.5.0 |10204 |System name |system.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27154 |5 | |10204 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27157 |17 | |10204 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27203 |20 |1.3.6.1.2.1.1.1.0 |10207 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27207 |20 |1.3.6.1.4.1.6527.3.1.2.1.1.9.0 |10207 |Used memory |vm.memory.used[sgiKbMemoryUsed.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The value of sgiKbMemoryUsed indicates the total pre-allocated pool memory, in kilobytes, currently in use on the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27208 |20 |1.3.6.1.4.1.6527.3.1.2.1.1.1.0 |10207 |CPU utilization |system.cpu.util[sgiCpuUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The value of sgiCpuUsage indicates the current CPU utilization for the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27209 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8,{#TEMP_SENSOR},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.17] |10207 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27210 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6527.3.1.2.2.1.4.1.2] |10207 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27211 |20 |discovery[{#ENT_NAME},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8,{#ENT_CLASS},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.7,{#ENT_SN},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5] |10207 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27212 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.{#SNMPINDEX} |10207 |{#SNMPVALUE}: Temperature |sensor.temp.value[tmnxHwTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The current temperature reading in degrees celsius from this hardware component's temperature sensor. If this component does not contain a temperature sensor, then the value -1 is returned. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27213 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.4.1.2.{#SNMPINDEX} |10207 |#{#SNMPINDEX}: Fan status |sensor.fan.status[tmnxChassisFanOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |23 | | |0 | | | | |2 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;Current status of the Fan tray. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27214 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5.{#SNMPINDEX} |10207 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[tmnxHwSerialNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TIMETRA-CHASSIS-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27236 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.6.0 |10208 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27237 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.10.0 |10208 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27238 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.7.0 |10208 |Overall system health status |system.status[swOperStatus.0] |30s |2w |0d |0 |3 | | | | |NULL |25 | | |0 | | | | |0 |NULL |MIB: SW-MIB&eol;The current operational status of the switch.The states are as follow:&eol;online(1) means the switch is accessible by an external Fibre Channel port&eol;offline(2) means the switch is not accessible&eol;testing(3) means the switch is in a built-in test mode and is not accessible by an external Fibre Channel port&eol;faulty(4) means the switch is not operational. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27240 |20 |1.3.6.1.4.1.1588.2.1.1.1.26.1.0 |10208 |CPU utilization |system.cpu.util[swCpuUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB&eol;System's CPU usage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27242 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5] |10208 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27243 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5] |10208 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27244 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5] |10208 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27246 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[swSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |24 | | |0 | | | | |2 |NULL |MIB: SW-MIB&eol;Temperature status of testpoint: {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27247 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Temperature |sensor.temp.value[swSensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: SW-MIB&eol;Temperature readings of testpoint: {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27248 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[swSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |24 | | |0 | | | | |2 |NULL |MIB: SW-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27249 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Fan speed |sensor.fan.speed[swSensorValue.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: SW-MIB&eol;The current value (reading) of the sensor.&eol;The value, -2147483648, represents an unknown quantity.&eol;The fan value will be in RPM(revolution per minute) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27250 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Fan status |sensor.fan.status[swSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |24 | | |0 | | | | |2 |NULL |MIB: SW-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27294 |20 |1.3.6.1.4.1.1991.1.1.2.1.52.0 |10209 |CPU utilization |system.cpu.util[snAgGblCpuUtil1MinAvg.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The statistics collection of 1 minute CPU utilization. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27295 |20 |1.3.6.1.4.1.1991.1.1.2.1.11.0 |10210 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The version of the running software in the form'major.minor.maintenance[letters]' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27296 |20 |1.3.6.1.4.1.1991.1.1.1.1.2.0 |10210 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27297 |20 |1.3.6.1.4.1.1991.1.1.2.1.11.0 |10211 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The version of the running software in the form 'major.minor.maintenance[letters]' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27302 |20 |discovery[{#PSU_INDEX},1.3.6.1.4.1.1991.1.1.1.2.1.1.1] |10210 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasPwrSupplyTable: A table of each power supply information. Only installed power supply appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27303 |20 |discovery[{#FAN_INDEX},1.3.6.1.4.1.1991.1.1.1.3.1.1.1] |10210 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasFanTable: A table of each fan information. Only installed fan appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27304 |20 |discovery[{#SENSOR_DESCR},1.3.6.1.4.1.1991.1.1.2.13.1.1.3] |10210 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snAgentTempTable:Table to list temperatures of the modules in the device. This table is applicable to only those modules with temperature sensors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27306 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.1.1.18] |10210 |Temperature Discovery Chassis |temp.chassis.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Since temperature of the chassis is not available on all Brocade/Foundry hardware, this LLD is here to avoid unsupported items. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27307 |20 |discovery[{#PSU_UNIT},1.3.6.1.4.1.1991.1.1.1.2.2.1.1,{#PSU_INDEX},1.3.6.1.4.1.1991.1.1.1.2.2.1.2] |10211 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasPwrSupply2Table: A table of each power supply information for each unit. Only installed power supply appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27308 |20 |discovery[{#FAN_UNIT},1.3.6.1.4.1.1991.1.1.1.3.2.1.1,{#FAN_INDEX},1.3.6.1.4.1.1991.1.1.1.3.2.1.2] |10211 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasFan2Table: A table of each fan information for each unit. Only installed fan appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27309 |20 |discovery[{#SENSOR_DESCR},1.3.6.1.4.1.1991.1.1.2.13.3.1.4] |10211 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snAgentTemp2Table:Table to list temperatures of the modules in the device for each unit. This table is applicable to only those modules with temperature sensors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27310 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.3.31.2.1.1.5] |10211 |Stack Discovery |stack.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering snStackingConfigUnitTable for Model names |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27311 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.1.4.1.1.1] |10211 |Chassis Discovery |chassis.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasUnitIndex: The index to chassis table. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27312 |20 |1.3.6.1.4.1.1991.1.1.1.2.1.1.3.{#SNMPINDEX} |10210 |PSU {#PSU_INDEX}: Power supply status |sensor.psu.status[snChasPwrSupplyOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |26 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27313 |20 |1.3.6.1.4.1.1991.1.1.1.3.1.1.3.{#SNMPINDEX} |10210 |Fan {#FAN_INDEX}: Fan status |sensor.fan.status[snChasFanOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |27 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27314 |20 |1.3.6.1.4.1.1991.1.1.2.13.1.1.4.{#SNMPINDEX} |10210 |{#SENSOR_DESCR}: Temperature |sensor.temp.value[snAgentTempValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;Temperature of the sensor represented by this row. Each unit is 0.5 degrees Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27315 |20 |1.3.6.1.4.1.1991.1.1.1.1.18.{#SNMPINDEX} |10210 |Chassis #{#SNMPINDEX}: Temperature |sensor.temp.value[snChasActualTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;Temperature of the chassis. Each unit is 0.5 degrees Celcius.&eol;Only management module built with temperature sensor hardware is applicable.&eol;For those non-applicable management module, it returns no-such-name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27316 |20 |1.3.6.1.4.1.1991.1.1.1.2.2.1.4.{#SNMPINDEX} |10211 |Unit {#PSU_UNIT} PSU {#PSU_INDEX}: Power supply status |sensor.psu.status[snChasPwrSupply2OperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |26 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27317 |20 |1.3.6.1.4.1.1991.1.1.1.3.2.1.4.{#SNMPINDEX} |10211 |Unit {#FAN_UNIT} Fan {#FAN_INDEX}: Fan status |sensor.fan.status[snChasFan2OperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |27 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27318 |20 |1.3.6.1.4.1.1991.1.1.2.13.3.1.5.{#SNMPINDEX} |10211 |{#SENSOR_DESCR}: Temperature |sensor.temp.value[snAgentTemp2Value.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;Temperature of the sensor represented by this row. Each unit is 0.5 degrees Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27319 |20 |1.3.6.1.4.1.1991.1.1.3.31.2.1.1.5.{#SNMPINDEX} |10211 |Unit {#SNMPINDEX}: Hardware model name |system.hw.model[snStackingConfigUnitType.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-STACKING-MIB&eol;A description of the configured/active system type for each unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27320 |20 |1.3.6.1.4.1.1991.1.1.1.4.1.1.2.{#SNMPINDEX} |10211 |Unit {#SNMPVALUE}: Hardware serial number |system.hw.serialnumber[snChasUnitSerNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The serial number of the chassis for each unit. If the serial number is unknown or unavailable then the value should be a zero length string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27376 |20 |1.3.6.1.4.1.9.2.1.58 |10215 |CPU utilization |system.cpu.util[avgBusy5] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: OLD-CISCO-CPU-MIB&eol;5 minute exponentially-decayed moving average of the CPU busy percentage.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27378 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10216 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27379 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10216 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27390 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10212 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.&eol;http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27391 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10213 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&eol;indexed with cpmCPUTotalIndex .&eol;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&eol;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&eol;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27393 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10216 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27394 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10217 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status&eol;maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27395 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.5.1.2] |10217 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of power supply status maintained by the environmental monitor card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27396 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.4.1.2] |10217 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of fan status maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27415 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10212 |{#SNMPVALUE}: Free memory |vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27416 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10212 |{#SNMPVALUE}: Used memory |vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27417 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10213 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[cpmCPUTotal5minRev.{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;The cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27419 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10216 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27420 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10217 |{#SNMPVALUE}: Temperature status |sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current state of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27421 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10217 |{#SNMPVALUE}: Temperature |sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current measurement of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27422 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10217 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27423 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10217 |{#SENSOR_INFO}: Fan status |sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27473 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.9.1.1] |10221 |CPU and Memory and Flash Discovery |module.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27474 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.3.1.1] |10221 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A list of power supply residents in the S-series chassis. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27475 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.4.1.1] |10221 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27476 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.2.1.2] |10221 |Stack Unit Discovery |stack.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27478 |20 |1.3.6.1.4.1.6027.3.10.1.2.9.1.3.{#SNMPINDEX} |10221 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[chStackUnitCpuUtil1Min.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;CPU utilization in percentage for last 1 minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27479 |20 |1.3.6.1.4.1.6027.3.10.1.2.3.1.2.{#SNMPINDEX} |10221 |PSU {#SNMPVALUE}: Power supply status |sensor.psu.status[chSysPowerSupplyOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |31 | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The status of the power supply {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27480 |20 |1.3.6.1.4.1.6027.3.10.1.2.4.1.2.{#SNMPINDEX} |10221 |Fan {#SNMPVALUE}: Fan status |sensor.fan.status[chSysFanTrayOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |30 | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The status of the fan tray {#SNMPVALUE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27481 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.10.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Operating system |system.sw.os[chStackUnitCodeVersion.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;Current code version of this unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27482 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.21.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Hardware version(revision) |system.hw.version[chStackUnitProductRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The unit manufacturer's product revision |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27483 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.12.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Hardware serial number |system.hw.serialnumber[chStackUnitSerialNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The unit's serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27484 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.7.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Hardware model name |system.hw.model[chStackUnitModelID.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The plugged-in model ID for this unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27485 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.14.{#SNMPINDEX} |10221 |Device {#SNMPVALUE}: Temperature |sensor.temp.value[chStackUnitTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The temperature of the unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27508 |20 |1.3.6.1.2.1.47.1.1.1.1.8.1 |10222 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27509 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10222 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27510 |20 |1.3.6.1.2.1.1.1.0 |10222 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27511 |20 |1.3.6.1.4.1.171.10.97.2.36.1.1.3.0 |10222 |CPU utilization |system.cpu.util[myCPUUtilization5Min.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MY-PROCESS-MIB&eol;CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27512 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.35.1.1.1.2] |10222 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27513 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.23.1.2] |10222 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27514 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.18.1.3] |10222 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27515 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.21.1.3] |10222 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27517 |20 |1.3.6.1.4.1.171.10.97.2.1.1.23.1.3.{#SNMPINDEX} |10222 |{#SNMPVALUE}: Temperature |sensor.temp.value[mySystemTemperatureCurrent.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MY-SYSTEM-MIB&eol;Return the current temperature of the FastSwitch.The temperature display is not supported for the current temperature returns to 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27518 |20 |1.3.6.1.4.1.171.10.97.2.1.1.18.1.2.{#SNMPINDEX} |10222 |{#SNMPVALUE}: Power supply status |sensor.psu.status[mySystemElectricalSourceIsNormal.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |32 | | |0 | | | | |2 |NULL |MIB: MY-SYSTEM-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27519 |20 |1.3.6.1.4.1.171.10.97.2.1.1.21.1.2.{#SNMPINDEX} |10222 |{#SNMPVALUE}: Fan status |sensor.fan.status[mySystemFanIsNormal.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |32 | | |0 | | | | |2 |NULL |MIB: MY-SYSTEM-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27543 |20 |1.3.6.1.2.1.47.1.1.1.1.8.1 |10223 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27544 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10223 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27545 |20 |1.3.6.1.4.1.171.12.1.1.12.0 |10223 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: DLINK-AGENT-MIB&eol;A text string containing the serial number of this device. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27546 |20 |1.3.6.1.2.1.1.1.0 |10223 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27547 |20 |1.3.6.1.4.1.171.12.1.1.6.2.0 |10223 |CPU utilization |system.cpu.util[agentCPUutilizationIn1min.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: DLINK-AGENT-MIB&eol;The unit of time is 1 minute. The value will be between 0% (idle) and 100%(very busy). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27548 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.1.1.9.1.1] |10223 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27549 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.8.1.1] |10223 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27550 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.6.1.2,{#STATUS},1.3.6.1.4.1.171.12.11.1.6.1.3] |10223 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |swPowerID of EQUIPMENT-MIB::swPowerTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27551 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.7.1.2,{#STATUS},1.3.6.1.4.1.171.12.11.1.7.1.3] |10223 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |swFanID of EQUIPMENT-MIB::swFanTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27553 |20 |1.3.6.1.4.1.171.12.11.1.8.1.2.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Temperature |sensor.temp.value[swTemperatureCurrent.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EQUIPMENT-MIB&eol;The shelf current temperature. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27554 |20 |1.3.6.1.4.1.171.12.11.1.6.1.3.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Power supply status |sensor.psu.status[swPowerStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |34 | | |0 | | | | |2 |NULL |MIB: EQUIPMENT-MIB&eol;Indicates the current power status.&eol;lowVoltage : The voltage of the power unit is too low.&eol;overCurrent: The current of the power unit is too high.&eol;working : The power unit is working normally.&eol;fail : The power unit has failed.&eol;connect : The power unit is connected but not powered on.&eol;disconnect : The power unit is not connected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27555 |20 |1.3.6.1.4.1.171.12.11.1.7.1.3.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Fan status |sensor.fan.status[swFanStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |33 | | |0 | | | | |2 |NULL |MIB: EQUIPMENT-MIB&eol;Indicates the current fan status.&eol;speed-0 : If the fan function is normal and the fan does not spin due to the temperature not reaching the threshold, the status of the fan is speed 0.&eol;speed-low : Fan spin using the lowest speed.&eol;speed-middle: Fan spin using the middle speed.&eol;speed-high : Fan spin using the highest speed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27579 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10224 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27580 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10224 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27582 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10224 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27583 |20 |1.3.6.1.2.1.47.1.1.1.1.2.1 |10224 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27584 |20 |1.3.6.1.4.1.1916.1.1.1.8.0 |10224 |Device: Temperature |sensor.temp.value[extremeCurrentTemperature.0] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Temperature readings of testpoint: Device&eol;Reference: https://gtacknowledge.extremenetworks.com/articles/Q_A/Does-EXOS-support-temperature-polling-via-SNMP-on-all-nodes-in-a-stack |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27585 |20 |1.3.6.1.4.1.1916.1.1.1.7.0 |10224 |Device: Temperature status |sensor.temp.status[extremeOverTemperatureAlarm.0] |3m |2w |0d |0 |3 | | | | |NULL |37 | | |0 | | | | |0 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Temperature status of testpoint: Device |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27586 |20 |1.3.6.1.4.1.1916.1.32.1.2.0 |10224 |CPU utilization |system.cpu.util[extremeCpuMonitorTotalUtilization.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: EXTREME-SOFTWARE-MONITOR-MIB&eol;Total CPU utlization (percentage) as of last sampling. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27587 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.32.2.2.1.1] |10224 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27588 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.1.1.27.1.1] |10224 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Table of status of all power supplies in the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27589 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.1.1.9.1.1] |10224 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27591 |20 |1.3.6.1.4.1.1916.1.32.2.2.1.2.{#SNMPINDEX} |10224 |#{#SNMPVALUE}: Total memory |vm.memory.total[extremeMemoryMonitorSystemTotal.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EXTREME-SOFTWARE-MONITOR-MIB&eol;Total amount of DRAM in Kbytes in the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27593 |20 |1.3.6.1.4.1.1916.1.1.1.27.1.2.{#SNMPINDEX} |10224 |PSU {#SNMPVALUE}: Power supply status |sensor.psu.status[extremePowerSupplyStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |38 | | |0 | | | | |2 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Status of the power supply {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27594 |20 |1.3.6.1.4.1.1916.1.1.1.9.1.4.{#SNMPINDEX} |10224 |Fan {#SNMPVALUE}: Fan speed |sensor.fan.speed[extremeFanSpeed.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;The speed (RPM) of a cooling fan in the fantray {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27595 |20 |1.3.6.1.4.1.1916.1.1.1.9.1.2.{#SNMPINDEX} |10224 |Fan {#SNMPVALUE}: Fan status |sensor.fan.status[extremeFanOperational.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |36 | | |0 | | | | |2 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Operational status of a cooling fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27665 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.47.1.1.1.1.2,{#MODULE_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10227 |Module Discovery |module.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Filter limits results to 'Module level1' or Fabric Modules |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27666 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.47.1.1.1.1.2,{#MODULE_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10227 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering modules temperature (same filter as in Module Discovery) plus and temperature sensors |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27667 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_DESCR},1.3.6.1.2.1.47.1.1.1.1.2] |10227 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of PhysicalClass - 7: fan(7) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27668 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_DESCR},1.3.6.1.2.1.47.1.1.1.1.2] |10227 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of PhysicalClass - 6: powerSupply(6) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27669 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10227 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27671 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.6.{#SNMPINDEX} |10227 |{#MODULE_NAME}: CPU utilization |system.cpu.util[hh3cEntityExtCpuUsage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;The CPU usage for this entity. Generally, the CPU usage&eol;will calculate the overall CPU usage on the entity, and it&eol;is not sensible with the number of CPU on the entity |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27672 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.12.{#SNMPINDEX} |10227 |{#SNMPVALUE}: Temperature |sensor.temp.value[hh3cEntityExtTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;The temperature for the {#SNMPVALUE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27673 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.19.{#SNMPINDEX} |10227 |{#ENT_NAME}: Fan status |sensor.fan.status[hh3cEntityExtErrorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |39 | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;Indicate the error state of this entity object.&eol;fanError(41) means that the fan stops working. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27674 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.19.{#SNMPINDEX} |10227 |{#ENT_NAME}: Power supply status |sensor.psu.status[hh3cEntityExtErrorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |39 | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;Indicate the error state of this entity object.&eol;psuError(51) means that the Power Supply Unit is in the state of fault.&eol;rpsError(61) means the Redundant Power Supply is in the state of fault. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27675 |20 |1.3.6.1.2.1.47.1.1.1.1.10.{#SNMPINDEX} |10227 |{#ENT_NAME}: Operating system |system.sw.os[entPhysicalSoftwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27676 |20 |1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX} |10227 |{#ENT_NAME}: Hardware version(revision) |system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27677 |20 |1.3.6.1.2.1.47.1.1.1.1.9.{#SNMPINDEX} |10227 |{#ENT_NAME}: Firmware version |system.hw.firmware[entPhysicalFirmwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27678 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10227 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27679 |20 |1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX} |10227 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalDescr.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27745 |20 |discovery[{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10229 |MPU Discovery |mpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |http://support.huawei.com/enterprise/KnowledgebaseReadAction.action?contentId=KB1000090234. Filter limits results to Main Processing Units |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27746 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10229 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27747 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2011.5.25.31.1.1.10.1.1] |10229 |FAN Discovery |discovery.fans |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27748 |20 |1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX} |10229 |{#ENT_NAME}: Hardware version(revision) |system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27749 |20 |1.3.6.1.2.1.47.1.1.1.1.10.{#SNMPINDEX} |10229 |{#ENT_NAME}: Operating system |system.sw.os[entPhysicalSoftwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27750 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10229 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27751 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.{#SNMPINDEX} |10229 |{#ENT_NAME}: Temperature |sensor.temp.value[hwEntityTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB&eol;The temperature for the {#SNMPVALUE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27753 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.{#SNMPINDEX} |10229 |{#ENT_NAME}: CPU utilization |system.cpu.util[hwEntityCpuUsage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB&eol;The CPU usage for this entity. Generally, the CPU usage will calculate the overall CPU usage on the entity, and itis not sensible with the number of CPU on the entity.&eol;Reference: http://support.huawei.com/enterprise/KnowledgebaseReadAction.action?contentId=KB1000090234 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27754 |20 |1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX} |10229 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalDescr.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27755 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.10.1.7.{#SNMPINDEX} |10229 |#{#SNMPVALUE}: Fan status |sensor.fan.status[hwEntityFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |41 | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27777 |20 |1.3.6.1.4.1.10222.2.1.1.1.0 |10230 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ICS-CHASSIS-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27778 |20 |1.3.6.1.4.1.10222.2.1.1.1.0 |10230 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ICS-CHASSIS-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27779 |20 |discovery[{#SENSOR_TYPE},1.3.6.1.4.1.10222.2.1.9.8.1.2,{#SENSOR_INFO},1.3.6.1.4.1.10222.2.1.9.8.1.7] |10230 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering sensor's table with temperature filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27780 |20 |discovery[{#ENT_CLASS},1.3.6.1.4.1.10222.2.1.1.9.1.3,{#ENT_NAME},1.3.6.1.4.1.10222.2.1.1.9.1.2] |10230 |Unit Discovery |unit.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27781 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.10222.2.1.4.7.1.2] |10230 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A textual description of the power supply, that can be assigned by the administrator. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27782 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.10222.2.1.6.5.1.2] |10230 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |icsChassisFanDescription of icsChassisFanTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27783 |20 |1.3.6.1.4.1.10222.2.1.9.8.1.3.{#SNMPINDEX} |10230 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[icsChassisSensorSlotOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |43 | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The operational status of the sensor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27784 |20 |1.3.6.1.4.1.10222.2.1.9.8.1.8.{#SNMPINDEX} |10230 |{#SENSOR_INFO}: Temperature |sensor.temp.value[icsChassisSensorSlotValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The current value read from the sensor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27785 |20 |1.3.6.1.4.1.10222.2.1.1.10.1.1.{#SNMPINDEX} |10230 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[icsChassisSystemUnitFruSerialNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The serial number of the FRU. If not available, this value is a zero-length string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27786 |20 |1.3.6.1.4.1.10222.2.1.4.7.1.3.{#SNMPINDEX} |10230 |{#SNMPVALUE}: Power supply status |sensor.psu.status[icsChassisPowerSupplyEntry.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |44 | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;Actual status of the power supply:&eol;(1) unknown: status not known.&eol;(2) disabled: power supply is disabled.&eol;(3) failed - power supply is unable to supply power due to failure.&eol;(4) warning - power supply is supplying power, but an output or sensor is bad or warning.&eol;(5) standby - power supply believed usable,but not supplying power.&eol;(6) engaged - power supply is supplying power.&eol;(7) redundant - power supply is supplying power, but not needed.&eol;(8) notPresent - power supply is supplying power is not present. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27787 |20 |1.3.6.1.4.1.10222.2.1.6.5.1.3.{#SNMPINDEX} |10230 |{#SNMPVALUE}: Fan status |sensor.fan.status[icsChassisFanOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |42 | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The operational status of the fan unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27812 |20 |1.3.6.1.4.1.2636.3.1.2.0 |10231 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: JUNIPER-MIB&eol;The name, model, or detailed description of the box,indicating which product the box is about, for example 'M40'. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27813 |20 |1.3.6.1.4.1.2636.3.1.3.0 |10231 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: JUNIPER-MIB&eol;The serial number of this subject, blank if unknown or unavailable. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27814 |20 |1.3.6.1.4.1.2636.3.4.2.3.1.0 |10231 |Overall system health status |system.status[jnxRedAlarmState.0] |30s |2w |0d |0 |3 | | | | |NULL |46 | | |0 | | | | |0 |NULL |MIB: JUNIPER-ALARM-MIB&eol;The red alarm indication on the craft interface panel.&eol;The red alarm is on when there is some system&eol;failure or power supply failure or the system&eol;is experiencing a hardware malfunction or some&eol;threshold is being exceeded.&eol;&eol;This red alarm state could be turned off by the&eol;ACO/LT (Alarm Cut Off / Lamp Test) button on the&eol;front panel module. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27815 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5] |10231 |CPU and Memory Discovery |jnxOperatingTable.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for CPU and Memory&eol;http://kb.juniper.net/InfoCenter/index?page=content&id=KB17526&actp=search. Filter limits results to Routing Engines |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27816 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.7,{#SENSOR_INFO},1.3.6.1.4.1.2636.3.1.13.1.5] |10231 |Temperature discovery |jnxOperatingTable.discovery.temp |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for Temperature&eol;http://kb.juniper.net/InfoCenter/index?page=content&id=KB17526&actp=search. Filter limits results to Routing Engines |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27817 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5.4] |10231 |FAN Discovery |jnxOperatingTable.discovery.fans |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for Fans |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27818 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5.2] |10231 |PSU Discovery |jnxOperatingTable.discovery.psu |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for Power Supplies |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27821 |20 |1.3.6.1.4.1.2636.3.1.13.1.7.{#SNMPINDEX} |10231 |{#SENSOR_INFO}: Temperature |sensor.temp.value[jnxOperatingTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB&eol;The temperature in Celsius (degrees C) of {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27822 |20 |1.3.6.1.4.1.2636.3.1.13.1.6.4.{#SNMPINDEX} |10231 |{#SNMPVALUE}: Fan status |sensor.fan.status[jnxOperatingState.4.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |47 | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27823 |20 |1.3.6.1.4.1.2636.3.1.13.1.6.2.{#SNMPINDEX} |10231 |{#SNMPVALUE}: Power supply status |sensor.psu.status[jnxOperatingState.2.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |47 | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB&eol;If they are using DC power supplies there is a known issue on PR 1064039 where the fans do not detect the temperature correctly and fail to cool the power supply causing the shutdown to occur.&eol;This is fixed in Junos 13.3R7 https://forums.juniper.net/t5/Routing/PEM-0-not-OK-MX104/m-p/289644#M14122 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27893 |20 |1.3.6.1.2.1.1.1.0 |10233 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27894 |20 |1.3.6.1.4.1.14988.1.1.7.3.0 |10233 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MIKROTIK-MIB&eol;RouterBOARD serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27895 |20 |1.3.6.1.4.1.14988.1.1.7.4.0 |10233 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MIKROTIK-MIB&eol;Current firmware version |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27898 |20 |1.3.6.1.2.1.25.2.3.1.5.65536 |10233 |Total memory |vm.memory.total[hrStorageSize.Memory] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in&eol;units of hrStorageAllocationUnits. This object is&eol;writable to allow remote configuration of the size of&eol;the storage area in those cases where such an&eol;operation makes sense and is possible on the&eol;underlying system. For example, the amount of main&eol;memory allocated to a buffer pool might be modified or&eol;the amount of disk space allocated to virtual memory&eol;might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27900 |20 |1.3.6.1.2.1.25.2.3.1.6.65536 |10233 |Used memory |vm.memory.used[hrStorageUsed.Memory] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27901 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1] |10233 |CPU discovery |hrProcessorLoad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrProcessorTable discovery |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27902 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11] |10233 |Temperature CPU discovery |mtxrHlProcessorTemperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |MIKROTIK-MIB::mtxrHlProcessorTemperature&eol;Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27903 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2] |10233 |Storage discovery |storage.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27904 |20 |1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} |10233 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[hrProcessorLoad.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27905 |20 |1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX} |10233 |CPU: Temperature |sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;(mtxrHlProcessorTemperature) Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27906 |15 | |10233 |Disk-{#SNMPINDEX}: Space utilization |vfs.fs.pused[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vfs.fs.used[hrStorageSize.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for Disk-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27907 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10233 |Disk-{#SNMPINDEX}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in&eol;units of hrStorageAllocationUnits. This object is&eol;writable to allow remote configuration of the size of&eol;the storage area in those cases where such an&eol;operation makes sense and is possible on the&eol;underlying system. For example, the amount of main&eol;memory allocated to a buffer pool might be modified or&eol;the amount of disk space allocated to virtual memory&eol;might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27908 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10233 |Disk-{#SNMPINDEX}: Used space |vfs.fs.used[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27930 |20 |1.3.6.1.4.1.4526.10.1.1.1.3.0 |10234 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27931 |20 |1.3.6.1.4.1.4526.10.1.1.1.4.0 |10234 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB&eol;Serial number of the switch |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27935 |20 |1.3.6.1.4.1.4526.10.1.1.5.2.0 |10234 |Total memory |vm.memory.total[agentSwitchCpuProcessMemAvailable.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB&eol;The total Memory allocated for the tasks |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27936 |20 |1.3.6.1.4.1.4526.10.1.1.4.9.0 |10234 |CPU utilization |system.cpu.util[agentSwitchCpuProcessTotalUtilization.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB&eol;CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27937 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.4526.10.43.1.8.1.1] |10234 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |FASTPATH-BOXSERVICES-PRIVATE-MIB::boxServicesTempSensorsTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27938 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.4526.10.43.1.6.1.1] |10234 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |FASTPATH-BOXSERVICES-PRIVATE-MIB::1.3.6.1.4.1.4526.10.43.1.6.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27939 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.4526.10.43.1.7.1.1] |10234 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |FASTPATH-BOXSERVICES-PRIVATE-MIB::boxServicesPowSupplyIndex |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27940 |20 |1.3.6.1.4.1.4526.10.43.1.8.1.3.{#SNMPINDEX} |10234 |#{#SNMPVALUE}: Temperature status |sensor.temp.status[boxServicesTempSensorState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |51 | | |0 | | | | |2 |NULL |MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;The state of temperature sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27941 |20 |1.3.6.1.4.1.4526.10.43.1.8.1.5.{#SNMPINDEX} |10234 |#{#SNMPVALUE}: Temperature |sensor.temp.value[boxServicesTempSensorTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;The temperature value reported by sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27942 |20 |1.3.6.1.4.1.4526.10.43.1.6.1.3.{#SNMPINDEX} |10234 |#{#SNMPVALUE}: Fan status |sensor.fan.status[boxServicesFanItemState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |50 | | |0 | | | | |2 |NULL |MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;The status of fan |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27943 |20 |1.3.6.1.4.1.4526.10.43.1.7.1.3.{#SNMPINDEX} |10234 |#{#SNMPVALUE}: Power supply status |sensor.psu.status[boxServicesPowSupplyItemState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |49 | | |0 | | | | |2 |NULL |MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;The status of power supply |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27967 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10235 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27968 |20 |1.3.6.1.2.1.47.1.1.1.1.8.1 |10235 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27970 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10235 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27971 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10235 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27972 |20 |1.3.6.1.4.1.27514.100.1.11.7.0 |10235 |Used memory |vm.memory.used[switchMemoryBusy.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: QTECH-MIB&eol;Used memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27973 |20 |1.3.6.1.4.1.27514.100.1.11.6.0 |10235 |Total memory |vm.memory.total[switchMemorySize.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: QTECH-MIB&eol;Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27975 |20 |1.3.6.1.4.1.27514.100.1.11.10.0 |10235 |CPU utilization |system.cpu.util[switchCpuUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: QTECH-MIB&eol;CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27997 |20 |1.3.6.1.4.1.11863.6.1.1.5.0 |10236 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TPLINK-SYSINFO-MIB&eol;The hardware version of the product. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27998 |20 |1.3.6.1.4.1.11863.6.1.1.6.0 |10236 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TPLINK-SYSINFO-MIB&eol;The software version of the product. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27999 |20 |1.3.6.1.4.1.11863.6.1.1.8.0 |10236 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TPLINK-SYSINFO-MIB&eol;The Serial number of the product. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28000 |20 |1.3.6.1.4.1.11863.6.1.1.5.0 |10236 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TPLINK-SYSINFO-MIB&eol;The hardware version of the product. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28001 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.11863.6.4.1.1.1.1.1] |10236 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering TPLINK-SYSMONITOR-MIB::tpSysMonitorCpuTable, displays the CPU utilization of all UNITs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28002 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.11863.6.4.1.2.1.1.1] |10236 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering TPLINK-SYSMONITOR-MIB::tpSysMonitorMemoryTable, displays the memory utilization of all UNITs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28003 |20 |1.3.6.1.4.1.11863.6.4.1.1.1.1.3.{#SNMPINDEX} |10236 |#{#SNMPVALUE}: CPU utilization |system.cpu.util[tpSysMonitorCpu1Minute.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TPLINK-SYSMONITOR-MIB&eol;Displays the CPU utilization in 1 minute.&eol;Reference: http://www.tp-link.com/faq-1330.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28026 |20 |1.2.840.10036.3.1.2.1.3.5 |10237 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IEEE802dot11-MIB&eol;A printable string used to identify the manufacturer's product name of the resource. Maximum string length is 128 octets. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28027 |20 |1.2.840.10036.3.1.2.1.4.5 |10237 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IEEE802dot11-MIB&eol;Printable string used to identify the manufacturer's product version of the resource. Maximum string length is 128 octets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28031 |20 |1.3.6.1.4.1.10002.1.1.1.4.2.1.3.2 |10237 |CPU utilization |system.cpu.util[loadValue.2] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FROGFOOT-RESOURCES-MIB&eol;5 minute load average of processor load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28141 |20 |1.3.6.1.4.1.11.2.14.11.5.1.1.3.0 |10250 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: NETSWITCH-MIB&eol;Contains the operating code version number (also known as software or firmware).&eol;For example, a software version such as A.08.01 is described as follows:&eol;A the function set available in your router&eol;08 the common release number&eol;01 updates to the current common release |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28142 |20 |1.3.6.1.4.1.11.2.36.1.1.2.9.0 |10250 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SEMI-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28143 |20 |1.3.6.1.4.1.11.2.14.11.5.1.9.6.1.0 |10250 |CPU utilization |system.cpu.util[hpSwitchCpuStat.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: STATISTICS-MIB&eol;The CPU utilization in percent(%).&eol;Reference: http://h20564.www2.hpe.com/hpsc/doc/public/display?docId=emr_na-c02597344&sp4ts.oid=51079 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28144 |20 |discovery[{#SENSOR_TYPE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2,{#SENSOR_PRECISION},1.3.6.1.2.1.99.1.1.1.3] |10250 |Temperature Discovery |temp.precision0.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with celsius filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28145 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.1] |10250 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of NETSWITCH-MIB::hpLocalMemTable, A table that contains information on all the local memory for each slot. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28146 |20 |discovery[{#ENT_CLASS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.2,{#ENT_DESCR},1.3.6.1.4.1.11.2.14.11.1.2.6.1.7,{#ENT_STATUS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.4] |10250 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of hpicfSensorObjectId that ends with: 11.2.3.7.8.3.2 - fans and are present |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28147 |20 |discovery[{#ENT_CLASS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.2,{#ENT_DESCR},1.3.6.1.4.1.11.2.14.11.1.2.6.1.7,{#ENT_STATUS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.4] |10250 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of hpicfSensorObjectId that ends with: 11.2.3.7.8.3.1 - power supplies and are present |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28148 |20 |discovery[{#ENT_CLASS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.2,{#ENT_DESCR},1.3.6.1.4.1.11.2.14.11.1.2.6.1.7,{#ENT_STATUS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.4] |10250 |Temp Status Discovery |temp.status.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of hpicfSensorObjectId that ends with: 11.2.3.7.8.3.3 - over temp status and are present |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28149 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10250 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28150 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10250 |{#SENSOR_INFO}: Temperature |sensor.temp.value[entPhySensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28153 |20 |1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.7.{#SNMPINDEX} |10250 |#{#SNMPVALUE}: Used memory |vm.memory.used[hpLocalMemAllocBytes.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: NETSWITCH-MIB&eol;The number of currently allocated bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28154 |20 |1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.{#SNMPINDEX} |10250 |{#ENT_DESCR}: Fan status |sensor.fan.status[hpicfSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |40 | | |0 | | | | |2 |NULL |MIB: HP-ICF-CHASSIS&eol;Actual status indicated by the sensor: {#ENT_DESCR} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28155 |20 |1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.{#SNMPINDEX} |10250 |{#ENT_DESCR}: Power supply status |sensor.psu.status[hpicfSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |40 | | |0 | | | | |2 |NULL |MIB: HP-ICF-CHASSIS&eol;Actual status indicated by the sensor: {#ENT_DESCR} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28156 |20 |1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.{#SNMPINDEX} |10250 |{#ENT_DESCR}: Temperature status |sensor.temp.status[hpicfSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |40 | | |0 | | | | |2 |NULL |MIB: HP-ICF-CHASSIS&eol;Actual status indicated by the sensor: {#ENT_DESCR} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28157 |20 |1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX} |10250 |{#ENT_NAME}: Hardware version(revision) |system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28158 |20 |1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX} |10250 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalDescr.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28196 |20 |discovery[{#SENSOR_TYPE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2,{#SENSOR_PRECISION},1.3.6.1.2.1.99.1.1.1.3] |10251 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with celsius filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28197 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2] |10251 |Fan Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with rpm filter |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28198 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10251 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28199 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10251 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28200 |20 |1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[entPhySensorOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |18 | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The operational status of the sensor {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28201 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Temperature |sensor.temp.value[entPhySensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28202 |20 |1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Fan status |sensor.fan.status[entPhySensorOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |18 | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The operational status of the sensor {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28203 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Fan speed |sensor.fan.speed[entPhySensorValue.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28204 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10251 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28205 |20 |1.3.6.1.2.1.47.1.1.1.1.13.{#SNMPINDEX} |10251 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalModelName.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28206 |20 |1.3.6.1.2.1.131.1.1.1.3.{#SNMPINDEX} |10251 |{#ENT_NAME}: Power supply status |sensor.psu.status[entStateOper.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |48 | | |0 | | | | |2 |NULL |MIB: ENTITY-STATE-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28244 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10252 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&eol;indexed with cpmCPUTotalIndex .&eol;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&eol;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&eol;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28246 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.5.{#SNMPINDEX} |10252 |{#SNMPVALUE}: CPU utilization |system.cpu.util[cpmCPUTotal5min.{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;The overall CPU busy percentage in the last 5 minute&eol;period. This object deprecates the avgBusy5 object from&eol;the OLD-CISCO-SYSTEM-MIB. This object is deprecated&eol;by cpmCPUTotal5minRev which has the changed range&eol;of value (0..100)&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28248 |5 | |10047 |Zabbix preprocessing queue |zabbix[preprocessing_queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28250 |5 | |10048 |Utilization of vmware data collector processes, in % |zabbix[process,vmware collector,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |28251 |5 | |10048 |Zabbix vmware cache, % used |zabbix[vmware,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |28306 |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] |10254 |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 |28307 |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] |10254 |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 |28308 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10254 |Entity discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28309 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10254 |PSU discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28323 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Temperature |sensor.temp.value[entPhySensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28324 |20 |1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[entPhySensorOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |18 | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The operational status of the sensor {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28325 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Fan speed |sensor.fan.speed[entPhySensorValue.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28326 |20 |1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Fan status |sensor.fan.status[entPhySensorOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |18 | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The operational status of the sensor {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28327 |20 |1.3.6.1.2.1.47.1.1.1.1.13.{#SNMPINDEX} |10254 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalModelName.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28328 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10254 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28329 |20 |1.3.6.1.2.1.131.1.1.1.3.{#SNMPINDEX} |10254 |{#ENT_NAME}: Power supply status |sensor.psu.status[entStateOper.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |48 | | |0 | | | | |2 |NULL |MIB: ENTITY-STATE-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28341 |20 |1.3.6.1.4.1.674.10892.5.2.1.0 |10255 |Overall system health status |system.status[globalSystemStatus.0] |30s |2w |0d |0 |3 | | | | |NULL |59 | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the overall rollup status of all components in the system being monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28342 |20 |1.3.6.1.4.1.674.10892.5.1.3.12.0 |10255 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the model name of the system. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28344 |20 |1.3.6.1.4.1.674.10892.5.1.3.2.0 |10255 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the service tag of the system. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28345 |20 |1.3.6.1.4.1.674.10892.5.1.1.8.0 |10255 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the firmware version of a remote access card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28346 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.20.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.674.10892.5.4.700.20.1.8] |10255 |Temperature CPU Discovery |temp.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Probe Table IDRAC-MIB-SMIv2::temperatureProbeTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28347 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.20.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.674.10892.5.4.700.20.1.8] |10255 |Temperature Ambient Discovery |temp.ambient.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Probe Table IDRAC-MIB-SMIv2::temperatureProbeTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28348 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.600.12.1.5,{#PSU_DESCR},1.3.6.1.4.1.674.10892.5.4.600.12.1.8] |10255 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::powerSupplyTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28349 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.12.1.5,{#FAN_DESCR},1.3.6.1.4.1.674.10892.5.4.700.12.1.8,{#TYPE},1.3.6.1.4.1.674.10892.5.4.700.12.1.7] |10255 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::coolingDeviceTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28350 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1,{#DISK_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2] |10255 |Physical Disk Discovery |physicaldisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::physicalDiskTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28351 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1,{#DISK_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2] |10255 |Virtual Disk Discovery |virtualdisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::virtualDiskTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28352 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38,{#CNTLR_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79] |10255 |Array Controller Discovery |physicaldisk.arr.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::controllerTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28353 |20 |discovery[{#BATTERY_NUM},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1] |10255 |Array Controller Cache Discovery |array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::batteryTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28354 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} |10255 |{#SENSOR_LOCALE}: Temperature |sensor.temp.value[temperatureProbeReading.CPU.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0020.0001.0006 This attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete. When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete,the value returned for this attribute is the temperature that the probeis reading in tenths of degrees Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28355 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} |10255 |{#SENSOR_LOCALE}: Temperature status |sensor.temp.status[temperatureProbeStatus.CPU.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0020.0001.0005 This attribute defines the probe status of the temperature probe. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28356 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} |10255 |{#SENSOR_LOCALE}: Temperature |sensor.temp.value[temperatureProbeReading.Ambient.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0020.0001.0006 This attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete. When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete,the value returned for this attribute is the temperature that the probeis reading in tenths of degrees Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28357 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} |10255 |{#SENSOR_LOCALE}: Temperature status |sensor.temp.status[temperatureProbeStatus.Ambient.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0020.0001.0005 This attribute defines the probe status of the temperature probe. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28358 |20 |1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX} |10255 |{#PSU_DESCR}: Power supply status |sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |59 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0600.0012.0001.0005 This attribute defines the status of the power supply. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28359 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX} |10255 |{#FAN_DESCR}: Fan status |sensor.fan.status[coolingDeviceStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0012.0001.0005 This attribute defines the probe status of the cooling device. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28360 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX} |10255 |{#FAN_DESCR}: Fan speed |sensor.fan.speed[coolingDeviceReading.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0012.0001.0006 This attribute defines the reading for a cooling device&eol;of subtype other than coolingDeviceSubTypeIsDiscrete. When the value&eol;for coolingDeviceSubType is other than coolingDeviceSubTypeIsDiscrete, the&eol;value returned for this attribute is the speed in RPM or the OFF/ON value&eol;of the cooling device. When the value for coolingDeviceSubType is&eol;coolingDeviceSubTypeIsDiscrete, a value is not returned for this attribute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28361 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk status |system.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}] |3m |90d |0d |0 |3 | | | | |NULL |61 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The status of the physical disk itself without the propagation of any contained component status.&eol;Possible values:&eol;1: Other&eol;2: Unknown&eol;3: OK&eol;4: Non-critical&eol;5: Critical&eol;6: Non-recoverable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28362 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk serial number |system.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}] |1d |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The physical disk's unique identification number from the manufacturer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28363 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk S.M.A.R.T. status |system.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}] |3m |90d |0d |0 |3 | | | | |NULL |62 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;Indicates whether the physical disk has received a predictive failure alert. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28364 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk model name |system.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The model number of the physical disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28365 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.27.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk part number |system.hw.physicaldisk.part_number[physicalDiskPartNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The part number of the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28366 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk media type |system.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}] |1h |2w |0d |0 |3 | | | | |NULL |63 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The media type of the physical disk. Possible Values:&eol;1: The media type could not be determined.&eol;2: Hard Disk Drive (HDD).&eol;3: Solid State Drive (SSD). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28367 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX} |10255 |{#DISK_NAME}: Disk size |system.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}] |1h |2w |0d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The size of the physical disk in megabytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28368 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Layout type |system.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |65 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The virtual disk's RAID type.&eol;Possible values:&eol;1: Not one of the following&eol;2: RAID-0&eol;3: RAID-1&eol;4: RAID-5&eol;5: RAID-6&eol;6: RAID-10&eol;7: RAID-50&eol;8: RAID-60&eol;9: Concatenated RAID 1&eol;10: Concatenated RAID 5 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28369 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Current state |system.hw.virtualdisk.state[virtualDiskOperationalState.{#SNMPINDEX}] |3m |2w |365d |0 |3 | | | | |NULL |66 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The state of the virtual disk when there are progressive operations ongoing.&eol;Possible values:&eol;1: There is no active operation running.&eol;2: The virtual disk configuration has changed. The physical disks included in the virtual disk are being modified to support the new configuration.&eol;3: A Consistency Check (CC) is being performed on the virtual disk.&eol;4: The virtual disk is being initialized.&eol;5: BackGround Initialization (BGI) is being performed on the virtual disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28370 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Read policy |system.hw.virtualdisk.readpolicy[virtualDiskReadPolicy.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The read policy used by the controller for read operations on this virtual disk.&eol;Possible values:&eol;1: No Read Ahead.&eol;2: Read Ahead.&eol;3: Adaptive Read Ahead. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28371 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Write policy |system.hw.virtualdisk.writepolicy[virtualDiskWritePolicy.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |67 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The write policy used by the controller for write operations on this virtual disk.&eol;Possible values:&eol;1: Write Through.&eol;2: Write Back.&eol;3: Force Write Back. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28372 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Disk size |system.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}] |1h |2w |0d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The size of the virtual disk in megabytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28373 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Status |system.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}] |3m |2w |365d |0 |3 | | | | |NULL |69 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The current state of this virtual disk (which includes any member physical disks.)&eol;Possible states:&eol;1: The current state could not be determined.&eol;2: The virtual disk is operating normally or optimally.&eol;3: The virtual disk has encountered a failure. The data on disk is lost or is about to be lost.&eol;4: The virtual disk encounterd a failure with one or all of the constituent redundant physical disks.&eol;The data on the virtual disk might no longer be fault tolerant. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28374 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX} |10255 |{#CNTLR_NAME}: Disk array controller status |system.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |59 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The status of the controller itself without the propagation of any contained component status.&eol;Possible values:&eol;1: Other&eol;2: Unknown&eol;3: OK&eol;4: Non-critical&eol;5: Critical&eol;6: Non-recoverable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28375 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX} |10255 |{#CNTLR_NAME}: Disk array controller model |system.hw.diskarray.model[controllerName.{#SNMPINDEX}] |1d |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The controller's name as represented in Storage Management. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28376 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX} |10255 |Battery {#BATTERY_NUM}: Disk array cache controller battery status |system.hw.diskarray.cache.battery.status[batteryState.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |64 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;Current state of battery.&eol;Possible values:&eol;1: The current state could not be determined.&eol;2: The battery is operating normally.&eol;3: The battery has failed and needs to be replaced.&eol;4: The battery temperature is high or charge level is depleting.&eol;5: The battery is missing or not detected.&eol;6: The battery is undergoing the re-charge phase.&eol;7: The battery voltage or charge level is below the threshold. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28388 |20 |1.3.6.1.4.1.232.6.2.6.1.0 |10256 |System: Temperature status |sensor.temp.status[cpqHeThermalCondition.0] |3m |2w |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 |1h |2w |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 |1h |2w |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 System |tempDescr.discovery.io |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 |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}] |6m |90d |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}] |1h |1w |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}] |3m |90d |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}] |3m |90d |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}] |6m |90d |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}] |6m |90d |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 |28410 |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}] |6m |90d |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 |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}] |3m |2w |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}] |3m |2w |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 |1w |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}] |1d |90d |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 |1w |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. |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 |1w |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}] |3m |90d |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}] |3m |90d |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}] |1d |90d |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}] |1h |2w |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}] |1h |2w |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}] |1h |2w |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}] |3m |2w |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}] |1h |2w |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}] |1h |2w |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 |28501 |16 | |10260 |jk-8009 bytes received per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_AJP}\"", bytesReceived] |1m |1w |365d |0 |0 | |B | | |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 |28502 |16 | |10260 |Maximum number of active sessions so far |jmx["Catalina:type=Manager,context=/,host=localhost",maxActive] |1m |1w |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 |28503 |16 | |10260 |http-8080 threads busy |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_HTTP}\"",currentThreadsBusy] |1m |1w |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 |28504 |16 | |10260 |http-8080 threads allocated |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_HTTP}\"",currentThreadCount] |1m |1w |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 |28505 |16 | |10260 |http-8443 threads max |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",maxThreads] |1h |1w |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 |28506 |16 | |10260 |http-8443 threads busy |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",currentThreadsBusy] |1m |1w |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 |28507 |16 | |10260 |http-8443 threads allocated |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",currentThreadCount] |1m |1w |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 |28508 |16 | |10260 |jk-8009 threads max |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_AJP}\"",maxThreads] |1h |1w |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 |28509 |16 | |10260 |jk-8009 threads busy |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_AJP}\"",currentThreadsBusy] |1m |1w |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 |28510 |16 | |10260 |jk-8009 threads allocated |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_AJP}\"",currentThreadCount] |1m |1w |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 |28511 |16 | |10260 |Tomcat version |jmx["Catalina:type=Server",serverInfo] |1h |1w |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 |28512 |16 | |10260 |http-8443 gzip compression |jmx["Catalina:type=ProtocolHandler,port=8443",compression] |1h |1w |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 |28513 |16 | |10260 |http-8080 gzip compression |jmx["Catalina:type=ProtocolHandler,port=8080",compression] |1h |1w |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 |28514 |16 | |10260 |Number of sessions created by this manager per second |jmx["Catalina:type=Manager,context=/,host=localhost",sessionCounter] |1m |1w |365d |0 |0 | | | | |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 |28515 |16 | |10260 |Number of sessions we rejected due to maxActive being reached |jmx["Catalina:type=Manager,context=/,host=localhost",rejectedSessions] |1m |1w |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 |28516 |16 | |10260 |The maximum number of active Sessions allowed, or -1 for no limit |jmx["Catalina:type=Manager,context=/,host=localhost",maxActiveSessions] |1h |1w |365d |0 |0 | | | | |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 |28517 |16 | |10260 |jk-8009 bytes sent per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_AJP}\"",bytesSent] |1m |1w |365d |0 |0 | |B | | |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 |28518 |16 | |10260 |Number of active sessions at this moment |jmx["Catalina:type=Manager,context=/,host=localhost",activeSessions] |1m |1w |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 |28519 |16 | |10260 |http-8080 requests per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTP}\"",requestCount] |1m |1w |365d |0 |0 | | | | |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 |28520 |16 | |10260 |http-8080 request processing time |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTP}\"",processingTime] |1m |1w |365d |0 |0 | |s | | |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 |28521 |16 | |10260 |http-8080 errors per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTP}\"",errorCount] |1m |1w |365d |0 |0 | | | | |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 |28522 |16 | |10260 |http-8080 bytes sent per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTP}\"",bytesSent] |1m |1w |365d |0 |0 | |B | | |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 |28523 |16 | |10260 |http-8080 bytes received per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTP}\"",bytesReceived] |1m |1w |365d |0 |0 | |B | | |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 |28524 |16 | |10260 |http-8443 requests per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",requestCount] |1m |1w |365d |0 |0 | | | | |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 |28525 |16 | |10260 |http-8443 request processing time |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",processingTime] |1m |1w |365d |0 |0 | |s | | |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 |28526 |16 | |10260 |http-8443 errors per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",errorCount] |1m |1w |365d |0 |0 | | | | |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 |28527 |16 | |10260 |http-8443 bytes sent per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTPS}\"", bytesSent] |1m |1w |365d |0 |0 | |B | | |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 |28528 |16 | |10260 |http-8443 bytes received per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",bytesReceived] |1m |1w |365d |0 |0 | |B | | |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 |28529 |16 | |10260 |jk-8009 requests per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_AJP}\"",requestCount] |1m |1w |365d |0 |0 | | | | |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 |28530 |16 | |10260 |jk-8009 request processing time |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_AJP}\"",processingTime] |1m |1w |365d |0 |0 | |s | | |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 |28531 |16 | |10260 |jk-8009 errors per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_AJP}\"",errorCount] |1m |1w |365d |0 |0 | | | | |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 |28532 |16 | |10260 |http-8080 threads max |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_HTTP}\"",maxThreads] |1h |1w |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 |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 |28542 |18 | |10261 |History index cache, % used |wcache.index.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28543 |18 | |10261 |Configuration cache, % used |rcache.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28544 |18 | |10261 |Value cache, % used |vcache.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28545 |18 | |10261 |Value cache hits |vcache.cache.hits |0 |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28546 |18 | |10261 |Value cache misses |vcache.cache.misses |0 |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28547 |18 | |10261 |Value cache operating mode |vcache.cache.mode |0 |1w |365d |0 |3 | | | | |NULL |15 | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28548 |18 | |10261 |VMware cache, % used |vmware.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28549 |18 | |10261 |History write cache, % used |wcache.history.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28550 |18 | |10261 |Number of processed values per second |wcache.values |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28551 |18 | |10261 |Trend write cache, % used |wcache.trend.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28552 |18 | |10261 |Utilization of unreachable poller data collector processes, in % |process.unreachable_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28553 |18 | |10261 |Number of processed numeric (float) values per second |wcache.values.float |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28554 |18 | |10261 |Number of processed log values per second |wcache.values.log |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28555 |18 | |10261 |Number of processed not supported values per second |wcache.values.not_supported |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28556 |18 | |10261 |Number of processed character values per second |wcache.values.str |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28557 |18 | |10261 |Number of processed text values per second |wcache.values.text |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28558 |18 | |10261 |Number of processed numeric (unsigned) values per second |wcache.values.uint |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28559 |18 | |10261 |Utilization of vmware data collector processes, in % |process.vmware_collector.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28560 |18 | |10261 |Preprocessing queue |preprocessing_queue |0 |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28561 |18 | |10261 |Utilization of alerter internal processes, in % |process.alerter.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28562 |18 | |10261 |Utilization of ipmi manager internal processes, in % |process.ipmi_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28563 |18 | |10261 |Utilization of alert manager internal processes, in % |process.alert_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28564 |18 | |10261 |Utilization of configuration syncer internal processes, in % |process.configuration_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28565 |18 | |10261 |Utilization of discoverer data collector processes, in % |process.discoverer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28566 |18 | |10261 |Utilization of escalator internal processes, in % |process.escalator.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28567 |18 | |10261 |Utilization of history syncer internal processes, in % |process.history_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28568 |18 | |10261 |Utilization of housekeeper internal processes, in % |process.housekeeper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28569 |18 | |10261 |Utilization of http poller data collector processes, in % |process.http_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28570 |18 | |10261 |Utilization of icmp pinger data collector processes, in % |process.icmp_pinger.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28571 |18 | |10261 |Utilization of ipmi poller data collector processes, in % |process.ipmi_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28572 |18 | |10261 |Utilization of timer internal processes, in % |process.timer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28573 |18 | |10261 |Utilization of java poller data collector processes, in % |process.java_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28574 |18 | |10261 |Utilization of poller data collector processes, in % |process.poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28575 |18 | |10261 |Utilization of preprocessing manager internal processes, in % |process.preprocessing_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28576 |18 | |10261 |Utilization of preprocessing worker internal processes, in % |process.preprocessing_worker.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28577 |18 | |10261 |Utilization of proxy poller data collector processes, in % |process.proxy_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28578 |18 | |10261 |Utilization of self-monitoring internal processes, in % |process.self-monitoring.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28579 |18 | |10261 |Utilization of snmp trapper data collector processes, in % |process.snmp_trapper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28580 |18 | |10261 |Utilization of task manager internal processes, in % |process.task_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28581 |18 | |10261 |Utilization of trapper data collector processes, in % |process.trapper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28582 |18 | |10261 |Utilization of LLD manager internal processes, in % |process.lld_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28583 |18 | |10261 |Utilization of LLD worker internal processes, in % |process.lld_worker.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28584 |18 | |10261 |LLD queue |lld_queue |0 |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |28588 |18 | |10262 |Utilization of vmware data collector processes, in % |process.vmware_collector.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28589 |18 | |10262 |Number of processed numeric (unsigned) values per second |wcache.values.uint |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28590 |18 | |10262 |Number of processed text values per second |wcache.values.text |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28591 |18 | |10262 |Number of processed character values per second |wcache.values.str |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28592 |18 | |10262 |Number of processed not supported values per second |wcache.values.not_supported |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28593 |18 | |10262 |Number of processed log values per second |wcache.values.log |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28594 |18 | |10262 |Number of processed numeric (float) values per second |wcache.values.float |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28595 |18 | |10262 |Number of processed values per second |wcache.values |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28596 |18 | |10262 |History index cache, % used |wcache.index.pused |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28597 |18 | |10262 |History write cache, % used |wcache.history.pused |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28598 |18 | |10262 |VMware cache, % used |vmware.buffer.pused |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28599 |18 | |10262 |Configuration cache, % used |rcache.buffer.pused |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28600 |18 | |10262 |Utilization of configuration syncer internal processes, in % |process.configuration_syncer.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28601 |18 | |10262 |Utilization of data sender internal processes, in % |process.data_sender.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28602 |18 | |10262 |Utilization of trapper data collector processes, in % |process.trapper.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28603 |18 | |10262 |Utilization of task manager internal processes, in % |process.task_manager.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28604 |18 | |10262 |Utilization of snmp trapper data collector processes, in % |process.snmp_trapper.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28605 |18 | |10262 |Utilization of self-monitoring internal processes, in % |process.self-monitoring.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28606 |18 | |10262 |Utilization of poller data collector processes, in % |process.poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28607 |18 | |10262 |Utilization of java poller data collector processes, in % |process.java_poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28608 |18 | |10262 |Utilization of ipmi poller data collector processes, in % |process.ipmi_poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28609 |18 | |10262 |Utilization of ipmi manager internal processes, in % |process.ipmi_manager.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28610 |18 | |10262 |Utilization of icmp pinger data collector processes, in % |process.icmp_pinger.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28611 |18 | |10262 |Utilization of http poller data collector processes, in % |process.http_poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28612 |18 | |10262 |Utilization of housekeeper internal processes, in % |process.housekeeper.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28613 |18 | |10262 |Utilization of history syncer internal processes, in % |process.history_syncer.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28614 |18 | |10262 |Utilization of heartbeat sender internal processes, in % |process.heartbeat_sender.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28615 |18 | |10262 |Utilization of discoverer data collector processes, in % |process.discoverer.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28616 |18 | |10262 |Utilization of unreachable poller data collector processes, in % |process.unreachable_poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28617 |5 | |10048 |Zabbix preprocessing queue |zabbix[preprocessing_queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28618 |5 | |10048 |Utilization of preprocessing manager internal processes, in % |zabbix[process,preprocessing manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28619 |5 | |10048 |Utilization of preprocessing worker internal processes, in % |zabbix[process,preprocessing worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28671 |0 | |10263 |PostgreSQL: Get connections sum |pgsql.connections.sum["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_activity&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ACTIVITY-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28672 |0 | |10263 |PostgreSQL: Get locks |pgsql.locks["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_locks per database&eol;https://www.postgresql.org/docs/current/explicit-locking.html#LOCKING-TABLES |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28673 |0 | |10263 |Status: Ping time |pgsql.ping.time["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28674 |0 | |10263 |Status: Ping |pgsql.ping["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28675 |0 | |10263 |PostgreSQL: Get queries |pgsql.queries["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}","{$PG.QUERY_ETIME.MAX.WARN}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics by query execution time |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28676 |0 | |10263 |Replication: standby count |pgsql.replication.count["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of standby servers |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28677 |0 | |10263 |Replication: lag in seconds |pgsql.replication.lag.sec["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Replication lag with Master in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28678 |0 | |10263 |Replication: recovery role |pgsql.replication.recovery_role["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |76 | | |0 | | | | |0 |NULL |Replication role: 1 — recovery is still in progress (standby mode), 0 — master mode. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28679 |0 | |10263 |Replication: status |pgsql.replication.status["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |77 | | |0 | | | | |0 |NULL |Replication status: 0 — streaming is down, 1 — streaming is up, 2 — master mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28680 |0 | |10263 |Status: Config hash |pgsql.config.hash["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |15m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |PostgreSQL configuration hash |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28681 |0 | |10263 |Status: Cache hit ratio % |pgsql.cache.hit["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache hit ratio |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28682 |0 | |10263 |PostgreSQL: Get bgwriter |pgsql.bgwriter["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics about the background writer process's activity |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28683 |0 | |10263 |PostgreSQL: Get transactions |pgsql.transactions["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect metrics by transaction execution time |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28684 |0 | |10263 |Status: Uptime |pgsql.uptime["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28685 |0 | |10263 |Status: Version |pgsql.version["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |PostgreSQL version |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28686 |0 | |10263 |PostgreSQL: Get WAL |pgsql.wal.stat["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |5m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Master item to collect WAL metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28687 |0 | |10263 |PostgreSQL: Get dbstat |pgsql.dbstat["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_database per database&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-DATABASE-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28688 |18 | |10263 |Transactions: Max idle transaction time |pgsql.transactions.idle |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Current max idle transaction time |0 |30d |0 | |28683 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28689 |18 | |10263 |Transactions: Max active transaction time |pgsql.transactions.active |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Current max active transaction time |0 |30d |0 | |28683 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28690 |18 | |10263 |Transactions: Max prepared transaction time |pgsql.transactions.prepared |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Current max prepared transaction time |0 |30d |0 | |28683 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28691 |18 | |10263 |Transactions: Max waiting transaction time |pgsql.transactions.waiting |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Current max waiting transaction time |0 |30d |0 | |28683 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28692 |18 | |10263 |WAL: Segments count |pgsql.wal.count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of WAL segments |0 |30d |0 | |28686 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28693 |18 | |10263 |Bgwriter: Buffers allocated per second |pgsql.bgwriter.buffers_alloc.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers allocated |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28694 |18 | |10263 |Bgwriter: Buffers written directly by a backend per second |pgsql.bgwriter.buffers_backend.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written directly by a backend |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28695 |18 | |10263 |Bgwriter: Checkpoint write time |pgsql.bgwriter.checkpoint_write_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Total amount of time that has been spent in the portion of checkpoint processing where files are written to disk, in milliseconds |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28696 |18 | |10263 |Bgwriter: Buffers backend fsync per second |pgsql.bgwriter.buffers_backend_fsync.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times a backend had to execute its own fsync call (normally the background writer handles those even when the backend does its own write) |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28697 |18 | |10263 |Bgwriter: Buffers written during checkpoints per second |pgsql.bgwriter.buffers_checkpoint.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written during checkpoints |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28698 |18 | |10263 |Bgwriter: Buffers written by the background writer per second |pgsql.bgwriter.buffers_clean.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written by the background writer |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28699 |18 | |10263 |Bgwriter: Requested checkpoints per second |pgsql.bgwriter.checkpoints_req.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of requested checkpoints that have been performed |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28700 |18 | |10263 |Bgwriter: Scheduled checkpoints per second |pgsql.bgwriter.checkpoints_timed.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of scheduled checkpoints that have been performed |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28701 |18 | |10263 |Bgwriter: Checkpoint sync time |pgsql.bgwriter.checkpoint_sync_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Total amount of time that has been spent in the portion of checkpoint processing where files are synchronized to disk |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28702 |18 | |10263 |Bgwriter: Max written per second |pgsql.bgwriter.maxwritten_clean.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times the background writer stopped a cleaning scan because it had written too many buffers |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28703 |18 | |10263 |Connections sum: Waiting |pgsql.connections.sum.waiting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of waiting connections&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#WAIT-EVENT-TABLE |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28704 |18 | |10263 |Connections sum: Active |pgsql.connections.sum.active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections executing a query |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28705 |18 | |10263 |Connections sum: Idle |pgsql.connections.sum.idle |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections waiting for a new client command |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28706 |18 | |10263 |Connections sum: Idle in transaction |pgsql.connections.sum.idle_in_transaction |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections in a transaction state, but not executing a query |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28707 |18 | |10263 |Connections sum: Prepared |pgsql.connections.sum.prepared |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of prepared transactions&eol;https://www.postgresql.org/docs/current/sql-prepare-transaction.html |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28708 |18 | |10263 |Connections sum: Total |pgsql.connections.sum.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28709 |18 | |10263 |Connections sum: Total % |pgsql.connections.sum.total_pct |0 |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections in percentage |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28710 |18 | |10263 |WAL: Bytes written |pgsql.wal.write |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |WAL write in bytes |0 |30d |0 | |28686 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |28715 |18 | |10263 |DB {#DBNAME}: Detected conflicts per second |pgsql.dbstat.conflicts.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of queries canceled due to conflicts with recovery in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28716 |18 | |10263 |DB {#DBNAME}: Locks total |pgsql.locks.total["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of locks in the database |0 |30d |0 | |28672 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28717 |18 | |10263 |DB {#DBNAME}: Sequential scans per second |pgsql.scans.seq.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sequential scans in the database |0 |30d |0 | |28714 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28718 |18 | |10263 |DB {#DBNAME}: Index scans per second |pgsql.scans.idx.rate["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of index scans in the database |0 |30d |0 | |28714 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28719 |18 | |10263 |DB {#DBNAME}: Queries sum transaction time |pgsql.queries.tx.time_sum["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum transaction query time |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28720 |18 | |10263 |DB {#DBNAME}: Queries max transaction time |pgsql.queries.tx.time_max["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Max transaction query time |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28721 |18 | |10263 |DB {#DBNAME}: Queries slow transaction count |pgsql.queries.tx.slow_count["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Slow transaction query count |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28722 |18 | |10263 |DB {#DBNAME}: Queries sum query time |pgsql.queries.query.time_sum["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum query time |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28723 |18 | |10263 |DB {#DBNAME}: Queries max query time |pgsql.queries.query.time_max["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Max query time |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28724 |18 | |10263 |DB {#DBNAME}: Queries slow query count |pgsql.queries.query.slow_count["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Slow query count |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28725 |18 | |10263 |DB {#DBNAME}: Queries sum maintenance time |pgsql.queries.mro.time_sum["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum maintenance query time |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28726 |18 | |10263 |DB {#DBNAME}: Queries max maintenance time |pgsql.queries.mro.time_max["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Max maintenance query time |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28727 |18 | |10263 |DB {#DBNAME}: Queries slow maintenance count |pgsql.queries.mro.slow_count["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Slow maintenance query count |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28728 |18 | |10263 |DB {#DBNAME}: Disk blocks read per second |pgsql.dbstat.blks_read.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of disk blocks read in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28729 |18 | |10263 |DB {#DBNAME}: Detected deadlocks per second |pgsql.dbstat.deadlocks.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of detected deadlocks in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28730 |18 | |10263 |DB {#DBNAME}: Blocks hit per second |pgsql.dbstat.blks_hit.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of times disk blocks were found already in the buffer cache, so that a read was not necessary |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28731 |18 | |10263 |DB {#DBNAME}: Frozen XID before avtovacuum % |pgsql.frozenxid.prc_before_av["{#DBNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |reventing Transaction ID Wraparound Failures&eol;https://www.postgresql.org/docs/current/routine-vacuuming.html#VACUUM-FOR-WRAPAROUND |0 |30d |0 | |28713 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28732 |18 | |10263 |DB {#DBNAME}: Rollbacks per second |pgsql.dbstat.xact_rollback.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of transactions in this database that have been rolled back |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28733 |18 | |10263 |DB {#DBNAME}: Commits per second |pgsql.dbstat.xact_commit.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of transactions in this database that have been committed |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28734 |18 | |10263 |DB {#DBNAME}: Tuples updated per second |pgsql.dbstat.tup_updated.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows updated by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28735 |18 | |10263 |DB {#DBNAME}: Tuples returned per second |pgsql.dbstat.tup_returned.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows updated by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28736 |18 | |10263 |DB {#DBNAME}: Tuples inserted per second |pgsql.dbstat.tup_inserted.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows inserted by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28737 |18 | |10263 |DB {#DBNAME}: Tuples fetched per second |pgsql.dbstat.tup_fetched.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows fetched by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28738 |18 | |10263 |DB {#DBNAME}: Tuples deleted per second |pgsql.dbstat.tup_deleted.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows deleted by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28739 |18 | |10263 |DB {#DBNAME}: Temp_files created per second |pgsql.dbstat.temp_files.rate["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of temporary files created by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28740 |18 | |10263 |DB {#DBNAME}: Temp_bytes written per second |pgsql.dbstat.temp_bytes.rate["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total amount of data written to temporary files by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28741 |18 | |10263 |DB {#DBNAME}: Frozen XID before stop % |pgsql.frozenxid.prc_before_stop["{#DBNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Preventing Transaction ID Wraparound Failures&eol;https://www.postgresql.org/docs/current/routine-vacuuming.html#VACUUM-FOR-WRAPAROUND |0 |30d |0 | |28713 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |28778 |18 | |10265 |Apache: Workers starting up |apache.workers.starting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in starting state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28779 |18 | |10265 |Apache: Workers slot with no current process |apache.workers.slot |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of slots with no current process |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28780 |18 | |10265 |Apache: Workers sending reply |apache.workers.sending |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in sending state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28781 |18 | |10265 |Apache: Workers reading request |apache.workers.reading |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in reading state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28782 |18 | |10265 |Apache: Workers logging |apache.workers.logging |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in logging state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28783 |18 | |10265 |Apache: Workers keepalive (read) |apache.workers.keepalive |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in keepalive state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28784 |18 | |10265 |Apache: Workers idle cleanup |apache.workers.cleanup |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in cleanup state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28785 |18 | |10265 |Apache: Workers finishing |apache.workers.finishing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in finishing state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28786 |18 | |10265 |Apache: Workers closing connection |apache.workers.closing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in closing state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28787 |18 | |10265 |Apache: Workers DNS lookup |apache.workers.dnslookup |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in dnslookup state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28788 |18 | |10265 |Apache: Total workers idle |apache.workers_total.idle |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of idle worker threads/processes |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28789 |18 | |10265 |Apache: Total workers busy |apache.workers_total.busy |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of busy worker threads/processes |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28790 |18 | |10265 |Apache: Version |apache.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Service version |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28791 |18 | |10265 |Apache: Uptime |apache.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Service uptime in seconds |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28792 |18 | |10265 |Apache: Total requests |apache.requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |A total number of accesses |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28793 |18 | |10265 |Apache: Requests per second |apache.requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Calculated as change rate for 'Total requests' stat.&eol;ReqPerSec is not used, as it counts average since last Apache server start. |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28794 |18 | |10265 |Apache: Bytes per second |apache.bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Calculated as change rate for 'Total bytes' stat.&eol;BytesPerSec is not used, as it counts average since last Apache server start. |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28795 |18 | |10265 |Apache: Total bytes |apache.bytes |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total bytes served |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28796 |18 | |10265 |Apache: Workers waiting for connection |apache.workers.waiting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in waiting state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28797 |18 | |10265 |Event MPM discovery |apache.mpm.event.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics if event MPM is used&eol;https://httpd.apache.org/docs/current/mod/event.html |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28798 |18 | |10265 |Apache: Connections async closing |apache.connections[async_closing{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async connections in closing state (only applicable to event MPM) |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28799 |18 | |10265 |Apache: Connections async keep alive |apache.connections[async_keep_alive{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async connections in keep-alive state (only applicable to event MPM) |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28800 |18 | |10265 |Apache: Connections async writing |apache.connections[async_writing{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async connections in writing state (only applicable to event MPM) |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28801 |18 | |10265 |Apache: Connections total |apache.connections[total{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of total connections |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28802 |18 | |10265 |Apache: Bytes per request |apache.bytes[per_request{#SINGLETON}] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Average number of client requests per second |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28803 |18 | |10265 |Apache: Number of async processes |apache.process[num{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async processes |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |28811 |18 | |10266 |Nginx: Connections waiting |nginx.connections.waiting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of idle client connections waiting for a request. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28812 |18 | |10266 |Nginx: Connections writing |nginx.connections.writing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of connections where nginx is writing the response back to the client. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28813 |18 | |10266 |Nginx: Connections active |nginx.connections.active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of active client connections including Waiting connections. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28814 |18 | |10266 |Nginx: Connections reading |nginx.connections.reading |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of connections where nginx is reading the request header. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28815 |18 | |10266 |Nginx: Connections handled per second |nginx.connections.handled.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of handled connections. Generally, the parameter value is the same as accepts unless some resource limits have been reached (for example, the worker_connections limit). |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28816 |18 | |10266 |Nginx: Connections dropped per second |nginx.connections.dropped.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of dropped client connections. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28817 |18 | |10266 |Nginx: Connections accepted per second |nginx.connections.accepted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of accepted client connections. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28818 |18 | |10266 |Nginx: Requests per second |nginx.requests.total.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of client requests. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28819 |18 | |10266 |Nginx: Requests total |nginx.requests.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of client requests. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28820 |18 | |10266 |Nginx: Version |nginx.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |28824 |18 | |10267 |Nginx: Requests total |nginx.requests.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of client requests. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28825 |18 | |10267 |Nginx: Requests per second |nginx.requests.total.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of client requests. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28826 |18 | |10267 |Nginx: Connections accepted per second |nginx.connections.accepted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of accepted client connections. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28827 |18 | |10267 |Nginx: Connections dropped per second |nginx.connections.dropped.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of dropped client connections. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28828 |18 | |10267 |Nginx: Connections handled per second |nginx.connections.handled.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of handled connections. Generally, the parameter value is the same as accepts unless some resource limits have been reached (for example, the worker_connections limit). |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28829 |18 | |10267 |Nginx: Connections active |nginx.connections.active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of active client connections including Waiting connections. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28830 |18 | |10267 |Nginx: Connections reading |nginx.connections.reading |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of connections where nginx is reading the request header. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28831 |18 | |10267 |Nginx: Connections waiting |nginx.connections.waiting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of idle client connections waiting for a request. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28832 |18 | |10267 |Nginx: Connections writing |nginx.connections.writing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of connections where nginx is writing the response back to the client. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28833 |18 | |10267 |Nginx: Version |nginx.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |28914 |18 | |10170 |Performance: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28915 |18 | |10170 |Performance: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28916 |18 | |10170 |Performance: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28917 |18 | |10170 |Performance: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28918 |18 | |10170 |Performance: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28919 |18 | |10170 |Connections: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server started. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28920 |18 | |10170 |Throughput: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28921 |18 | |10170 |Throughput: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28922 |18 | |10170 |Performance: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28923 |18 | |10170 |Connections: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads in the thread cache. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28924 |18 | |10170 |Connections: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently open connections. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28925 |18 | |10170 |Connections: Threads created |mysql.threads_created |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28926 |18 | |10170 |Connections: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads that are not sleeping. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28927 |18 | |10170 |Info: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of seconds that the server has been up. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28928 |18 | |10170 |Performance: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28929 |18 | |10170 |Connections: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28930 |18 | |10170 |Performance: InnoDB buffer pool pages free |mysql.innodb_buffer_pool_pages_free |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28931 |18 | |10170 |Connections: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28932 |18 | |10170 |Throughput: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28933 |18 | |10170 |Throughput: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28934 |18 | |10170 |Throughput: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28935 |18 | |10170 |Throughput: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28936 |18 | |10170 |Throughput: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28937 |18 | |10170 |Throughput: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28938 |18 | |10170 |Connections: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28939 |18 | |10170 |Connections: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed attempts to connect to the MySQL server. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28940 |18 | |10170 |Connections: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28941 |18 | |10170 |Connections: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28942 |18 | |10170 |Connections: Connection errors peer address per second |mysql.connection_errors_peer_address.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors while searching for the connecting client IP address. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28943 |18 | |10170 |Connections: Connection errors select per second |mysql.connection_errors_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28944 |18 | |10170 |Connections: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library refused. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28945 |18 | |10170 |Performance: Created tmp tables on disk |mysql.created_tmp_disk_tables |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28946 |18 | |10170 |Performance: Created tmp files on disk |mysql.created_tmp_files |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |How many temporary files mysqld has created. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28947 |18 | |10170 |Performance: Created tmp tables on memory |mysql.created_tmp_tables |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |28952 |18 | |10170 |Replication: Seconds Behind Master {#MASTERHOST} |mysql.seconds_behind_master["{#MASTERHOST}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of seconds that the slave SQL thread is behind processing the master binary log. A high number (or an increasing one) can indicate that the slave is unable to handle events from the master in a timely fashion. |0 |30d |0 | |28951 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28953 |18 | |10170 |Replication: Slave IO Running {#MASTERHOST} |mysql.slave_io_running["{#MASTERHOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the I/O thread for reading the master's binary log is running. Normally, you want this to be Yes unless you have not yet started replication or have explicitly stopped it with STOP SLAVE. |0 |30d |0 | |28951 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28954 |18 | |10170 |Replication: Slave SQL Running {#MASTERHOST} |mysql.slave_sql_running["{#MASTERHOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the SQL thread for executing events in the relay log is running. As with the I/O thread, this should normally be Yes. |0 |30d |0 | |28951 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |29009 |18 | |10270 |CPU discovery |cpu.discovery[snmp] |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |This discovery will create set of per core CPU metrics from UCD-SNMP-MIB, using {#CPU.COUNT} in preprocessing. That's the only reason why LLD is used. |0 |30d |0 | |28990 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |29048 |18 | |10270 |CPU utilization |system.cpu.util[snmp,{#SNMPINDEX}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |CPU utilization in % |0 |30d |0 | |29017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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/current/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/current/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 |29198 |18 | |10272 |CPU utilization |system.cpu.util |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |29099 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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/current/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/current/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 |29347 |18 | |10278 |CPU utilization |system.cpu.util |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |29285 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |29398 |18 | |10285 |System local time |system.localtime[node_exporter] |0 |7d |365d |0 |0 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29399 |18 | |10285 |CPU steal time |system.cpu.steal[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29400 |18 | |10285 |Free swap space |system.swap.free[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29401 |18 | |10285 |Total swap space |system.swap.total[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29402 |18 | |10285 |Available memory |vm.memory.available[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/current/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29403 |18 | |10285 |Total memory |vm.memory.total[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29404 |18 | |10285 |System boot time |system.boottime[node_exporter] |0 |7d |365d |0 |0 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29405 |18 | |10285 |Context switches per second |system.cpu.switches[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29406 |18 | |10285 |Interrupts per second |system.cpu.intr[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29407 |18 | |10285 |CPU guest nice time |system.cpu.guest_nice[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29408 |18 | |10285 |CPU guest time |system.cpu.guest[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Guest time (time spent running a virtual CPU for a guest operating system) |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29409 |18 | |10285 |CPU interrupt time |system.cpu.interrupt[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29410 |18 | |10285 |CPU iowait time |system.cpu.iowait[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29411 |18 | |10285 |CPU nice time |system.cpu.nice[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29412 |18 | |10285 |CPU softirq time |system.cpu.softirq[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing software interrupts. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29413 |18 | |10285 |CPU user time |system.cpu.user[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29414 |18 | |10285 |System name |system.name[node_exporter] |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29415 |18 | |10285 |Version of node_exporter running |agent.version[node_exporter] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29416 |18 | |10285 |CPU idle time |system.cpu.idle[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29417 |18 | |10285 |Number of CPUs |system.cpu.num[node_exporter] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29418 |18 | |10285 |Load average (15m avg) |system.cpu.load.avg15[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29419 |18 | |10285 |Load average (5m avg) |system.cpu.load.avg5[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29420 |18 | |10285 |Load average (1m avg) |system.cpu.load.avg1[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29421 |18 | |10285 |System uptime |system.uptime[node_exporter] |0 |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29422 |18 | |10285 |Operating system architecture |system.sw.arch[node_exporter] |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29423 |18 | |10285 |Number of open file descriptors |fd.open[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29424 |18 | |10285 |Maximum number of open file descriptors |kernel.maxfiles[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29425 |18 | |10285 |System description |system.descr[node_exporter] |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Labeled system information as provided by the uname system call. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29426 |18 | |10285 |CPU system time |system.cpu.system[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29427 |18 | |10285 |CPU utilization |system.cpu.util[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |29416 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29428 |18 | |10285 |Operating system |system.sw.os[node_exporter] |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |29425 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29429 |18 | |10285 |Network interface discovery |net.if.discovery[node_exporter] |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces. Requires node_exporter v0.18 and up. |0 |30d |1 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29430 |18 | |10285 |Mounted filesystem discovery |vfs.fs.discovery[node_exporter] |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29431 |18 | |10285 |Block devices discovery |vfs.dev.discovery[node_exporter] |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |29436 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[node_exporter,"{#IFNAME}"] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29437 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[node_exporter,"{#IFNAME}"] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29438 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[node_exporter"{#IFNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29439 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[node_exporter,"{#IFNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29440 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[node_exporter,"{#IFNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29441 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[node_exporter,"{#IFNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29442 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[node_exporter,"{#IFNAME}"] |0 |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Sets value to 0 if metric is missing in node_exporter output. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29443 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[node_exporter,"{#IFNAME}"] |0 |7d |0d |0 |3 | | | | |NULL |78 | | |0 | | | | |2 |NULL |node_network_protocol_type protocol_type value of /sys/class/net/<iface>. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29444 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[node_exporter,"{#IFNAME}"] |0 |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29445 |18 | |10285 |{#FSNAME}: Free space |vfs.fs.free[node_exporter,"{#FSNAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29446 |18 | |10285 |{#FSNAME}: Total space |vfs.fs.total[node_exporter,"{#FSNAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29447 |18 | |10285 |{#FSNAME}: Free inodes in % |vfs.fs.inode.pfree[node_exporter,"{#FSNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29448 |18 | |10285 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29449 |18 | |10285 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29450 |18 | |10285 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29451 |18 | |10285 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29452 |18 | |10285 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29453 |18 | |10285 |{#DEVNAME}: Disk utilization |vfs.dev.util[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |29687 |18 | |10301 |RabbitMQ: Memory used |rabbitmq.node.mem_used |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory used in bytes |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29688 |18 | |10301 |RabbitMQ: Disk free alarm |rabbitmq.node.disk_free_alarm |0 |7d |365d |0 |3 | | | | |NULL |83 | | |0 | | | | |0 |NULL |Does the node have disk alarm |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29691 |18 | |10301 |RabbitMQ: Used file descriptors |rabbitmq.node.fd_used |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Used file descriptors |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29692 |18 | |10301 |RabbitMQ: Uptime |rabbitmq.node.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Uptime in milliseconds |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29693 |18 | |10301 |RabbitMQ: Memory alarm |rabbitmq.node.mem_alarm |0 |7d |365d |0 |3 | | | | |NULL |83 | | |0 | | | | |0 |NULL |Does the host has memory alarm |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29694 |18 | |10301 |RabbitMQ: Memory limit |rabbitmq.node.mem_limit |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory usage high watermark in bytes |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29695 |18 | |10301 |RabbitMQ: Is running |rabbitmq.node.running |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Is the node running or not |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29696 |18 | |10301 |RabbitMQ: Number of network partitions |rabbitmq.node.partitions |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of network partitions this node is seeing |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29697 |18 | |10301 |RabbitMQ: Sockets available |rabbitmq.node.sockets_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |File descriptors available for use as sockets |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29698 |18 | |10301 |RabbitMQ: Free disk space |rabbitmq.node.disk_free |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current free disk space |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29699 |18 | |10301 |RabbitMQ: Runtime run queue |rabbitmq.node.run_queue |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Average number of Erlang processes waiting to run |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29700 |18 | |10301 |RabbitMQ: Disk free limit |rabbitmq.node.disk_free_limit |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Disk free space limit in bytes |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29701 |18 | |10301 |RabbitMQ: Sockets used |rabbitmq.node.sockets_used |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of file descriptors used as sockets |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29703 |18 | |10301 |Queues discovery |rabbitmq.queues.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual queue metrics |0 |30d |1 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29720 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages |rabbitmq.queue.messages["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of the total messages in the queue |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29721 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered |rabbitmq.queue.messages.deliver["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages delivered in acknowledgement mode to consumers |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29722 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages redelivered |rabbitmq.queue.messages.redeliver["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29723 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages published per second |rabbitmq.queue.messages.publish.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of messages published |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29724 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages published |rabbitmq.queue.messages.publish["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29725 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered per second |rabbitmq.queue.messages.deliver_get.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29726 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered |rabbitmq.queue.messages.deliver_get["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29727 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered per second |rabbitmq.queue.messages.deliver.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages delivered in acknowledgement mode to consumers |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29728 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages acknowledged per second |rabbitmq.queue.messages.ack.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number per second of messages delivered to clients and acknowledged |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29729 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages per second |rabbitmq.queue.messages.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count per second of the total messages in the queue |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29730 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages acknowledged |rabbitmq.queue.messages.ack["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages delivered to clients and acknowledged |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29731 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages unacknowledged per second |rabbitmq.queue.messages_unacknowledged.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number per second of messages delivered to clients but not yet acknowledged |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29732 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages unacknowledged |rabbitmq.queue.messages_unacknowledged["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages delivered to clients but not yet acknowledged |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29733 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages ready per second |rabbitmq.queue.messages_ready.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number per second of messages ready to be delivered to clients |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29734 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages ready |rabbitmq.queue.messages_ready["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages ready to be delivered to clients |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29735 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Memory |rabbitmq.queue.memory["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Bytes of memory consumed by the Erlang process associated with the queue, including stack, heap and internal structures |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29736 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Consumers |rabbitmq.queue.consumers["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of consumers |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29737 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages redelivered per second |rabbitmq.queue.messages.redeliver.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |29746 |18 | |10302 |RabbitMQ: Messages returned redeliver |rabbitmq.overview.messages.redeliver |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29747 |18 | |10302 |RabbitMQ: Messages returned unroutable per second |rabbitmq.overview.messages.return_unroutable.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages returned to publisher as unroutable per second |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29748 |18 | |10302 |RabbitMQ: Messages returned unroutable |rabbitmq.overview.messages.return_unroutable |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages returned to publisher as unroutable |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29749 |18 | |10302 |RabbitMQ: Messages publish_out per second |rabbitmq.overview.messages.publish_out.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages published from this overview into queues per second,0,rabbitmq,total msgs pub out rate |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29750 |18 | |10302 |RabbitMQ: Messages publish_out |rabbitmq.overview.messages.publish_out |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published from this overview into queues |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29751 |18 | |10302 |RabbitMQ: Messages publish_in per second |rabbitmq.overview.messages.publish_in.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages published from channels into this overview per sec |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29752 |18 | |10302 |RabbitMQ: Messages publish_in |rabbitmq.overview.messages.publish_in |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published from channels into this overview |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29753 |18 | |10302 |RabbitMQ: Messages published per second |rabbitmq.overview.messages.publish.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages published per second |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29754 |18 | |10302 |RabbitMQ: Messages published |rabbitmq.overview.messages.publish |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29755 |18 | |10302 |RabbitMQ: Messages delivered per second |rabbitmq.overview.messages.deliver_get.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29756 |18 | |10302 |RabbitMQ: Messages delivered |rabbitmq.overview.messages.deliver_get |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29757 |18 | |10302 |RabbitMQ: Messages confirmed per second |rabbitmq.overview.messages.confirm.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages confirmed per second |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29758 |18 | |10302 |RabbitMQ: Messages confirmed |rabbitmq.overview.messages.confirm |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages confirmed |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29759 |18 | |10302 |RabbitMQ: Messages acknowledged per second |rabbitmq.overview.messages.ack.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages delivered to clients and acknowledged per second |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29760 |18 | |10302 |RabbitMQ: Messages acknowledged |rabbitmq.overview.messages.ack |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of messages delivered to clients and acknowledged |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29761 |18 | |10302 |RabbitMQ: Messages unacknowledged |rabbitmq.overview.queue_totals.messages.unacknowledged |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of unacknowledged messages |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29762 |18 | |10302 |RabbitMQ: Messages ready for delivery |rabbitmq.overview.queue_totals.messages.ready |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of messages ready for deliver |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29763 |18 | |10302 |RabbitMQ: Messages total |rabbitmq.overview.queue_totals.messages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of messages (ready plus unacknowledged) |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29764 |18 | |10302 |RabbitMQ: Exchanges total |rabbitmq.overview.object_totals.exchanges |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of exchanges |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29765 |18 | |10302 |RabbitMQ: Consumers total |rabbitmq.overview.object_totals.consumers |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of consumers |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29766 |18 | |10302 |RabbitMQ: Queues total |rabbitmq.overview.object_totals.queues |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of queues |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29767 |18 | |10302 |RabbitMQ: Channels total |rabbitmq.overview.object_totals.channels |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of channels |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29768 |18 | |10302 |RabbitMQ: Connections total |rabbitmq.overview.object_totals.connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29769 |18 | |10302 |RabbitMQ: Messages returned redeliver per second |rabbitmq.overview.messages.redeliver.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of subset of messages in deliver_get which had the redelivered flag set per second |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29771 |18 | |10303 |RabbitMQ: Number of network partitions |rabbitmq.node.partitions |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of network partitions this node is seeing |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29772 |18 | |10303 |RabbitMQ: Uptime |rabbitmq.node.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Uptime in milliseconds |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29773 |18 | |10303 |RabbitMQ: Disk free alarm |rabbitmq.node.disk_free_alarm |0 |7d |365d |0 |3 | | | | |NULL |83 | | |0 | | | | |0 |NULL |Does the node have disk alarm |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29774 |18 | |10303 |RabbitMQ: Memory alarm |rabbitmq.node.mem_alarm |0 |7d |365d |0 |3 | | | | |NULL |83 | | |0 | | | | |0 |NULL |Does the host has memory alarm |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29775 |18 | |10303 |RabbitMQ: Is running |rabbitmq.node.running |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Is the node running or not |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29776 |18 | |10303 |RabbitMQ: Sockets used |rabbitmq.node.sockets_used |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of file descriptors used as sockets |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29777 |18 | |10303 |RabbitMQ: Sockets available |rabbitmq.node.sockets_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |File descriptors available for use as sockets |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29779 |18 | |10303 |RabbitMQ: Runtime run queue |rabbitmq.node.run_queue |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Average number of Erlang processes waiting to run |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29780 |18 | |10303 |RabbitMQ: Memory used |rabbitmq.node.mem_used |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory used in bytes |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29781 |18 | |10303 |RabbitMQ: Disk free limit |rabbitmq.node.disk_free_limit |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Disk free space limit in bytes |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29782 |18 | |10303 |RabbitMQ: Free disk space |rabbitmq.node.disk_free |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current free disk space |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29783 |18 | |10303 |RabbitMQ: Used file descriptors |rabbitmq.node.fd_used |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Used file descriptors |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29784 |18 | |10303 |RabbitMQ: Memory limit |rabbitmq.node.mem_limit |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory usage high watermark in bytes |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29785 |18 | |10302 |Exchanges discovery |rabbitmq.exchanges.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual exchange metrics |0 |30d |1 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29786 |18 | |10303 |Queues discovery |rabbitmq.queues.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual queue metrics |0 |30d |1 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29787 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages acknowledged |rabbitmq.exchange.messages.ack["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages delivered to clients and acknowledged |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29788 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages acknowledged per second |rabbitmq.exchange.messages.ack.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages delivered to clients and acknowledged per second |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29789 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages confirmed |rabbitmq.exchange.messages.confirm["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages confirmed |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29790 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages confirmed per second |rabbitmq.exchange.messages.confirm.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages confirmed per second |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29791 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages delivered |rabbitmq.exchange.messages.deliver_get["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29792 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages delivered per second |rabbitmq.exchange.messages.deliver_get.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29793 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages published |rabbitmq.exchange.messages.publish["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29794 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages published per second |rabbitmq.exchange.messages.publish.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages published per second |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29795 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_in |rabbitmq.exchange.messages.publish_in["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published from channels into this overview |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29796 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_in per second |rabbitmq.exchange.messages.publish_in.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages published from channels into this overview per sec |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29797 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_out |rabbitmq.exchange.messages.publish_out["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published from this overview into queues |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29798 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_out per second |rabbitmq.exchange.messages.publish_out.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages published from this overview into queues per second,0,rabbitmq,total msgs pub out rate |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29799 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages returned unroutable |rabbitmq.exchange.messages.return_unroutable["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages returned to publisher as unroutable |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29800 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages returned unroutable per second|rabbitmq.exchange.messages.return_unroutable.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages returned to publisher as unroutable per second |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29801 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages redelivered |rabbitmq.exchange.messages.redeliver["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29802 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages redelivered per second |rabbitmq.exchange.messages.redeliver.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of subset of messages in deliver_get which had the redelivered flag set per second |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29803 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages |rabbitmq.queue.messages["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of the total messages in the queue |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29804 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered |rabbitmq.queue.messages.deliver["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages delivered in acknowledgement mode to consumers |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29805 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages redelivered |rabbitmq.queue.messages.redeliver["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29806 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages published per second |rabbitmq.queue.messages.publish.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of messages published |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29807 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages published |rabbitmq.queue.messages.publish["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29808 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered per second |rabbitmq.queue.messages.deliver_get.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29809 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered |rabbitmq.queue.messages.deliver_get["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29810 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered per second |rabbitmq.queue.messages.deliver.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages delivered in acknowledgement mode to consumers |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29811 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages acknowledged per second |rabbitmq.queue.messages.ack.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number per second of messages delivered to clients and acknowledged |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29812 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages per second |rabbitmq.queue.messages.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count per second of the total messages in the queue |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29813 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages acknowledged |rabbitmq.queue.messages.ack["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages delivered to clients and acknowledged |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29814 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages unacknowledged per second |rabbitmq.queue.messages_unacknowledged.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number per second of messages delivered to clients but not yet acknowledged |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29815 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages unacknowledged |rabbitmq.queue.messages_unacknowledged["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages delivered to clients but not yet acknowledged |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29816 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages ready per second |rabbitmq.queue.messages_ready.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number per second of messages ready to be delivered to clients |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29817 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages ready |rabbitmq.queue.messages_ready["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages ready to be delivered to clients |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29818 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Memory |rabbitmq.queue.memory["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Bytes of memory consumed by the Erlang process associated with the queue, including stack, heap and internal structures |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29819 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Consumers |rabbitmq.queue.consumers["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of consumers |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29820 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages redelivered per second |rabbitmq.queue.messages.redeliver.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29821 |18 | |10261 |Utilization of alert syncer internal processes, in % |process.alert_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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] |30s |2w |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 |30000 |18 | |10300 |RabbitMQ: Messages returned redeliver |rabbitmq.overview.messages.redeliver |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30001 |18 | |10300 |RabbitMQ: Messages returned unroutable per second |rabbitmq.overview.messages.return_unroutable.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages returned to publisher as unroutable per second |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30002 |18 | |10300 |RabbitMQ: Messages returned unroutable |rabbitmq.overview.messages.return_unroutable |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages returned to publisher as unroutable |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30003 |18 | |10300 |RabbitMQ: Messages publish_out per second |rabbitmq.overview.messages.publish_out.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages published from this overview into queues per second,0,rabbitmq,total msgs pub out rate |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30004 |18 | |10300 |RabbitMQ: Messages publish_out |rabbitmq.overview.messages.publish_out |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published from this overview into queues |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30005 |18 | |10300 |RabbitMQ: Messages publish_in per second |rabbitmq.overview.messages.publish_in.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages published from channels into this overview per sec |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30006 |18 | |10300 |RabbitMQ: Messages publish_in |rabbitmq.overview.messages.publish_in |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published from channels into this overview |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30007 |18 | |10300 |RabbitMQ: Messages published per second |rabbitmq.overview.messages.publish.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages published per second |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30008 |18 | |10300 |RabbitMQ: Messages published |rabbitmq.overview.messages.publish |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30009 |18 | |10300 |RabbitMQ: Messages delivered per second |rabbitmq.overview.messages.deliver_get.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30010 |18 | |10300 |RabbitMQ: Messages delivered |rabbitmq.overview.messages.deliver_get |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30011 |18 | |10300 |RabbitMQ: Messages confirmed per second |rabbitmq.overview.messages.confirm.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages confirmed per second |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30012 |18 | |10300 |RabbitMQ: Messages confirmed |rabbitmq.overview.messages.confirm |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages confirmed |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30013 |18 | |10300 |RabbitMQ: Messages acknowledged per second |rabbitmq.overview.messages.ack.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages delivered to clients and acknowledged per second |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30014 |18 | |10300 |RabbitMQ: Messages acknowledged |rabbitmq.overview.messages.ack |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of messages delivered to clients and acknowledged |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30015 |18 | |10300 |RabbitMQ: Messages unacknowledged |rabbitmq.overview.queue_totals.messages.unacknowledged |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of unacknowledged messages |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30016 |18 | |10300 |RabbitMQ: Messages ready for delivery |rabbitmq.overview.queue_totals.messages.ready |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of messages ready for deliver |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30017 |18 | |10300 |RabbitMQ: Messages total |rabbitmq.overview.queue_totals.messages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of messages (ready plus unacknowledged) |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30018 |18 | |10300 |RabbitMQ: Exchanges total |rabbitmq.overview.object_totals.exchanges |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of exchanges |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30019 |18 | |10300 |RabbitMQ: Consumers total |rabbitmq.overview.object_totals.consumers |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of consumers |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30020 |18 | |10300 |RabbitMQ: Queues total |rabbitmq.overview.object_totals.queues |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of queues |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30021 |18 | |10300 |RabbitMQ: Channels total |rabbitmq.overview.object_totals.channels |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of channels |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30022 |18 | |10300 |RabbitMQ: Connections total |rabbitmq.overview.object_totals.connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30023 |18 | |10300 |RabbitMQ: Messages returned redeliver per second |rabbitmq.overview.messages.redeliver.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of subset of messages in deliver_get which had the redelivered flag set per second |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30024 |18 | |10301 |RabbitMQ: Management plugin version |rabbitmq.node.overview.management_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the management plugin in use |0 |30d |0 | |29653 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30025 |18 | |10301 |RabbitMQ: RabbitMQ version |rabbitmq.node.overview.rabbitmq_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of RabbitMQ on the node which processed this request |0 |30d |0 | |29653 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30026 |18 | |10300 |Exchanges discovery |rabbitmq.exchanges.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual exchange metrics |0 |30d |1 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30027 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages acknowledged |rabbitmq.exchange.messages.ack["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages delivered to clients and acknowledged |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30028 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages acknowledged per second |rabbitmq.exchange.messages.ack.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages delivered to clients and acknowledged per second |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30029 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages confirmed |rabbitmq.exchange.messages.confirm["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages confirmed |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30030 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages confirmed per second |rabbitmq.exchange.messages.confirm.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages confirmed per second |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30031 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages delivered |rabbitmq.exchange.messages.deliver_get["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30032 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages delivered per second |rabbitmq.exchange.messages.deliver_get.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30033 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages published |rabbitmq.exchange.messages.publish["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30034 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages published per second |rabbitmq.exchange.messages.publish.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages published per second |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30035 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_in |rabbitmq.exchange.messages.publish_in["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published from channels into this overview |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30036 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_in per second |rabbitmq.exchange.messages.publish_in.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages published from channels into this overview per sec |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30037 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_out |rabbitmq.exchange.messages.publish_out["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published from this overview into queues |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30038 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_out per second |rabbitmq.exchange.messages.publish_out.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages published from this overview into queues per second,0,rabbitmq,total msgs pub out rate |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30039 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages returned unroutable |rabbitmq.exchange.messages.return_unroutable["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages returned to publisher as unroutable |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30040 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages returned unroutable per second|rabbitmq.exchange.messages.return_unroutable.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages returned to publisher as unroutable per second |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30041 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages redelivered |rabbitmq.exchange.messages.redeliver["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30042 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages redelivered per second |rabbitmq.exchange.messages.redeliver.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of subset of messages in deliver_get which had the redelivered flag set per second |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30044 |18 | |10303 |RabbitMQ: Management plugin version |rabbitmq.node.overview.management_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the management plugin in use |0 |30d |0 | |30043 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30045 |18 | |10303 |RabbitMQ: RabbitMQ version |rabbitmq.node.overview.rabbitmq_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of RabbitMQ on the node which processed this request |0 |30d |0 | |30043 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30191 |18 | |10308 |HAProxy: Uptime |haproxy.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30190 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30192 |18 | |10308 |HAProxy: Version |haproxy.version |0 |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30190 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30193 |18 | |10308 |Backend discovery |haproxy.backend.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery backends |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30194 |18 | |10308 |FRONTEND discovery |haproxy.frontend.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery frontends |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30195 |18 | |10308 |Servers discovery |haproxy.server.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery servers |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30197 |18 | |10308 |HAProxy Backend {#PXNAME}: Responses denied per second |haproxy.backend.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30198 |18 | |10308 |HAProxy Backend {#PXNAME}: Errors connection per second |haproxy.backend.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30199 |18 | |10308 |HAProxy Backend {#PXNAME}: Response errors per second |haproxy.backend.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30200 |18 | |10308 |HAProxy Backend {#PXNAME}: Unassigned requests |haproxy.backend.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30201 |18 | |10308 |HAProxy Backend {#PXNAME}: Time in queue |haproxy.backend.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30202 |18 | |10308 |HAProxy Backend {#PXNAME}: Responses time |haproxy.backend.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average backend response time (in ms) for the last 1,024 requests |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30203 |18 | |10308 |HAProxy Backend {#PXNAME}: Status |haproxy.backend.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30204 |18 | |10308 |HAProxy Backend {#PXNAME}: Redispatched requests per second |haproxy.backend.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30205 |18 | |10308 |HAProxy Backend {#PXNAME}: Retried connections per second |haproxy.backend.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30206 |18 | |10308 |HAProxy Frontend {#PXNAME}: Incoming traffic |haproxy.frontend.bin[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the frontend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30207 |18 | |10308 |HAProxy Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend.bout[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the frontend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30208 |18 | |10308 |HAProxy Frontend {#PXNAME}: Denied requests per second |haproxy.frontend.dreq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Requests denied due to security concerns (ACL-restricted) per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30209 |18 | |10308 |HAProxy Frontend {#PXNAME}: Request errors per second |haproxy.frontend.ereq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of request errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30210 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 1xx per second |haproxy.frontend.hrsp_1xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of informational HTTP responses per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30211 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 2xx per second |haproxy.frontend.hrsp_2xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of successful HTTP responses per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30212 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 3xx per second |haproxy.frontend.hrsp_3xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP redirections per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30213 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 4xx per second |haproxy.frontend.hrsp_4xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP client errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30214 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 5xx per second |haproxy.frontend.hrsp_5xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP server errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30215 |18 | |10308 |HAProxy Frontend {#PXNAME}: Sessions rate |haproxy.frontend.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sessions created per second |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30216 |18 | |10308 |HAProxy Frontend {#PXNAME}: Requests rate |haproxy.frontend.req_rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |HTTP requests per second |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30217 |18 | |10308 |HAProxy Frontend {#PXNAME}: Established sessions |haproxy.frontend.scur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of established sessions. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30218 |18 | |10308 |HAProxy Frontend {#PXNAME}: Session limits |haproxy.frontend.slim[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30219 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30220 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30221 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30222 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 4xx per second |haproxy.server.hrsp_4xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP client errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30223 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 5xx per second |haproxy.server.hrsp_5xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP server errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30224 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Unassigned requests |haproxy.server.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30225 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Time in queue |haproxy.server.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30226 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Responses time |haproxy.server.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average server response time (in ms) for the last 1,024 requests. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30227 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Status |haproxy.server.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30228 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30229 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30234 |18 | |10309 |HAProxy: Uptime |haproxy.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30231 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30235 |18 | |10309 |HAProxy: Version |haproxy.version |0 |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30231 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30236 |18 | |10309 |BACKEND discovery |haproxy.backend.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery backends |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30237 |18 | |10309 |FRONTEND discovery |haproxy.frontend.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery frontends |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30238 |18 | |10309 |Servers discovery |haproxy.server.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery servers |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30240 |18 | |10309 |HAProxy Backend {#PXNAME}: Responses denied per second |haproxy.backend.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30241 |18 | |10309 |HAProxy Backend {#PXNAME}: Errors connection per second |haproxy.backend.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30242 |18 | |10309 |HAProxy Backend {#PXNAME}: Response errors per second |haproxy.backend.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30243 |18 | |10309 |HAProxy Backend {#PXNAME}: Unassigned requests |haproxy.backend.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30244 |18 | |10309 |HAProxy Backend {#PXNAME}: Time in queue |haproxy.backend.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30245 |18 | |10309 |HAProxy Backend {#PXNAME}: Responses time |haproxy.backend.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average backend response time (in ms) for the last 1,024 requests |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30246 |18 | |10309 |HAProxy Backend {#PXNAME}: Status |haproxy.backend.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30247 |18 | |10309 |HAProxy Backend {#PXNAME}: Redispatched requests per second |haproxy.backend.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30248 |18 | |10309 |HAProxy Backend {#PXNAME}: Retried connections per second |haproxy.backend.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30249 |18 | |10309 |HAProxy Frontend {#PXNAME}: Incoming traffic |haproxy.frontend.bin[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the frontend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30250 |18 | |10309 |HAProxy Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend.bout[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the frontend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30251 |18 | |10309 |HAProxy Frontend {#PXNAME}: Denied requests per second |haproxy.frontend.dreq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Requests denied due to security concerns (ACL-restricted) per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30252 |18 | |10309 |HAProxy Frontend {#PXNAME}: Request errors per second |haproxy.frontend.ereq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of request errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30253 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 1xx per second |haproxy.frontend.hrsp_1xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of informational HTTP responses per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30254 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 2xx per second |haproxy.frontend.hrsp_2xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of successful HTTP responses per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30255 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 3xx per second |haproxy.frontend.hrsp_3xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP redirections per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30256 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 4xx per second |haproxy.frontend.hrsp_4xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP client errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30257 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 5xx per second |haproxy.frontend.hrsp_5xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP server errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30258 |18 | |10309 |HAProxy Frontend {#PXNAME}: Sessions rate |haproxy.frontend.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sessions created per second |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30259 |18 | |10309 |HAProxy Frontend {#PXNAME}: Requests rate |haproxy.frontend.req_rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |HTTP requests per second |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30260 |18 | |10309 |HAProxy Frontend {#PXNAME}: Established sessions |haproxy.frontend.scur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of established sessions. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30261 |18 | |10309 |HAProxy Frontend {#PXNAME}: Session limits |haproxy.frontend.slim[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30262 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30263 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30264 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30265 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 4xx per second |haproxy.server.hrsp_4xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP client errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30266 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 5xx per second |haproxy.server.hrsp_5xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP server errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30267 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Unassigned requests |haproxy.server.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30268 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Time in queue |haproxy.server.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30269 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Responses time |haproxy.server.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average server response time (in ms) for the last 1,024 requests. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30270 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Status |haproxy.server.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30271 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30272 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30277 |18 | |10310 |Redis: Blocked clients |redis.clients.blocked |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections waiting on a blocking call |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30278 |18 | |10310 |Redis: TCP port |redis.server.tcp_port |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |TCP/IP listen port |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30279 |18 | |10310 |Redis: Expired keys |redis.stats.expired_keys |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of key expiration events |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30280 |18 | |10310 |Redis: Evicted keys |redis.stats.evicted_keys |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of evicted keys due to maxmemory limit |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30281 |18 | |10310 |Redis: Uptime |redis.server.uptime |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of seconds since Redis server start |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30282 |18 | |10310 |Redis: Redis mode |redis.server.redis_mode |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The server's mode ("standalone", "sentinel" or "cluster") |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30283 |18 | |10310 |Redis: Redis version |redis.server.redis_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the Redis server |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30284 |18 | |10310 |Redis: Instantaneous operations per sec |redis.stats.instantaneous_ops.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of commands processed per second |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30285 |18 | |10310 |Redis: Process id |redis.server.process_id |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |PID of the server process |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30286 |18 | |10310 |Redis: Replication role |redis.replication.role |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Value is "master" if the instance is replica of no one, or "slave" if the instance is a replica of some master instance. Note that a replica can be master of another replica (chained replication). |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30287 |18 | |10310 |Redis: Replication backlog size |redis.replication.repl_backlog_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total size in bytes of the replication backlog buffer |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30288 |18 | |10310 |Redis: Replication backlog history length |redis.replication.repl_backlog_histlen |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of data in the backlog sync buffer |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30289 |18 | |10310 |Redis: Instantaneous input bytes per second |redis.stats.instantaneous_input.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The network's read rate per second in KB/sec |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30290 |18 | |10310 |Redis: Keyspace hits |redis.stats.keyspace_hits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of successful lookup of keys in the main dictionary |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30291 |18 | |10310 |Redis: Instantaneous output bytes per second |redis.stats.instantaneous_output.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The network's write rate per second in KB/sec |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30292 |18 | |10310 |Redis: Replication backlog active |redis.replication.repl_backlog_active |0 |7d |365d |0 |3 | | | | |NULL |90 | | |0 | | | | |0 |NULL |Flag indicating replication backlog is active |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30293 |18 | |10310 |Redis: Keyspace misses |redis.stats.keyspace_misses |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of failed lookup of keys in the main dictionary |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30294 |18 | |10310 |Redis: Latest fork usec |redis.stats.latest_fork_usec |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Duration of the latest fork operation in microseconds |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30295 |18 | |10310 |Redis: Migrate cached sockets |redis.stats.migrate_cached_sockets |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of sockets open for MIGRATE purposes |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30296 |18 | |10310 |Redis: Pubsub channels |redis.stats.pubsub_channels |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Global number of pub/sub channels with client subscriptions |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30297 |18 | |10310 |Redis: Pubsub patterns |redis.stats.pubsub_patterns |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Global number of pub/sub pattern with client subscriptions |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30298 |18 | |10310 |Redis: Rejected connections |redis.stats.rejected_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections rejected because of maxclients limit |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30299 |18 | |10310 |Redis: Sync full |redis.stats.sync_full |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of full resyncs with replicas |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30300 |18 | |10310 |Redis: Sync partial err |redis.stats.sync_partial_err |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of denied partial resync requests |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30301 |18 | |10310 |Redis: Sync partial ok |redis.stats.sync_partial_ok |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of accepted partial resync requests |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30302 |18 | |10310 |Redis: Total commands processed |redis.stats.total_commands_processed |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of commands processed by the server |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30303 |18 | |10310 |Redis: Total connections received |redis.stats.total_connections_received |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections accepted by the server |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30304 |18 | |10310 |Redis: Total net input bytes |redis.stats.total_net_input_bytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of bytes read from the network |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30305 |18 | |10310 |Redis: Replication backlog first byte offset |redis.replication.repl_backlog_first_byte_offset |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The master offset of the replication backlog buffer |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30306 |18 | |10310 |Redis: Connected slaves |redis.replication.connected_slaves |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connected slaves |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30307 |18 | |10310 |Redis: Master replication offset |redis.replication.master_repl_offset |0 |7d |365d |0 |3 | |B | | |NULL |91 | | |0 | | | | |0 |NULL |Replication offset reported by the master |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30308 |18 | |10310 |Redis: Memory used RSS |redis.memory.used_memory_rss |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes that Redis allocated as seen by the operating system |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30309 |18 | |10310 |Redis: Max input buffer |redis.clients.max_input_buffer |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The biggest input buffer among current client connections |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30310 |18 | |10310 |Redis: Max output buffer |redis.clients.max_output_buffer |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The biggest output buffer among current client connections |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30311 |18 | |10310 |Redis: Cluster enabled |redis.cluster.enabled |0 |7d |365d |0 |3 | | | | |NULL |90 | | |0 | | | | |0 |NULL |Indicate Redis cluster is enabled |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30312 |18 | |10310 |Redis: Max clients |redis.config.maxclients |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Max number of connected clients at the same time.&eol;Once the limit is reached Redis will close all the new connections sending an error "max number of clients reached". |0 |30d |0 | |30275 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30313 |18 | |10310 |Redis: CPU sys |redis.cpu.sys |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |System CPU consumed by the Redis server |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30314 |18 | |10310 |Redis: CPU sys children |redis.cpu.sys_children |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |System CPU consumed by the background processes |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30315 |18 | |10310 |Redis: CPU user |redis.cpu.user |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |User CPU consumed by the Redis server |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30316 |18 | |10310 |Redis: CPU user children |redis.cpu.user_children |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |User CPU consumed by the background processes |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30317 |18 | |10310 |Redis: Memory fragmentation ratio |redis.memory.fragmentation_ratio |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This ratio is an indication of memory mapping efficiency:&eol; — Value over 1.0 indicate that memory fragmentation is very likely. Consider restarting the Redis server so the operating system can recover fragmented memory, especially with a ratio over 1.5.&eol; — Value under 1.0 indicate that Redis likely has insufficient memory available. Consider optimizing memory usage or adding more RAM.&eol;&eol;Note: If your peak memory usage is much higher than your current memory usage, the memory fragmentation ratio may be unreliable.&eol;&eol;https://redis.io/topics/memory-optimization |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30318 |18 | |10310 |Redis: Memory used |redis.memory.used_memory |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of bytes allocated by Redis using its allocator |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30319 |18 | |10310 |Redis: Memory used Lua |redis.memory.used_memory_lua |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of memory used by the Lua engine |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30320 |18 | |10310 |Redis: Memory used peak |redis.memory.used_memory_peak |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Peak memory consumed by Redis (in bytes) |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30321 |18 | |10310 |Redis: AOF current rewrite time sec |redis.persistence.aof_current_rewrite_time_sec |0 |7d |365d |0 |0 | |s | | |NULL |92 | | |0 | | | | |0 |NULL |Duration of the on-going AOF rewrite operation if any |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30322 |18 | |10310 |Redis: Connected clients |redis.clients.connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connected clients |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30323 |18 | |10310 |Redis: AOF enabled |redis.persistence.aof_enabled |0 |7d |365d |0 |3 | | | | |NULL |90 | | |0 | | | | |0 |NULL |Flag indicating AOF logging is activated |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30324 |18 | |10310 |Redis: AOF last bgrewrite status |redis.persistence.aof_last_bgrewrite_status |0 |7d |365d |0 |3 | | | | |NULL |89 | | |0 | | | | |0 |NULL |Status of the last AOF rewrite operation |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30325 |18 | |10310 |Redis: AOF last rewrite time sec |redis.persistence.aof_last_rewrite_time_sec |0 |7d |365d |0 |0 | |s | | |NULL |92 | | |0 | | | | |0 |NULL |Duration of the last AOF rewrite |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30326 |18 | |10310 |Redis: AOF last write status |redis.persistence.aof_last_write_status |0 |7d |365d |0 |3 | | | | |NULL |89 | | |0 | | | | |0 |NULL |Status of the last write operation to the AOF |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30327 |18 | |10310 |Redis: AOF rewrite in progress |redis.persistence.aof_rewrite_in_progress |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Flag indicating a AOF rewrite operation is on-going |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30328 |18 | |10310 |Redis: AOF rewrite scheduled |redis.persistence.aof_rewrite_scheduled |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Flag indicating an AOF rewrite operation will be scheduled once the on-going RDB save is complete |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30329 |18 | |10310 |Redis: Dump loading |redis.persistence.loading |0 |7d |365d |0 |3 | | | | |NULL |90 | | |0 | | | | |0 |NULL |Flag indicating if the load of a dump file is on-going |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30330 |18 | |10310 |Redis: RDB bgsave in progress |redis.persistence.rdb_bgsave_in_progress |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"1" if bgsave is in progress and "0" otherwise |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30331 |18 | |10310 |Redis: RDB changes since last save |redis.persistence.rdb_changes_since_last_save |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of changes since the last background save |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30332 |18 | |10310 |Redis: RDB current bgsave time sec |redis.persistence.rdb_current_bgsave_time_sec |0 |7d |365d |0 |0 | |s | | |NULL |92 | | |0 | | | | |0 |NULL |Duration of the on-going RDB save operation if any |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30333 |18 | |10310 |Redis: RDB last bgsave status |redis.persistence.rdb_last_bgsave_status |0 |7d |365d |0 |3 | | | | |NULL |89 | | |0 | | | | |0 |NULL |Status of the last RDB save operation |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30334 |18 | |10310 |Redis: RDB last bgsave time sec |redis.persistence.rdb_last_bgsave_time_sec |0 |7d |365d |0 |0 | |s | | |NULL |92 | | |0 | | | | |0 |NULL |Duration of the last bg_save operation |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30335 |18 | |10310 |Redis: RDB last save time |redis.persistence.rdb_last_save_time |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Epoch-based timestamp of last successful RDB save |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30336 |18 | |10310 |Redis: Total net output bytes |redis.stats.total_net_output_bytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of bytes written to the network |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30338 |18 | |10310 |Keyspace discovery |redis.keyspace.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual keyspace metrics |0 |30d |1 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30339 |18 | |10310 |Version 4+ metrics discovery |redis.metrics.v4.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics for versions 4+ |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30340 |18 | |10310 |Version 5+ metrics discovery |redis.metrics.v5.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics for versions 5+ |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30341 |18 | |10310 |AOF metrics discovery |redis.persistence.aof.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If AOF is activated, additional metrics will be added |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30342 |18 | |10310 |Replication metrics discovery |redis.replication.master.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If the instance is the master and the slaves are connected, additional metrics are provided |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30343 |18 | |10310 |Slave metrics discovery |redis.replication.slave.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If the instance is a replica, additional metrics are provided |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30348 |18 | |10310 |DB {#DB}: Average TTL |redis.db.avg_ttl["{#DB}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average TTL |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30349 |18 | |10310 |DB {#DB}: Expires |redis.db.expires["{#DB}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of keys with an expiration |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30350 |18 | |10310 |DB {#DB}: Keys |redis.db.keys["{#DB}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of keys |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30351 |18 | |10310 |Redis: Active defrag running{#SINGLETON} |redis.memory.active_defrag_running[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Flag indicating if active defragmentation is active |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30352 |18 | |10310 |Redis: RDB last CoW size{#SINGLETON} |redis.persistence.rdb_last_cow_size[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The size in bytes of copy-on-write allocations during the last RDB save operation |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30353 |18 | |10310 |Redis: Expired time cap reached count{#SINGLETON} |redis.stats.expired_time_cap_reached_count[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30354 |18 | |10310 |Redis: Expired stale %{#SINGLETON} |redis.stats.expired_stale_perc[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30355 |18 | |10310 |Redis: Active defrag misses{#SINGLETON} |redis.stats.active_defrag_misses[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of aborted value reallocations started by the active defragmentation process |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30356 |18 | |10310 |Redis: Active defrag key misses{#SINGLETON} |redis.stats.active_defrag_key_misses[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of keys that were skipped by the active defragmentation process |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30357 |18 | |10310 |Redis: Active defrag key hits{#SINGLETON} |redis.stats.active_defrag_key_hits[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of keys that were actively defragmented |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30358 |18 | |10310 |Redis: Active defrag hits{#SINGLETON} |redis.stats.active_defrag_hits[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of value reallocations performed by active the defragmentation process |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30359 |18 | |10310 |Redis: Executable path{#SINGLETON} |redis.server.executable[{#SINGLETON}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The path to the server's executable |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30360 |18 | |10310 |Redis: Replication second offset{#SINGLETON} |redis.replication.second_repl_offset[{#SINGLETON}] |0 |7d |365d |0 |0 | |B | | |NULL |91 | | |0 | | | | |2 |NULL |Offset up to which replication IDs are accepted |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30361 |18 | |10310 |Redis: AOF last CoW size{#SINGLETON} |redis.persistence.aof_last_cow_size[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The size in bytes of copy-on-write allocations during the last AOF rewrite operation |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30362 |18 | |10310 |Redis: Lazyfree pending objects{#SINGLETON} |redis.memory.lazyfree_pending_objects[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of objects waiting to be freed (as a result of calling UNLINK, or FLUSHDB and FLUSHALL with the ASYNC option) |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30363 |18 | |10310 |Redis: Memory used startup{#SINGLETON} |redis.memory.used_memory_startup[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Initial amount of memory consumed by Redis at startup in bytes |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30364 |18 | |10310 |Redis: Memory used peak %{#SINGLETON} |redis.memory.used_memory_peak_perc[{#SINGLETON}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |The percentage of used_memory_peak out of used_memory |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30365 |18 | |10310 |Redis: Memory used overhead{#SINGLETON} |redis.memory.used_memory_overhead[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The sum in bytes of all overheads that the server allocated for managing its internal data structures |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30366 |18 | |10310 |Redis: Memory used dataset{#SINGLETON} |redis.memory.used_memory_dataset[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The size in bytes of the dataset |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30367 |18 | |10310 |Redis: Memory used dataset %{#SINGLETON} |redis.memory.used_memory_dataset_perc[{#SINGLETON}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |The percentage of used_memory_dataset out of the net memory usage (used_memory minus used_memory_startup) |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30368 |18 | |10310 |Redis: Total system memory{#SINGLETON} |redis.memory.total_system_memory[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total amount of memory that the Redis host has |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30369 |18 | |10310 |Redis: Max memory{#SINGLETON} |redis.memory.maxmemory[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum amount of memory allocated to the Redisdb system |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30370 |18 | |10310 |Redis: Max memory policy{#SINGLETON} |redis.memory.maxmemory_policy[{#SINGLETON}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The value of the maxmemory-policy configuration directive |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30371 |18 | |10310 |Redis: Slave expires tracked keys{#SINGLETON} |redis.stats.slave_expires_tracked_keys[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of keys tracked for expiry purposes (applicable only to writable replicas) |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30372 |18 | |10310 |Redis: Allocator active{#SINGLETON} |redis.memory.allocator_active[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30373 |18 | |10310 |Redis: Memory clients normal{#SINGLETON} |redis.memory.mem_clients_normal[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30374 |18 | |10310 |Redis: Memory RSS overhead ratio{#SINGLETON} |redis.memory.rss_overhead_ratio[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30375 |18 | |10310 |Redis: Memory RSS overhead bytes{#SINGLETON} |redis.memory.rss_overhead_bytes[{#SINGLETON}] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30376 |18 | |10310 |Redis: Memory replication backlog{#SINGLETON} |redis.memory.replication_backlog[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30377 |18 | |10310 |Redis: Memory number of cached scripts{#SINGLETON} |redis.memory.number_of_cached_scripts[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30378 |18 | |10310 |Redis: Memory not counted for evict{#SINGLETON} |redis.memory.not_counted_for_evict[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30379 |18 | |10310 |Redis: Memory clients slaves{#SINGLETON} |redis.memory.mem_clients_slaves[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30380 |18 | |10310 |Redis: Memory AOF buffer{#SINGLETON} |redis.memory.mem_aof_buffer[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Size of the AOF buffer |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30381 |18 | |10310 |Redis: Allocator allocated{#SINGLETON} |redis.memory.allocator_allocated[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30382 |18 | |10310 |Redis: Memory fragmentation bytes{#SINGLETON} |redis.memory.fragmentation_bytes[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30383 |18 | |10310 |Redis: Allocator RSS ratio{#SINGLETON} |redis.memory.allocator_rss_ratio[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30384 |18 | |10310 |Redis: Allocator RSS bytes{#SINGLETON} |redis.memory.allocator_rss_bytes[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30385 |18 | |10310 |Redis: Allocator resident{#SINGLETON} |redis.memory.allocator_resident[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30386 |18 | |10310 |Redis: Allocator fragmentation ratio{#SINGLETON} |redis.memory.allocator_frag_ratio[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30387 |18 | |10310 |Redis: Allocator fragmentation bytes{#SINGLETON} |redis.memory.allocator_frag_bytes[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30388 |18 | |10310 |Redis: Memory used scripts{#SINGLETON} |redis.memory.used_memory_scripts[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30389 |18 | |10310 |Redis: AOF base size{#SINGLETON} |redis.persistence.aof_base_size[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |AOF file size on latest startup or rewrite |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30390 |18 | |10310 |Redis: AOF buffer length{#SINGLETON} |redis.persistence.aof_buffer_length[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Size of the AOF buffer |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30391 |18 | |10310 |Redis: AOF current size{#SINGLETON} |redis.persistence.aof_current_size[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |AOF current file size |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30392 |18 | |10310 |Redis: AOF delayed fsync{#SINGLETON} |redis.persistence.aof_delayed_fsync[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Delayed fsync counter |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30393 |18 | |10310 |Redis: AOF pending background I/O fsync{#SINGLETON} |redis.persistence.aof_pending_bio_fsync[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of fsync pending jobs in background I/O queue |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30394 |18 | |10310 |Redis: AOF pending rewrite{#SINGLETON} |redis.persistence.aof_pending_rewrite[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |90 | | |0 | | | | |2 |NULL |Flag indicating an AOF rewrite operation will |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30395 |18 | |10310 |Redis: AOF rewrite buffer length{#SINGLETON} |redis.persistence.aof_rewrite_buffer_length[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Size of the AOF rewrite buffer |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30396 |18 | |10310 |Redis slave {#SLAVE_IP}:{#SLAVE_PORT}: Replication lag in bytes |redis.replication.lag_bytes["{#SLAVE_IP}:{#SLAVE_PORT}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Replication lag in bytes |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30397 |18 | |10310 |Redis: Master host{#SINGLETON} |redis.replication.master_host[{#SINGLETON}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Host or IP address of the master |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30398 |18 | |10310 |Redis: Master last I/O seconds ago{#SINGLETON} |redis.replication.master_last_io_seconds_ago[{#SINGLETON}] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of seconds since the last interaction with master |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30399 |18 | |10310 |Redis: Master link status{#SINGLETON} |redis.replication.master_link_status[{#SINGLETON}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Status of the link (up/down) |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30400 |18 | |10310 |Redis: Master port{#SINGLETON} |redis.replication.master_port[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Master listening TCP port |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30401 |18 | |10310 |Redis: Master sync in progress{#SINGLETON} |redis.replication.master_sync_in_progress[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicate the master is syncing to the replica |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30402 |18 | |10310 |Redis: Slave priority{#SINGLETON} |redis.replication.slave_priority[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The priority of the instance as a candidate for failover |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30403 |18 | |10310 |Redis: Slave priority{#SINGLETON} |redis.replication.slave_read_only[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Flag indicating if the replica is read-only |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30404 |18 | |10310 |Redis: Slave replication offset{#SINGLETON} |redis.replication.slave_repl_offset[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The replication offset of the replica instance |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30436 |18 | |10316 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30437 |18 | |10316 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30438 |18 | |10316 |MySQL: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30439 |18 | |10316 |MySQL: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30440 |18 | |10316 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30441 |18 | |10316 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server started. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30442 |18 | |10316 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30443 |18 | |10316 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30444 |18 | |10316 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30445 |18 | |10316 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30446 |18 | |10316 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads in the thread cache. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30447 |18 | |10316 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently open connections. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30449 |18 | |10316 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads that are not sleeping. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30450 |18 | |10316 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of seconds that the server has been up. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30451 |18 | |10316 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests per second. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30452 |18 | |10316 |MySQL: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30453 |18 | |10316 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30454 |18 | |10316 |MySQL: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30455 |18 | |10316 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30456 |18 | |10316 |MySQL: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30457 |18 | |10316 |MySQL: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30458 |18 | |10316 |MySQL: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30459 |18 | |10316 |MySQL: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30460 |18 | |10316 |MySQL: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30461 |18 | |10316 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30462 |18 | |10316 |MySQL: Connection errors peer address per second |mysql.connection_errors_peer_address.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors while searching for the connecting client IP address. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30463 |18 | |10316 |MySQL: InnoDB buffer pool pages free |mysql.innodb_buffer_pool_pages_free |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30464 |18 | |10316 |MySQL: Connection errors select per second |mysql.connection_errors_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30465 |18 | |10316 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library refused. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30466 |18 | |10316 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30470 |18 | |10316 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30471 |18 | |10316 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |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 |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 |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 |30484 |18 | |10317 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30485 |18 | |10317 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30486 |18 | |10317 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests per second. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30487 |18 | |10317 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30488 |18 | |10317 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30489 |18 | |10317 |MySQL: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30490 |18 | |10317 |MySQL: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30491 |18 | |10317 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30492 |18 | |10317 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server started. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30493 |18 | |10317 |MySQL: InnoDB buffer pool pages free |mysql.innodb_buffer_pool_pages_free |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30494 |18 | |10317 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30495 |18 | |10317 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30496 |18 | |10317 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads in the thread cache. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30497 |18 | |10317 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently open connections. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30499 |18 | |10317 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads that are not sleeping. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30500 |18 | |10317 |MySQL: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30503 |18 | |10317 |MySQL: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30504 |18 | |10317 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30505 |18 | |10317 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30506 |18 | |10317 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30507 |18 | |10317 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30508 |18 | |10317 |MySQL: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30509 |18 | |10317 |MySQL: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30510 |18 | |10317 |MySQL: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30512 |18 | |10317 |MySQL: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30513 |18 | |10317 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30514 |18 | |10317 |MySQL: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30515 |18 | |10317 |MySQL: Connection errors peer address per second |mysql.connection_errors_peer_address.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors while searching for the connecting client IP address. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30516 |18 | |10317 |MySQL: Connection errors select per second |mysql.connection_errors_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30517 |18 | |10317 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library refused. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30518 |18 | |10317 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30519 |18 | |10317 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of seconds that the server has been up. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |1h |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 |30524 |18 | |10317 |MySQL: Replication Seconds Behind Master {#MASTER_HOST} |mysql.seconds_behind_master["{#MASTER_HOST}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of seconds that the slave SQL thread is behind processing the master binary log.&eol;A high number (or an increasing one) can indicate that the slave is unable to handle events&eol;from the master in a timely fashion. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30525 |18 | |10317 |MySQL: Replication Slave IO Running {#MASTER_HOST} |mysql.slave_io_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the I/O thread for reading the master's binary log is running. &eol;Normally, you want this to be Yes unless you have not yet started replication or have &eol;explicitly stopped it with STOP SLAVE. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30526 |18 | |10317 |MySQL: Replication Slave SQL Running {#MASTER_HOST} |mysql.slave_sql_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the SQL thread for executing events in the relay log is running. &eol;As with the I/O thread, this should normally be Yes. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30532 |18 | |10318 |Docker: Architecture |docker.architecture |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30533 |18 | |10318 |Docker: Live restore enabled |docker.live_restore.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30534 |18 | |10318 |Docker: Logging driver |docker.logging_driver |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30535 |18 | |10318 |Docker: Memory limit enabled |docker.mem_limit.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30536 |18 | |10318 |Docker: Memory total |docker.mem.total |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30537 |18 | |10318 |Docker: Name |docker.name |0 |1h |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30538 |18 | |10318 |Docker: NCPU |docker.ncpu |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30539 |18 | |10318 |Docker: Nfd |docker.nfd |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of used File Descriptors |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30540 |18 | |10318 |Docker: NEvents listener |docker.nevents_listener |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30541 |18 | |10318 |Docker: Kernel version |docker.kernel_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30542 |18 | |10318 |Docker: OomKill disabled |docker.oomkill.disabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30543 |18 | |10318 |Docker: Operating system |docker.operating_system |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30544 |18 | |10318 |Docker: OS type |docker.os_type |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30545 |18 | |10318 |Docker: Pids limit enabled |docker.pids_limit.enabled |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30546 |18 | |10318 |Docker: Docker root dir |docker.root_dir |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30547 |18 | |10318 |Docker: Server version |docker.server_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30548 |18 | |10318 |Docker: Swap limit enabled |docker.swap_limit.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30549 |18 | |10318 |Docker: Layers size |docker.layers_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30527 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30550 |18 | |10318 |Docker: IPv4 Forwarding enabled |docker.ipv4_forwarding.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30551 |18 | |10318 |Docker: Kernel memory enabled |docker.kernel_mem.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30552 |18 | |10318 |Docker: CPU Set enabled |docker.cpu_set.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL |https://docs.docker.com/config/containers/resource_constraints/#configure-the-default-cfs-scheduler |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30553 |18 | |10318 |Docker: Containers size |docker.containers_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30527 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30554 |18 | |10318 |Docker: Containers paused |docker.containers.paused |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of containers paused on this host |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30555 |18 | |10318 |Docker: Containers running |docker.containers.running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of containers running on this host |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30556 |18 | |10318 |Docker: Containers stopped |docker.containers.stopped |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of containers stopped on this host |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30557 |18 | |10318 |Docker: Containers total |docker.containers.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of containers on this host |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30558 |18 | |10318 |Docker: CPU CFS Period enabled |docker.cpu_cfs_period.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL |https://docs.docker.com/config/containers/resource_constraints/#configure-the-default-cfs-scheduler |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30559 |18 | |10318 |Docker: CPU CFS Quota enabled |docker.cpu_cfs_quota.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL |https://docs.docker.com/config/containers/resource_constraints/#configure-the-default-cfs-scheduler |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30560 |18 | |10318 |Docker: CPU Shares enabled |docker.cpu_shares.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL |https://docs.docker.com/config/containers/resource_constraints/#configure-the-default-cfs-scheduler |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30561 |18 | |10318 |Docker: Kernel memory TCP enabled |docker.kernel_mem_tcp.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30562 |18 | |10318 |Docker: Debug enabled |docker.debug.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30563 |18 | |10318 |Docker: Default runtime |docker.default_runtime |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30564 |18 | |10318 |Docker: Storage driver |docker.driver |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Docker storage driver &eol; https://docs.docker.com/storage/storagedriver/ |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30565 |18 | |10318 |Docker: Goroutines |docker.goroutines |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of goroutines |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30566 |18 | |10318 |Docker: Images size |docker.images_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30527 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30567 |18 | |10318 |Docker: Images available |docker.images.top_level |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of top-level images |0 |30d |0 | |30531 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30568 |18 | |10318 |Docker: Images total |docker.images.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of images with intermediate image layers |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30569 |18 | |10318 |Docker: Cgroup driver |docker.cgroup_driver |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30570 |18 | |10318 |Docker: Volumes size |docker.volumes_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30527 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30575 |18 | |10318 |Container {#NAME}: Online CPUs |docker.container_stats.online_cpus["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30576 |18 | |10318 |Container {#NAME}: Memory commit bytes |docker.container_stats.memory.commit_bytes["{#NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30577 |18 | |10318 |Container {#NAME}: Memory commit peak bytes |docker.container_stats.memory.commit_peak_bytes["{#NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30578 |18 | |10318 |Container {#NAME}: Memory maximum usage |docker.container_stats.memory.max_usage["{#NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30579 |18 | |10318 |Container {#NAME}: Memory private working set |docker.container_stats.memory.private_working_set["{#NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30580 |18 | |10318 |Container {#NAME}: Memory usage |docker.container_stats.memory.usage["{#NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30581 |18 | |10318 |Container {#NAME}: Created |docker.container_info.created["{#NAME}"] |0 |7d |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30582 |18 | |10318 |Container {#NAME}: CPU total usage per second |docker.container_stats.cpu_usage.total.rate["{#NAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30583 |18 | |10318 |Container {#NAME}: Networks bytes received per second |docker.networks.rx_bytes["{#NAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30584 |18 | |10318 |Container {#NAME}: Networks incoming packets dropped per second |docker.networks.rx_dropped["{#NAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30585 |18 | |10318 |Container {#NAME}: Networks errors received per second |docker.networks.rx_errors["{#NAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30586 |18 | |10318 |Container {#NAME}: Networks packets received per second |docker.networks.rx_packets["{#NAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30587 |18 | |10318 |Container {#NAME}: Networks bytes sent per second |docker.networks.tx_bytes["{#NAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30588 |18 | |10318 |Container {#NAME}: Networks outgoing packets dropped per second |docker.networks.tx_dropped["{#NAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30589 |18 | |10318 |Container {#NAME}: Networks errors sent per second |docker.networks.tx_errors["{#NAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30590 |18 | |10318 |Container {#NAME}: CPU usermode usage per second |docker.container_stats.cpu_usage.user.rate["{#NAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30591 |18 | |10318 |Container {#NAME}: Throttling periods |docker.container_stats.cpu_usage.throttling_periods["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of periods with throttling active |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30592 |18 | |10318 |Container {#NAME}: Finished at |docker.container_info.finished["{#NAME}"] |0 |7d |365d |0 |0 | |unixtime| | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30593 |18 | |10318 |Container {#NAME}: OOMKilled |docker.container_info.state.oomkilled["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30594 |18 | |10318 |Container {#NAME}: Image |docker.container_info.image["{#NAME}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30528 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30595 |18 | |10318 |Container {#NAME}: Restart count |docker.container_info.restart_count["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30596 |18 | |10318 |Container {#NAME}: Started at |docker.container_info.started["{#NAME}"] |0 |7d |365d |0 |0 | |unixtime| | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30597 |18 | |10318 |Container {#NAME}: Dead |docker.container_info.state.dead["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30598 |18 | |10318 |Container {#NAME}: Error |docker.container_info.state.error["{#NAME}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30599 |18 | |10318 |Container {#NAME}: Exit code |docker.container_info.state.exitcode["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30600 |18 | |10318 |Container {#NAME}: Paused |docker.container_info.state.paused["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30601 |18 | |10318 |Container {#NAME}: Throttled time |docker.container_stats.cpu_usage.throttled_time["{#NAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Aggregate time the container was throttled for in nanoseconds |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30602 |18 | |10318 |Container {#NAME}: Pid |docker.container_info.state.pid["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30603 |18 | |10318 |Container {#NAME}: Restarting |docker.container_info.state.restarting["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30604 |18 | |10318 |Container {#NAME}: Running |docker.container_info.state.running["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30605 |18 | |10318 |Container {#NAME}: Status |docker.container_info.state.status["{#NAME}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30606 |18 | |10318 |Container {#NAME}: CPU kernelmode usage per second |docker.container_stats.cpu_usage.kernel.rate["{#NAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30607 |18 | |10318 |Container {#NAME}: Throttled periods |docker.container_stats.cpu_usage.throttled_periods["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of periods when the container hits its throttling limit |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30608 |18 | |10318 |Container {#NAME}: Networks packets sent per second |docker.networks.tx_packets["{#NAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30609 |18 | |10318 |Image {#NAME}: Created |docker.image.created["{#ID}"] |0 |7d |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30531 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30610 |18 | |10318 |Image {#NAME}: Size |docker.image.size["{#ID}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30531 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30613 |18 | |10319 |Memcached: Commands: FLUSH per second |memcached.commands.flush.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The flush_all command invalidates all items in the database. This operation incurs a performance penalty and shouldn’t take place in production, so check your debug scripts. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30614 |18 | |10319 |Memcached: Bytes used |memcached.stats.bytes |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current number of bytes used to store items. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30615 |18 | |10319 |Memcached: Uptime |memcached.uptime |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of seconds since Memcached server start |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30616 |18 | |10319 |Memcached: New items per second |memcached.stats.total_items.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of new items stored per second. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30617 |18 | |10319 |Memcached: Threads |memcached.stats.threads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of worker threads requested |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30618 |18 | |10319 |Memcached: Misses per second |memcached.stats.misses.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of missed GET requests (items requested but not found) per second. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30619 |18 | |10319 |Memcached: Hits per second |memcached.stats.hits.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of successful GET requests (items requested and found) per second. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30620 |18 | |10319 |Memcached: Evictions per second |memcached.stats.evictions.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"An eviction is when an item that still has time to live is removed from the cache because a brand new item needs to be allocated.&eol;The item is selected with a pseudo-LRU mechanism.&eol;A high number of evictions coupled with a low hit rate means your application is setting a large number of keys that are never used again." |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30621 |18 | |10319 |Memcached: Current number of items stored |memcached.stats.curr_items |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Current number of items stored by this instance. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30622 |18 | |10319 |Memcached: Written bytes per second |memcached.stats.bytes_written.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The network's read rate per second in B/sec |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30623 |18 | |10319 |Memcached: Read bytes per second |memcached.stats.bytes_read.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The network's read rate per second in B/sec |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30624 |18 | |10319 |Memcached: Process id |memcached.process_id |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |PID of the server process |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30625 |18 | |10319 |Memcached: Commands: GET per second |memcached.commands.get.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of GET requests received by server per second. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30626 |18 | |10319 |Memcached: CPU user |memcached.cpu.user |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |User CPU consumed by the Memcached server |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30627 |18 | |10319 |Memcached: CPU sys |memcached.cpu.sys |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |System CPU consumed by the Memcached server |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30628 |18 | |10319 |Memcached: Throttled connections |memcached.connections.throttled.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times a client connection was throttled. When sending GETs in batch mode and the connection contains too many requests (limited by -R parameter) the connection might be throttled to prevent starvation. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30629 |18 | |10319 |Memcached: Connection structures |memcached.connections.structures |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connection structures allocated by the server |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30630 |18 | |10319 |Memcached: New connections per second |memcached.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections opened per second |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30631 |18 | |10319 |Memcached: Queued connections per second |memcached.connections.queued.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times that memcached has hit its connections limit and disabled its listener |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30632 |18 | |10319 |Memcached: Max connections |memcached.connections.max |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Max number of concurrent connections |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30633 |18 | |10319 |Memcached: Open connections |memcached.connections.current |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of clients presently connected |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30634 |18 | |10319 |Memcached: Maximum number of bytes |memcached.config.limit_maxbytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum number of bytes allowed in cache. You can adjust this setting via a config file or the command line while starting your Memcached server. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30635 |18 | |10319 |Memcached: Commands: SET per second |memcached.commands.set.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of SET requests received by server per second. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30636 |18 | |10319 |Memcached: Memcached version |memcached.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the Memcached server |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30642 |18 | |10320 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30643 |18 | |10320 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30644 |18 | |10320 |MySQL: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30645 |18 | |10320 |MySQL: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30646 |18 | |10320 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30647 |18 | |10320 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server started. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30648 |18 | |10320 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30649 |18 | |10320 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30650 |18 | |10320 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30651 |18 | |10320 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30652 |18 | |10320 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads in the thread cache. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30653 |18 | |10320 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently open connections. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30655 |18 | |10320 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads that are not sleeping. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30656 |18 | |10320 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of seconds that the server has been up. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30657 |18 | |10320 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests per second. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30658 |18 | |10320 |MySQL: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30659 |18 | |10320 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30660 |18 | |10320 |MySQL: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30661 |18 | |10320 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30662 |18 | |10320 |MySQL: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30663 |18 | |10320 |MySQL: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30664 |18 | |10320 |MySQL: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30665 |18 | |10320 |MySQL: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30666 |18 | |10320 |MySQL: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30667 |18 | |10320 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30668 |18 | |10320 |MySQL: Connection errors peer address per second |mysql.connection_errors_peer_address.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors while searching for the connecting client IP address. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30669 |18 | |10320 |MySQL: InnoDB buffer pool pages free |mysql.innodb_buffer_pool_pages_free |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30670 |18 | |10320 |MySQL: Connection errors select per second |mysql.connection_errors_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30671 |18 | |10320 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library refused. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30672 |18 | |10320 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30676 |18 | |10320 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30677 |18 | |10320 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |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 |30682 |18 | |10320 |MySQL: Replication Seconds Behind Master {#MASTER_HOST} |mysql.replication.seconds_behind_master["{#MASTER_HOST}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of seconds that the slave SQL thread is behind processing the master binary log.&eol;A high number (or an increasing one) can indicate that the slave is unable to handle events&eol;from the master in a timely fashion. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30683 |18 | |10320 |MySQL: Replication Slave IO Running {#MASTER_HOST} |mysql.replication.slave_io_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the I/O thread for reading the master's binary log is running. &eol;Normally, you want this to be Yes unless you have not yet started replication or have &eol;explicitly stopped it with STOP SLAVE. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30684 |18 | |10320 |MySQL: Replication Slave SQL Running {#MASTER_HOST} |mysql.replication.slave_sql_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the SQL thread for executing events in the relay log is running. &eol;As with the I/O thread, this should normally be Yes. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30686 |18 | |10321 |Discrete sensors discovery |ipmi.discrete.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the discrete IPMI sensors. |0 |30d |1 | |30685 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30687 |18 | |10321 |Threshold sensors discovery |ipmi.sensors.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the threshold IPMI sensors. |0 |30d |1 | |30685 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30688 |18 | |10321 |IPMI: {#SENSOR_ID} |ipmi.state_text[{#SENSOR_ID}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |It is a state of the discrete IPMI sensor. |0 |30d |0 | |30685 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30689 |18 | |10321 |IPMI: {#SENSOR_ID}, {#SENSOR_UNIT} |ipmi.value[{#SENSOR_ID}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |It is a state of the threshold IPMI sensor. |0 |30d |0 | |30685 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30695 |18 | |10322 |ES: Number of non-deleted documents |es.indices.docs.count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of non-deleted documents across all primary shards assigned to the selected nodes.&eol;This number is based on the documents in Lucene segments and may include the documents from nested fields. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30696 |18 | |10322 |ES: Cluster uptime |es.nodes.jvm.max_uptime[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Uptime duration in seconds since JVM has last started. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30697 |18 | |10322 |ES: Total size of all file stores |es.nodes.fs.total_in_bytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size in bytes of all file stores across all selected nodes. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30698 |18 | |10322 |ES: Total available size to JVM in all file stores |es.nodes.fs.available_in_bytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of bytes available to JVM in the file stores across all selected nodes.&eol;Depending on OS or process-level restrictions, this number may be less than nodes.fs.free_in_byes. &eol;This is the actual amount of free disk space the selected Elasticsearch nodes can use. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30699 |18 | |10322 |ES: Nodes with the master role |es.nodes.count.master |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of selected nodes with the master role. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30700 |18 | |10322 |ES: Nodes with the ingest role |es.nodes.count.ingest |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of selected nodes with the ingest role. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30701 |18 | |10322 |ES: Nodes with the data role |es.nodes.count.data |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of selected nodes with the data role. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30702 |18 | |10322 |ES: Delayed unassigned shards |es.cluster.delayed_unassigned_shards |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of shards whose allocation has been delayed by the timeout settings. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30703 |18 | |10322 |ES: Indices with shards assigned to nodes |es.indices.count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of indices with shards assigned to the selected nodes. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30704 |18 | |10322 |ES: Task max waiting in queue |es.cluster.task_max_waiting_in_queue |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The time expressed in seconds since the earliest initiated task is waiting for being performed. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30705 |18 | |10322 |ES: Cluster health status |es.cluster.status |0 |7d |365d |0 |3 | | | | |NULL |94 | | |0 | | | | |0 |NULL |Health status of the cluster, based on the state of its primary and replica shards. Statuses are:&eol;green&eol;All shards are assigned.&eol;yellow&eol;All primary shards are assigned, but one or more replica shards are unassigned. If a node in the cluster fails, some data could be unavailable until that node is repaired.&eol;red&eol;One or more primary shards are unassigned, so some data is unavailable. This can occur briefly during cluster startup as primary shards are assigned. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30706 |18 | |10322 |ES: Number of relocating shards |es.cluster.relocating_shards |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of shards that are under relocation. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30707 |18 | |10322 |ES: Number of pending tasks |es.cluster.number_of_pending_tasks |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of cluster-level changes that have not yet been executed. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30708 |18 | |10322 |ES: Number of nodes |es.cluster.number_of_nodes |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of nodes within the cluster. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30709 |18 | |10322 |ES: Number of data nodes |es.cluster.number_of_data_nodes |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of nodes that are dedicated to data nodes. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30710 |18 | |10322 |ES: Number of initializing shards |es.cluster.initializing_shards |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of shards that are under initialization. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30711 |18 | |10322 |ES: Inactive shards percentage |es.cluster.inactive_shards_percent_as_number |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The ratio of inactive shards in the cluster expressed as a percentage. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30712 |18 | |10322 |ES: Number of unassigned shards |es.cluster.unassigned_shards |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of shards that are not allocated. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30713 |19 | |10322 |Cluster nodes discovery |es.nodes.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$ELASTICSEARCH.USERNAME}|{$ELASTICSEARCH.PASSWORD}| | |1 |NULL |Discovery ES cluster nodes. |0 |30d |0 | |NULL |15s |{$ELASTICSEARCH.SCHEME}://{HOST.CONN}:{$ELASTICSEARCH.PORT}/_nodes/_all/nodes | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30714 |15 | |10322 |ES {#ES.NODE}: Query latency |es.node.indices.search.query_latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |last(es.node.indices.search.query_time_in_millis[{#ES.NODE}]) / &bsn;( last(es.node.indices.search.query_total[{#ES.NODE}]) + (last(es.node.indices.search.query_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average query latency calculated by sampling the total number of queries and the total elapsed time at regular intervals. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30715 |15 | |10322 |ES {#ES.NODE}: Flush latency |es.node.indices.flush.latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |last(es.node.indices.flush.total_time_in_millis[{#ES.NODE}]) / ( last(es.node.indices.flush.total[{#ES.NODE}]) + (last(es.node.indices.flush.total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average flush latency calculated from the available flush.total and flush.total_time_in_millis metrics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30716 |15 | |10322 |ES {#ES.NODE}: Indexing latency |es.node.indices.indexing.index_latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |last(es.node.indices.indexing.index_time_in_millis[{#ES.NODE}]) / ( last(es.node.indices.indexing.index_total[{#ES.NODE}]) + (last(es.node.indices.indexing.index_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average indexing latency calculated from the available index_total and index_time_in_millis metrics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30717 |15 | |10322 |ES {#ES.NODE}: Fetch latency |es.node.indices.search.fetch_latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |last(es.node.indices.search.fetch_time_in_millis[{#ES.NODE}]) / ( last(es.node.indices.search.fetch_total[{#ES.NODE}]) + (last(es.node.indices.search.fetch_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average fetch latency calculated by sampling the total number of fetches and the total elapsed time at regular intervals. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30718 |18 | |10322 |ES {#ES.NODE}: Refresh thread pool active threads |es.node.thread_pool.refresh.active[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of active threads in the refresh thread pool. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30719 |18 | |10322 |ES {#ES.NODE}: Total number of query |es.node.indices.search.query_total[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of query operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30720 |18 | |10322 |ES {#ES.NODE}: Rate of queries |es.node.indices.search.query.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of query operations per second. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30721 |18 | |10322 |ES {#ES.NODE}: Amount of JVM heap committed |es.node.jvm.mem.heap_committed_in_bytes[{#ES.NODE}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The amount of memory, in bytes, available for use by the heap. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30722 |18 | |10322 |ES {#ES.NODE}: Maximum JVM memory available for use |es.node.jvm.mem.heap_max_in_bytes[{#ES.NODE}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The maximum amount of memory, in bytes, available for use by the heap. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30723 |18 | |10322 |ES {#ES.NODE}: Amount of JVM heap currently in use |es.node.jvm.mem.heap_used_in_bytes[{#ES.NODE}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The memory, in bytes, currently in use by the heap. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30724 |18 | |10322 |ES {#ES.NODE}: Percent of JVM heap currently in use |es.node.jvm.mem.heap_used_percent[{#ES.NODE}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |The percentage of memory currently in use by the heap. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30725 |18 | |10322 |ES {#ES.NODE}: Node uptime |es.node.jvm.uptime[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |JVM uptime in seconds. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30726 |18 | |10322 |ES {#ES.NODE}: Total available size |es.node.fs.total.available_in_bytes[{#ES.NODE}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of bytes available to this Java virtual machine on all file stores. &eol;Depending on OS or process level restrictions, this might appear less than fs.total.free_in_bytes. &eol;This is the actual amount of free disk space the Elasticsearch node can utilize. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30727 |18 | |10322 |ES {#ES.NODE}: Refresh thread pool executor tasks completed |es.node.thread_pool.refresh.completed.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks completed by the refresh thread pool executor. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30728 |18 | |10322 |ES {#ES.NODE}: Time spent performing query |es.node.indices.search.query_time[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in seconds spent performing query operations for the last measuring span. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30729 |18 | |10322 |ES {#ES.NODE}: Refresh thread pool executor tasks rejected |es.node.thread_pool.refresh.rejected.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks rejected by the refresh thread pool executor. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30730 |18 | |10322 |ES {#ES.NODE}: Search thread pool active threads |es.node.thread_pool.search.active[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of active threads in the search thread pool. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30731 |18 | |10322 |ES {#ES.NODE}: Search thread pool executor tasks completed |es.node.thread_pool.search.completed.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks completed by the search thread pool executor. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30732 |18 | |10322 |ES {#ES.NODE}: Search thread pool tasks in queue |es.node.thread_pool.search.queue[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks in queue for the search thread pool. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30733 |18 | |10322 |ES {#ES.NODE}: Search thread pool executor tasks rejected |es.node.thread_pool.search.rejected.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks rejected by the search thread pool executor. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30734 |18 | |10322 |ES {#ES.NODE}: Write thread pool active threads |es.node.thread_pool.write.active[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of active threads in the write thread pool. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30735 |18 | |10322 |ES {#ES.NODE}: Write thread pool executor tasks completed |es.node.thread_pool.write.completed.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks completed by the write thread pool executor. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30736 |18 | |10322 |ES {#ES.NODE}: Write thread pool tasks in queue |es.node.thread_pool.write.queue[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks in queue for the write thread pool. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30737 |18 | |10322 |ES {#ES.NODE}: Refresh thread pool tasks in queue |es.node.thread_pool.refresh.queue[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks in queue for the refresh thread pool. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30738 |18 | |10322 |ES {#ES.NODE}: Current query operations |es.node.indices.search.query_current[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of query operations currently running. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30739 |18 | |10322 |ES {#ES.NODE}: Total time spent performing query |es.node.indices.search.query_time_in_millis[{#ES.NODE}] |0 |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in milliseconds spent performing query operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30740 |18 | |10322 |ES {#ES.NODE}: Time spent throttling operations |es.node.indices.indexing.throttle_time[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in seconds spent throttling operations for the last measuring span. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30741 |18 | |10322 |ES {#ES.NODE}: Number of open HTTP connections |es.node.http.current_open[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of currently open HTTP connections for the node. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30742 |18 | |10322 |ES {#ES.NODE}: Rate of HTTP connections opened |es.node.http.opened.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of HTTP connections opened for the node per second. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30743 |18 | |10322 |ES {#ES.NODE}: Total time spent on flushing indices to disk |es.node.indices.flush.total_time_in_millis[{#ES.NODE}] |0 |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Total time in milliseconds spent performing flush operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30744 |18 | |10322 |ES {#ES.NODE}: Total number of index flushes to disk |es.node.indices.flush.total[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of flush operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30745 |18 | |10322 |ES {#ES.NODE}: Current indexing operations |es.node.indices.indexing.index_current[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of indexing operations currently running. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30746 |18 | |10322 |ES {#ES.NODE}: Total time spent performing indexing |es.node.indices.indexing.index_time_in_millis[{#ES.NODE}] |0 |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Total time in milliseconds spent performing indexing operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30747 |18 | |10322 |ES {#ES.NODE}: Total number of indexing |es.node.indices.indexing.index_total[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of indexing operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30748 |18 | |10322 |ES {#ES.NODE}: Time spent throttling merge operations |es.node.indices.merges.total_throttled_time[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in seconds spent throttling merge operations for the last measuring span. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30749 |18 | |10322 |ES {#ES.NODE}: Total size |es.node.fs.total.total_in_bytes[{#ES.NODE}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total size (in bytes) of all file stores. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30750 |18 | |10322 |ES {#ES.NODE}: Time spent throttling recovery operations |es.node.indices.recovery.throttle_time[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in seconds spent throttling recovery operations for the last measuring span. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30751 |18 | |10322 |ES {#ES.NODE}: Rate of index refreshes |es.node.indices.refresh.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of refresh operations per second. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30752 |18 | |10322 |ES {#ES.NODE}: Time spent performing refresh |es.node.indices.refresh.time[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in seconds spent performing refresh operations for the last measuring span. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30753 |18 | |10322 |ES {#ES.NODE}: Current fetch operations |es.node.indices.search.fetch_current[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of fetch operations currently running. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30754 |18 | |10322 |ES {#ES.NODE}: Total time spent performing fetch |es.node.indices.search.fetch_time_in_millis[{#ES.NODE}] |0 |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in milliseconds spent performing fetch operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30755 |18 | |10322 |ES {#ES.NODE}: Time spent performing fetch |es.node.indices.search.fetch_time[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in seconds spent performing fetch operations for the last measuring span. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30756 |18 | |10322 |ES {#ES.NODE}: Total number of fetch |es.node.indices.search.fetch_total[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of fetch operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30757 |18 | |10322 |ES {#ES.NODE}: Rate of fetch |es.node.indices.search.fetch.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of fetch operations per second. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30758 |18 | |10322 |ES {#ES.NODE}: Write thread pool executor tasks rejected |es.node.thread_pool.write.rejected.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks rejected by the write thread pool executor. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30759 |18 | |10308 |TCP Backend discovery |haproxy.backend_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery TCP backends |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30760 |18 | |10308 |TCP FRONTEND discovery |haproxy.frontend_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery TCP frontends |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30761 |18 | |10308 |TCP Servers discovery |haproxy.server_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery tcp servers |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30763 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Responses denied per second |haproxy.backend_tcp.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30764 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Errors connection per second |haproxy.backend_tcp.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30765 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Response errors per second |haproxy.backend_tcp.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30766 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Unassigned requests |haproxy.backend_tcp.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30767 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Time in queue |haproxy.backend_tcp.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30768 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Responses time |haproxy.backend_tcp.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average backend response time (in ms) for the last 1,024 requests |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30769 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Status |haproxy.backend_tcp.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30770 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Redispatched requests per second |haproxy.backend_tcp.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30771 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Retried connections per second |haproxy.backend_tcp.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30772 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Incoming traffic |haproxy.frontend_tcp.bin[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the frontend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30773 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend_tcp.bout[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the frontend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30774 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Denied requests per second |haproxy.frontend_tcp.dreq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Requests denied due to security concerns (ACL-restricted) per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30775 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Request errors per second |haproxy.frontend_tcp.ereq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of request errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30776 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Sessions rate |haproxy.frontend_tcp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sessions created per second |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30777 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Requests rate |haproxy.frontend_tcp.req_rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |HTTP requests per second |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30778 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Established sessions |haproxy.frontend_tcp.scur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of established sessions. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30779 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Session limits |haproxy.frontend_tcp.slim[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30780 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server_tcp.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30781 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server_tcp.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30782 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server_tcp.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30783 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Unassigned requests |haproxy.server_tcp.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30784 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Time in queue |haproxy.server_tcp.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30785 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Responses time |haproxy.server_tcp.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average server response time (in ms) for the last 1,024 requests. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30786 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Status |haproxy.server_tcp.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30787 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server_tcp.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30788 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server_tcp.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30791 |18 | |10309 |TCP Backend discovery |haproxy.backend_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery TCP backends |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30792 |18 | |10309 |TCP FRONTEND discovery |haproxy.frontend_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery TCP frontends |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30793 |18 | |10309 |TCP Servers discovery |haproxy.server_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery tcp servers |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30795 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Responses denied per second |haproxy.backend_tcp.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30796 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Errors connection per second |haproxy.backend_tcp.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30797 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Response errors per second |haproxy.backend_tcp.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30798 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Unassigned requests |haproxy.backend_tcp.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30799 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Time in queue |haproxy.backend_tcp.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30800 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Responses time |haproxy.backend_tcp.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average backend response time (in ms) for the last 1,024 requests |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30801 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Status |haproxy.backend_tcp.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30802 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Redispatched requests per second |haproxy.backend_tcp.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30803 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Retried connections per second |haproxy.backend_tcp.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30804 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Incoming traffic |haproxy.frontend_tcp.bin[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the frontend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30805 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend_tcp.bout[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the frontend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30806 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Denied requests per second |haproxy.frontend_tcp.dreq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Requests denied due to security concerns (ACL-restricted) per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30807 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Request errors per second |haproxy.frontend_tcp.ereq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of request errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30808 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Sessions rate |haproxy.frontend_tcp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sessions created per second |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30809 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Requests rate |haproxy.frontend_tcp.req_rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |HTTP requests per second |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30810 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Established sessions |haproxy.frontend_tcp.scur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of established sessions. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30811 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Session limits |haproxy.frontend_tcp.slim[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30812 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server_tcp.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30813 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server_tcp.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30814 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server_tcp.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30815 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Unassigned requests |haproxy.server_tcp.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30816 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Time in queue |haproxy.server_tcp.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30817 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Responses time |haproxy.server_tcp.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average server response time (in ms) for the last 1,024 requests. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30818 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Status |haproxy.server_tcp.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30819 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server_tcp.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30820 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server_tcp.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30831 |18 | |10323 |ClickHouse: Write syscalls in fly |clickhouse.write |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of write (write, pwrite, io_getevents, etc.) syscalls in fly |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30832 |18 | |10323 |ClickHouse: Total replication tasks in queue |clickhouse.replicas.sum.queue.size |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30833 |18 | |10323 |ClickHouse: New queries per second |clickhouse.query.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30834 |18 | |10323 |ClickHouse: Read syscalls in fly |clickhouse.read |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of read (read, pread, io_getevents, etc.) syscalls in fly |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30835 |18 | |10323 |ClickHouse: Read bytes per second |clickhouse.read_bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |"Number of bytes (the number of bytes before decompression) read from compressed sources (files, network)." |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30836 |18 | |10323 |ClickHouse: ZooKeeper wait time |clickhouse.zookeper.wait.time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent in waiting for ZooKeeper operations. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30837 |18 | |10323 |ClickHouse: Replication lag across all tables |clickhouse.replicas.max.absolute.delay |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum replica queue delay relative to current time |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30838 |18 | |10323 |ClickHouse: Total number read-only Replicas |clickhouse.replicas.readonly.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"Number of Replicated tables that are currently in readonly state &eol;due to re-initialization after ZooKeeper session loss &eol;or due to startup without ZooKeeper configured." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30839 |18 | |10323 |ClickHouse: Revision |clickhouse.revision |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Revision of the server. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30840 |18 | |10323 |ClickHouse: ZooKeeper exeptions per second |clickhouse.zookeper.exeptions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of ZooKeeper exceptions that does not belong to user/hardware exceptions. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30841 |18 | |10323 |ClickHouse: New SELECT queries per second |clickhouse.select_query.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of SELECT queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30842 |18 | |10323 |ClickHouse: ZooKeeper user exeptions per second |clickhouse.zookeper.user_exeptions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of ZooKeeper exceptions caused by no znodes, bad version, node exists, node empty and no children for ephemeral. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30843 |18 | |10323 |ClickHouse: ZooKeeper sessions |clickhouse.zookeper.session |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of sessions (connections) to ZooKeeper. Should be no more than one. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30844 |18 | |10323 |ClickHouse: ZooKeeper requests |clickhouse.zookeper.request |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of requests to ZooKeeper in progress. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30845 |18 | |10323 |ClickHouse: ZooKeeper hardware exeptions per second |clickhouse.zookeper.hw_exeptions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of ZooKeeper exceptions caused by session moved/expired, connection loss, marshalling error, operation timed out and invalid zhandle state. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30846 |18 | |10323 |ClickHouse: Uptime |clickhouse.uptime |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of seconds since ClickHouse server start |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30847 |18 | |10323 |ClickHouse: Current running queries |clickhouse.query.current |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of executing queries |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30848 |18 | |10323 |ClickHouse: Current distribute connections |clickhouse.connections.distribute |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections to remote servers sending data that was INSERTed into Distributed tables. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30849 |18 | |10323 |ClickHouse: Current HTTP connections |clickhouse.connections.http |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections to HTTP server. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30850 |18 | |10323 |ClickHouse: Allocated bytes |clickhouse.jemalloc.allocated |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total number of bytes allocated by the application." |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30851 |18 | |10323 |ClickHouse: Current Interserver connections |clickhouse.connections.interserver |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections from other replicas to fetch parts. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30852 |18 | |10323 |ClickHouse: Current MySQL connections |clickhouse.connections.mysql |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections to MySQL server. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30853 |18 | |10323 |ClickHouse: Current TCP connections |clickhouse.connections.tcp |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections to TCP server (clients with native interface). |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30854 |18 | |10323 |ClickHouse: Current distributed files to insert |clickhouse.distributed.files |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of pending files to process for asynchronous insertion into Distributed tables. Number of files for every shard is summed. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30855 |18 | |10323 |ClickHouse: Distributed connection fail with retry per second |clickhouse.distributed.files.fail.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"Connection failures after all retries in replicated DB connection pool" |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30856 |18 | |10323 |ClickHouse: Distributed connection fail with retry per second |clickhouse.distributed.files.retry.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Connection retries in replicated DB connection pool |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30857 |18 | |10323 |ClickHouse: New INSERT queries per second |clickhouse.insert_query.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of INSERT queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30858 |18 | |10323 |ClickHouse: Delayed insert queries |clickhouse.insert.delay |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"Number of INSERT queries that are throttled due to high number of active data parts for partition in a MergeTree table." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30859 |18 | |10323 |ClickHouse: Inserted bytes per second |clickhouse.inserted_bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of uncompressed bytes inserted in all tables. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30860 |18 | |10323 |ClickHouse: Inserted rows per second |clickhouse.inserted_rows.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of rows inserted in all tables. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30861 |18 | |10323 |ClickHouse: Mapped memory |clickhouse.jemalloc.mapped |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total number of bytes in active extents mapped by the allocator." |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30862 |18 | |10323 |ClickHouse: Network errors per second |clickhouse.network.error.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Network errors (timeouts and connection failures) during query execution, background pool tasks and DNS cache update. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30863 |18 | |10323 |ClickHouse: Resident memory |clickhouse.jemalloc.resident |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Maximum number of bytes in physically resident data pages mapped by the allocator, &eol;comprising all pages dedicated to allocator metadata, pages backing active allocations, &eol;and unused dirty pages." |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30864 |18 | |10323 |ClickHouse: Max count of parts per partition across all tables |clickhouse.max.part.count.for.partition |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"Clickhouse MergeTree table engine split each INSERT query to partitions (PARTITION BY expression) and add one or more PARTS per INSERT inside each partition, &eol;after that background merge process run." |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30865 |18 | |10323 |ClickHouse: Memory used for queries |clickhouse.memory.tracking |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in currently executing queries." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30866 |18 | |10323 |ClickHouse: Memory used for background merges |clickhouse.memory.tracking.background |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in background processing pool (that is dedicated for backround merges, mutations and fetches).&eol; Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa. This happens naturally due to caches for tables indexes and doesn't indicate memory leaks." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30867 |18 | |10323 |ClickHouse: Memory used for backround moves |clickhouse.memory.tracking.background.moves |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in background processing pool (that is dedicated for backround moves). Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa.&eol; This happens naturally due to caches for tables indexes and doesn't indicate memory leaks." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30868 |18 | |10323 |ClickHouse: Memory used for merges |clickhouse.memory.tracking.merges |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated for background merges. Included in MemoryTrackingInBackgroundProcessingPool. Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa. &eol;This happens naturally due to caches for tables indexes and doesn't indicate memory leaks." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30869 |18 | |10323 |ClickHouse: Memory used for background schedule pool |clickhouse.memory.tracking.schedule.pool |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in background schedule pool (that is dedicated for bookkeeping tasks of Replicated tables)." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30870 |18 | |10323 |ClickHouse: Uncompressed bytes merged per second |clickhouse.merge_bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Uncompressed bytes that were read for background merges |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30871 |18 | |10323 |ClickHouse: Merged rows per second |clickhouse.merge_rows.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rows read for background merges. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30872 |18 | |10323 |ClickHouse: Current running merges |clickhouse.merge.current |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of executing background merges |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30873 |18 | |10323 |ClickHouse: ZooKeeper watches |clickhouse.zookeper.watch |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of watches (e.g., event subscriptions) in ZooKeeperr. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30874 |18 | |10323 |Dictionaries |clickhouse.dictionaries.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Info about dictionaries |0 |30d |1 | |30830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30875 |18 | |10323 |Replicas |clickhouse.replicas.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Info about replicas |0 |30d |1 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30876 |18 | |10323 |Tables |clickhouse.tables.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Info about tables |0 |30d |1 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30877 |18 | |10323 |ClickHouse: Dictionary {#NAME}: Bytes allocated |clickhouse.dictionary.bytes_allocated["{#NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The amount of RAM the dictionary uses. |0 |30d |0 | |30830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30878 |18 | |10323 |ClickHouse: Dictionary {#NAME}: Element count |clickhouse.dictionary.element_count["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of items stored in the dictionary. |0 |30d |0 | |30830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30879 |18 | |10323 |ClickHouse: Dictionary {#NAME}: Load factor |clickhouse.dictionary.load_factor["{#NAME}"] |0 |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |The percentage filled in the dictionary (for a hashed dictionary, the percentage filled in the hash table). |0 |30d |0 | |30830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30880 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Active replicas |clickhouse.replica.active_replicas["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of replicas of this table that have a session in ZooKeeper (i.e., the number of functioning replicas). (Have a non-zero value only where there is an active session with ZooKeeper). |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30881 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica future parts |clickhouse.replica.future_parts["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of data parts that will appear as the result of INSERTs or merges that haven’t been done yet. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30882 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica queue inserts size |clickhouse.replica.inserts_in_queue["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of inserts of blocks of data that need to be made. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30883 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica readonly |clickhouse.replica.is_readonly["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |95 | | |0 | | | | |2 |NULL |Whether the replica is in read-only mode.&eol;This mode is turned on if the config doesn’t have sections with ZooKeeper, if an unknown error occurred when reinitializing sessions in ZooKeeper, and during session reinitialization in ZooKeeper. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30884 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica session expired |clickhouse.replica.is_session_expired["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |95 | | |0 | | | | |2 |NULL |True if the ZooKeeper session expired |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30885 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica lag |clickhouse.replica.lag["{#DB}.{#TABLE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Difference between log_max_index and log_pointer |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30886 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica log max index |clickhouse.replica.log_max_index["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum entry number in the log of general activity. (Have a non-zero value only where there is an active session with ZooKeeper). |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30887 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica log pointer |clickhouse.replica.log_pointer["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum entry number in the log of general activity that the replica copied to its execution queue, plus one. (Have a non-zero value only where there is an active session with ZooKeeper). |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30888 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica queue merges size |clickhouse.replica.merges_in_queue["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of merges waiting to be made. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30889 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica parts to check |clickhouse.replica.parts_to_check["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of data parts in the queue for verification. A part is put in the verification queue if there is suspicion that it might be damaged. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30890 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica queue size |clickhouse.replica.queue_size["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Size of the queue for operations waiting to be performed. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30891 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Total replicas |clickhouse.replica.total_replicas["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of known replicas of this table. (Have a non-zero value only where there is an active session with ZooKeeper). |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30892 |18 | |10323 |ClickHouse: {#DB}: Bytes |clickhouse.db.bytes["{#DB}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Database size in bytes. |0 |30d |0 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30893 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Bytes |clickhouse.table.bytes["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Table size in bytes. Database: {#DB}, table: {#TABLE} |0 |30d |0 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30894 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Parts |clickhouse.table.parts["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of parts of the table. Database: {#DB}, table: {#TABLE} |0 |30d |0 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30895 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Rows |clickhouse.table.rows["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of rows in the table. Database: {#DB}, table: {#TABLE} |0 |30d |0 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30897 |18 | |10264 |Apache: Workers reading request |apache.workers.reading |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in reading state |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30898 |18 | |10264 |Apache: Workers waiting for connection |apache.workers.waiting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in waiting state |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30899 |18 | |10264 |Apache: Workers starting up |apache.workers.starting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in starting state |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30900 |18 | |10264 |Apache: Workers slot with no current process |apache.workers.slot |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of slots with no current process |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30901 |18 | |10264 |Apache: Workers sending reply |apache.workers.sending |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in sending state |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30902 |18 | |10264 |Apache: Total bytes |apache.bytes |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total bytes served |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30903 |18 | |10264 |Apache: Bytes per second |apache.bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Calculated as change rate for 'Total bytes' stat.&eol;BytesPerSec is not used, as it counts average since last Apache server start. |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30904 |18 | |10264 |Apache: Workers keepalive (read) |apache.workers.keepalive |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in keepalive state |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30905 |18 | |10264 |Apache: Workers finishing |apache.workers.finishing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in finishing state |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30906 |18 | |10264 |Apache: Workers DNS lookup |apache.workers.dnslookup |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in dnslookup state |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30907 |18 | |10264 |Apache: Workers closing connection |apache.workers.closing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in closing state |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30908 |18 | |10264 |Apache: Workers idle cleanup |apache.workers.cleanup |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in cleanup state |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30909 |18 | |10264 |Apache: Total workers idle |apache.workers_total.idle |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of idle worker threads/processes |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30910 |18 | |10264 |Apache: Total workers busy |apache.workers_total.busy |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of busy worker threads/processes |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30911 |18 | |10264 |Apache: Version |apache.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Service version |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30912 |18 | |10264 |Apache: Uptime |apache.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Service uptime in seconds |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30913 |18 | |10264 |Apache: Requests per second |apache.requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Calculated as change rate for 'Total requests' stat.&eol;ReqPerSec is not used, as it counts average since last Apache server start. |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30914 |18 | |10264 |Apache: Total requests |apache.requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |A total number of accesses |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30915 |18 | |10264 |Apache: Workers logging |apache.workers.logging |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in logging state |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30916 |18 | |10264 |Event MPM discovery |apache.mpm.event.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics if event MPM is used&eol;https://httpd.apache.org/docs/current/mod/event.html |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30917 |18 | |10264 |Apache: Bytes per request |apache.bytes[per_request{#SINGLETON}] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Average number of client requests per second |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30918 |18 | |10264 |Apache: Connections async closing |apache.connections[async_closing{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async connections in closing state (only applicable to event MPM) |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30919 |18 | |10264 |Apache: Connections async keep alive |apache.connections[async_keep_alive{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async connections in keep-alive state (only applicable to event MPM) |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30920 |18 | |10264 |Apache: Connections async writing |apache.connections[async_writing{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async connections in writing state (only applicable to event MPM) |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30921 |18 | |10264 |Apache: Connections total |apache.connections[total{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of total connections |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30922 |18 | |10264 |Apache: Number of async processes |apache.process[num{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async processes |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30927 |18 | |10324 |Etcd: Open file descriptors |etcd.open.fds |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of open file descriptors. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30928 |18 | |10324 |Etcd: Proposals applied per second |etcd.proposals.applied.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of consensus proposals applied. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30929 |18 | |10324 |Etcd: Proposals committed per second |etcd.proposals.committed.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of consensus proposals committed. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30930 |18 | |10324 |Etcd: Proposals failed per second |etcd.proposals.failed.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed proposals seen. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30931 |18 | |10324 |Etcd: Proposals pending |etcd.proposals.pending |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of pending proposals to commit. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30932 |18 | |10324 |Etcd: PUT per second |etcd.put.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of puts seen by this member per second. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30933 |18 | |10324 |Etcd: Range per second |etcd.range.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of ranges seen by this member per second. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30934 |18 | |10324 |Etcd: Reads per second |etcd.reads.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of reads action by (get/getRecursive), local to this member. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30935 |18 | |10324 |Etcd: Client gRPC received bytes per second |etcd.network.grpc.received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from grpc clients per second |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30936 |18 | |10324 |Etcd: Resident memory |etcd.res.bytes |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Resident memory size in bytes. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30937 |18 | |10324 |Etcd: Server version |etcd.server.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the Etcd server. |0 |30d |0 | |30926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30938 |18 | |10324 |Etcd: Transaction per second |etcd.txn.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of transactions seen by this member per second. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30939 |18 | |10324 |Etcd: Uptime |etcd.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Etcd server uptime. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30940 |18 | |10324 |Etcd: Virtual memory |etcd.virtual.bytes |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Virtual memory size in bytes. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30941 |18 | |10324 |Etcd: Writes per second |etcd.writes.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of writes (e.g. set/compareAndDelete) seen by this member. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30942 |18 | |10324 |Etcd: Client gRPC sent bytes per second |etcd.network.grpc.sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent from grpc clients per second |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30943 |18 | |10324 |Etcd: Cluster version |etcd.cluster.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the Etcd cluster. |0 |30d |0 | |30926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30944 |18 | |10324 |Etcd: Maximum open file descriptors |etcd.max.fds |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Maximum number of open file descriptors. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30945 |18 | |10324 |Etcd: Server has a leader |etcd.has.leader |0 |7d |365d |0 |3 | | | | |NULL |97 | | |0 | | | | |0 |NULL |Whether or not a leader exists. 1 is existence, 0 is not. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30946 |18 | |10324 |Etcd: DB size |etcd.db.size |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total size of the underlying database. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30947 |18 | |10324 |Etcd: Deletes per second |etcd.delete.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of deletes seen by this member per second. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30948 |18 | |10324 |Etcd: Pending events |etcd.events.sent.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of pending events to be sent. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30949 |18 | |10324 |Etcd: RPCs received per second |etcd.grpc.received.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of RPC stream messages received on the server. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30950 |18 | |10324 |Etcd: RPCs sent per second |etcd.grpc.sent.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of gRPC stream messages sent by the server. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30951 |18 | |10324 |Etcd: RPCs started per second |etcd.grpc.started.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of RPCs started on the server. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30952 |18 | |10324 |Etcd: HTTP 4XX |etcd.http.requests.4xx.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of handle failures of requests (non-watches), by method (GET/PUT etc.), and code 4XX. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30953 |18 | |10324 |Etcd: CPU |etcd.cpu.util |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Total user and system CPU time spent in seconds. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30954 |18 | |10324 |Etcd: HTTP 5XX |etcd.http.requests.5xx.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of handle failures of requests (non-watches), by method (GET/PUT etc.), and code 5XX. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30955 |18 | |10324 |Etcd: HTTP requests received |etcd.http.requests.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of requests received into the system (successfully parsed and authd). |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30956 |18 | |10324 |Etcd: Server is a leader |etcd.is.leader |0 |7d |365d |0 |3 | | | | |NULL |97 | | |0 | | | | |0 |NULL |Whether or not this member is a leader. 1 if is, 0 otherwise. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30957 |18 | |10324 |Etcd: Keys compacted per second |etcd.keys.compacted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of DB keys compacted per second. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30958 |18 | |10324 |Etcd: Keys expired per second |etcd.keys.expired.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of expired keys per second. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30959 |18 | |10324 |Etcd: Keys total |etcd.keys.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of keys. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30960 |18 | |10324 |Etcd: Leader changes |etcd.leader.changes |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The the number of leader changes the member has seen since its start. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30961 |18 | |10324 |gRPC codes discovery |etcd.grpc_code.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30962 |18 | |10324 |Peers discovery |etcd.peer.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30963 |18 | |10324 |Etcd: RPCs completed with code {#GRPC.CODE} |etcd.grpc.handled.rate[{#GRPC.CODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of RPCs completed on the server with grpc_code {#GRPC.CODE} |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30964 |18 | |10324 |Etcd: Etcd peer {#ETCD.PEER}: Bytes received |etcd.bytes.received.rate[{#ETCD.PEER}] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of bytes received from peer with ID {#ETCD.PEER} |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30965 |18 | |10324 |Etcd: Etcd peer {#ETCD.PEER}: Bytes sent |etcd.bytes.sent.rate[{#ETCD.PEER}] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of bytes sent to peer with ID {#ETCD.PEER} |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30966 |18 | |10324 |Etcd: Etcd peer {#ETCD.PEER}: Receive failures failures |etcd.received.fail.rate[{#ETCD.PEER}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of receive failures from the peer with ID {#ETCD.PEER} |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30967 |18 | |10324 |Etcd: Etcd peer {#ETCD.PEER}: Send failures |etcd.sent.fail.rate[{#ETCD.PEER}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of send failures from peer with ID {#ETCD.PEER} |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |31052 |18 | |10262 |Version |version |0 |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of Zabbix proxy. |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31053 |18 | |10261 |Version |version |0 |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of Zabbix server. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |31059 |18 | |10327 |MSSQL: Average latch wait time base |mssql.average_latch_wait_time_base |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |For internal use only. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31060 |18 | |10327 |MSSQL: Table lock escalations per second |mssql.table_lock_escalations.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times locks on a table were escalated to the TABLE or HoBT granularity. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31061 |18 | |10327 |MSSQL: Memory grants pending |mssql.memory_grants_pending |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Specifies the total number of processes waiting for a workspace memory grant. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31062 |18 | |10327 |MSSQL: Total lock requests per second that have deadlocks |mssql.number_deadlocks_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of lock requests per second that resulted in a deadlock. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31063 |18 | |10327 |MSSQL: Errors per second (DB offline errors) |mssql.offline_errors_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31064 |18 | |10327 |MSSQL: Page life expectancy |mssql.page_life_expectancy |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of seconds a page will stay in the buffer pool without references. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31065 |18 | |10327 |MSSQL: Page lookups per second |mssql.page_lookups_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of requests per second to find a page in the buffer pool. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31066 |18 | |10327 |MSSQL: Page reads per second |mssql.page_reads_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of physical database page reads that are issued per second. This statistic displays the total number of physical page reads across all databases. Because physical I/O is expensive, you may be able to minimize the cost, either by using a larger data cache, intelligent indexes, and more efficient queries, or by changing the database design. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31067 |18 | |10327 |MSSQL: Page splits per second |mssql.page_splits_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of page splits per second that occur as the result of overflowing index pages. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31068 |18 | |10327 |MSSQL: Page writes per second |mssql.page_writes_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of physical database page writes that are issued per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31069 |18 | |10327 |MSSQL: Number of blocked processes |mssql.processes_blocked |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of currently blocked processes. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31070 |18 | |10327 |MSSQL: Read-ahead pages per second |mssql.readahead_pages_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of pages read per second in anticipation of use. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31071 |18 | |10327 |MSSQL: Safe auto-params per second |mssql.safe_autoparams_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of safe auto-parameterization attempts per second. Safe refers to a determination that a cached execution plan can be shared between different similar-looking Transact-SQL statements. SQL Server makes many auto-parameterization attempts some of which turn out to be safe and others fail. Note that auto-parameterizations are also known as simple parameterizations in later versions of SQL Server. This does not include forced parameterizations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31072 |18 | |10327 |MSSQL: SQL compilations per second |mssql.sql_compilations_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of SQL compilations per second. Indicates the number of times the compile code path is entered. Includes compiles caused by statement-level recompilations in SQL Server. After SQL Server user activity is stable, this value reaches a steady state. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31073 |18 | |10327 |MSSQL: SQL re-compilations per second |mssql.sql_recompilations_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of statement recompiles per second. Counts the number of times statement recompiles are triggered. Generally, you want the recompiles to be low. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31074 |18 | |10327 |MSSQL: Target pages |mssql.target_pages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The optimum number of pages in the buffer pool. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31075 |18 | |10327 |MSSQL: Maximum workspace memory |mssql.maximum_workspace_memory |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the maximum amount of memory available for executing processes, such as hash, sort, bulk copy, and index creation operations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31076 |18 | |10327 |MSSQL: Target server memory |mssql.target_server_memory |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the ideal amount of memory the server can consume. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31077 |18 | |10327 |MSSQL: Total latch wait Time |mssql.total_latch_wait_time |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Total latch wait time (in milliseconds) for latch requests in the last second. This value should stay stable compared to the number of latch waits per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31078 |18 | |10327 |MSSQL: Total server memory |mssql.total_server_memory |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Specifies the amount of memory the server has committed using the memory manager. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31079 |18 | |10327 |MSSQL: Total transactions number |mssql.transactions |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently active transactions of all types. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31080 |18 | |10327 |MSSQL: Total transactions per second |mssql.transactions_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of transactions started for all databases per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31081 |18 | |10327 |MSSQL: Unsafe auto-params per second |mssql.unsafe_autoparams_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of unsafe auto-parameterization attempts per second. For example, the query has some characteristics that prevent the cached plan from being shared. These are designated as unsafe. This does not count the number of forced parameterizations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31082 |18 | |10327 |MSSQL: Uptime |mssql.uptime |0 |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MS SQL Server uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31083 |18 | |10327 |MSSQL: Number users connected |mssql.user_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users connected to MS SQL Server. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31084 |18 | |10327 |MSSQL: Errors per second (User errors) |mssql.user_errors_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31085 |18 | |10327 |MSSQL: Version |mssql.version |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MS SQL Server version. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31086 |18 | |10327 |MSSQL: Work files created per second |mssql.workfiles_created_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of work files created per second. For example, work files could be used to store temporary results for hash joins and hash aggregates. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31087 |18 | |10327 |MSSQL: Work tables created per second |mssql.worktables_created_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of work tables created per second. For example, work tables could be used to store temporary results for query spool, lob variables, XML variables, and cursors. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31088 |18 | |10327 |MSSQL: Worktables from cache ratio |mssql.worktables_from_cache_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Percentage of work tables created where the initial two pages of the work table were not allocated but were immediately available from the work table cache. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31089 |18 | |10327 |MSSQL: Memory grants outstanding |mssql.memory_grants_outstanding |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Specifies the total number of processes that have successfully acquired a workspace memory grant. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31090 |18 | |10327 |MSSQL: Logouts per second |mssql.logouts_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of logout operations started per second. Any value over 2 may indicate insufcient connection pooling. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31091 |18 | |10327 |MSSQL: Average latch wait time raw |mssql.average_latch_wait_time_raw |0 |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Average latch wait time (in milliseconds) for latch requests that had to wait. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31092 |18 | |10327 |MSSQL: Forwarded records per second |mssql.forwarded_records_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of records per second fetched through forwarded record pointers. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31093 |18 | |10327 |MSSQL: Total average wait time base |mssql.average_wait_time_base |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |For internal use only. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31094 |18 | |10327 |MSSQL: Total average wait time raw |mssql.average_wait_time_raw |0 |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Average amount of wait time (in milliseconds) for each lock request that resulted in a wait. Information for all locks. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31095 |18 | |10327 |MSSQL: Batch requests per second |mssql.batch_requests_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of Transact-SQL command batches received per second. This statistic is affected by all constraints (such as I/O, number of users, cache size, complexity of requests, and so on). High batch requests mean good throughput. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31096 |18 | |10327 |MSSQL: Buffer cache hit ratio |mssql.buffer_cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the percentage of pages found in the buffer cache without having to read from disk. The ratio is the total number of cache hits divided by the total number of cache lookups over the last few thousand page accesses. After a long period of time, the ratio moves very little. Because reading from the cache is much less expensive than reading from disk, you want this ratio to be high. Generally, you can increase the buffer cache hit ratio by increasing the amount of memory available to SQL Server or by using the buffer pool extension feature. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31097 |18 | |10327 |MSSQL: Cache hit ratio |mssql.cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Ratio between cache hits and lookups. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31098 |18 | |10327 |MSSQL: Cache object counts |mssql.cache_object_counts |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cache objects in the cache. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31099 |18 | |10327 |MSSQL: Cache objects in use |mssql.cache_objects_in_use |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cache objects in use. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31100 |18 | |10327 |MSSQL: Cache pages |mssql.cache_pages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of 8-kilobyte (KB) pages used by cache objects. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31101 |18 | |10327 |MSSQL: Checkpoint pages per second |mssql.checkpoint_pages_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of pages flushed to disk per second by a checkpoint or other operation that require all dirty pages to be flushed. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31102 |18 | |10327 |MSSQL: Total data file size |mssql.data_files_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total size of all the data files. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31103 |18 | |10327 |MSSQL: Database pages |mssql.database_pages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of pages in the buffer pool with database content. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31104 |18 | |10327 |MSSQL: Total errors per second |mssql.errors_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31105 |18 | |10327 |MSSQL: Failed auto-params per second |mssql.failed_autoparams_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of failed auto-parameterization attempts per second. This should be small. Note that auto-parameterizations are also known as simple parameterizations in later versions of SQL Server. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31106 |18 | |10327 |MSSQL: Free list stalls per second |mssql.free_list_stalls_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of requests per second that had to wait for a free page. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31107 |18 | |10327 |MSSQL: Logins per second |mssql.logins_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of logins started per second. This does not include pooled connections. Any value over 2 may indicate insufcient connection pooling. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31108 |18 | |10327 |MSSQL: Full scans per second |mssql.full_scans_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of unrestricted full scans per second. These can be either base-table or full-index scans. Values greater than 1 or 2 indicate that we are having table / Index page scans. If we see high CPU then we need to investigate this counter, otherwise if the full scans are on small tables we can ignore this counter. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31109 |18 | |10327 |MSSQL: Granted Workspace Memory |mssql.granted_workspace_memory |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Specifies the total amount of memory currently granted to executing processes, such as hash, sort, bulk copy, and index creation operations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31110 |18 | |10327 |MSSQL: Index searches per second |mssql.index_searches_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of index searches per second. These are used to start a range scan, reposition a range scan, revalidate a scan point, fetch a single index record, and search down the index to locate where to insert a new row. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31111 |18 | |10327 |MSSQL: Errors per second (Info errors) |mssql.info_errors_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31112 |18 | |10327 |MSSQL: Errors per second (Kill connection errors) |mssql.kill_connection_errors_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31113 |18 | |10327 |MSSQL: Latch waits per second |mssql.latch_waits_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of latch requests that could not be granted immediately. Latches are lightweight means of holding a very transient server resource, such as an address in memory. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31114 |18 | |10327 |MSSQL: Lazy writes per second |mssql.lazy_writes_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of buffers written per second by the buffer manager's lazy writer. The lazy writer is a system process that flushes out batches of dirty, aged buffers (buffers that contain changes that must be written back to disk before the buffer can be reused for a different page) and makes them available to user processes. The lazy writer eliminates the need to perform frequent checkpoints in order to create available buffers. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31115 |18 | |10327 |MSSQL: Total lock requests per second |mssql.lock_requests_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of new locks and lock conversions per second requested from the lock manager. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31116 |18 | |10327 |MSSQL: Total lock requests per second that timed out |mssql.lock_timeouts_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of lock requests per second that timed out, including requests for NOWAIT locks. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31117 |18 | |10327 |MSSQL: Lock wait time |mssql.lock_wait_time |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Average of total wait time (in milliseconds) for locks in the last second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31118 |18 | |10327 |MSSQL: Total lock requests per second that required waiting |mssql.lock_waits_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of lock requests per second that required the caller to wait. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31119 |18 | |10327 |MSSQL: Total log file size |mssql.log_files_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total size of all the transaction log files. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31120 |18 | |10327 |MSSQL: Auto-param attempts per second |mssql.autoparam_attempts_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of auto-parameterization attempts per second. Total should be the sum of the failed, safe, and unsafe auto-parameterizations. Auto-parameterization occurs when an instance of SQL Server tries to parameterize a Transact-SQL request by replacing some literals with parameters so that reuse of the resulting cached execution plan across multiple similar-looking requests is possible. Note that auto-parameterizations are also known as simple parameterizations in newer versions of SQL Server. This counter does not include forced parameterizations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31121 |18 | |10327 |MSSQL: Total log file used size |mssql.log_files_used_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The cumulative used size of all the log files in the database. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31122 |11 | |10327 |Availability groups discovery |db.odbc.discovery[availability_groups,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name as group_name &bsn;FROM sys.availability_groups | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Discovery the existed availability groups. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31123 |11 | |10327 |Database discovery |db.odbc.discovery[dbname,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name as dbname &bsn;FROM sys.databases | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Scanning databases in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31124 |11 | |10327 |Local database discovery |db.odbc.discovery[local_db,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT ag.name AS group_name, arcs.replica_server_name AS replica_name,&bsn;db_name(drs.database_id) AS dbname, drs.is_local&bsn;FROM sys.dm_hadr_database_replica_states drs JOIN sys.dm_hadr_availability_replica_cluster_states arcs&bsn;ON arcs.replica_id = drs.replica_id&bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id&bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id&bsn;WHERE drs.is_local = 1 | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Discovery of the local availability databases. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31125 |11 | |10327 |Mirroring discovery |db.odbc.discovery[mirrors,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT db_name(database_id) as dbname&bsn;FROM sys.database_mirroring&bsn;WHERE mirroring_state_desc IS NOT NULL | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |To see the row for a database other than master or tempdb, you must&eol;either be the database owner or have at least ALTER ANY DATABASE or VIEW ANY&eol;DATABASE server-level permission or CREATE DATABASE permission in the master&eol;database. To see non-NULL values on a mirror database, you must be a member&eol;of the sysadmin fixed server role. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31126 |11 | |10327 |Non-local database discovery |db.odbc.discovery[non-local_db,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT ag.name AS group_name, arcs.replica_server_name AS replica_name,&bsn;db_name(drs.database_id) AS dbname, drs.is_local&bsn;FROM sys.dm_hadr_database_replica_states drs JOIN sys.dm_hadr_availability_replica_cluster_states arcs &bsn;ON arcs.replica_id = drs.replica_id &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id&bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id&bsn;WHERE drs.is_local = 0 | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Discovery of the non-local (not local to the SQL Server instance) availability databases. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31127 |11 | |10327 |Replication discovery |db.odbc.discovery[replicas,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT ag.name as group_name, &bsn;arcs.replica_server_name as replica_name&bsn;FROM sys.dm_hadr_availability_replica_cluster_states as arcs &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id&bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Discovery of the database replicas. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31128 |11 | |10327 |MSSQL AG '{#GROUP_NAME}': Get replica states |db.odbc.get[{#GROUP_NAME}_replica_states,"{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT ag.name as group_name,&bsn;ISNULL(ags.primary_recovery_health, 2) as primary_recovery_health,&bsn;ISNULL(ags.primary_replica, 'Unknown') as primary_replica,&bsn;ISNULL(ags.secondary_recovery_health, 2) as secondary_recovery_health,&bsn;ags.synchronization_health as synchronization_health&bsn;FROM sys.dm_hadr_availability_group_states ags JOIN sys.availability_groups ag ON ag.group_id = ags.group_id | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting replica states - name, primary and secondary health, synchronization health. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31129 |11 | |10327 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}': Get local DB states |db.odbc.get["{#GROUP_NAME}_{#DBNAME}_local_db.states","{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT drs.database_state as database_state, &bsn;drs.is_suspended as is_suspended, &bsn;drs.synchronization_health as synchronization_health, &bsn;ag.name as group_name,&bsn;arcs.replica_server_name as replica_name,&bsn;db_name(drs.database_id) as dbname&bsn;FROM sys.dm_hadr_database_replica_states drs &bsn;JOIN sys.dm_hadr_availability_replica_cluster_states arcs ON arcs.replica_id = drs.replica_id &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id &bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting the states of the local availability database. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31130 |11 | |10327 |MSSQL Mirroring '{#DBNAME}': Get the mirror state |db.odbc.get["{#DBNAME}_mirroring_state","{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT ISNULL(m.mirroring_role,0) as mirroring_role,&bsn;ISNULL(m.mirroring_role_sequence,0) as mirroring_role_sequence,&bsn;ISNULL(m.mirroring_state,7) as mirroring_state,&bsn;ISNULL(m.mirroring_witness_state,3) as mirroring_witness_state,&bsn;ISNULL(m.mirroring_safety_level,3) as mirroring_safety_level,&bsn;db_name(m.database_id) as dbname &bsn;FROM sys.database_mirroring as m&bsn;WHERE m.mirroring_state_desc IS NOT NULL | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting mirrors state |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31131 |11 | |10327 |MSSQL AG '{#GROUP_NAME}' Non-Local DB '{#DBNAME}': Get non-local DB states |db.odbc.get["{#GROUP_NAME}_{#DBNAME}_non-local_db.states","{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT drs.log_send_queue_size as log_send_queue_size,&bsn;drs.redo_queue_size as redo_queue_size,&bsn;ag.name as group_name,&bsn;arcs.replica_server_name as replica_name,&bsn;db_name(drs.database_id) as dbname&bsn;FROM sys.dm_hadr_database_replica_states drs &bsn;JOIN sys.dm_hadr_availability_replica_cluster_states arcs ON arcs.replica_id = drs.replica_id &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id &bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting the states of the non-local availability database. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31132 |11 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Get the replica state |db.odbc.get["{#GROUP_NAME}_{#REPLICA_NAME}_replica.state","{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT ars.connected_state as connected_state,&bsn;ars.is_local as is_local,&bsn;arcs.join_state as join_state,&bsn;ISNULL(ars.operational_state,6) as operational_state,&bsn;ISNULL(ars.recovery_health,2) as recovery_health,&bsn;ars.role as role,&bsn;ars.synchronization_health as synchronization_health,&bsn;ag.name as group_name, &bsn;arcs.replica_server_name as replica_name&bsn;FROM sys.dm_hadr_availability_replica_cluster_states as arcs &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id&bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id&bsn;WHERE ag.name = '{#GROUP_NAME}' AND arcs.replica_server_name = '{#REPLICA_NAME}' | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting the database replica states. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31133 |18 | |10327 |MSSQL AG '{#GROUP_NAME}': Primary replica recovery health |mssql.primary_recovery_health["{#GROUP_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |103 | | |0 | | | | |2 |NULL |Indicates the recovery health of the primary replica:&eol;0 = In progress&eol;1 = Online&eol;2 = Unavailable |0 |30d |0 | |31128 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31134 |18 | |10327 |MSSQL AG '{#GROUP_NAME}': Primary replica name |mssql.primary_replica["{#GROUP_NAME}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Name of the server instance that is hosting the current primary replica. |0 |30d |0 | |31128 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31135 |18 | |10327 |MSSQL AG '{#GROUP_NAME}': Secondary replica recovery health |mssql.secondary_recovery_health["{#GROUP_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |103 | | |0 | | | | |2 |NULL |Indicates the recovery health of a secondary replica replica:&eol;0 = In progress&eol;1 = Online&eol;2 = Unavailable |0 |30d |0 | |31128 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31136 |18 | |10327 |MSSQL AG '{#GROUP_NAME}': Synchronization health |mssql.synchronization_health["{#GROUP_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |106 | | |0 | | | | |2 |NULL |Reflects a rollup of the synchronization_health of all availability replicas in the availability group:&eol;0: Not healthy. None of the availability replicas have a healthy.&eol;1: Partially healthy. The synchronization health of some, but not all, availability replicas is healthy.&eol;2: Healthy. The synchronization health of every availability replica is healthy. |0 |30d |0 | |31128 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31137 |18 | |10327 |MSSQL DB '{#DBNAME}': Active transactions |mssql.db.active_transactions["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of active transactions for the database. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31138 |18 | |10327 |MSSQL DB '{#DBNAME}': Data file size |mssql.db.data_files_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Cumulative size of all the data files in the database including any automatic growth. Monitoring this counter is useful, for example, for determining the correct size of tempdb. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31139 |18 | |10327 |MSSQL DB '{#DBNAME}': Log bytes flushed per second |mssql.db.log_bytes_flushed_sec.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of log bytes flushed per second. Useful for determining trends and utilization of the transaction log. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31140 |18 | |10327 |MSSQL DB '{#DBNAME}': Log file size |mssql.db.log_files_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Cumulative size of all the transaction log files in the database. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31141 |18 | |10327 |MSSQL DB '{#DBNAME}': Log file used size |mssql.db.log_files_used_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The cumulative used size of all the log files in the database. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31142 |18 | |10327 |MSSQL DB '{#DBNAME}': Log flush wait time |mssql.db.log_flush_wait_time["{#DBNAME}"] |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Total wait time (in milliseconds) to flush the log. On an AlwaysOn secondary database, this value indicates the wait time for log records to be hardened to disk. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31143 |18 | |10327 |MSSQL DB '{#DBNAME}': Log flush waits per second |mssql.db.log_flush_waits_sec.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of commits per second waiting for the log flush. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31144 |18 | |10327 |MSSQL DB '{#DBNAME}': Log flushes per second |mssql.db.log_flushes_sec.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of log flushes per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31145 |18 | |10327 |MSSQL DB '{#DBNAME}': Log growths |mssql.db.log_growths["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of times the transaction log for the database has been expanded. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31146 |18 | |10327 |MSSQL DB '{#DBNAME}': Log shrinks |mssql.db.log_shrinks["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of times the transaction log for the database has been shrunk. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31147 |18 | |10327 |MSSQL DB '{#DBNAME}': Log truncations |mssql.db.log_truncations["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times the transaction log has been shrunk. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31148 |18 | |10327 |MSSQL DB '{#DBNAME}': Percent log used |mssql.db.percent_log_used["{#DBNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Percentage of space in the log that is in use. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31149 |18 | |10327 |MSSQL DB '{#DBNAME}': State |mssql.db.state["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |99 | | |0 | | | | |2 |NULL |0 = ONLINE&eol;1 = RESTORING&eol;2 = RECOVERING &pipe; SQL Server 2008 and later&eol;3 = RECOVERY_PENDING &pipe; SQL Server 2008 and later&eol;4 = SUSPECT&eol;5 = EMERGENCY &pipe; SQL Server 2008 and later&eol;6 = OFFLINE &pipe; SQL Server 2008 and later&eol;7 = COPYING &pipe; Azure SQL Database Active Geo-Replication&eol;10 = OFFLINE_SECONDARY &pipe; Azure SQL Database Active Geo-Replication |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31150 |18 | |10327 |MSSQL DB '{#DBNAME}': Transactions per second |mssql.db.transactions_sec.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of transactions started for the database per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31151 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}': Suspended |mssql.local_db.is_suspended["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Database state:&eol;0 = Resumed&eol;1 = Suspended |0 |30d |0 | |31129 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31152 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}': State |mssql.local_db.state["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |99 | | |0 | | | | |2 |NULL |0 = Online&eol;1 = Restoring&eol;2 = Recovering&eol;3 = Recovery pending&eol;4 = Suspect&eol;5 = Emergency&eol;6 = Offline |0 |30d |0 | |31129 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31153 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}': Synchronization health |mssql.local_db.synchronization_health["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |106 | | |0 | | | | |2 |NULL |Reflects the intersection of the synchronization state of a database that is joined to the availability group on the availability replica and the availability mode of the availability replica (synchronous-commit or asynchronous-commit mode):&eol;0 = Not healthy. The synchronization_state of the database is 0 (NOT SYNCHRONIZING).&eol;1 = Partially healthy. A database on a synchronous-commit availability replica is considered &eol;partially healthy if synchronization_state is 1 (SYNCHRONIZING).&eol;2 = Healthy. A database on an synchronous-commit availability replica is considered healthy if synchronization_state is 2 (SYNCHRONIZED), and a database on an asynchronous-commit availability replica is considered healthy if synchronization_state is 1 (SYNCHRONIZING). |0 |30d |0 | |31129 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31154 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': Role sequence |mssql.mirroring.role_sequence["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times that mirroring partners have switched the principal and mirror roles due to a failover or forced service. |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31155 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': Role |mssql.mirroring.role["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |109 | | |0 | | | | |2 |NULL |Current role of the local database plays in the database mirroring session.&eol;1 = Principal&eol;2 = Mirror |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31156 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': Safety level |mssql.mirroring.safety_level["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |110 | | |0 | | | | |2 |NULL |Safety setting for updates on the mirror database:&eol;0 = Unknown state&eol;1 = Off [asynchronous]&eol;2 = Full [synchronous] |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31157 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': State |mssql.mirroring.state["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |108 | | |0 | | | | |2 |NULL |State of the mirror database and of the database mirroring session.&eol;0 = Suspended&eol;1 = Disconnected from the other partner&eol;2 = Synchronizing&eol;3 = Pending Failover&eol;4 = Synchronized&eol;5 = The partners are not synchronized. Failover is not possible now.&eol;6 = The partners are synchronized. Failover is potentially possible. For information about the requirements for failover see, Database Mirroring Operating Modes. |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31158 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': Witness state |mssql.mirroring.witness_state["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |111 | | |0 | | | | |2 |NULL |State of the witness in the database mirroring session of the database:&eol;0 = Unknown&eol;1 = Connected&eol;2 = Disconnected |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31159 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Non-Local DB '{#DBNAME}': Log queue size |mssql.non-local_db.log_send_queue_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Amount of log records of the primary database that has not been sent to the secondary databases. |0 |30d |0 | |31131 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31160 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Non-Local DB '{#DBNAME}': Redo log queue size |mssql.non-local_db.redo_queue_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Amount of log records in the log files of the secondary replica that has not yet been redone. |0 |30d |0 | |31131 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31161 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Connected state |mssql.replica.connected_state["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |100 | | |0 | | | | |2 |NULL |Whether a secondary replica is currently connected to the primary replica:&eol;0 : Disconnected. The response of an availability replica to the DISCONNECTED state depends on its role:&eol;On the primary replica, if a secondary replica is disconnected, its secondary databases are marked as NOT SYNCHRONIZED on the primary replica, which waits for the secondary to reconnect;&eol;On a secondary replica, upon detecting that it is disconnected, the secondary replica attempts to reconnect to the primary replica.&eol;1 : Connected. Each primary replica tracks the connection state for every secondary replica in the same availability group. Secondary replicas track the connection state of only the primary replica. |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31162 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Is local |mssql.replica.is_local["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |107 | | |0 | | | | |2 |NULL |Whether the replica is local:&eol;0 = Indicates a remote secondary replica in an availability group whose primary replica is hosted by the local server instance. This value occurs only on the primary replica location.&eol;1 = Indicates a local replica. On secondary replicas, this is the only available value for the availability group to which the replica belongs. |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31163 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Join state |mssql.replica.join_state["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |101 | | |0 | | | | |2 |NULL |0 = Not joined&eol;1 = Joined, standalone instance&eol;2 = Joined, failover cluster instance |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31164 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Operational state |mssql.replica.operational_state["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |102 | | |0 | | | | |2 |NULL |Current operational state of the replica:&eol;0 = Pending failover&eol;1 = Pending&eol;2 = Online&eol;3 = Offline&eol;4 = Failed&eol;5 = Failed, no quorum&eol;6 = Not local |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31165 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Recovery health |mssql.replica.recovery_health["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |103 | | |0 | | | | |2 |NULL |Rollup of the database_state column of the sys.dm_hadr_database_replica_states dynamic management view:&eol;0 : In progress. At least one joined database has a database state other than ONLINE &eol;(database_state is not 0).&eol;1 : Online. All the joined databases have a database state of ONLINE (database_state is 0). |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31166 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Role |mssql.replica.role["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |104 | | |0 | | | | |2 |NULL |Current Always On availability groups role of a local replica or a connected remote replica:&eol;0 = Resolving&eol;1 = Primary&eol;2 = Secondary |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31167 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Sync health |mssql.replica.synchronization_health["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |106 | | |0 | | | | |2 |NULL |Reflects a rollup of the database synchronization state (synchronization_state)of all joined availability databases (also known as replicas) and the availability mode of the replica (synchronous-commit or asynchronous-commit mode). The rollup will reflect the least healthy accumulated state the databases on the replica:&eol;0 : Not healthy. At least one joined database is in the NOT SYNCHRONIZING state.&eol;1 : Partially healthy. Some replicas are not in the target synchronization state: synchronous-commit replicas should be synchronized, and asynchronous-commit replicas should be synchronizing.&eol;2 : Healthy. All replicas are in the target synchronization state: synchronous-commit replicas are synchronized, and asynchronous-commit replicas are synchronizing. |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31168 |18 | |10316 |MySQL: Threads created per second |mysql.threads_created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31169 |18 | |10316 |MySQL: Created tmp tables on disk per second |mysql.created_tmp_disk_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31170 |18 | |10316 |MySQL: Created tmp files on disk per second |mysql.created_tmp_files.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |How many temporary files mysqld has created. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31171 |18 | |10316 |MySQL: Created tmp tables on memory per second |mysql.created_tmp_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31172 |18 | |10320 |MySQL: Threads created per second |mysql.threads_created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31173 |18 | |10320 |MySQL: Created tmp tables on disk per second |mysql.created_tmp_disk_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31174 |18 | |10320 |MySQL: Created tmp files on disk per second |mysql.created_tmp_files.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |How many temporary files mysqld has created. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31175 |18 | |10320 |MySQL: Created tmp tables on memory per second |mysql.created_tmp_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31176 |18 | |10317 |MySQL: Threads created per second |mysql.threads_created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31177 |18 | |10317 |MySQL: Created tmp tables on disk per second |mysql.created_tmp_disk_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31178 |18 | |10317 |MySQL: Created tmp tables on memory per second |mysql.created_tmp_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31179 |18 | |10317 |MySQL: Created tmp files on disk per second |mysql.created_tmp_files.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |How many temporary files mysqld has created. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |31184 |0 | |10328 |PostgreSQL: Cache hit |pgsql.cache.hit["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |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 |31187 |0 | |10328 |PostgreSQL: Age of oldest xid |pgsql.oldest.xid["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |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 |31197 |18 | |10328 |Dbstat: Rows fetched |pgsql.dbstat.sum.tup_fetched.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows fetched by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31198 |18 | |10328 |Dbstat: Backends connected |pgsql.dbstat.sum.numbackends |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connected backends |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31199 |18 | |10328 |Dbstat: Deadlocks |pgsql.dbstat.sum.deadlocks.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of deadlocks detected |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31200 |18 | |10328 |Dbstat: Number temp bytes |pgsql.dbstat.sum.temp_bytes.rate |0 |7d |365d |0 |0 | |b | | |NULL |NULL | | |0 | | | | |0 |NULL |Total amount of data written to temporary files by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31201 |18 | |10328 |Dbstat: Number temp bytes |pgsql.dbstat.sum.temp_files.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of temporary files created by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31202 |18 | |10328 |Dbstat: Rows deleted |pgsql.dbstat.sum.tup_deleted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows deleted by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31203 |18 | |10328 |Archive: Count of archive files |pgsql.archive.count_archived_files |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_activity&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ARCHIVER-VIEW |0 |30d |0 | |31195 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31204 |18 | |10328 |Dbstat: Rows inserted |pgsql.dbstat.sum.tup_inserted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows inserted by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31205 |18 | |10328 |Dbstat: Rows returned |pgsql.dbstat.sum.tup_returned.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows returned by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31206 |18 | |10328 |Dbstat: Rows updated |pgsql.dbstat.sum.tup_updated.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows updated by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31207 |18 | |10328 |Dbstat: Committed transactions |pgsql.dbstat.sum.xact_commit.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions that have been committed |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31208 |18 | |10328 |Dbstat: Roll backed transactions |pgsql.dbstat.sum.xact_rollback.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions that have been rolled back |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31209 |18 | |10328 |Dbstat: Checksum failures |pgsql.dbstat.sum.checksum_failures.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of data page checksum failures detected (or on a shared object), or NULL if data checksums are not enabled. This metric included in PostgreSQL 12 |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31210 |18 | |10328 |WAL: Segments count |pgsql.wal.count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of WAL segments |0 |30d |0 | |31196 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31211 |18 | |10328 |Dbstat: Conflicts |pgsql.dbstat.sum.conflicts.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of queries canceled due to conflicts with recovery. (Conflicts occur only on standby servers; see pg_stat_database_conflicts for details.) |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31212 |18 | |10328 |Dbstat: Blocks write time |pgsql.dbstat.sum.blk_write_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent writing data file blocks by backends, in milliseconds |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31213 |18 | |10328 |Dbstat: Disk blocks read |pgsql.dbstat.sum.blks_read.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of disk blocks read |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31214 |18 | |10328 |Checkpoint: Checkpoint sync time |pgsql.bgwriter.sync_time.rate |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Total amount of time that has been spent in the portion of checkpoint processing where files are synchronized to disk |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31215 |18 | |10328 |Archive: Count of attempts to archive files |pgsql.archive.failed_trying_to_archive |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_activity&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ARCHIVER-VIEW |0 |30d |0 | |31195 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31216 |18 | |10328 |Archive: Count of files need to archive |pgsql.archive.size_files_to_archive |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Size of files to archive |0 |30d |0 | |31195 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31217 |18 | |10328 |Bgwriter: Buffers allocated |pgsql.bgwriter.buffers_alloc.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers allocated |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31218 |18 | |10328 |Bgwriter: Times a backend execute its own fsync |pgsql.bgwriter.buffers_backend_fsync.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times a backend had to execute its own fsync call (normally the background writer handles those even when the backend does its own write) |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31219 |18 | |10328 |Bgwriter: Buffers written directly by a backend |pgsql.bgwriter.buffers_backend.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written directly by a backend |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31220 |18 | |10328 |Checkpoint: Buffers checkpoints written |pgsql.bgwriter.buffers_checkpoint.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written during checkpoints |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31221 |18 | |10328 |Checkpoint: Buffers background written |pgsql.bgwriter.buffers_clean.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written by the background writer |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31222 |18 | |10328 |Checkpoint: Checkpoint write time |pgsql.bgwriter.checkpoint_write_time.rate |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Total amount of time that has been spent in the portion of checkpoint processing where files are written to disk, in milliseconds |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31223 |18 | |10328 |Checkpoint: Requested |pgsql.bgwriter.checkpoints_req.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of requested checkpoints that have been performed |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31224 |18 | |10328 |Checkpoint: By timeout |pgsql.bgwriter.checkpoints_timed.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of scheduled checkpoints that have been performed |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31225 |18 | |10328 |Bgwriter: Number of bgwriter stopped |pgsql.bgwriter.maxwritten_clean.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times the background writer stopped a cleaning scan because it had written too many buffers |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31226 |18 | |10328 |Connections sum: Active |pgsql.connections.active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections executing a query |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31227 |18 | |10328 |Dbstat: Hit blocks read |pgsql.dbstat.sum.blks_hit.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times disk blocks were found already in the buffer cache |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31228 |18 | |10328 |Connections sum: Disabled |pgsql.connections.disabled |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of disabled connections |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31229 |18 | |10328 |Connections sum: Fastpath function call |pgsql.connections.fastpath_function_call |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections executing a fast-path function |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31230 |18 | |10328 |Connections sum: Idle |pgsql.connections.idle |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections waiting for a new client command |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31231 |18 | |10328 |Connections sum: Idle in transaction |pgsql.connections.idle_in_transaction |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections in a transaction state, but not executing a query |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31232 |18 | |10328 |Connections sum: Idle in transaction (aborted) |pgsql.connections.idle_in_transaction_aborted |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections in a transaction state, but not executing a query and one of the statements in the transaction caused an error. |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31233 |18 | |10328 |Connections sum: Prepared |pgsql.connections.prepared |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of prepared transactions&eol;https://www.postgresql.org/docs/current/sql-prepare-transaction.html |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31234 |18 | |10328 |Connections sum: Total |pgsql.connections.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31235 |18 | |10328 |Connections sum: Total % |pgsql.connections.total_pct |0 |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections in percentage |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31236 |18 | |10328 |Connections sum: Waiting |pgsql.connections.waiting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of waiting connections&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#WAIT-EVENT-TABLE |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31237 |18 | |10328 |Dbstat: Blocks read time |pgsql.dbstat.sum.blk_read_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent reading data file blocks by backends, in milliseconds |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31238 |18 | |10328 |Archive: Count of files in archive_status need to archive |pgsql.archive.count_files_to_archive |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |31195 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31239 |18 | |10328 |WAL: Bytes written |pgsql.wal.write |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |WAL write in bytes |0 |30d |0 | |31196 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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}"] |15m |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 |31244 |18 | |10328 |DB {#DBNAME}: Tuples returned per second |pgsql.dbstat.tup_returned.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of rows returned by queries in this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31245 |18 | |10328 |DB {#DBNAME}: Num of shareupdateexclusive locks |pgsql.locks.shareupdateexclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of shareupdateexclusive locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31246 |18 | |10328 |DB {#DBNAME}: Num of sharerowexclusive locks |pgsql.locks.sharerowexclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of total sharerowexclusive for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31247 |18 | |10328 |DB {#DBNAME}: Num of share locks |pgsql.locks.share["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of share locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31248 |18 | |10328 |DB {#DBNAME}: Num of rowshare locks |pgsql.locks.rowshare["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of rowshare locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31249 |18 | |10328 |DB {#DBNAME}: Num of rowexclusive locks |pgsql.locks.rowexclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of rowexclusive locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31250 |18 | |10328 |DB {#DBNAME}: Num of exclusive locks |pgsql.locks.exclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of exclusive locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31251 |18 | |10328 |DB {#DBNAME}: Num of accessshare locks |pgsql.locks.accessshare["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of accessshare locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31252 |18 | |10328 |DB {#DBNAME}: Num of accessexclusive locks |pgsql.locks.accessexclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of accessexclusive locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31253 |18 | |10328 |DB {#DBNAME}: Rollbacks per second |pgsql.dbstat.xact_rollback.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of transactions in this database that have been rolled back |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31254 |18 | |10328 |DB {#DBNAME}: Commits per second |pgsql.dbstat.xact_commit.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of transactions in this database that have been committed |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31255 |18 | |10328 |DB {#DBNAME}: Tuples updated per second |pgsql.dbstat.tup_updated.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows updated by queries in this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31256 |18 | |10328 |DB {#DBNAME}: Tuples fetched per second |pgsql.dbstat.tup_fetched.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows fetched by queries in this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31257 |18 | |10328 |DB {#DBNAME}: Tuples inserted per second |pgsql.dbstat.tup_inserted.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows inserted by queries in this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31258 |18 | |10328 |DB {#DBNAME}: Tuples deleted per second |pgsql.dbstat.tup_deleted.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows deleted by queries in this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31259 |18 | |10328 |DB {#DBNAME}: Temp_files created per second |pgsql.dbstat.temp_files.rate["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of temporary files created by queries in this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31260 |18 | |10328 |DB {#DBNAME}: Temp_bytes written per second |pgsql.dbstat.temp_bytes.rate["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total amount of data written to temporary files by queries in this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31261 |18 | |10328 |DB {#DBNAME}: Backends connected |pgsql.dbstat.numbackends["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of backends currently connected to this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31262 |18 | |10328 |DB {#DBNAME}: Detected deadlocks per second |pgsql.dbstat.deadlocks.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of detected deadlocks in this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31263 |18 | |10328 |DB {#DBNAME}: Detected conflicts per second |pgsql.dbstat.conflicts.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of queries canceled due to conflicts with recovery in this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31264 |18 | |10328 |DB {#DBNAME}: Checksum failures |pgsql.dbstat.checksum_failures.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of data page checksum failures detected in this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31265 |18 | |10328 |DB {#DBNAME}: Disk blocks read per second |pgsql.dbstat.blks_read.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of disk blocks read in this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31266 |18 | |10328 |DB {#DBNAME}: Blocks hit per second |pgsql.dbstat.blks_hit.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of times disk blocks were found already in the buffer cache, so that a read was not necessary |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31267 |18 | |10328 |DB {#DBNAME}: Disk blocks read per second |pgsql.dbstat.blk_write_time.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time spent writing data file blocks by backends, in milliseconds |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31268 |18 | |10328 |DB {#DBNAME}: Disk blocks read per second |pgsql.dbstat.blk_read_time.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time spent reading data file blocks by backends, in milliseconds |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31269 |18 | |10328 |DB {#DBNAME}: Num of total locks |pgsql.locks.total["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of total locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31270 |18 | |10274 |Memory utilization |vm.memory.utilization |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |29103 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |31285 |18 | |10275 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |31278 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31286 |18 | |10275 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |31278 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31287 |18 | |10275 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |31278 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31288 |18 | |10275 |{#DEVNAME}: Disk utilization |vfs.dev.util[{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |31278 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31289 |18 | |10275 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |31278 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31290 |18 | |10275 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |31278 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31303 |18 | |10280 |Memory utilization |vm.memory.utilization |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |29289 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |31313 |18 | |10281 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |31309 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31314 |18 | |10281 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |31309 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31315 |18 | |10281 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |31309 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31316 |18 | |10281 |{#DEVNAME}: Disk utilization |vfs.dev.util[{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |31309 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31317 |18 | |10281 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |31309 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31318 |18 | |10281 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |31309 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |31331 |18 | |10287 |Free swap space in % |system.swap.pfree |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |31326 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |31349 |18 | |10294 |Free swap space in % |system.swap.pfree |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |31344 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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, SUM(df.bytes) AS used_bytes, SUM(df.max_bytes) AS max_bytes, SUM(f.free) AS free_bytes, ROUND(SUM(df.bytes)/ SUM(df.max_bytes)* 100, 2) AS used_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_name, Y.type AS TYPE, SUM(Y.bytes) AS bytes, SUM(Y.max_bytes) AS max_bytes, MAX(NVL(Y.free_bytes, 0)) AS FREE, ROUND(SUM(Y.bytes)/ SUM(Y.max_bytes)* 100, 2) AS used_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 ORDER BY tablespace;| |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 |31370 |18 | |10329 |Oracle: Version |oracle.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Oracle Server version. |0 |30d |0 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31398 |18 | |10329 |Oracle: Uptime |oracle.uptime |0 |7d |0d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Oracle instance uptime in seconds. |0 |30d |0 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31407 |18 | |10329 |Oracle: Archiver state |oracle.archiver_state |0 |7d |365d |0 |3 | | | | |NULL |116 | | |0 | | | | |0 |NULL |Automatic archiving status. |0 |30d |0 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31425 |18 | |10329 |Oracle: Instance hostname |oracle.instance_hostname |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Name of the host machine. |0 |30d |0 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31426 |18 | |10329 |Oracle: Instance name |oracle.instance_name |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Name of the instance. |0 |30d |0 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31427 |18 | |10329 |Oracle: Instance status |oracle.instance_status |0 |7d |365d |0 |3 | | | | |NULL |114 | | |0 | | | | |0 |NULL |Status of the instance. |0 |30d |0 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31428 |18 | |10329 |Oracle: Instance role |oracle.instance.role |0 |7d |365d |0 |3 | | | | |NULL |115 | | |0 | | | | |0 |NULL |Indicates whether the instance is an active instance or an inactive secondary instance. |0 |30d |0 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |31439 |18 | |10329 |Archivelog '{#DEST_NAME}': Error |oracle.archivelog_error["{#DEST_NAME}"] |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Displays the error text |0 |30d |0 | |31361 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31440 |18 | |10329 |Archivelog '{#DEST_NAME}': Last sequence |oracle.archivelog_log_sequence["{#DEST_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Identifies the sequence number of the last archived redo log to be archived |0 |30d |0 | |31361 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31441 |18 | |10329 |Archivelog '{#DEST_NAME}': Status |oracle.archivelog_log_status["{#DEST_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |118 | | |0 | | | | |2 |NULL |Identifies the current status of the destination: 1 - 'Valid', 2 - 'Dederred',3 - 'Error', 0 - 'Unknown' |0 |30d |0 | |31361 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31442 |18 | |10329 |ASM '{#DG_NAME}': Free size |oracle.asm_free_size["{#DG_NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Free size of ASM disk group. |0 |30d |0 | |31363 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31443 |18 | |10329 |ASM '{#DG_NAME}': Total size |oracle.asm_total_size["{#DG_NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total size of ASM disk group. |0 |30d |0 | |31363 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31444 |18 | |10329 |ASM '{#DG_NAME}': Free size |oracle.asm_used_pct["{#DG_NAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Usage percent of ASM disk group. |0 |30d |0 | |31363 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31445 |18 | |10329 |Oracle Database '{#DBNAME}': Force logging |oracle.db_force_logging["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |119 | | |0 | | | | |2 |NULL |Indicates whether the database is under force logging mode (YES) or not (NO) |0 |30d |0 | |31367 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31446 |18 | |10329 |Oracle Database '{#DBNAME}': Log mode |oracle.db_log_mode["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |120 | | |0 | | | | |2 |NULL |Archive log mode, 0 - 'NOARCHIVELOG', 1 - 'ARCHIVELOG', 2 - 'MANUAL' |0 |30d |0 | |31367 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31447 |18 | |10329 |Oracle Database '{#DBNAME}': Open status |oracle.db_open_mode["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |112 | | |0 | | | | |2 |NULL |1 - 'MOUNTED', 2 - 'READ WRITE', 3 - 'READ ONLY', 4 - 'READ ONLY WITH APPLY' (A physical standby database is open in real-time query mode) |0 |30d |0 | |31367 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31448 |18 | |10329 |Oracle Database '{#DBNAME}': Role |oracle.db_role["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |113 | | |0 | | | | |2 |NULL |Current role of the database, 1 - 'SNAPSHOT STANDBY', 2 - 'LOGICAL STANDBY', 3 - 'PHYSICAL STANDBY', 4 - 'PRIMARY ', 5 -'FAR SYNC' |0 |30d |0 | |31367 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31449 |18 | |10329 |Oracle Database '{#DBNAME}': Open status |oracle.pdb_open_mode["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |112 | | |0 | | | | |2 |NULL |1 - 'MOUNTED', 2 - 'READ WRITE', 3 - 'READ ONLY', 4 - 'READ ONLY WITH APPLY' (A physical standby database is open in real-time query mode) |0 |30d |0 | |31368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31450 |18 | |10329 |Oracle TBS '{#TABLESPACE}': Tablespace free, bytes |oracle.tbs_free_bytes["{#TABLESPACE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Free bytes of allocated space. |0 |30d |0 | |31362 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31451 |18 | |10329 |Oracle TBS '{#TABLESPACE}': Tablespace MAX size, bytes |oracle.tbs_max_bytes["{#TABLESPACE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum size of tablespace. |0 |30d |0 | |31362 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31452 |18 | |10329 |Oracle TBS '{#TABLESPACE}': Open status |oracle.tbs_status["{#TABLESPACE}"] |0 |7d |365d |0 |3 | | | | |NULL |117 | | |0 | | | | |2 |NULL |Tablespace status. 1 - 'ONLINE' 2 - 'OFFLINE' 3- 'READ ONLY' |0 |30d |0 | |31362 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31454 |18 | |10329 |Oracle TBS '{#TABLESPACE}': Tablespace usage percent |oracle.tbs_used_pct["{#TABLESPACE}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Allocated bytes/Max bytes*100 |0 |30d |0 | |31362 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |31457 |18 | |10291 |Network interfaces discovery |net.if.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of installed network interfaces. |0 |30d |1 | |31455 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |31471 |18 | |10291 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFNAME}"] |0 |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |31455 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31472 |18 | |10291 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status["{#IFNAME}"] |0 |7d |0 |0 |3 | | | | |NULL |81 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |31455 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31473 |18 | |10291 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFNAME}"] |0 |7d |0d |0 |3 | | | | |NULL |79 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |31455 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |31479 |18 | |10298 |Network interfaces discovery |net.if.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of installed network interfaces. |0 |30d |1 | |31477 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |31493 |18 | |10298 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFNAME}"] |0 |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |31477 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31494 |18 | |10298 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status["{#IFNAME}"] |0 |7d |0 |0 |3 | | | | |NULL |81 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |31477 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31495 |18 | |10298 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFNAME}"] |0 |7d |0d |0 |3 | | | | |NULL |79 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |31477 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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/current/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 |31646 |18 | |10333 |Oracle: Active user sessions |oracle.session_active_user |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active user sessions. |0 |30d |0 | |31643 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31647 |18 | |10333 |Oracle: Rows per sort |oracle.rows_per_sort |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The average number of rows per sort for all types of sorts performed. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31648 |18 | |10333 |Oracle: Active background sessions |oracle.session_active_background |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active background sessions. |0 |30d |0 | |31643 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31649 |18 | |10333 |Oracle: Sessions concurrency |oracle.session_concurrency_rate |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The percentage of concurrency. Concurrency is a DB behaviour when different transactions request to change the same resource - in case of modifying data transactions sequentially block temporarily the right to change data, the rest of the transactions are waiting for access. In the case when access for resource is locked for a long time, then the concurrency grows (like the transaction queue) and this often has an extremely negative impact on performance. A high contention value does not indicate the root cause of the problem, but is a signal to search for it. |0 |30d |0 | |31643 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31650 |18 | |10333 |Oracle: Session count |oracle.session_count |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Session count. |0 |30d |0 | |31643 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31651 |18 | |10333 |Oracle: Inactive user sessions |oracle.session_inactive_user |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of inactive user sessions. |0 |30d |0 | |31643 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31652 |18 | |10333 |Oracle: SQL service response time |oracle.service_response_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |SQL service response time in seconds. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31653 |18 | |10333 |Oracle: Sessions limit |oracle.session_limit |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |User and system sessions. |0 |30d |0 | |31638 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31654 |18 | |10333 |Oracle: Sessions lock rate |oracle.session_lock_rate |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The percentage of locked sessions. Locks are mechanisms that prevent destructive interaction between transactions accessing the same resource—either user objects such as tables and rows or system objects not visible to users, such as shared data structures in memory and data dictionary rows. |0 |30d |0 | |31643 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31655 |18 | |10333 |Oracle: Processes limit |oracle.processes_limit |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Max user processes. |0 |30d |0 | |31638 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31656 |18 | |10333 |Oracle: Active parallel sessions |oracle.active_parallel_sessions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active parallel sessions. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31657 |18 | |10333 |Oracle: Sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME}s |oracle.session_long_time_locked |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of the prolongely locked sessions. (You can change maximum session lock duration in seconds for query by {$ORACLE.SESSION.LOCK.MAX.TIME} macro. Default 600 sec) |0 |30d |0 | |31643 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31658 |18 | |10333 |Oracle: SGA, buffer cache |oracle.sga_buffer_cache |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The size of the cache of standard blocks. |0 |30d |0 | |31633 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31659 |18 | |10333 |Oracle: SGA, fixed |oracle.sga_fixed |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The fixed SGA is an internal housekeeping area. |0 |30d |0 | |31633 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31660 |18 | |10333 |Oracle: SGA, java pool |oracle.sga_java_pool |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory is allocated from the java pool. |0 |30d |0 | |31633 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31661 |18 | |10333 |Oracle: SGA, log buffer |oracle.sga_log_buffer |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes allocated for the redo log buffer. |0 |30d |0 | |31633 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31662 |18 | |10333 |Oracle: SGA, shared pool |oracle.sga_shared_pool |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory is allocated from the shared pool. |0 |30d |0 | |31633 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31663 |18 | |10333 |Oracle: Shared pool free % |oracle.shared_pool_free |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Shared pool free memory percent. Free/Total |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31664 |18 | |10333 |Oracle: Total sorts per user call |oracle.sorts_per_user_call |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total sorts per user call. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31665 |18 | |10333 |Oracle: Temp space used |oracle.temp_space_used |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Temp space used. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31666 |18 | |10333 |Oracle: PGA, Total allocated |oracle.total_pga_allocated |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current amount of PGA memory allocated by the instance. The Oracle Database attempts to keep this number below the value of the PGA_AGGREGATE_TARGET initialization parameter. However, it is possible for the PGA allocated to exceed that value by a small percentage and for a short period of time when the work area workload is increasing very rapidly or when PGA_AGGREGATE_TARGET is set to a small value. |0 |30d |0 | |31639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31667 |18 | |10333 |Oracle: PGA, Total freeable |oracle.total_pga_freeable |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes of PGA memory in all processes that could be freed back to the operating system. |0 |30d |0 | |31639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31668 |18 | |10333 |Oracle: PGA, Total inuse |oracle.total_pga_used |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates how much PGA memory is currently consumed by work areas. This number can be used to determine how much memory is consumed by other consumers of the PGA memory (for example, PL/SQL or Java). |0 |30d |0 | |31639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31669 |18 | |10333 |Oracle: Uptime |oracle.uptime |0 |7d |0d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Oracle instance uptime in seconds. |0 |30d |0 | |31637 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31670 |18 | |10333 |Oracle: User rollbacks per second |oracle.user_rollbacks_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times that users manually issue the ROLLBACK statement or an error occurred during a user's transactions. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31671 |18 | |10333 |Oracle: SGA, large pool |oracle.sga_large_pool |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory is allocated from the large pool. |0 |30d |0 | |31633 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31672 |18 | |10333 |Oracle: Physical reads bytes per second |oracle.physical_read_bytes_rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Read bytes per second. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31673 |18 | |10333 |Oracle: Physical writes per second |oracle.physical_writes_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Writes per second. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31674 |18 | |10333 |Oracle: FRA, Space reclaimable |oracle.fra_space_reclaimable |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total amount of disk space (in bytes) that can be created by deleting obsolete, redundant, and other low priority files from the fast recovery area. |0 |30d |0 | |31631 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31675 |18 | |10333 |Oracle: Average active sessions |oracle.active_sessions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The average active sessions at a point in time. It is the number of sessions that are either working or waiting. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31676 |18 | |10333 |Oracle: Archiver state |oracle.archiver_state |0 |7d |365d |0 |3 | | | | |NULL |116 | | |0 | | | | |0 |NULL |Automatic archiving status. |0 |30d |0 | |31637 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31677 |18 | |10333 |Oracle: Buffer cache hit ratio |oracle.buffer_cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Ratio of buffer cache hits. (LogRead - PhyRead)/LogRead |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31678 |18 | |10333 |Oracle: Global cache blocks corrupted |oracle.cache_blocks_corrupt |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of blocks that encountered a corruption or checksum failure during interconnect. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31679 |18 | |10333 |Oracle: Global cache blocks lost |oracle.cache_blocks_lost |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of global cache blocks lost |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31680 |18 | |10333 |Oracle: Cursor cache hit ratio |oracle.cursor_cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Ratio of cursor cache hits. CursorCacheHit/SoftParse |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31681 |18 | |10333 |Oracle: Database CPU time ratio |oracle.database_cpu_time_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Calculated by dividing the total CPU used by the database by the Oracle time model statistic DB time. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31682 |18 | |10333 |Oracle: Database wait time ratio |oracle.database_wait_time_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Wait time: the time that the server process spends waiting for available shared resources (to be released by other server processes) such as latches, locks, data buffers, and so on |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31683 |18 | |10333 |Oracle: Datafiles limit |oracle.db_files_limit |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Max allowable number of datafile. |0 |30d |0 | |31638 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31684 |18 | |10333 |Oracle: Disk sort per second |oracle.disk_sorts |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of sorts going to disk per second |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31685 |18 | |10333 |Oracle: Enqueue timeouts per second |oracle.enqueue_timeouts_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Enqueue timeouts per second. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31686 |18 | |10333 |Oracle: FRA, Number of files |oracle.fra_number_of_files |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of files in the fast recovery area |0 |30d |0 | |31631 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31687 |18 | |10333 |Oracle: FRA, Number of restore points |oracle.fra_restore_point |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |31631 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31688 |18 | |10333 |Oracle: FRA, Space limit |oracle.fra_space_limit |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of disk space (in bytes) that the database can use for the fast recovery area. |0 |30d |0 | |31631 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31689 |18 | |10333 |Oracle: FRA, Used space |oracle.fra_space_used |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of disk space (in bytes) used by fast recovery area files created in current and all previous fast recovery areas. |0 |30d |0 | |31631 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31690 |18 | |10333 |Oracle: Physical writes bytes per second |oracle.physical_write_bytes_rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Write bytes per second. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31691 |18 | |10333 |Oracle: FRA, Used space in % |oracle.fra_usable_pct |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |31631 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31692 |18 | |10333 |Oracle: GC CR block received per second |oracle.gc_cr_block_received_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |GC CR block received per second. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31693 |18 | |10333 |Oracle: Instance hostname |oracle.instance_hostname |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Name of the host machine. |0 |30d |0 | |31637 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31694 |18 | |10333 |Oracle: Instance name |oracle.instance_name |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Name of the instance. |0 |30d |0 | |31637 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31695 |18 | |10333 |Oracle: Instance status |oracle.instance_status |0 |7d |365d |0 |3 | | | | |NULL |114 | | |0 | | | | |0 |NULL |Status of the instance. |0 |30d |0 | |31637 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31696 |18 | |10333 |Oracle: Instance role |oracle.instance.role |0 |7d |365d |0 |3 | | | | |NULL |115 | | |0 | | | | |0 |NULL |Indicates whether the instance is an active instance or an inactive secondary instance. |0 |30d |0 | |31637 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31697 |18 | |10333 |Oracle: Library cache hit ratio |oracle.library_cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Ratio of library cache hits. Hits/Pins |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31698 |18 | |10333 |Oracle: Logons per second |oracle.logons_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logon attempts. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31699 |18 | |10333 |Oracle: Long table scans per second |oracle.long_table_scans_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of long table scans per second. A table is considered 'long' if the table is not cached and if its high-water mark is greater than 5 blocks. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31700 |18 | |10333 |Oracle: Memory sorts ratio |oracle.memory_sorts_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The percentage of sorts (from ORDER BY clauses or index building) that are done to disk vs in-memory. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31701 |18 | |10333 |Oracle: PGA, Global memory bound |oracle.pga_global_bound |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum size of a work area executed in automatic mode. |0 |30d |0 | |31639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31702 |18 | |10333 |Oracle: PGA, Aggregate target parameter |oracle.pga_target |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current value of the PGA_AGGREGATE_TARGET initialization parameter. If this parameter is not set, then its value is 0 and automatic management of PGA memory is disabled. |0 |30d |0 | |31639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31703 |18 | |10333 |Oracle: Active serial sessions |oracle.active_serial_sessions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active serial sessions. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31704 |18 | |10333 |Oracle: Physical reads per second |oracle.physical_reads_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Reads per second. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31705 |18 | |10333 |Oracle: Version |oracle.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Oracle Server version. |0 |30d |0 | |31637 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |31711 |18 | |10333 |Archivelog '{#DEST_NAME}': Error |oracle.archivelog_error["{#DEST_NAME}"] |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Displays the error text |0 |30d |0 | |31642 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31712 |18 | |10333 |Archivelog '{#DEST_NAME}': Last sequence |oracle.archivelog_log_sequence["{#DEST_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Identifies the sequence number of the last archived redo log to be archived |0 |30d |0 | |31642 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31713 |18 | |10333 |Archivelog '{#DEST_NAME}': Status |oracle.archivelog_log_status["{#DEST_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |118 | | |0 | | | | |2 |NULL |Identifies the current status of the destination: 1 - 'Valid', 2 - 'Dederred',3 - 'Error', 0 - 'Unknown' |0 |30d |0 | |31642 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31714 |18 | |10333 |Oracle Database '{#DBNAME}': Force logging |oracle.db_force_logging["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |119 | | |0 | | | | |2 |NULL |Indicates whether the database is under force logging mode (YES) or not (NO) |0 |30d |0 | |31644 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31715 |18 | |10333 |Oracle Database '{#DBNAME}': Log mode |oracle.db_log_mode["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |120 | | |0 | | | | |2 |NULL |Archive log mode, 0 - 'NOARCHIVELOG', 1 - 'ARCHIVELOG', 2 - 'MANUAL' |0 |30d |0 | |31644 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31716 |18 | |10333 |Oracle Database '{#DBNAME}': Open status |oracle.db_open_mode["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |112 | | |0 | | | | |2 |NULL |1 - 'MOUNTED', 2 - 'READ WRITE', 3 - 'READ ONLY', 4 - 'READ ONLY WITH APPLY' (A physical standby database is open in real-time query mode) |0 |30d |0 | |31644 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31717 |18 | |10333 |Oracle Database '{#DBNAME}': Role |oracle.db_role["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |113 | | |0 | | | | |2 |NULL |Current role of the database, 1 - 'SNAPSHOT STANDBY', 2 - 'LOGICAL STANDBY', 3 - 'PHYSICAL STANDBY', 4 - 'PRIMARY ', 5 -'FAR SYNC' |0 |30d |0 | |31644 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31718 |18 | |10333 |ASM '{#DG_NAME}': Free size |oracle.asm_free_size["{#DG_NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Free size of ASM disk group. |0 |30d |0 | |31635 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31719 |18 | |10333 |ASM '{#DG_NAME}': Total size |oracle.asm_total_size["{#DG_NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total size of ASM disk group. |0 |30d |0 | |31635 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31720 |18 | |10333 |ASM '{#DG_NAME}': Free size |oracle.asm_used_pct["{#DG_NAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Usage percent of ASM disk group. |0 |30d |0 | |31635 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31721 |18 | |10333 |Oracle Database '{#DBNAME}': Open status |oracle.pdb_open_mode["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |112 | | |0 | | | | |2 |NULL |1 - 'MOUNTED', 2 - 'READ WRITE', 3 - 'READ ONLY', 4 - 'READ ONLY WITH APPLY' (A physical standby database is open in real-time query mode) |0 |30d |0 | |31634 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31722 |18 | |10333 |Oracle TBS '{#TABLESPACE}': Tablespace allocated, bytes |oracle.tbs_alloc_bytes["{#TABLESPACE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Currently allocated bytes for tablespace (sum of the current size of datafiles). |0 |30d |0 | |31645 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31723 |18 | |10333 |Oracle TBS '{#TABLESPACE}': Tablespace free, bytes |oracle.tbs_free_bytes["{#TABLESPACE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Free bytes of allocated space. |0 |30d |0 | |31645 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31724 |18 | |10333 |Oracle TBS '{#TABLESPACE}': Tablespace MAX size, bytes |oracle.tbs_max_bytes["{#TABLESPACE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum size of tablespace. |0 |30d |0 | |31645 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31725 |18 | |10333 |Oracle TBS '{#TABLESPACE}': Open status |oracle.tbs_status["{#TABLESPACE}"] |0 |7d |365d |0 |3 | | | | |NULL |117 | | |0 | | | | |2 |NULL |Tablespace status. 1 - 'ONLINE' 2 - 'OFFLINE' 3- 'READ ONLY' |0 |30d |0 | |31645 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31726 |18 | |10333 |Oracle TBS '{#TABLESPACE}': Tablespace usage percent |oracle.tbs_used_pct["{#TABLESPACE}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Allocated bytes/Max bytes*100 |0 |30d |0 | |31645 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |31729 |18 | |10329 |Oracle: Sessions lock rate |oracle.session_lock_rate |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The percentage of locked sessions. Locks are mechanisms that prevent destructive interaction between transactions accessing the same resource—either user objects such as tables and rows or system objects not visible to users, such as shared data structures in memory and data dictionary rows. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31730 |18 | |10329 |Oracle: Physical writes per second |oracle.physical_writes_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Writes per second. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31731 |18 | |10329 |Oracle: Number of processes |oracle.processes_count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31732 |18 | |10329 |Oracle: Processes limit |oracle.processes_limit |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Max user processes. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31733 |18 | |10329 |Oracle: Redo logs available to switch |oracle.redo_logs_available |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of available for log switching inactive/unused REDO logs. |0 |30d |0 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31734 |18 | |10329 |Oracle: Rows per sort |oracle.rows_per_sort |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The average number of rows per sort for all types of sorts performed. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31735 |18 | |10329 |Oracle: SQL service response time |oracle.service_response_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |SQL service response time in seconds. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31736 |18 | |10329 |Oracle: Active background sessions |oracle.session_active_background |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active background sessions. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31737 |18 | |10329 |Oracle: Active user sessions |oracle.session_active_user |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active user sessions. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31738 |18 | |10329 |Oracle: Sessions concurrency |oracle.session_concurrency_rate |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The percentage of concurrency. Concurrency is a DB behaviour when different transactions request to change the same resource - in case of modifying data transactions sequentially block temporarily the right to change data, the rest of the transactions are waiting for access. In the case when access for resource is locked for a long time, then the concurrency grows (like the transaction queue) and this often has an extremely negative impact on performance. A high contention value does not indicate the root cause of the problem, but is a signal to search for it. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31739 |18 | |10329 |Oracle: Session count |oracle.session_count |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Session count. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31740 |18 | |10329 |Oracle: Inactive user sessions |oracle.session_inactive_user |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of inactive user sessions. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31741 |18 | |10329 |Oracle: Sessions limit |oracle.session_limit |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |User and system sessions. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31742 |18 | |10329 |Oracle: Sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME}s |oracle.session_long_time_locked |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of the prolongely locked sessions. (You can change maximum session lock duration in seconds for query by {$ORACLE.SESSION.LOCK.MAX.TIME} macro. Default 600 sec) |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31743 |18 | |10329 |Oracle: User rollbacks per second |oracle.user_rollbacks_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times that users manually issue the ROLLBACK statement or an error occurred during a user's transactions. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31744 |18 | |10329 |Oracle: SGA, buffer cache |oracle.sga_buffer_cache |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The size of the cache of standard blocks. |0 |30d |0 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31745 |18 | |10329 |Oracle: Physical writes bytes per second |oracle.physical_write_bytes_rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Write bytes per second. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31746 |18 | |10329 |Oracle: SGA, java pool |oracle.sga_java_pool |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory is allocated from the java pool. |0 |30d |0 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31747 |18 | |10329 |Oracle: SGA, large pool |oracle.sga_large_pool |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory is allocated from the large pool. |0 |30d |0 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31748 |18 | |10329 |Oracle: SGA, log buffer |oracle.sga_log_buffer |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes allocated for the redo log buffer. |0 |30d |0 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31749 |18 | |10329 |Oracle: SGA, shared pool |oracle.sga_shared_pool |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory is allocated from the shared pool. |0 |30d |0 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31750 |18 | |10329 |Oracle: Shared pool free % |oracle.shared_pool_free |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Shared pool free memory percent. Free/Total |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31751 |18 | |10329 |Oracle: Total sorts per user call |oracle.sorts_per_user_call |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total sorts per user call. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31752 |18 | |10329 |Oracle: Temp space used |oracle.temp_space_used |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Temp space used. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31753 |18 | |10329 |Oracle: PGA, Total allocated |oracle.total_pga_allocated |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current amount of PGA memory allocated by the instance. The Oracle Database attempts to keep this number below the value of the PGA_AGGREGATE_TARGET initialization parameter. However, it is possible for the PGA allocated to exceed that value by a small percentage and for a short period of time when the work area workload is increasing very rapidly or when PGA_AGGREGATE_TARGET is set to a small value. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31754 |18 | |10329 |Oracle: PGA, Total freeable |oracle.total_pga_freeable |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes of PGA memory in all processes that could be freed back to the operating system. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31755 |18 | |10329 |Oracle: PGA, Total inuse |oracle.total_pga_used |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates how much PGA memory is currently consumed by work areas. This number can be used to determine how much memory is consumed by other consumers of the PGA memory (for example, PL/SQL or Java). |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31756 |18 | |10329 |Oracle: User '{$ORACLE.USER}' expire password |oracle.user_expire_password |0 |7d |365d |0 |0 | |days | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of days before zabbix account password expired. |0 |30d |0 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31757 |18 | |10329 |Oracle: SGA, fixed |oracle.sga_fixed |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The fixed SGA is an internal housekeeping area. |0 |30d |0 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31758 |18 | |10329 |Oracle: Physical reads bytes per second |oracle.physical_read_bytes_rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Read bytes per second. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31759 |18 | |10329 |Oracle: Physical reads per second |oracle.physical_reads_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Reads per second. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31760 |18 | |10329 |Oracle: Enqueue timeouts per second |oracle.enqueue_timeouts_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Enqueue timeouts per second. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31761 |18 | |10329 |Oracle: Active parallel sessions |oracle.active_parallel_sessions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active parallel sessions. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31762 |18 | |10329 |Oracle: Active serial sessions |oracle.active_serial_sessions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active serial sessions. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31763 |18 | |10329 |Oracle: Average active sessions |oracle.active_sessions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The average active sessions at a point in time. It is the number of sessions that are either working or waiting. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31764 |18 | |10329 |Oracle: Buffer cache hit ratio |oracle.buffer_cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Ratio of buffer cache hits. (LogRead - PhyRead)/LogRead |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31765 |18 | |10329 |Oracle: Global cache blocks corrupted |oracle.cache_blocks_corrupt |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of blocks that encountered a corruption or checksum failure during interconnect. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31766 |18 | |10329 |Oracle: Global cache blocks lost |oracle.cache_blocks_lost |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of global cache blocks lost |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31767 |18 | |10329 |Oracle: Cursor cache hit ratio |oracle.cursor_cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Ratio of cursor cache hits. CursorCacheHit/SoftParse |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31768 |18 | |10329 |Oracle: Database CPU time ratio |oracle.database_cpu_time_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Calculated by dividing the total CPU used by the database by the Oracle time model statistic DB time. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31769 |18 | |10329 |Oracle: Database wait time ratio |oracle.database_wait_time_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Wait time: the time that the server process spends waiting for available shared resources (to be released by other server processes) such as latches, locks, data buffers, and so on |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31770 |18 | |10329 |Oracle: Datafiles count |oracle.db_files_count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Current number of datafile. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31771 |18 | |10329 |Oracle: Datafiles limit |oracle.db_files_limit |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Max allowable number of datafile. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31772 |18 | |10329 |Oracle: Disk sort per second |oracle.disk_sorts |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of sorts going to disk per second |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31773 |18 | |10329 |Oracle: FRA, Number of files |oracle.fra_number_of_files |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of files in the fast recovery area |0 |30d |0 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31774 |18 | |10329 |Oracle: PGA, Aggregate target parameter |oracle.pga_target |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current value of the PGA_AGGREGATE_TARGET initialization parameter. If this parameter is not set, then its value is 0 and automatic management of PGA memory is disabled. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31775 |18 | |10329 |Oracle: FRA, Number of restore points |oracle.fra_restore_point |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31776 |18 | |10329 |Oracle: FRA, Space limit |oracle.fra_space_limit |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of disk space (in bytes) that the database can use for the fast recovery area. |0 |30d |0 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31777 |18 | |10329 |Oracle: FRA, Space reclaimable |oracle.fra_space_reclaimable |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total amount of disk space (in bytes) that can be created by deleting obsolete, redundant, and other low priority files from the fast recovery area. |0 |30d |0 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31778 |18 | |10329 |Oracle: FRA, Used space |oracle.fra_space_used |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of disk space (in bytes) used by fast recovery area files created in current and all previous fast recovery areas. |0 |30d |0 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31779 |18 | |10329 |Oracle: FRA, Used space in % |oracle.fra_usable_pct |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31780 |18 | |10329 |Oracle: GC CR block received per second |oracle.gc_cr_block_received_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |GC CR block received per second. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31781 |18 | |10329 |Oracle: Library cache hit ratio |oracle.library_cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Ratio of library cache hits. Hits/Pins |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31782 |18 | |10329 |Oracle: Logons per second |oracle.logons_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logon attempts. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31783 |18 | |10329 |Oracle: Long table scans per second |oracle.long_table_scans_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of long table scans per second. A table is considered 'long' if the table is not cached and if its high-water mark is greater than 5 blocks. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31784 |18 | |10329 |Oracle: PGA, Global memory bound |oracle.pga_global_bound |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum size of a work area executed in automatic mode. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31785 |18 | |10329 |Oracle: Memory sorts ratio |oracle.memory_sorts_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The percentage of sorts (from ORDER BY clauses or index building) that are done to disk vs in-memory. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31786 |18 | |10329 |Oracle TBS '{#TABLESPACE}': Tablespace allocated, bytes |oracle.tbs_alloc_bytes["{#TABLESPACE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Currently allocated bytes for tablespace (sum of the current size of datafiles). |0 |30d |0 | |31362 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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). Might be missing in entry models (RB750, RB450G..)&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 |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 |10020 |0 | |10001 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |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 |10059 |0 | |10001 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29834 |20 |1.3.6.1.2.1.1.3.0 |10237 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29835 |20 |1.3.6.1.2.1.1.6.0 |10237 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29836 |20 |1.3.6.1.2.1.1.4.0 |10237 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29837 |20 |1.3.6.1.2.1.1.2.0 |10237 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29838 |20 |1.3.6.1.2.1.1.1.0 |10237 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10073 |5 | |10084 |Number of processed numeric (float) values per second |zabbix[wcache,values,float] |1m |1w |365d |0 |0 | | | | |10061 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10074 |5 | |10084 |Number of processed character values per second |zabbix[wcache,values,str] |1m |1w |365d |0 |0 | | | | |10062 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10075 |5 | |10084 |Number of processed log values per second |zabbix[wcache,values,log] |1m |1w |365d |0 |0 | | | | |10063 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10076 |5 | |10084 |Number of processed numeric (unsigned) values per second |zabbix[wcache,values,uint] |1m |1w |365d |0 |0 | | | | |10064 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10077 |5 | |10084 |Number of processed text values per second |zabbix[wcache,values,text] |1m |1w |365d |0 |0 | | | | |10065 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10078 |5 | |10084 |Number of processed not supported values per second |zabbix[wcache,values,not supported] |1m |1w |365d |0 |0 | | | | |10066 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22833 |0 | |10074 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |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 |22834 |0 | |10074 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22873 |0 | |10075 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |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 |22874 |0 | |10075 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22913 |0 | |10076 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |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 |22914 |0 | |10076 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22953 |0 | |10077 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |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 |22954 |0 | |10077 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22993 |0 | |10078 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |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 |22994 |0 | |10078 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23033 |0 | |10079 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |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 |23034 |0 | |10079 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23160 |0 | |10081 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |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 |23161 |0 | |10081 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23252 |5 | |10084 |Utilization of alerter internal processes, in % |zabbix[process,alerter,avg,busy] |1m |1w |365d |0 |0 | |% | | |22424 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23253 |5 | |10084 |Utilization of configuration syncer internal processes, in % |zabbix[process,configuration syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |22412 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23255 |5 | |10084 |Utilization of discoverer data collector processes, in % |zabbix[process,discoverer,avg,busy] |1m |1w |365d |0 |0 | |% | | |22430 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23256 |5 | |10084 |Utilization of escalator internal processes, in % |zabbix[process,escalator,avg,busy] |1m |1w |365d |0 |0 | |% | | |22422 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23257 |5 | |10084 |Utilization of history syncer internal processes, in % |zabbix[process,history syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |22406 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23258 |5 | |10084 |Utilization of housekeeper internal processes, in % |zabbix[process,housekeeper,avg,busy] |1m |1w |365d |0 |0 | |% | | |22408 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23259 |5 | |10084 |Utilization of http poller data collector processes, in % |zabbix[process,http poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |22402 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23260 |5 | |10084 |Utilization of icmp pinger data collector processes, in % |zabbix[process,icmp pinger,avg,busy] |1m |1w |365d |0 |0 | |% | | |22418 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23261 |5 | |10084 |Utilization of ipmi poller data collector processes, in % |zabbix[process,ipmi poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |22416 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23262 |5 | |10084 |Utilization of java poller data collector processes, in % |zabbix[process,java poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |22689 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23264 |5 | |10084 |Utilization of poller data collector processes, in % |zabbix[process,poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |22399 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23265 |5 | |10084 |Utilization of proxy poller data collector processes, in % |zabbix[process,proxy poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |22420 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23266 |5 | |10084 |Utilization of self-monitoring internal processes, in % |zabbix[process,self-monitoring,avg,busy] |1m |1w |365d |0 |0 | |% | | |22414 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23267 |5 | |10084 |Utilization of snmp trapper data collector processes, in % |zabbix[process,snmp trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |23171 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23268 |5 | |10084 |Utilization of timer internal processes, in % |zabbix[process,timer,avg,busy] |1m |1w |365d |0 |0 | |% | | |22426 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23269 |5 | |10084 |Utilization of trapper data collector processes, in % |zabbix[process,trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |22404 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23270 |5 | |10084 |Utilization of unreachable poller data collector processes, in % |zabbix[process,unreachable poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |22400 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23271 |5 | |10084 |Zabbix queue over 10 minutes |zabbix[queue,10m] |10m |1w |365d |0 |3 | | | | |22219 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23272 |5 | |10084 |Zabbix queue |zabbix[queue] |1m |1w |365d |0 |3 | | | | |23251 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23273 |5 | |10084 |Zabbix configuration cache, % used |zabbix[rcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |22189 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23274 |5 | |10084 |Zabbix history write cache, % used |zabbix[wcache,history,pused] |1m |1w |365d |0 |0 | |% | | |22183 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23275 |5 | |10084 |Zabbix history index cache, % used |zabbix[wcache,index,pused] |1m |1w |365d |0 |0 | |% | | |22396 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23276 |5 | |10084 |Zabbix trend write cache, % used |zabbix[wcache,trend,pused] |1m |1w |365d |0 |0 | |% | | |22185 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23277 |5 | |10084 |Number of processed values per second |zabbix[wcache,values] |1m |1w |365d |0 |0 | | | | |22187 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23287 |0 | |10084 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |10020 |10 | | |0 | | | | |0 |1 |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 |23288 |0 | |10084 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |10059 |NULL | | |0 | | | | |0 |1 | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23319 |0 | |10001 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23320 |0 | |10074 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23321 |0 | |10075 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23322 |0 | |10076 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23323 |0 | |10077 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23324 |0 | |10078 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23325 |0 | |10079 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23326 |0 | |10081 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23327 |0 | |10084 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23319 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23328 |5 | |10084 |Utilization of vmware data collector processes, in % |zabbix[process,vmware collector,avg,busy] |1m |1w |365d |0 |0 | |% | | |22401 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23620 |5 | |10084 |Zabbix value cache, % used |zabbix[vcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |22191 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23625 |5 | |10084 |Zabbix value cache hits |zabbix[vcache,cache,hits] |1m |1w |365d |0 |0 | |vps | | |22196 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23628 |5 | |10084 |Zabbix value cache misses |zabbix[vcache,cache,misses] |1m |1w |365d |0 |0 | |vps | | |22199 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23635 |5 | |10084 |Zabbix vmware cache, % used |zabbix[vmware,buffer,pused] |1m |1w |365d |0 |0 | |% | | |23634 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23662 |5 | |10084 |Zabbix value cache operating mode |zabbix[vcache,cache,mode] |1m |1w |365d |0 |3 | | | | |23661 |15 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23664 |5 | |10084 |Utilization of task manager internal processes, in % |zabbix[process,task manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |23663 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25367 |5 | |10084 |Utilization of ipmi manager internal processes, in % |zabbix[process,ipmi manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |25366 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25371 |5 | |10084 |Utilization of alert manager internal processes, in % |zabbix[process,alert manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |25370 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25667 |5 | |10084 |Utilization of preprocessing manager internal processes, in % |zabbix[process,preprocessing manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |25665 |NULL | | |0 | | | | |0 |NULL | |0 |30 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25668 |5 | |10084 |Utilization of preprocessing worker internal processes, in % |zabbix[process,preprocessing worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |25666 |NULL | | |0 | | | | |0 |NULL | |0 |30 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27149 |3 | |10204 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27067 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27150 |3 | |10204 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27066 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27151 |3 | |10204 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27065 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27180 |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]|10207 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27181 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27182 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27183 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27184 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27185 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27186 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27187 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27188 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27189 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27190 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10207 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27191 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |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 |27192 |3 | |10207 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27193 |3 | |10207 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27194 |3 | |10207 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27195 |17 | |10207 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27199 |20 |1.3.6.1.2.1.1.5.0 |10207 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27202 |5 | |10207 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27215 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10208 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27216 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27217 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27218 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27219 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27220 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27221 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27222 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27223 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |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 |27224 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27225 |3 | |10208 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27226 |3 | |10208 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27227 |3 | |10208 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27228 |17 | |10208 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27232 |20 |1.3.6.1.2.1.1.5.0 |10208 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27235 |5 | |10208 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27251 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10210 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27252 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27253 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27254 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27255 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27256 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27257 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27258 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27259 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |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 |27260 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27261 |3 | |10210 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27262 |3 | |10210 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27263 |3 | |10210 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27264 |17 | |10210 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27268 |20 |1.3.6.1.2.1.1.5.0 |10210 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27271 |5 | |10210 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27272 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10211 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27273 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27274 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27275 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27276 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27277 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27278 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27279 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27280 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |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 |27281 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27282 |3 | |10211 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27283 |3 | |10211 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27284 |3 | |10211 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27285 |17 | |10211 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27289 |20 |1.3.6.1.2.1.1.5.0 |10211 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27292 |5 | |10211 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27299 |20 |1.3.6.1.4.1.1991.1.1.2.1.52.0 |10210 |CPU utilization |system.cpu.util[snAgGblCpuUtil1MinAvg.0] |1m |7d |365d |0 |0 | |% | | |27294 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The statistics collection of 1 minute CPU utilization. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27301 |20 |1.3.6.1.4.1.1991.1.1.2.1.52.0 |10211 |CPU utilization |system.cpu.util[snAgGblCpuUtil1MinAvg.0] |1m |7d |365d |0 |0 | |% | | |27294 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The statistics collection of 1 minute CPU utilization. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27321 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10218 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27322 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27323 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27324 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27325 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27326 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27327 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27328 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27329 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27330 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27331 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10218 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27332 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |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 |27333 |3 | |10218 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27334 |3 | |10218 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27335 |3 | |10218 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27336 |17 | |10218 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27340 |20 |1.3.6.1.2.1.1.5.0 |10218 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27343 |5 | |10218 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27365 |3 | |10220 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27366 |3 | |10220 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27367 |3 | |10220 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27368 |17 | |10220 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27372 |20 |1.3.6.1.2.1.1.5.0 |10220 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27375 |5 | |10220 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27380 |20 |1.3.6.1.4.1.9.2.1.58 |10220 |CPU utilization |system.cpu.util[avgBusy5] |5m |7d |365d |0 |0 | |% | | |27376 |NULL | | |0 | | | | |0 |NULL |MIB: OLD-CISCO-CPU-MIB&eol;5 minute exponentially-decayed moving average of the CPU busy percentage.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27382 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10220 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |27378 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27383 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10220 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |27379 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27385 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10218 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |27378 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27386 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10218 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |27379 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27397 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10218 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |27390 |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 |27398 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10218 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |27391 |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 |27399 |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] |10218 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |27393 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27400 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10218 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |27394 |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 |27401 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.5.1.2] |10218 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |27395 |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 |27402 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.4.1.2] |10218 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |27396 |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 |27409 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10220 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |27390 |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 |27410 |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] |10220 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |27393 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27411 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10220 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |27394 |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 |27412 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.5.1.2] |10220 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |27395 |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 |27413 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.4.1.2] |10220 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |27396 |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 |27425 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10218 |{#SNMPVALUE}: Free memory |vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |27415 |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 |27426 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10218 |{#SNMPVALUE}: Used memory |vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |27416 |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 |27427 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10218 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[cpmCPUTotal5minRev.{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |27417 |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 |27428 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10218 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |27419 |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27429 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10218 |{#SNMPVALUE}: Temperature status |sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27420 |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 |27430 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10218 |{#SNMPVALUE}: Temperature |sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |27421 |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 |27431 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10218 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27422 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27432 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10218 |{#SENSOR_INFO}: Fan status |sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27423 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27443 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10220 |{#SNMPVALUE}: Free memory |vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |27415 |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 |27444 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10220 |{#SNMPVALUE}: Used memory |vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |27416 |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 |27445 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10220 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |27419 |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27446 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10220 |{#SNMPVALUE}: Temperature status |sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27420 |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 |27447 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10220 |{#SNMPVALUE}: Temperature |sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |27421 |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 |27448 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10220 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27422 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27449 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10220 |{#SENSOR_INFO}: Fan status |sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27423 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27450 |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]|10221 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27451 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27452 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27453 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27454 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27455 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27456 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27457 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27458 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27459 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27460 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10221 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27461 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |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 |27462 |3 | |10221 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27463 |3 | |10221 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27464 |3 | |10221 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27465 |17 | |10221 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27469 |20 |1.3.6.1.2.1.1.5.0 |10221 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27472 |5 | |10221 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27486 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10222 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27487 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27488 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27489 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27490 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27491 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27492 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27493 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27494 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |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 |27495 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27496 |3 | |10222 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27497 |3 | |10222 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27498 |3 | |10222 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27499 |17 | |10222 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27503 |20 |1.3.6.1.2.1.1.5.0 |10222 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27506 |5 | |10222 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27520 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10223 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27521 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27522 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27523 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27524 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27525 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27526 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27527 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27528 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27529 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27530 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10223 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27531 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |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 |27532 |3 | |10223 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27533 |3 | |10223 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27534 |3 | |10223 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27535 |17 | |10223 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27539 |20 |1.3.6.1.2.1.1.5.0 |10223 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27542 |5 | |10223 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27556 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10224 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27557 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27558 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27559 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27560 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27561 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27562 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27563 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27564 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27565 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27566 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10224 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27567 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |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 |27568 |3 | |10224 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27569 |3 | |10224 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27570 |3 | |10224 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27571 |17 | |10224 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27575 |20 |1.3.6.1.2.1.1.5.0 |10224 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27578 |5 | |10224 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27619 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10226 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27078 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27620 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27079 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27621 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27086 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27622 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27084 |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 |27623 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27082 |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 |27624 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27083 |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 |27625 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27085 |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 |27626 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27081 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27627 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27087 |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 |27628 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27080 |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 |27629 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10226 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27630 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10226 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |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 |27631 |3 | |10226 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27632 |3 | |10226 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27633 |3 | |10226 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27634 |17 | |10226 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27638 |20 |1.3.6.1.2.1.1.5.0 |10226 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27641 |5 | |10226 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27642 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10227 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27643 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27644 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27645 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27646 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27647 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27648 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27649 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27650 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27651 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27652 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10227 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27653 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |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 |27654 |3 | |10227 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27655 |3 | |10227 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27656 |3 | |10227 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27657 |17 | |10227 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27661 |20 |1.3.6.1.2.1.1.5.0 |10227 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27664 |5 | |10227 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27722 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10229 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27723 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27724 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27725 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27726 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27727 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27728 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27729 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27730 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27731 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27732 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10229 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27733 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |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 |27734 |3 | |10229 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27735 |3 | |10229 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27736 |3 | |10229 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27737 |17 | |10229 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27741 |20 |1.3.6.1.2.1.1.5.0 |10229 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27744 |5 | |10229 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27756 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10230 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27757 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27758 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27759 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27760 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27761 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27762 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27763 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27764 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |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 |27765 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27766 |3 | |10230 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27767 |3 | |10230 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27768 |3 | |10230 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27769 |17 | |10230 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27773 |20 |1.3.6.1.2.1.1.5.0 |10230 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27776 |5 | |10230 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27788 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10231 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27789 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27790 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27791 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27792 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27793 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27794 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27795 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27796 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27797 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27798 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10231 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27799 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |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 |27800 |3 | |10231 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27801 |3 | |10231 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27802 |3 | |10231 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27803 |17 | |10231 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27807 |20 |1.3.6.1.2.1.1.5.0 |10231 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27810 |5 | |10231 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27872 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10233 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27873 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27874 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27875 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27876 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27877 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27878 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27879 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27880 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |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 |27881 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27882 |3 | |10233 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27883 |3 | |10233 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27884 |3 | |10233 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27885 |17 | |10233 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27889 |20 |1.3.6.1.2.1.1.5.0 |10233 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27892 |5 | |10233 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27909 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10234 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27910 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27911 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27912 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27913 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27914 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27915 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27916 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27917 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |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 |27918 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27919 |3 | |10234 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27920 |3 | |10234 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27921 |3 | |10234 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27922 |17 | |10234 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27926 |20 |1.3.6.1.2.1.1.5.0 |10234 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27929 |5 | |10234 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27944 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10235 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27945 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27946 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27947 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27948 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27949 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27950 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27951 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27952 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27953 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |27954 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10235 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27955 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |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 |27956 |3 | |10235 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27957 |3 | |10235 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27958 |3 | |10235 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27959 |17 | |10235 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27963 |20 |1.3.6.1.2.1.1.5.0 |10235 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27966 |5 | |10235 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27976 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10236 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27078 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27977 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27079 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27978 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27086 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27979 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27084 |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 |27980 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27082 |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 |27981 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27083 |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 |27982 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27085 |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 |27983 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27081 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27984 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27087 |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 |27985 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27080 |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 |27986 |3 | |10236 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27987 |3 | |10236 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27988 |3 | |10236 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27989 |17 | |10236 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27993 |20 |1.3.6.1.2.1.1.5.0 |10236 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27996 |5 | |10236 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28005 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10237 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27078 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28006 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27079 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28007 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27086 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28008 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27084 |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 |28009 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27082 |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 |28010 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27083 |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 |28011 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27085 |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 |28012 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27081 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28013 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27087 |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 |28014 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27080 |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 |28015 |3 | |10237 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28016 |3 | |10237 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28017 |3 | |10237 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28018 |17 | |10237 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28022 |20 |1.3.6.1.2.1.1.5.0 |10237 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28025 |5 | |10237 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28118 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10250 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28119 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28120 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28121 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28122 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28123 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28124 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28125 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28126 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28127 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |28128 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10250 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28129 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |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 |28130 |3 | |10250 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28131 |3 | |10250 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28132 |3 | |10250 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28133 |17 | |10250 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28137 |20 |1.3.6.1.2.1.1.5.0 |10250 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28140 |5 | |10250 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28175 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10251 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28176 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28177 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28178 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28179 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28180 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28181 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28182 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28183 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28184 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28185 |3 | |10251 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28186 |3 | |10251 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28187 |3 | |10251 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28188 |17 | |10251 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28192 |20 |1.3.6.1.2.1.1.5.0 |10251 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28195 |5 | |10251 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28207 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10253 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |27393 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28208 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10253 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |27419 |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28209 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10253 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |27379 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28210 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10253 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |27378 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28212 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.4.1.2] |10253 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |27396 |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 |28213 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.5.1.2] |10253 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |27395 |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 |28214 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10253 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |27394 |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 |28215 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10253 |{#SENSOR_INFO}: Fan status |sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27423 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28216 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10253 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27422 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28217 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10253 |{#SNMPVALUE}: Temperature status |sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27420 |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 |28218 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10253 |{#SNMPVALUE}: Temperature |sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |27421 |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 |28219 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10253 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |27390 |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 |28220 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10253 |{#SNMPVALUE}: Free memory |vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |27415 |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 |28222 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10253 |{#SNMPVALUE}: Used memory |vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |27416 |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 |28223 |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]|10253 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28224 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28225 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28226 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28227 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28228 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28229 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28230 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28231 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |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 |28232 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |28233 |3 | |10253 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28234 |3 | |10253 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28235 |3 | |10253 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28236 |17 | |10253 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28240 |20 |1.3.6.1.2.1.1.5.0 |10253 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28243 |5 | |10253 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28245 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10253 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |28244 |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&eol;indexed with cpmCPUTotalIndex .&eol;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&eol;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&eol;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28247 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.5.{#SNMPINDEX} |10253 |{#SNMPVALUE}: CPU utilization |system.cpu.util[cpmCPUTotal5min.{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |28246 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;The overall CPU busy percentage in the last 5 minute&eol;period. This object deprecates the avgBusy5 object from&eol;the OLD-CISCO-SYSTEM-MIB. This object is deprecated&eol;by cpmCPUTotal5minRev which has the changed range&eol;of value (0..100)&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28249 |5 | |10084 |Zabbix preprocessing queue |zabbix[preprocessing_queue] |1m |1w |365d |0 |3 | | | | |28248 |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28280 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10254 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28281 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |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 |28282 |3 | |10254 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28283 |3 | |10254 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28284 |3 | |10254 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28285 |17 | |10254 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28289 |20 |1.3.6.1.2.1.1.5.0 |10254 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28292 |5 | |10254 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28293 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10254 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28294 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28295 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28296 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28297 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28298 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28299 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28300 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28301 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |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 |28302 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |28330 |3 | |10255 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28331 |3 | |10255 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28332 |3 | |10255 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28333 |17 | |10255 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28337 |20 |1.3.6.1.2.1.1.5.0 |10255 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28340 |5 | |10255 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28377 |3 | |10256 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28378 |3 | |10256 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28379 |3 | |10256 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28380 |17 | |10256 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28384 |20 |1.3.6.1.2.1.1.5.0 |10256 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28387 |5 | |10256 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28454 |3 | |10258 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28455 |3 | |10258 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28456 |3 | |10258 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28457 |17 | |10258 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28461 |20 |1.3.6.1.2.1.1.5.0 |10258 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28464 |5 | |10258 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28482 |3 | |10259 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28483 |3 | |10259 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28484 |3 | |10259 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28485 |17 | |10259 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28489 |20 |1.3.6.1.2.1.1.5.0 |10259 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28492 |5 | |10259 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28534 |5 | |10084 |Zabbix LLD queue |zabbix[lld_queue] |1m |1w |365d |0 |3 | | | | |28533 |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 |28536 |5 | |10084 |Utilization of LLD manager internal processes, in % |zabbix[process,lld manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |28535 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28538 |5 | |10084 |Utilization of LLD worker internal processes, in % |zabbix[process,lld worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |28537 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28955 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10248 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28956 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |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 |28957 |3 | |10248 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28958 |3 | |10248 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28959 |3 | |10248 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28960 |17 | |10248 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28964 |20 |1.3.6.1.2.1.1.5.0 |10248 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28967 |5 | |10248 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28968 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10248 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28969 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28970 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28971 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28972 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28973 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28974 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28975 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28976 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |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 |28977 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |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 |28993 |15 | |10248 |Memory utilization |vm.memory.util[snmp] |1m |7d |365d |0 |0 | |% | | |28978 |NULL |(last("vm.memory.total[memTotalReal.0]")-(last("vm.memory.free[memAvailReal.0]")+last("vm.memory.buffers[memBuffer.0]")+last("vm.memory.cached[memCached.0]")))/last("vm.memory.total[memTotalReal.0]")*100 | |0 | | | | |0 |NULL |Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28994 |20 |1.3.6.1.4.1.2021.4.6.0 |10248 |Free memory |vm.memory.free[memAvailReal.0] |1m |7d |365d |0 |3 | |B | | |28979 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28995 |20 |1.3.6.1.4.1.2021.4.14.0 |10248 |Memory (buffers) |vm.memory.buffers[memBuffer.0] |1m |7d |365d |0 |3 | |B | | |28980 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Memory used by kernel buffers (Buffers in /proc/meminfo) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28996 |20 |1.3.6.1.4.1.2021.4.15.0 |10248 |Memory (cached) |vm.memory.cached[memCached.0] |1m |7d |365d |0 |3 | |B | | |28981 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Memory used by the page cache and slabs (Cached and Slab in /proc/meminfo) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28997 |20 |1.3.6.1.4.1.2021.4.5.0 |10248 |Total memory |vm.memory.total[memTotalReal.0] |1m |7d |365d |0 |3 | |B | | |28982 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28998 |15 | |10248 |Available memory |vm.memory.available[snmp] |1m |7d |365d |0 |3 | |B | | |28983 |NULL |last("vm.memory.free[memAvailReal.0]")+last("vm.memory.buffers[memBuffer.0]")+last("vm.memory.cached[memCached.0]") | |0 | | | | |0 |NULL |Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28999 |20 |1.3.6.1.4.1.2021.4.3.0 |10248 |Total swap space |system.swap.total[memTotalSwap.0] |1m |7d |365d |0 |3 | |B | | |28984 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The total amount of swap space configured for this host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29000 |20 |1.3.6.1.4.1.2021.4.4.0 |10248 |Free swap space |system.swap.free[memAvailSwap.0] |1m |7d |365d |0 |3 | |B | | |28985 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of swap space currently unused or available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29001 |15 | |10248 |Free swap space in % |system.swap.pfree[snmp] |1m |7d |365d |0 |0 | |% | | |28986 |NULL |last("system.swap.free[memAvailSwap.0]")/last("system.swap.total[memTotalSwap.0]")*100 | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29002 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-1"] |10248 |Load average (1m avg) |system.cpu.load.avg1[laLoad.1] |1m |7d |365d |0 |0 | | | | |28987 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29003 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-5"] |10248 |Load average (5m avg) |system.cpu.load.avg5[laLoad.2] |1m |7d |365d |0 |0 | | | | |28988 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29004 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-15"] |10248 |Load average (15m avg) |system.cpu.load.avg15[laLoad.3] |1m |7d |365d |0 |0 | | | | |28989 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29005 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1] |10248 |Number of CPUs |system.cpu.num[snmp] |1m |7d |365d |0 |3 | | | | |28990 |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 |29006 |20 |1.3.6.1.4.1.2021.11.59.0 |10248 |Interrupts per second |system.cpu.intr[ssRawInterrupts.0] |1m |7d |365d |0 |0 | | | | |28991 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29007 |20 |1.3.6.1.4.1.2021.11.60.0 |10248 |Context switches per second |system.cpu.switches[ssRawContexts.0] |1m |7d |365d |0 |0 | | | | |28992 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29011 |20 |discovery[{#DEVNAME},1.3.6.1.4.1.2021.13.15.1.1.2] |10248 |Block devices discovery |vfs.dev.discovery[snmp] |1h |90d |0 |0 |4 | | | | |29008 |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 |29012 |18 | |10248 |CPU discovery |cpu.discovery[snmp] |0 |90d |0 |0 |4 | | | | |29009 |NULL | | |0 | | | | |1 |NULL |This discovery will create set of per core CPU metrics from UCD-SNMP-MIB, using {#CPU.COUNT} in preprocessing. That's the only reason why LLD is used. |0 |30d |0 | |29005 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29013 |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] |10248 |Mounted filesystem discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |29010 |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 |29031 |20 |1.3.6.1.4.1.2021.13.15.1.1.5.{#SNMPINDEX} |10248 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[diskIOReads.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |!r/s | | |29014 |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 |29032 |20 |1.3.6.1.4.1.2021.13.15.1.1.6.{#SNMPINDEX} |10248 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[diskIOWrites.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |!w/s | | |29015 |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 |29033 |20 |1.3.6.1.4.1.2021.13.15.1.1.9.{#SNMPINDEX} |10248 |{#DEVNAME}: Disk utilization |vfs.dev.util[diskIOLA1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29016 |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 |29034 |20 |1.3.6.1.4.1.2021.11.53.0 |10248 |CPU idle time |system.cpu.idle[ssCpuRawIdle.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29017 |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 |29035 |20 |1.3.6.1.4.1.2021.11.52.0 |10248 |CPU system time |system.cpu.system[ssCpuRawSystem.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29018 |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 |29036 |20 |1.3.6.1.4.1.2021.11.50.0 |10248 |CPU user time |system.cpu.user[ssCpuRawUser.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29019 |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 |29037 |20 |1.3.6.1.4.1.2021.11.64.0 |10248 |CPU steal time |system.cpu.steal[ssCpuRawSteal.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29020 |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 |29038 |20 |1.3.6.1.4.1.2021.11.61.0 |10248 |CPU softirq time |system.cpu.softirq[ssCpuRawSoftIRQ.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29021 |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 |29039 |20 |1.3.6.1.4.1.2021.11.51.0 |10248 |CPU nice time |system.cpu.nice[ssCpuRawNice.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29022 |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 |29040 |20 |1.3.6.1.4.1.2021.11.54.0 |10248 |CPU iowait time |system.cpu.iowait[ssCpuRawWait.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29023 |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 |29041 |20 |1.3.6.1.4.1.2021.11.56.0 |10248 |CPU interrupt time |system.cpu.interrupt[ssCpuRawInterrupt.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29024 |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 |29042 |20 |1.3.6.1.4.1.2021.11.65.0 |10248 |CPU guest time |system.cpu.guest[ssCpuRawGuest.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29025 |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 |29043 |20 |1.3.6.1.4.1.2021.11.66.0 |10248 |CPU guest nice time |system.cpu.guest_nice[ssCpuRawGuestNice.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29026 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29044 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10248 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |29027 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29045 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10248 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |29028 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29046 |15 | |10248 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29029 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29047 |20 |1.3.6.1.4.1.2021.9.1.10["index","1.3.6.1.4.1.2021.9.1.2", "{#FSNAME}"] |10248 |{#FSNAME}: Free inodes in % |vfs.fs.inode.pfree[dskPercentNode.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29030 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;If having problems collecting this item make sure access to UCD-SNMP-MIB is allowed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29049 |18 | |10248 |CPU utilization |system.cpu.util[snmp,{#SNMPINDEX}] |0 |7d |365d |0 |0 | |% | | |29048 |NULL | | |0 | | | | |2 |NULL |CPU utilization in % |0 |30d |0 | |29034 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29050 |3 | |10249 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29051 |3 | |10249 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29052 |3 | |10249 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29053 |17 | |10249 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29057 |20 |1.3.6.1.2.1.1.5.0 |10249 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29060 |5 | |10249 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29077 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10249 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27118 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29078 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27119 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29079 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27126 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29080 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27124 |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 |29081 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27122 |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 |29082 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27123 |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 |29083 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27125 |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 |29084 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27121 |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 |29085 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27127 |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 |29086 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27120 |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 |29124 |0 | |10001 |Number of CPUs |system.cpu.num |1m |7d |365d |0 |3 | | | | |29087 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29125 |0 | |10001 |CPU iowait time |system.cpu.util[,iowait] |1m |7d |365d |0 |0 | |% | | |29088 |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 |29126 |0 | |10001 |Context switches per second |system.cpu.switches |1m |7d |365d |0 |0 | | | | |29089 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29127 |0 | |10001 |CPU guest nice time |system.cpu.util[,guest_nice] |1m |7d |365d |0 |0 | |% | | |29090 |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 |29128 |0 | |10001 |CPU guest time |system.cpu.util[,guest] |1m |7d |365d |0 |0 | |% | | |29091 |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 |29129 |0 | |10001 |CPU softirq time |system.cpu.util[,softirq] |1m |7d |365d |0 |0 | |% | | |29092 |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 |29130 |0 | |10001 |CPU interrupt time |system.cpu.util[,interrupt] |1m |7d |365d |0 |0 | |% | | |29093 |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 |29131 |0 | |10001 |CPU steal time |system.cpu.util[,steal] |1m |7d |365d |0 |0 | |% | | |29094 |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 |29132 |0 | |10001 |CPU nice time |system.cpu.util[,nice] |1m |7d |365d |0 |0 | |% | | |29095 |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 |29133 |0 | |10001 |Load average (1m avg) |system.cpu.load[all,avg1] |1m |7d |365d |0 |0 | | | | |29096 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29134 |0 | |10001 |CPU user time |system.cpu.util[,user] |1m |7d |365d |0 |0 | |% | | |29097 |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 |29135 |0 | |10001 |CPU system time |system.cpu.util[,system] |1m |7d |365d |0 |0 | |% | | |29098 |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 |29136 |0 | |10001 |CPU idle time |system.cpu.util[,idle] |1m |7d |365d |0 |0 | |% | | |29099 |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 |29137 |0 | |10001 |Load average (15m avg) |system.cpu.load[all,avg15] |1m |7d |365d |0 |0 | | | | |29100 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29138 |0 | |10001 |Load average (5m avg) |system.cpu.load[all,avg5] |1m |7d |365d |0 |0 | | | | |29101 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29139 |0 | |10001 |Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |29102 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29140 |0 | |10001 |Available memory in % |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |29103 |NULL | | |0 | | | | |0 |NULL |Available memory as percentage of total. See also: https://www.zabbix.com/documentation/current/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29141 |0 | |10001 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |29104 |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29142 |0 | |10001 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |29105 |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/current/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29143 |0 | |10001 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |29106 |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 |29144 |0 | |10001 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |29107 |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 |29145 |0 | |10001 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |29108 |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 |29147 |0 | |10001 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |29110 |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 |29148 |0 | |10001 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime| | |29111 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29149 |0 | |10001 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime| | |29112 |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29150 |0 | |10001 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29113 |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29151 |0 | |10001 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29114 |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29152 |0 | |10001 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |29115 |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29153 |0 | |10001 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |29116 |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29154 |0 | |10001 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |29117 |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29155 |0 | |10001 |Number of processes |proc.num |1m |7d |365d |0 |3 | | | | |29118 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29156 |0 | |10001 |Number of running processes |proc.num[,,run] |1m |7d |365d |0 |3 | | | | |29119 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29157 |0 | |10001 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |15m |7d |0 |0 |1 | | | | |29120 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29158 |0 | |10001 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |29121 |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29159 |0 | |10001 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |29122 |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 |29160 |0 | |10001 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |29123 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29161 |0 | |10084 |Number of CPUs |system.cpu.num |1m |7d |365d |0 |3 | | | | |29124 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29162 |0 | |10084 |CPU iowait time |system.cpu.util[,iowait] |1m |7d |365d |0 |0 | |% | | |29125 |NULL | | |0 | | | | |0 |1 |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 |29163 |0 | |10084 |Context switches per second |system.cpu.switches |1m |7d |365d |0 |0 | | | | |29126 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29164 |0 | |10084 |CPU guest nice time |system.cpu.util[,guest_nice] |1m |7d |365d |0 |0 | |% | | |29127 |NULL | | |0 | | | | |0 |1 |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 |29165 |0 | |10084 |CPU guest time |system.cpu.util[,guest] |1m |7d |365d |0 |0 | |% | | |29128 |NULL | | |0 | | | | |0 |1 |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 |29166 |0 | |10084 |CPU softirq time |system.cpu.util[,softirq] |1m |7d |365d |0 |0 | |% | | |29129 |NULL | | |0 | | | | |0 |1 |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 |29167 |0 | |10084 |CPU interrupt time |system.cpu.util[,interrupt] |1m |7d |365d |0 |0 | |% | | |29130 |NULL | | |0 | | | | |0 |1 |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 |29168 |0 | |10084 |CPU steal time |system.cpu.util[,steal] |1m |7d |365d |0 |0 | |% | | |29131 |NULL | | |0 | | | | |0 |1 |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 |29169 |0 | |10084 |CPU nice time |system.cpu.util[,nice] |1m |7d |365d |0 |0 | |% | | |29132 |NULL | | |0 | | | | |0 |1 |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 |29170 |0 | |10084 |Load average (1m avg) |system.cpu.load[all,avg1] |1m |7d |365d |0 |0 | | | | |29133 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29171 |0 | |10084 |CPU user time |system.cpu.util[,user] |1m |7d |365d |0 |0 | |% | | |29134 |NULL | | |0 | | | | |0 |1 |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 |29172 |0 | |10084 |CPU system time |system.cpu.util[,system] |1m |7d |365d |0 |0 | |% | | |29135 |NULL | | |0 | | | | |0 |1 |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 |29173 |0 | |10084 |CPU idle time |system.cpu.util[,idle] |1m |7d |365d |0 |0 | |% | | |29136 |NULL | | |0 | | | | |0 |1 |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29174 |0 | |10084 |Load average (15m avg) |system.cpu.load[all,avg15] |1m |7d |365d |0 |0 | | | | |29137 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29175 |0 | |10084 |Load average (5m avg) |system.cpu.load[all,avg5] |1m |7d |365d |0 |0 | | | | |29138 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29176 |0 | |10084 |Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |29139 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29177 |0 | |10084 |Available memory in % |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |29140 |NULL | | |0 | | | | |0 |1 |Available memory as percentage of total. See also: https://www.zabbix.com/documentation/current/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29178 |0 | |10084 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |29141 |NULL | | |0 | | | | |0 |1 |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29179 |0 | |10084 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |29142 |NULL | | |0 | | | | |0 |1 |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/current/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29180 |0 | |10084 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |29143 |NULL | | |0 | | | | |0 |1 |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 |29181 |0 | |10084 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |29144 |NULL | | |0 | | | | |0 |1 |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 |29182 |0 | |10084 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |29145 |NULL | | |0 | | | | |0 |1 |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 |29184 |0 | |10084 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |29147 |NULL | | |0 | | | | |0 |1 |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 |29185 |0 | |10084 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime| | |29148 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29186 |0 | |10084 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime| | |29149 |NULL | | |0 | | | | |0 |1 |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29187 |0 | |10084 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29150 |NULL | | |0 | | | | |0 |1 |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29188 |0 | |10084 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29151 |NULL | | |0 | | | | |0 |1 |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29189 |0 | |10084 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |29152 |NULL | | |0 | | | | |0 |1 |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29190 |0 | |10084 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |29153 |NULL | | |0 | | | | |0 |1 |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29191 |0 | |10084 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |29154 |NULL | | |0 | | | | |0 |1 |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29192 |0 | |10084 |Number of processes |proc.num |1m |7d |365d |0 |3 | | | | |29155 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29193 |0 | |10084 |Number of running processes |proc.num[,,run] |1m |7d |365d |0 |3 | | | | |29156 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29194 |0 | |10084 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |15m |7d |0 |0 |1 | | | | |29157 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29195 |0 | |10084 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |29158 |NULL | | |0 | | | | |0 |1 | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29196 |0 | |10084 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |29159 |NULL | | |0 | | | | |0 |1 |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29197 |0 | |10084 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |29160 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29199 |18 | |10001 |CPU utilization |system.cpu.util |0 |7d |365d |0 |0 | |% | | |29198 |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |29136 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29200 |18 | |10084 |CPU utilization |system.cpu.util |0 |7d |365d |0 |0 | |% | | |29199 |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |29173 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29204 |0 | |10001 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |29201 |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 |29206 |0 | |10001 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |29203 |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29207 |0 | |10084 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |29204 |NULL | | |0 | | | | |1 |1 |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29209 |0 | |10084 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |29206 |NULL | | |0 | | | | |1 |1 |Discovery of network interfaces. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29224 |0 | |10001 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |29210 |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29225 |0 | |10001 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |29211 |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29226 |0 | |10001 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |29212 |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 |29227 |0 | |10001 |{#FSNAME}: Free inodes in % |vfs.fs.inode[{#FSNAME},pfree] |1m |7d |365d |0 |0 | |% | | |29213 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29230 |0 | |10001 |Interface {#IFNAME}: Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29216 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29231 |0 | |10001 |Interface {#IFNAME}: Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29217 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29232 |0 | |10001 |Interface {#IFNAME}: Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29218 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29233 |0 | |10001 |Interface {#IFNAME}: Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29219 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29234 |0 | |10001 |Interface {#IFNAME}: Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29220 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29235 |0 | |10001 |Interface {#IFNAME}: Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29221 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29236 |0 | |10001 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |29222 |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 |29237 |0 | |10001 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |29223 |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 |29238 |0 | |10084 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |29224 |NULL | | |0 | | | | |2 |1 |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29239 |0 | |10084 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |29225 |NULL | | |0 | | | | |2 |1 |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29240 |0 | |10084 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |29226 |NULL | | |0 | | | | |2 |1 |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29241 |0 | |10084 |{#FSNAME}: Free inodes in % |vfs.fs.inode[{#FSNAME},pfree] |1m |7d |365d |0 |0 | |% | | |29227 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29244 |0 | |10084 |Interface {#IFNAME}: Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29230 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29245 |0 | |10084 |Interface {#IFNAME}: Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29231 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29246 |0 | |10084 |Interface {#IFNAME}: Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29232 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29247 |0 | |10084 |Interface {#IFNAME}: Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29233 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29248 |0 | |10084 |Interface {#IFNAME}: Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29234 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29249 |0 | |10084 |Interface {#IFNAME}: Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29235 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29250 |0 | |10084 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |29236 |20 | | |0 | | | | |2 |1 |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 |29251 |0 | |10084 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |29237 |78 | | |0 | | | | |2 |1 |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 |29310 |7 | |10284 |Number of CPUs |system.cpu.num |1m |7d |365d |0 |3 | | | | |29273 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29311 |7 | |10284 |CPU iowait time |system.cpu.util[,iowait] |1m |7d |365d |0 |0 | |% | | |29274 |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 |29312 |7 | |10284 |Context switches per second |system.cpu.switches |1m |7d |365d |0 |0 | | | | |29275 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29313 |7 | |10284 |CPU guest nice time |system.cpu.util[,guest_nice] |1m |7d |365d |0 |0 | |% | | |29276 |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 |29314 |7 | |10284 |CPU guest time |system.cpu.util[,guest] |1m |7d |365d |0 |0 | |% | | |29277 |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 |29315 |7 | |10284 |CPU softirq time |system.cpu.util[,softirq] |1m |7d |365d |0 |0 | |% | | |29278 |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 |29316 |7 | |10284 |CPU interrupt time |system.cpu.util[,interrupt] |1m |7d |365d |0 |0 | |% | | |29279 |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 |29317 |7 | |10284 |CPU steal time |system.cpu.util[,steal] |1m |7d |365d |0 |0 | |% | | |29280 |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 |29318 |7 | |10284 |CPU nice time |system.cpu.util[,nice] |1m |7d |365d |0 |0 | |% | | |29281 |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 |29319 |7 | |10284 |Load average (1m avg) |system.cpu.load[all,avg1] |1m |7d |365d |0 |0 | | | | |29282 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29320 |7 | |10284 |CPU user time |system.cpu.util[,user] |1m |7d |365d |0 |0 | |% | | |29283 |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 |29321 |7 | |10284 |CPU system time |system.cpu.util[,system] |1m |7d |365d |0 |0 | |% | | |29284 |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 |29322 |7 | |10284 |CPU idle time |system.cpu.util[,idle] |1m |7d |365d |0 |0 | |% | | |29285 |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 |29323 |7 | |10284 |Load average (15m avg) |system.cpu.load[all,avg15] |1m |7d |365d |0 |0 | | | | |29286 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29324 |7 | |10284 |Load average (5m avg) |system.cpu.load[all,avg5] |1m |7d |365d |0 |0 | | | | |29287 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29325 |7 | |10284 |Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |29288 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29326 |7 | |10284 |Available memory in % |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |29289 |NULL | | |0 | | | | |0 |NULL |Available memory as percentage of total. See also: https://www.zabbix.com/documentation/current/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29327 |7 | |10284 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |29290 |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29328 |7 | |10284 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |29291 |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/current/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29329 |7 | |10284 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |29292 |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 |29330 |7 | |10284 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |29293 |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 |29331 |7 | |10284 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |29294 |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 |29333 |7 | |10284 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |29296 |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 |29334 |7 | |10284 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime| | |29297 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29335 |0 | |10284 |System local time |system.localtime |1m |7d |365d |1 |3 | |unixtime| | |29298 |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 |29336 |7 | |10284 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29299 |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29337 |7 | |10284 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29300 |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 |29338 |7 | |10284 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |29301 |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 |29339 |7 | |10284 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |29302 |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 |29340 |7 | |10284 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |29303 |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 |29341 |7 | |10284 |Number of processes |proc.num |1m |7d |365d |0 |3 | | | | |29304 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29342 |7 | |10284 |Number of running processes |proc.num[,,run] |1m |7d |365d |0 |3 | | | | |29305 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29343 |7 | |10284 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |15m |7d |0 |0 |1 | | | | |29306 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29344 |7 | |10284 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |29307 |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29345 |7 | |10284 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |29308 |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 |29346 |7 | |10284 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |29309 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29348 |18 | |10284 |CPU utilization |system.cpu.util |0 |7d |365d |0 |0 | |% | | |29347 |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |29322 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29352 |7 | |10284 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |29349 |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 |29354 |7 | |10284 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |29351 |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29369 |7 | |10284 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |29355 |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29370 |7 | |10284 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |29356 |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29371 |7 | |10284 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |29357 |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 |29372 |7 | |10284 |{#FSNAME}: Free inodes in % |vfs.fs.inode[{#FSNAME},pfree] |1m |7d |365d |0 |0 | |% | | |29358 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29375 |7 | |10284 |Interface {#IFNAME}: Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29361 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29376 |7 | |10284 |Interface {#IFNAME}: Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29362 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29377 |7 | |10284 |Interface {#IFNAME}: Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29363 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29378 |7 | |10284 |Interface {#IFNAME}: Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29364 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29379 |7 | |10284 |Interface {#IFNAME}: Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29365 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29380 |7 | |10284 |Interface {#IFNAME}: Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29366 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29381 |7 | |10284 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |29367 |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 |29382 |7 | |10284 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |29368 |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 |29480 |0 | |10081 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |29454 |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29481 |0 | |10081 |CPU interrupt time |perf_counter_en["\Processor Information(_total)\% Interrupt Time"] |1m |7d |365d |0 |0 | |% | | |29455 |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 |29482 |0 | |10081 |Context switches per second |perf_counter_en["\System\Context Switches/sec"] |1m |7d |365d |0 |0 | | | | |29456 |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 |29483 |0 | |10081 |CPU privileged time |perf_counter_en["\Processor Information(_total)\% Privileged Time"] |1m |7d |365d |0 |0 | |% | | |29457 |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 |29484 |0 | |10081 |CPU user time |perf_counter_en["\Processor Information(_total)\% User Time"] |1m |7d |365d |0 |0 | |% | | |29458 |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 |29485 |0 | |10081 |CPU queue length |perf_counter_en["\System\Processor Queue Length"] |1m |7d |365d |0 |0 | | | | |29459 |NULL | | |0 | | | | |0 |NULL |The Processor Queue Length shows the number of threads that are observed as delayed in the processor Ready Queue &eol;and are waiting to be executed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29486 |0 | |10081 |Used memory |vm.memory.size[used] |1m |7d |365d |0 |3 | |B | | |29460 |NULL | | |0 | | | | |0 |NULL |Used memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29487 |0 | |10081 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |29461 |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29488 |15 | |10081 |Memory utilization |vm.memory.util |1m |7d |365d |0 |0 | |% | | |29462 |NULL |last("vm.memory.size[used]") / last("vm.memory.size[total]") * 100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29489 |0 | |10081 |Cache bytes |perf_counter_en["\Memory\Cache Bytes"] |1m |7d |365d |0 |3 | |B | | |29463 |NULL | | |0 | | | | |0 |NULL |Cache Bytes is the sum of the Memory\\System Cache Resident Bytes, Memory\\System Driver Resident Bytes, &eol;Memory\\System Code Resident Bytes, and Memory\\Pool Paged Resident Bytes counters. This counter displays &eol;the last observed value only; it is not an average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29492 |0 | |10081 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |29466 |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29493 |0 | |10081 |Free system page table entries |perf_counter_en["\Memory\Free System Page Table Entries"] |1m |7d |365d |0 |3 | | | | |29467 |NULL | | |0 | | | | |0 |NULL |This indicates the number of page table entries not currently in use by the system. If the number is less &eol;than 5,000, there may well be a memory leak or you running out of memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29494 |0 | |10081 |Memory page faults per second |perf_counter_en["\Memory\Page Faults/sec"] |1m |7d |365d |0 |0 | | | | |29468 |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 |29495 |0 | |10081 |Memory pages per second |perf_counter_en["\Memory\Pages/sec"] |1m |7d |365d |0 |0 | | | | |29469 |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 |29496 |0 | |10081 |Memory pool non-paged |perf_counter_en["\Memory\Pool Nonpaged Bytes"] |1m |7d |365d |0 |3 | |B | | |29470 |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 |29498 |0 | |10081 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |29472 |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29499 |0 | |10081 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime| | |29473 |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29500 |0 | |10081 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29474 |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29501 |0 | |10081 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29475 |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29502 |0 | |10081 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |29476 |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29503 |0 | |10081 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |29477 |NULL | | |0 | | | | |0 |NULL |The number of threads used by all running processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29504 |0 | |10081 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |29478 |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29509 |0 | |10081 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |29506 |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 |29521 |0 | |10081 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |29512 |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29522 |0 | |10081 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |29513 |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29523 |0 | |10081 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |29514 |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 |29548 |5 | |10001 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29549 |5 | |10074 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29550 |5 | |10075 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29551 |5 | |10076 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29552 |5 | |10077 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29553 |5 | |10078 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29554 |5 | |10079 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29555 |5 | |10081 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29557 |5 | |10084 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29548 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29558 |7 | |10299 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |29546 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29559 |7 | |10299 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |29547 |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 |29560 |7 | |10299 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |29545 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29587 |7 | |10299 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |29561 |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29588 |7 | |10299 |CPU interrupt time |perf_counter_en["\Processor Information(_total)\% Interrupt Time"] |1m |7d |365d |0 |0 | |% | | |29562 |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 |29589 |7 | |10299 |Context switches per second |perf_counter_en["\System\Context Switches/sec"] |1m |7d |365d |0 |0 | | | | |29563 |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 |29590 |7 | |10299 |CPU privileged time |perf_counter_en["\Processor Information(_total)\% Privileged Time"] |1m |7d |365d |0 |0 | |% | | |29564 |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 |29591 |7 | |10299 |CPU user time |perf_counter_en["\Processor Information(_total)\% User Time"] |1m |7d |365d |0 |0 | |% | | |29565 |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 |29592 |7 | |10299 |CPU queue length |perf_counter_en["\System\Processor Queue Length"] |1m |7d |365d |0 |0 | | | | |29566 |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 |29593 |7 | |10299 |Used memory |vm.memory.size[used] |1m |7d |365d |0 |3 | |B | | |29567 |NULL | | |0 | | | | |0 |NULL |Used memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29594 |7 | |10299 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |29568 |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29595 |15 | |10299 |Memory utilization |vm.memory.util |1m |7d |365d |0 |0 | |% | | |29569 |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 |29596 |7 | |10299 |Cache bytes |perf_counter_en["\Memory\Cache Bytes"] |1m |7d |365d |0 |3 | |B | | |29570 |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 |29599 |7 | |10299 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |29573 |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 |29600 |7 | |10299 |Free system page table entries |perf_counter_en["\Memory\Free System Page Table Entries"] |1m |7d |365d |0 |3 | | | | |29574 |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 |29601 |7 | |10299 |Memory page faults per second |perf_counter_en["\Memory\Page Faults/sec"] |1m |7d |365d |0 |0 | | | | |29575 |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 |29602 |7 | |10299 |Memory pages per second |perf_counter_en["\Memory\Pages/sec"] |1m |7d |365d |0 |0 | | | | |29576 |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 |29603 |7 | |10299 |Memory pool non-paged |perf_counter_en["\Memory\Pool Nonpaged Bytes"] |1m |7d |365d |0 |3 | |B | | |29577 |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 |29605 |7 | |10299 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |29579 |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 |29606 |0 | |10299 |System local time |system.localtime |1m |7d |365d |1 |3 | |unixtime| | |29580 |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 |29607 |7 | |10299 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29581 |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29608 |7 | |10299 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29582 |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 |29609 |7 | |10299 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |29583 |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29610 |7 | |10299 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |29584 |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 |29611 |7 | |10299 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |29585 |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 |29616 |7 | |10299 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |29613 |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 |29628 |7 | |10299 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |29619 |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29629 |7 | |10299 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |29620 |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29630 |7 | |10299 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |29621 |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 |29823 |5 | |10084 |Utilization of alert syncer internal processes, in % |zabbix[process,alert syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |29822 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29849 |20 |1.3.6.1.2.1.1.3.0 |10207 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29850 |20 |1.3.6.1.2.1.1.6.0 |10207 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29851 |20 |1.3.6.1.2.1.1.4.0 |10207 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29852 |20 |1.3.6.1.2.1.1.2.0 |10207 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29853 |20 |1.3.6.1.2.1.1.1.0 |10207 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29854 |20 |1.3.6.1.2.1.1.3.0 |10208 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29855 |20 |1.3.6.1.2.1.1.6.0 |10208 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29856 |20 |1.3.6.1.2.1.1.4.0 |10208 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29857 |20 |1.3.6.1.2.1.1.2.0 |10208 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29858 |20 |1.3.6.1.2.1.1.1.0 |10208 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29859 |20 |1.3.6.1.2.1.1.3.0 |10210 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29860 |20 |1.3.6.1.2.1.1.6.0 |10210 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29861 |20 |1.3.6.1.2.1.1.4.0 |10210 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29862 |20 |1.3.6.1.2.1.1.2.0 |10210 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29863 |20 |1.3.6.1.2.1.1.1.0 |10210 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29864 |20 |1.3.6.1.2.1.1.3.0 |10211 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29865 |20 |1.3.6.1.2.1.1.6.0 |10211 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29866 |20 |1.3.6.1.2.1.1.4.0 |10211 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29867 |20 |1.3.6.1.2.1.1.2.0 |10211 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29868 |20 |1.3.6.1.2.1.1.1.0 |10211 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29869 |20 |1.3.6.1.2.1.1.3.0 |10218 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29870 |20 |1.3.6.1.2.1.1.6.0 |10218 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29871 |20 |1.3.6.1.2.1.1.4.0 |10218 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29872 |20 |1.3.6.1.2.1.1.2.0 |10218 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29873 |20 |1.3.6.1.2.1.1.1.0 |10218 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29874 |20 |1.3.6.1.2.1.1.3.0 |10220 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29875 |20 |1.3.6.1.2.1.1.6.0 |10220 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29876 |20 |1.3.6.1.2.1.1.4.0 |10220 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29877 |20 |1.3.6.1.2.1.1.2.0 |10220 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29878 |20 |1.3.6.1.2.1.1.1.0 |10220 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29879 |20 |1.3.6.1.2.1.1.3.0 |10221 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29880 |20 |1.3.6.1.2.1.1.6.0 |10221 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29881 |20 |1.3.6.1.2.1.1.4.0 |10221 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29882 |20 |1.3.6.1.2.1.1.2.0 |10221 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29883 |20 |1.3.6.1.2.1.1.1.0 |10221 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29884 |20 |1.3.6.1.2.1.1.3.0 |10222 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29885 |20 |1.3.6.1.2.1.1.6.0 |10222 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29886 |20 |1.3.6.1.2.1.1.4.0 |10222 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29887 |20 |1.3.6.1.2.1.1.2.0 |10222 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29888 |20 |1.3.6.1.2.1.1.1.0 |10222 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29889 |20 |1.3.6.1.2.1.1.3.0 |10223 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29890 |20 |1.3.6.1.2.1.1.6.0 |10223 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29891 |20 |1.3.6.1.2.1.1.4.0 |10223 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29892 |20 |1.3.6.1.2.1.1.2.0 |10223 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29893 |20 |1.3.6.1.2.1.1.1.0 |10223 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29894 |20 |1.3.6.1.2.1.1.3.0 |10224 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29895 |20 |1.3.6.1.2.1.1.6.0 |10224 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29896 |20 |1.3.6.1.2.1.1.4.0 |10224 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29897 |20 |1.3.6.1.2.1.1.2.0 |10224 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29898 |20 |1.3.6.1.2.1.1.1.0 |10224 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29899 |20 |1.3.6.1.2.1.1.3.0 |10226 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29900 |20 |1.3.6.1.2.1.1.6.0 |10226 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29901 |20 |1.3.6.1.2.1.1.4.0 |10226 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29902 |20 |1.3.6.1.2.1.1.2.0 |10226 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29903 |20 |1.3.6.1.2.1.1.1.0 |10226 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29904 |20 |1.3.6.1.2.1.1.3.0 |10227 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29905 |20 |1.3.6.1.2.1.1.6.0 |10227 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29906 |20 |1.3.6.1.2.1.1.4.0 |10227 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29907 |20 |1.3.6.1.2.1.1.2.0 |10227 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29908 |20 |1.3.6.1.2.1.1.1.0 |10227 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29909 |20 |1.3.6.1.2.1.1.3.0 |10229 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29910 |20 |1.3.6.1.2.1.1.6.0 |10229 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29911 |20 |1.3.6.1.2.1.1.4.0 |10229 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29912 |20 |1.3.6.1.2.1.1.2.0 |10229 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29913 |20 |1.3.6.1.2.1.1.1.0 |10229 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29914 |20 |1.3.6.1.2.1.1.3.0 |10230 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29915 |20 |1.3.6.1.2.1.1.6.0 |10230 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29916 |20 |1.3.6.1.2.1.1.4.0 |10230 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29917 |20 |1.3.6.1.2.1.1.2.0 |10230 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29918 |20 |1.3.6.1.2.1.1.1.0 |10230 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29919 |20 |1.3.6.1.2.1.1.3.0 |10231 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29920 |20 |1.3.6.1.2.1.1.6.0 |10231 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29921 |20 |1.3.6.1.2.1.1.4.0 |10231 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29922 |20 |1.3.6.1.2.1.1.2.0 |10231 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29923 |20 |1.3.6.1.2.1.1.1.0 |10231 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29924 |20 |1.3.6.1.2.1.1.3.0 |10233 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29925 |20 |1.3.6.1.2.1.1.6.0 |10233 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29926 |20 |1.3.6.1.2.1.1.4.0 |10233 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29927 |20 |1.3.6.1.2.1.1.2.0 |10233 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29928 |20 |1.3.6.1.2.1.1.1.0 |10233 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29929 |20 |1.3.6.1.2.1.1.3.0 |10234 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29930 |20 |1.3.6.1.2.1.1.6.0 |10234 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29931 |20 |1.3.6.1.2.1.1.4.0 |10234 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29932 |20 |1.3.6.1.2.1.1.2.0 |10234 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29933 |20 |1.3.6.1.2.1.1.1.0 |10234 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29934 |20 |1.3.6.1.2.1.1.3.0 |10235 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29935 |20 |1.3.6.1.2.1.1.6.0 |10235 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29936 |20 |1.3.6.1.2.1.1.4.0 |10235 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29937 |20 |1.3.6.1.2.1.1.2.0 |10235 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29938 |20 |1.3.6.1.2.1.1.1.0 |10235 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29939 |20 |1.3.6.1.2.1.1.3.0 |10236 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29940 |20 |1.3.6.1.2.1.1.6.0 |10236 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29941 |20 |1.3.6.1.2.1.1.4.0 |10236 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29942 |20 |1.3.6.1.2.1.1.2.0 |10236 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29943 |20 |1.3.6.1.2.1.1.1.0 |10236 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29944 |20 |1.3.6.1.2.1.1.3.0 |10250 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29945 |20 |1.3.6.1.2.1.1.6.0 |10250 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29946 |20 |1.3.6.1.2.1.1.4.0 |10250 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29947 |20 |1.3.6.1.2.1.1.2.0 |10250 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29948 |20 |1.3.6.1.2.1.1.1.0 |10250 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29949 |20 |1.3.6.1.2.1.1.3.0 |10251 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29950 |20 |1.3.6.1.2.1.1.6.0 |10251 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29951 |20 |1.3.6.1.2.1.1.4.0 |10251 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29952 |20 |1.3.6.1.2.1.1.2.0 |10251 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29953 |20 |1.3.6.1.2.1.1.1.0 |10251 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29954 |20 |1.3.6.1.2.1.1.3.0 |10253 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29955 |20 |1.3.6.1.2.1.1.6.0 |10253 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29956 |20 |1.3.6.1.2.1.1.4.0 |10253 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29957 |20 |1.3.6.1.2.1.1.2.0 |10253 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29958 |20 |1.3.6.1.2.1.1.1.0 |10253 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29959 |20 |1.3.6.1.2.1.1.3.0 |10254 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29960 |20 |1.3.6.1.2.1.1.6.0 |10254 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29961 |20 |1.3.6.1.2.1.1.4.0 |10254 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29962 |20 |1.3.6.1.2.1.1.2.0 |10254 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29963 |20 |1.3.6.1.2.1.1.1.0 |10254 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29964 |20 |1.3.6.1.2.1.1.3.0 |10255 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29965 |20 |1.3.6.1.2.1.1.6.0 |10255 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29966 |20 |1.3.6.1.2.1.1.4.0 |10255 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29967 |20 |1.3.6.1.2.1.1.2.0 |10255 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29968 |20 |1.3.6.1.2.1.1.1.0 |10255 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29969 |20 |1.3.6.1.2.1.1.3.0 |10256 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29970 |20 |1.3.6.1.2.1.1.6.0 |10256 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29971 |20 |1.3.6.1.2.1.1.4.0 |10256 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29972 |20 |1.3.6.1.2.1.1.2.0 |10256 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29973 |20 |1.3.6.1.2.1.1.1.0 |10256 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29974 |20 |1.3.6.1.2.1.1.3.0 |10258 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29975 |20 |1.3.6.1.2.1.1.6.0 |10258 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29976 |20 |1.3.6.1.2.1.1.4.0 |10258 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29977 |20 |1.3.6.1.2.1.1.2.0 |10258 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29978 |20 |1.3.6.1.2.1.1.1.0 |10258 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29979 |20 |1.3.6.1.2.1.1.3.0 |10259 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29980 |20 |1.3.6.1.2.1.1.6.0 |10259 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29981 |20 |1.3.6.1.2.1.1.4.0 |10259 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29982 |20 |1.3.6.1.2.1.1.2.0 |10259 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29983 |20 |1.3.6.1.2.1.1.1.0 |10259 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29984 |20 |1.3.6.1.2.1.1.3.0 |10248 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29985 |20 |1.3.6.1.2.1.1.6.0 |10248 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29986 |20 |1.3.6.1.2.1.1.4.0 |10248 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29987 |20 |1.3.6.1.2.1.1.2.0 |10248 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29988 |20 |1.3.6.1.2.1.1.1.0 |10248 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29989 |20 |1.3.6.1.2.1.1.3.0 |10249 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29990 |20 |1.3.6.1.2.1.1.6.0 |10249 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29991 |20 |1.3.6.1.2.1.1.4.0 |10249 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29992 |20 |1.3.6.1.2.1.1.2.0 |10249 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29993 |20 |1.3.6.1.2.1.1.1.0 |10249 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29995 |7 | |10284 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |29546 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29996 |7 | |10284 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |29547 |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 |29997 |7 | |10284 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |29545 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30046 |3 | |10304 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30047 |3 | |10304 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30048 |3 | |10304 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30049 |17 | |10304 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30050 |20 |1.3.6.1.2.1.1.4.0 |10304 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30051 |20 |1.3.6.1.2.1.1.1.0 |10304 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30052 |20 |1.3.6.1.2.1.1.6.0 |10304 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30053 |20 |1.3.6.1.2.1.1.5.0 |10304 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30054 |20 |1.3.6.1.2.1.1.2.0 |10304 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30055 |20 |1.3.6.1.2.1.1.3.0 |10304 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30056 |5 | |10304 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30095 |20 |1.3.6.1.4.1.1991.1.1.2.1.53.0 |10210 |Memory utilization |vm.memory.util[snAgGblDynMemUtil.0] |1m |7d |365d |0 |0 | |% | | |30094 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The system dynamic memory utilization, in unit of percentage.&eol;Deprecated: Refer to snAgSystemDRAMUtil.&eol;For NI platforms, refer to snAgentBrdMemoryUtil100thPercent |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30096 |20 |1.3.6.1.4.1.1991.1.1.2.1.53.0 |10211 |Memory utilization |vm.memory.util[snAgGblDynMemUtil.0] |1m |7d |365d |0 |0 | |% | | |30094 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The system dynamic memory utilization, in unit of percentage.&eol;Deprecated: Refer to snAgSystemDRAMUtil.&eol;For NI platforms, refer to snAgentBrdMemoryUtil100thPercent |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30098 |20 |1.3.6.1.2.1.1.1.0 |10218 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |30097 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30099 |20 |1.3.6.1.2.1.1.1.0 |10220 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |30097 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30100 |20 |1.3.6.1.2.1.1.1.0 |10253 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |30097 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30102 |15 | |10218 |{#SNMPVALUE}: Memory utilization |vm.memory.util[vm.memory.util.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30101 |NULL |last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]")/(last("vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}]")+last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30103 |15 | |10220 |{#SNMPVALUE}: Memory utilization |vm.memory.util[vm.memory.util.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30101 |NULL |last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]")/(last("vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}]")+last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30104 |15 | |10253 |{#SNMPVALUE}: Memory utilization |vm.memory.util[vm.memory.util.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30101 |NULL |last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]")/(last("vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}]")+last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30138 |0 | |10081 |CPU DPC time |perf_counter_en["\Processor Information(_total)\% DPC Time"] |1m |7d |365d |0 |0 | |% | | |30137 |NULL | | |0 | | | | |0 |NULL |Processor DPC time is the time that a single processor spent receiving and servicing deferred procedure &eol;calls (DPCs). DPCs are interrupts that run at a lower priority than standard interrupts. % DPC Time is a &eol;component of % Privileged Time because DPCs are executed in privileged mode. If a high % DPC Time is &eol;sustained, there may be a processor bottleneck or an application or hardware related issue that can &eol;significantly diminish overall system performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30140 |7 | |10299 |CPU DPC time |perf_counter_en["\Processor Information(_total)\% DPC Time"] |1m |7d |365d |0 |0 | |% | | |30139 |NULL | | |0 | | | | |0 |NULL |Processor DPC time is the time that a single processor spent receiving and servicing deferred procedure &eol;calls (DPCs). DPCs are interrupts that run at a lower priority than standard interrupts. % DPC Time is a &eol;component of % Privileged Time because DPCs are executed in privileged mode. If a high % DPC Time is &eol;sustained, there may be a processor bottleneck or an application or hardware related issue that can &eol;significantly diminish overall system performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30143 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10185 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |30142 |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30144 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10251 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |30143 |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30145 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10249 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |30143 |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30146 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10254 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |30143 |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30149 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10185 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |30147 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30150 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10185 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |30148 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30151 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10251 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |30149 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30152 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10251 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |30150 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30153 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10249 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |30149 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30154 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10249 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |30150 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30155 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10254 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |30149 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30156 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10254 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |30150 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30163 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10185 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30157 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30164 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10185 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30158 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30165 |15 | |10185 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30159 |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30166 |15 | |10185 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30160 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30167 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10185 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30161 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30168 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10185 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30162 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30169 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10251 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30163 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30170 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10251 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30164 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30171 |15 | |10251 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30165 |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30172 |15 | |10251 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30166 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30173 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10251 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30167 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30174 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10251 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30168 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30175 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10249 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30163 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30176 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10249 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30164 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30177 |15 | |10249 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30165 |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30178 |15 | |10249 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30166 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30179 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10249 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30167 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30180 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10249 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30168 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30181 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10254 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30163 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30182 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10254 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30164 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30183 |15 | |10254 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30165 |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30184 |15 | |10254 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30166 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30185 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10254 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30167 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30186 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10254 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30168 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30424 |0 | |10081 |Windows services discovery |service.discovery |1h |90d |0 |0 |4 | | | | |30423 |NULL | | |0 | | | | |1 |NULL |Discovery of Windows services of different types as defined in template's macros. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30426 |0 | |10081 |State of service "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) |service.info["{#SERVICE.NAME}",state] |1m |7d |365d |0 |3 | | | | |30425 |3 | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30428 |7 | |10299 |Windows services discovery |service.discovery |1h |90d |0 |0 |4 | | | | |30427 |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 |30430 |7 | |10299 |State of service "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) |service.info["{#SERVICE.NAME}",state] |1m |7d |365d |0 |3 | | | | |30429 |3 | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31271 |18 | |10001 |Memory utilization |vm.memory.utilization |0 |7d |365d |0 |0 | |% | | |31270 |NULL | | |0 | | | | |0 |NULL |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |29140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31272 |18 | |10084 |Memory utilization |vm.memory.utilization |0 |7d |365d |0 |0 | |% | | |31271 |NULL | | |0 | | | | |0 |NULL |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |29177 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31274 |0 | |10001 |Block devices discovery |vfs.dev.discovery |1h |90d |0 |0 |4 | | | | |31273 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31275 |0 | |10084 |Block devices discovery |vfs.dev.discovery |1h |90d |0 |0 |4 | | | | |31274 |NULL | | |0 | | | | |1 |1 | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31279 |15 | |10001 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |31276 |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 |31280 |15 | |10001 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |31277 |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 |31281 |0 | |10001 |{#DEVNAME}: Get stats |vfs.file.contents[/sys/block/{#DEVNAME}/stat] |1m |0 |0 |0 |4 | | | | |31278 |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 |31282 |15 | |10084 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |31279 |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 |31283 |15 | |10084 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |31280 |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 |31284 |0 | |10084 |{#DEVNAME}: Get stats |vfs.file.contents[/sys/block/{#DEVNAME}/stat] |1m |0 |0 |0 |4 | | | | |31281 |NULL | | |0 | | | | |2 |1 |Get contents of /sys/block/{#DEVNAME}/stat for disk stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31291 |18 | |10001 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31285 |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 | |31281 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31292 |18 | |10001 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!r/s | | |31286 |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |31281 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31293 |18 | |10001 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31287 |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |31281 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31294 |18 | |10001 |{#DEVNAME}: Disk utilization |vfs.dev.util[{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |31288 |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 | |31281 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31295 |18 | |10001 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!w/s | | |31289 |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |31281 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31296 |18 | |10001 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31290 |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |31281 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31297 |18 | |10084 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31291 |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 | |31284 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31298 |18 | |10084 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!r/s | | |31292 |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |31284 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31299 |18 | |10084 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31293 |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |31284 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31300 |18 | |10084 |{#DEVNAME}: Disk utilization |vfs.dev.util[{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |31294 |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 | |31284 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31301 |18 | |10084 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!w/s | | |31295 |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |31284 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31302 |18 | |10084 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31296 |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |31284 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31304 |18 | |10284 |Memory utilization |vm.memory.utilization |0 |7d |365d |0 |0 | |% | | |31303 |NULL | | |0 | | | | |0 |NULL |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |29326 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31306 |7 | |10284 |Block devices discovery |vfs.dev.discovery |1h |90d |0 |0 |4 | | | | |31305 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31310 |15 | |10284 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |31307 |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 |31311 |15 | |10284 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |31308 |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 |31312 |7 | |10284 |{#DEVNAME}: Get stats |vfs.file.contents[/sys/block/{#DEVNAME}/stat] |1m |0 |0 |0 |4 | | | | |31309 |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 |31319 |18 | |10284 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31313 |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 | |31312 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31320 |18 | |10284 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!r/s | | |31314 |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |31312 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31321 |18 | |10284 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31315 |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |31312 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31322 |18 | |10284 |{#DEVNAME}: Disk utilization |vfs.dev.util[{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |31316 |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 | |31312 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31323 |18 | |10284 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!w/s | | |31317 |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |31312 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31324 |18 | |10284 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |31318 |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |31312 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31328 |0 | |10081 |Number of cores |wmi.get[root/cimv2,"Select NumberOfLogicalProcessors from Win32_ComputerSystem"] |1m |7d |365d |0 |3 | | | | |31325 |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 |31329 |0 | |10081 |Used swap space in % |perf_counter_en["\Paging file(_Total)\% Usage"] |1m |7d |365d |0 |0 | |% | | |31326 |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 |31330 |15 | |10081 |Free swap space |system.swap.free |1m |7d |365d |0 |3 | |B | | |31327 |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 |31332 |18 | |10081 |Free swap space in % |system.swap.pfree |0 |7d |365d |0 |0 | |% | | |31331 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |31329 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31334 |0 | |10081 |Physical disks discovery |perf_instance_en.discovery[PhysicalDisk] |1h |90d |0 |0 |4 | | | | |31333 |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 |31339 |0 | |10081 |{#DEVNAME}: Disk utilization |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Disk Time",60] |1m |7d |365d |0 |0 | |% | | |31335 |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 |31340 |0 | |10081 |{#DEVNAME}: Disk average queue size (avgqu-sz) |perf_counter_en["\PhysicalDisk({#DEVNAME})\Current Disk Queue Length",60] |1m |7d |365d |0 |0 | | | | |31336 |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 |31341 |0 | |10081 |{#DEVNAME}: Disk read rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Reads/sec",60] |1m |7d |365d |0 |0 | |!r/s | | |31337 |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 |31342 |0 | |10081 |{#DEVNAME}: Disk write rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Writes/sec",60] |1m |7d |365d |0 |0 | |!w/s | | |31338 |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 |31346 |7 | |10299 |Number of cores |wmi.get[root/cimv2,"Select NumberOfLogicalProcessors from Win32_ComputerSystem"] |1m |7d |365d |0 |3 | | | | |31343 |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 |31347 |7 | |10299 |Used swap space in % |perf_counter_en["\Paging file(_Total)\% Usage"] |1m |7d |365d |0 |0 | |% | | |31344 |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 |31348 |15 | |10299 |Free swap space |system.swap.free |1m |7d |365d |0 |3 | |B | | |31345 |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 |31350 |18 | |10299 |Free swap space in % |system.swap.pfree |0 |7d |365d |0 |0 | |% | | |31349 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |31347 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31352 |7 | |10299 |Physical disks discovery |perf_instance_en.discovery[PhysicalDisk] |1h |90d |0 |0 |4 | | | | |31351 |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 |31357 |7 | |10299 |{#DEVNAME}: Disk utilization |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Disk Time",60] |1m |7d |365d |0 |0 | |% | | |31353 |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 |31358 |7 | |10299 |{#DEVNAME}: Disk average queue size (avgqu-sz) |perf_counter_en["\PhysicalDisk({#DEVNAME})\Current Disk Queue Length",60] |1m |7d |365d |0 |0 | | | | |31354 |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 |31359 |7 | |10299 |{#DEVNAME}: Disk read rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Reads/sec",60] |1m |7d |365d |0 |0 | |!r/s | | |31355 |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 |31360 |7 | |10299 |{#DEVNAME}: Disk write rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Writes/sec",60] |1m |7d |365d |0 |0 | |!w/s | | |31356 |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 |31456 |0 | |10081 |Network interfaces WMI get |wmi.getall[root\cimv2,"select Name,Description,NetConnectionID,Speed,AdapterTypeId,NetConnectionStatus from win32_networkadapter where PhysicalAdapter=True and NetConnectionStatus>0"]|1m |0 |0 |0 |4 | | | | |31455 |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 |31458 |18 | |10081 |Network interfaces discovery |net.if.discovery |0 |90d |0 |0 |4 | | | | |31457 |NULL | | |0 | | | | |1 |NULL |Discovery of installed network interfaces. |0 |30d |1 | |31456 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31465 |0 | |10081 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |31459 |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 |31466 |0 | |10081 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |31460 |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 |31467 |0 | |10081 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |31461 |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 |31468 |0 | |10081 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |31462 |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 |31469 |0 | |10081 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |31463 |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 |31470 |0 | |10081 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |31464 |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 |31474 |18 | |10081 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFNAME}"] |0 |7d |0d |0 |3 | |bps | | |31471 |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |31456 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31475 |18 | |10081 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status["{#IFNAME}"] |0 |7d |0 |0 |3 | | | | |31472 |81 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |31456 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31476 |18 | |10081 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFNAME}"] |0 |7d |0d |0 |3 | | | | |31473 |79 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |31456 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31478 |7 | |10299 |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 | | | | |31477 |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 |31480 |18 | |10299 |Network interfaces discovery |net.if.discovery |0 |90d |0 |0 |4 | | | | |31479 |NULL | | |0 | | | | |1 |NULL |Discovery of installed network interfaces. |0 |30d |1 | |31478 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31487 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |31481 |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 |31488 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |31482 |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 |31489 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |31483 |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 |31490 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |31484 |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 |31491 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |31485 |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 |31492 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |31486 |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 |31496 |18 | |10299 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFNAME}"] |0 |7d |0d |0 |3 | |bps | | |31493 |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |31478 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31497 |18 | |10299 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status["{#IFNAME}"] |0 |7d |0 |0 |3 | | | | |31494 |81 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |31478 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31498 |18 | |10299 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFNAME}"] |0 |7d |0d |0 |3 | | | | |31495 |79 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |31478 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
TABLE |optemplate
FIELDS|optemplateid|operationid|templateid|
@@ -5105,32 +5202,20 @@ ROW |13096 |{13202}>75
ROW |13097 |{13204}>75 |Zabbix vmware collector processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13204}<65 |0 | |0 | |0 |
ROW |13275 |{13186}>75 |Zabbix java poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13186}<65 |0 | |0 | |0 |
ROW |13285 |{13159}=0 |Telnet service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13330 |{12717}<1024 |Configured max number of opened files is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13331 |{12718}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13332 |{13089}>30 |Too many processes running on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13333 |{13088}>300 |Too many processes on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13334 |{13087}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13336 |{12723}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13337 |{12724}<50 |Lack of free swap space on {HOST.NAME} | |0 |2 |It probably means that the systems requires more physical memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13338 |{12725}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13339 |{12726}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13340 |{12727}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13341 |{12728}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13342 |{12729}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |13343 |{12730}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |13346 |{12733}<1024 |Configured max number of opened files is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13347 |{12734}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13348 |{13074}>30 |Too many processes running on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13349 |{13073}>300 |Too many processes on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13350 |{13072}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13352 |{12739}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13353 |{12740}<50 |Lack of free swap space on {HOST.NAME} | |0 |2 |It probably means that the systems requires more physical memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13354 |{12741}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13355 |{12742}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13356 |{12743}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13357 |{12744}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13358 |{12745}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |13359 |{12746}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |13364 |{13071}>30 |Too many processes running on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13365 |{13070}>300 |Too many processes on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13366 |{13069}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
@@ -5139,39 +5224,23 @@ ROW |13368 |{12755}>0
ROW |13370 |{12757}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13371 |{12758}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13372 |{12759}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13373 |{12760}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13374 |{12761}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |13375 |{12762}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |13382 |{13075}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13384 |{12771}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13386 |{12773}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13388 |{12775}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13389 |{12776}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13390 |{12777}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |13391 |{12778}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |13395 |{12782}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13396 |{13093}>30 |Too many processes running on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13397 |{13092}>300 |Too many processes on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13398 |{13091}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13399 |{13090}>20 |Disk I/O is overloaded on {HOST.NAME} | |0 |2 |OS spends significant time waiting for I/O (input/output) operations. It could be indicator of performance issues with storage system. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13400 |{12787}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13401 |{12788}<50 |Lack of free swap space on {HOST.NAME} | |0 |2 |It probably means that the systems requires more physical memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13402 |{12789}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13403 |{12790}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13404 |{12791}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13405 |{12792}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13406 |{12793}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |13407 |{12794}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |13410 |{12797}<1024 |Configured max number of opened files is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13411 |{12798}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13414 |{13086}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13416 |{12803}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13418 |{12805}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13419 |{12806}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13420 |{12807}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13421 |{12808}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13422 |{12809}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |13423 |{12810}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |13441 |{13194}>75 |Zabbix snmp trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13194}<65 |0 | |0 | |0 |
ROW |13517 |{12946}>75 |More than 75% used in the configuration cache | |0 |3 |Consider increasing CacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |13518 |{12947}>75 |More than 75% used in the history cache | |0 |3 |Consider increasing HistoryCacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
@@ -5211,64 +5280,6 @@ ROW |13565 |{13225}>75
ROW |13566 |{13226}>75 |Zabbix alert manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13226}<65 |0 | |0 | |0 |
ROW |13568 |{13228}>75 |Zabbix preprocessing manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13228}<65 |0 | |0 | |0 |
ROW |13569 |{13229}>75 |Zabbix preprocessing worker processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13229}<65 |0 | |0 | |0 |
-ROW |14168 |{14257}>({14258}*0.7) |70% mem Heap Memory used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14169 |{14259}>({14260}*0.7) |70% mem Non-Heap Memory used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14170 |{14261}>({14262}*0.7) |70% mp CMS Old Gen used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14171 |{14263}>({14264}*0.7) |70% mp CMS Perm Gen used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14172 |{14265}>({14266}*0.7) |70% mp Code Cache used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14173 |{14267}>({14268}*0.7) |70% mp Perm Gen used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14174 |{14269}>({14270}*0.7) |70% mp PS Old Gen used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14175 |{14271}>({14272}*0.7) |70% mp PS Perm Gen used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14176 |{14273}>({14274}*0.7) |70% mp Tenured Gen used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14177 |{14275}>({14276}*0.7) |70% os Opened File Descriptor Count used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14178 |{14277}>70 |70% os Process CPU Load on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14179 |{14278}<{14279} |gc Concurrent Mark Sweep in fire fighting mode on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14180 |{14280}<{14281} |gc Mark Sweep Compact in fire fighting mode on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14181 |{14282}<{14283} |gc PS Mark Sweep in fire fighting mode on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14182 |{14284}={14285} |mem Heap Memory fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14183 |{14286}={14287} |mem Non-Heap Memory fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14184 |{14288}={14289} |mp CMS Old Gen fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14185 |{14290}={14291} |mp CMS Perm Gen fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14186 |{14292}={14293} |mp Code Cache fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14187 |{14294}={14295} |mp Perm Gen fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14188 |{14296}={14297} |mp PS Old Gen fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14189 |{14298}={14299} |mp PS Perm Gen fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14190 |{14300}={14301} |mp Tenured Gen fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14191 |{14302}=1 |{HOST.NAME} is not reachable | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14192 |{14303}<>1 |{HOST.NAME} runs suboptimal VM type | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14193 |{14304}=1 |{HOST.NAME} uses suboptimal JIT compiler | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14195 |{14306}<1.597 or {14306}>2.019 |BB +1.8V SM Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14196 |{14307}<1.646 or {14307}>1.960 |BB +1.8V SM Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14197 |{14308}<2.876 or {14308}>3.729 |BB +3.3V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14198 |{14309}<2.970 or {14309}>3.618 |BB +3.3V Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14199 |{14310}<2.876 or {14310}>3.729 |BB +3.3V STBY Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14200 |{14311}<2.970 or {14311}>3.618 |BB +3.3V STBY Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14201 |{14312}<4.362 or {14312}>5.663 |BB +5.0V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14202 |{14313}<4.483 or {14313}>5.495 |BB +5.0V Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14203 |{14314}<5 or {14314}>66 |BB Ambient Temp Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14204 |{14315}<10 or {14315}>61 |BB Ambient Temp Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14205 |{14316}=0 |Power | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14206 |{14317}<5 or {14317}>90 |Baseboard Temp Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14207 |{14318}<10 or {14318}>83 |Baseboard Temp Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14208 |{14319}<0.953 or {14319}>1.149 |BB +1.05V PCH Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14209 |{14320}<0.985 or {14320}>1.117 |BB +1.05V PCH Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14210 |{14321}<0.683 or {14321}>1.543 |BB +1.1V P1 Vccp Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14211 |{14322}<0.708 or {14322}>1.501 |BB +1.1V P1 Vccp Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14212 |{14323}<1.362 or {14323}>1.635 |BB +1.5V P1 DDR3 Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14213 |{14324}<1.401 or {14324}>1.589 |BB +1.5V P1 DDR3 Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14214 |{14325}<2.982 or {14325}>3.625 |BB +3.3V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14215 |{14326}<3.067 or {14326}>3.525 |BB +3.3V Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14216 |{14327}<2.982 or {14327}>3.625 |BB +3.3V STBY Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14217 |{14328}<3.067 or {14328}>3.525 |BB +3.3V STBY Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14218 |{14329}<4.471 or {14329}>5.538 |BB +5.0V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14219 |{14330}<4.630 or {14330}>5.380 |BB +5.0V Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14220 |{14331}<0 or {14331}>48 |Front Panel Temp Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14221 |{14332}<5 or {14332}>44 |Front Panel Temp Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14222 |{14333}=0 |Power | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14223 |{14334}<324 |System Fan 2 Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14224 |{14335}<378 |System Fan 2 Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14225 |{14336}<324 |System Fan 3 Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14226 |{14337}<378 |System Fan 3 Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |14251 |{14378}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |14252 |{14379}>{$ICMP_LOSS_WARN} and {14379}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
ROW |14253 |{14380}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
@@ -5325,9 +5336,6 @@ ROW |14621 |{15038}=1 and {15039}>0
ROW |14624 |{15042}>{$TEMP_WARN:""} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15043}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
ROW |14625 |{15044}>{$TEMP_CRIT:""} |{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15045}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
ROW |14626 |{15046}<{$TEMP_CRIT_LOW:""} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{15047}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14658 |{15100}>{$TEMP_WARN:"Device"} |Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |0 |1 |{15101}<{$TEMP_WARN:"Device"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14659 |{15102}>{$TEMP_CRIT:"Device"} |Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |0 |1 |{15103}<{$TEMP_CRIT:"Device"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14660 |{15104}<{$TEMP_CRIT_LOW:"Device"} |Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"} | |0 |3 | |NULL |0 |0 |1 |{15105}>{$TEMP_CRIT_LOW:"Device"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
ROW |14661 |{15106}=1 and {15107}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |14662 |{15108}=1 and {15109}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
ROW |14664 |{15111}>{$TEMP_WARN:"CPU"} |CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15112}<{$TEMP_WARN:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
@@ -5354,8 +5362,6 @@ ROW |15331 |{16819}=1
ROW |15332 |{16820}=1 |PSU {#SNMPVALUE}: Power supply is not in normal state | |0 |1 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |15333 |{16821}=1 |Fan {#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |15334 |{16822}=1 |Fan {#SNMPVALUE}: Fan is not in normal state | |0 |1 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15335 |{16823}>{$TEMP_WARN:""}&eol;or&eol;{16824}={$TEMP_WARN_STATUS} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{16825}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |15336 |{16826}>{$TEMP_CRIT:""}&eol;or&eol;{16827}={$TEMP_CRIT_STATUS} |{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{16828}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
ROW |15337 |{16829}=1 |{#SNMPVALUE}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |15338 |{16830}=1 |{#SNMPVALUE}: Power supply is in warning state | |0 |2 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |15339 |{16831}=1 |{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
@@ -5367,7 +5373,6 @@ ROW |15346 |{16844}=1 or {16845}=1
ROW |15347 |{16846}=1 or {16847}=1 |{#SENSOR_INFO}: Fan is in warning state | |0 |2 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |15366 |{16890}=1 |{#SNMPVALUE}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |15367 |{16891}=1 |{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15368 |{16892}>{$TEMP_CRIT:""}&eol;or&eol;{16893}={$TEMP_CRIT_STATUS} |Device: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |0 |1 |{16894}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
ROW |15369 |{16895}=1 |PSU {#SNMPVALUE}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |15370 |{16896}=1 |Fan {#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |15371 |{16897}=1 or {16898}=1 |{#ENT_NAME}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
@@ -5386,17 +5391,13 @@ ROW |15383 |{16912}=1
ROW |15384 |{16913}=1 |Unit {#PSU_UNIT} PSU {#PSU_INDEX}: Power supply is not in normal state | |0 |1 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |15385 |{16914}=1 |Unit {#FAN_UNIT} Fan {#FAN_INDEX}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |15386 |{16915}=1 |Unit {#FAN_UNIT} Fan {#FAN_INDEX}: Fan is not in normal state | |0 |1 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15387 |{16916}>{$TEMP_WARN:""}&eol;or&eol;{16917}={$TEMP_WARN_STATUS} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{16918}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
ROW |15388 |{16919}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |15389 |{16920}=1 |{#ENT_NAME}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15390 |{16921}>{$TEMP_WARN:""}&eol;or&eol;{16922}={$TEMP_WARN_STATUS} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{16923}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
ROW |15391 |{16924}=1 |{#SENSOR_INFO}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |15392 |{16925}=1 |{#SENSOR_INFO}: Power supply is not in normal state | |0 |1 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |15393 |{16926}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |15394 |{16927}=1 |{#SENSOR_INFO}: Fan is not in normal state | |0 |1 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |15395 |{16928}=1 |#{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15396 |{16929}>{$TEMP_WARN:""}&eol;or&eol;{16930}={$TEMP_WARN_STATUS} |#{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{16931}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |15397 |{16932}>{$TEMP_CRIT:""}&eol;or&eol;{16933}={$TEMP_CRIT_STATUS} |#{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{16934}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
ROW |15398 |{16935}=1 |#{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |15399 |{16936}=1 |#{#SNMPVALUE}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |15493 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17243}=2 and {17244}=1) |Interface {#IFDESCR}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{17243}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
@@ -5405,7 +5406,6 @@ ROW |15641 |{17658}>75
ROW |15671 |{17692}<0 and {17693}>0&eol;and (&eol;{17694}=6 or&eol;{17694}=7 or&eol;{17694}=11 or&eol;{17694}=62 or&eol;{17694}=69 or&eol;{17694}=117&eol;)&eol;and&eol;({17695}<>2)|Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |1 |({17692}>0 and {17696}>0) or&eol;({17695}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
ROW |15695 |{17812}<0 and {17813}>0&eol;and (&eol;{17814}=6 or&eol;{17814}=7 or&eol;{17814}=11 or&eol;{17814}=62 or&eol;{17814}=69 or&eol;{17814}=117&eol;)&eol;and&eol;({17815}<>2)|Interface {#IFDESCR}: Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |1 |({17812}>0 and {17816}>0) or&eol;({17815}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
ROW |15698 |{17827}<0 and {17828}>0&eol;and (&eol;{17829}=6 or&eol;{17829}=7 or&eol;{17829}=11 or&eol;{17829}=62 or&eol;{17829}=69 or&eol;{17829}=117&eol;)&eol;and&eol;({17830}<>2)|Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |1 |({17827}>0 and {17831}>0) or&eol;({17830}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
-ROW |15714 |{17859}>{$TEMP_WARN:""}&eol;or&eol;{17860}={$TEMP_WARN_STATUS} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17861}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
ROW |15715 |{17862}>{$TEMP_CRIT:""} |{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17863}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
ROW |15716 |{17864}<{$TEMP_CRIT_LOW:""} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{17865}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
ROW |15717 |{17866}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
@@ -5419,11 +5419,7 @@ ROW |15729 |{17880}=1
ROW |15730 |{17881}=1 |System status is in warning state | |0 |2 |Please check the device for warnings |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |15731 |{17882}=1 and {17883}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |15732 |{17884}=1 and {17885}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |15733 |{17886}>{$TEMP_WARN:"CPU"}&eol;or&eol;{17887}={$TEMP_WARN_STATUS} |{#SENSOR_LOCALE}: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17888}<{$TEMP_WARN:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |15734 |{17889}>{$TEMP_CRIT:"CPU"}&eol;or&eol;{17890}={$TEMP_CRIT_STATUS}&eol;or&eol;{17890}={$TEMP_DISASTER_STATUS} |{#SENSOR_LOCALE}: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17891}<{$TEMP_CRIT:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
ROW |15735 |{17892}<{$TEMP_CRIT_LOW:"CPU"} |{#SENSOR_LOCALE}: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"} | |0 |3 | |NULL |0 |2 |1 |{17893}>{$TEMP_CRIT_LOW:"CPU"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |15736 |{17894}>{$TEMP_WARN:"Ambient"}&eol;or&eol;{17895}={$TEMP_WARN_STATUS} |{#SENSOR_LOCALE}: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17896}<{$TEMP_WARN:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |15737 |{17897}>{$TEMP_CRIT:"Ambient"}&eol;or&eol;{17898}={$TEMP_CRIT_STATUS}&eol;or&eol;{17898}={$TEMP_DISASTER_STATUS} |{#SENSOR_LOCALE}: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17899}<{$TEMP_CRIT:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
ROW |15738 |{17900}<{$TEMP_CRIT_LOW:"Ambient"} |{#SENSOR_LOCALE}: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{17901}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
ROW |15739 |{17902}=1 or {17903}=1 |{#PSU_DESCR}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |15740 |{17904}=1 |{#PSU_DESCR}: Power supply is in warning state | |0 |2 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
@@ -5496,9 +5492,6 @@ ROW |15839 |{18056}=1
ROW |15845 |{18062}>{$TEMP_WARN:""} |{#SENSOR_DESCR}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18063}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
ROW |15846 |{18064}>{$TEMP_CRIT:""} |{#SENSOR_DESCR}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18065}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
ROW |15847 |{18066}<{$TEMP_CRIT_LOW:""} |{#SENSOR_DESCR}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{18067}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |15848 |{18068} > ({18069} * 0.7) |70% http-8080 worker threads busy on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15849 |{18070} > ({18071} * 0.7) |70% http-8443 worker threads busy on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15850 |{18072} > ({18073} *0.7) |70% jk-8009 worker threads busy on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |15851 |{18074} = 1 |gzip compression is off for connector http-8080 on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |15852 |{18075} = 1 |gzip compression is off for connector http-8443 on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |15853 |{18076}>75 |Zabbix LLD manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18076}<65 |0 | |0 | |0 |
@@ -6001,8 +5994,6 @@ ROW |16840 |{19693}>{$CLICKHOUSE.QUEUE.SIZE.MAX.WARN:"{#TABLE}"}
ROW |16841 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19694}=2 and {19695}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{19694}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |16863 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19738}=2 and {19739}=1) |Interface {#IFDESCR}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{19738}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |16866 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19744}=2 and {19745}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{19744}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16869 |{19750}>{$TEMP_CRIT:"{#SNMPVALUE}"}&eol;or&eol;{19751}={$TEMP_CRIT_STATUS}&eol;or&eol;{19751}={$TEMP_DISASTER_STATUS} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{19752}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16870 |{19753}>{$TEMP_WARN:"{#SNMPVALUE}"}&eol;or&eol;{19754}={$TEMP_WARN_STATUS} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{19755}<{$TEMP_WARN:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
ROW |16871 |{19756}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} | |0 |3 | |NULL |0 |2 |1 |{19757}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
ROW |16883 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19786}=2 and {19787}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{19786}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |16886 |{19792}<10m |Apache: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
@@ -6041,11 +6032,7 @@ ROW |16918 |{19828}=1 and {19829}>0
ROW |16919 |{19830}=1 and {19831}>0 |Zabbix version has changed (new version: {ITEM.VALUE}) | |0 |1 |Zabbix server version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |16920 |{19832}=0 or {19833} = 0 |ClickHouse: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |16921 |{19834}=0 |ClickHouse: Port {$CLICKHOUSE.PORT} is unavaliable | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16922 |({19835} + ({19835}=0)) *&eol;1000 < {19836} |MSSQL: Index and table scans are often than index searches | |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 |16923 |({19837}/{19838} * 100) > {$MSSQL.PERCENT_COMPILATIONS.MAX} |MSSQL: Percent of adhoc queries running is over {$MSSQL.PERCENT_COMPILATIONS.MAX}% | |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 |16924 |({19839}/{19840} * 100) > {$MSSQL.PERCENT_RECOMPILATIONS.MAX} |MSSQL: Percent of times statement recompiles is over {$MSSQL.PERCENT_RECOMPILATIONS.MAX}% | |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 |16925 |{19841} * 100 > 10 * {19842} |MSSQL: Too frequently pointers using | |0 |2 |Rows with varchar columns can experience expansion when varchar values are updated with a longer string. In the case where the row cannot fit in the existing page, the row migrates and access to the row will traverse a pointer. This only happens on heaps (tables without clustered indexes). Evaluate clustered index for heap tables. In cases where clustered indexes cannot be used, drop non-clustered indexes, build a clustered index to reorg pages and rows, drop the clustered index, then recreate non-clustered indexes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16926 |{19843} / {19844} > {$MSSQL.PERCENT_READAHEAD.MAX} |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 |16927 |{19845}>{$MSSQL.AVERAGE_WAIT_TIME.MAX} |MSSQL: Total average wait time for locks is high (over {$MSSQL.AVERAGE_WAIT_TIME.MAX}ms for 5m) | |0 |2 |An average wait time longer than 500ms may indicate excessive blocking. This value should generally correlate to 'Lock Waits/sec' and move up or down with it accordingly. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |16928 |{19846}<{$MSSQL.BUFFER_CACHE_RATIO.MIN.CRIT} |MSSQL: Percentage of the buffer cache efficiency is low (below {$MSSQL.BUFFER_CACHE_RATIO.MIN.CRIT}% for 5m) | |0 |4 |Too low buffer cache hit ratio. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |16929 |{19847}<{$MSSQL.BUFFER_CACHE_RATIO.MIN.WARN} |MSSQL: Percentage of the buffer cache efficiency is low (below {$MSSQL.BUFFER_CACHE_RATIO.MIN.WARN}% for 5m) | |0 |2 |Low buffer cache hit ratio. |NULL |0 |0 |0 | |0 | |0 | |0 |
@@ -6064,15 +6051,12 @@ ROW |16941 |{19859}=1 and {19860}>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 |16945 |{19864}=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 |16946 |{19865}=0 |MSSQL AG '{#GROUP_NAME}': Primary replica recovery health in progress | |0 |2 |The primary replica is in the synchronization process. |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |16947 |{19866}=0 |MSSQL AG '{#GROUP_NAME}': Secondary replica recovery health in progress | |0 |2 |The secondary replica is in the synchronization process. |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |16948 |{19867}=0 |MSSQL AG '{#GROUP_NAME}': All replicas unhealthy | |0 |5 |None of the availability replicas have a healthy. |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |16949 |{19868}=1 |MSSQL AG '{#GROUP_NAME}': Some replicas unhealthy | |0 |4 |The synchronization health of some, but not all, availability replicas is healthy. |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |16950 |{19869}>{$MSSQL.LOG_FLUSH_WAIT_TIME.MAX:"{#DBNAME}"} |MSSQL DB '{#DBNAME}': Total wait time to flush the log is high (over {$MSSQL.LOG_FLUSH_WAIT_TIME.MAX:"{#DBNAME}"}ms for 5m) | |0 |2 |The wait time to flush the log is too long. |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |16951 |{19870}>{$MSSQL.LOG_FLUSH_WAITS.MAX:"{#DBNAME}"} |MSSQL DB '{#DBNAME}': Number of commits waiting for the log flush is high (over {$MSSQL.LOG_FLUSH_WAITS.MAX:"{#DBNAME}"}/sec for 5m) | |0 |2 |Too many commits are waiting for the log flush. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16952 |{19871}>{$MSSQL.LOG_GROWTHS.MAX:"{#DBNAME}"} |MSSQL DB '{#DBNAME}': Rate of log growths is high (over {$MSSQL.LOG_GROWTHS.MAX:"{#DBNAME}"} time(s) for 5m) | |0 |2 |The transaction log for the database has grown too frequently. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16953 |{19872}>{$MSSQL.LOG_SHRINKS.MAX:"{#DBNAME}"} |MSSQL DB '{#DBNAME}': Rate of log shrinks is (over {$MSSQL.LOG_SHRINKS.MAX:"{#DBNAME}"} time(s) for 5m) | |0 |2 |The transaction log for the database has shrunken too frequently. |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |16954 |{19873}>{$MSSQL.PERCENT_LOG_USED.MAX:"{#DBNAME}"} |MSSQL DB '{#DBNAME}': Percent of log using is high (over {$MSSQL.PERCENT_LOG_USED.MAX:"{#DBNAME}"}% for 5m) | |0 |2 |There's not enough space left in the log. |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |16955 |{19874}>1 |MSSQL DB '{#DBNAME}': State is {ITEM.VALUE} | |0 |4 |The DB has a non-working state. |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |16956 |{19875}>0 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}': "{#DBNAME}" is {ITEM.VALUE} | |0 |2 |The local availability database has a non-working state. |NULL |0 |2 |0 | |0 | |0 | |0 |
@@ -6122,20 +6106,10 @@ ROW |17011 |{19949} - {19950} * 2 > {$CPU.QUEUE.CRIT.MAX}
ROW |17012 |{19951}<{$SWAP.PFREE.MIN.WARN} and {19952}>0 |High swap space usage ( less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
ROW |17015 |{19957}>{$VFS.DEV.UTIL.MAX.WARN} |{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m) | |0 |2 |The disk appears to be under heavy load |NULL |0 |2 |0 | |0 | |1 | |0 |
ROW |17017 |{19959}=0 and {19960}>0 |Oracle: Port {$ORACLE.PORT} is unavailable | |0 |5 |The TCP port of the Oracle Server service is currently unavailable. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17018 |{19961} * 100 / {19962} > {$ORACLE.PROCESSES.MAX.WARN} |Oracle: Too many active processes (over {$ORACLE.PROCESSES.MAX.WARN}% for 5 min) | |0 |2 |Active processes are using more than {$ORACLE.PROCESSES.MAX.WARN}% of the available number of processes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17019 |{19963} * 100 / {19964} > {$ORACLE.SESSIONS.MAX.WARN} |Oracle: Too many active sessions (over {$ORACLE.SESSIONS.MAX.WARN}% for 5 min) | |0 |2 |Active sessions are using more than {$ORACLE.SESSIONS.MAX.WARN}% of the available sessions. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17020 |{19965} * 100 / {19966} > {$ORACLE.DB.FILE.MAX.WARN} |Oracle: Too many database files (over {$ORACLE.DB.FILE.MAX.WARN}% for 5 min) | |0 |2 |Number of datafiles is higher than {$ORACLE.DB.FILE.MAX.WARN}% of the available datafile files limit. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17021 |{19967} * 100 / {19968} > {$ORACLE.PGA.USE.MAX.WARN} |Oracle: Total PGA inuse is too high (over {$ORACLE.PGA.USE.MAX.WARN}% for 5 min) | |0 |2 |Total PGA in use is more than {$ORACLE.PGA.USE.MAX.WARN}% of PGA_AGGREGATE_TARGET. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |17022 |{19969}=1 and {19970}>0 |Oracle: Instance hostname has changed (new hostname received: {ITEM.VALUE}) | |0 |1 |Oracle DB Instance hostname has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |17023 |{19971}=1 and {19972}>0 |Oracle: Instance name has changed (new name received: {ITEM.VALUE}) | |0 |1 |Oracle DB Instance name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17024 |{19973} < {$ORACLE.REDO.MIN.WARN} |Oracle: Number of REDO logs available for switching is too low (less {$ORACLE.REDO.MIN.WARN} for 5 min) | |0 |2 |Number of available for log switching inactive/unused REDOs is low (Database down risk) |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17025 |{19974} > {$ORACLE.CONCURRENCY.MAX.WARN} |Oracle: Too hight database concurrency (over {$ORACLE.CONCURRENCY.MAX.WARN}% for 5 min) | |0 |2 |Concurrency rate is over {$ORACLE.CONCURRENCY.MAX.WARN}%. A high contention value does not indicate the root cause of the problem, but is a signal to search for it. In the case of high competition, an analysis of resource consumption should be carried out, the most "heavy" queries made in the database, possibly - session tracing. All this will help determine the root cause and possible optimization points both in the database configuration and in the logic of building queries of the application itself. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17026 |{19975} > {$ORACLE.SESSIONS.LOCK.MAX.WARN} |Oracle: Too many locked sessions (over {$ORACLE.SESSIONS.LOCK.MAX.WARN}% for 5 min) | |0 |2 |Number of locked sessions is over {$ORACLE.SESSIONS.LOCK.MAX.WARN}% of the running sessions. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17027 |{19976} > {$ORACLE.SESSION.LONG.LOCK.MAX.WARN} |Oracle: Too many sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME}s (over {$ORACLE.SESSION.LONG.LOCK.MAX.WARN} for 5 min) | |0 |2 |Number of sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME} seconds is too high. Long-term locks can negatively affect database performance, therefore, if they are detected, you should first find the most difficult queries from the database point of view and analyze possible resource leaks. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17028 |{19977}<{$ORACLE.SHARED.FREE.MIN.WARN} |Oracle: Shared pool free is too low (less {$ORACLE.SHARED.FREE.MIN.WARN}% for 5m) | |0 |2 |The shared pool free memory percent has been less than {$ORACLE.SHARED.FREE.MIN.WARN}% in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |17029 |{19978}<10m |Oracle: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |17030 |{19979}=1 |Oracle: Failed to fetch info data (or no data for 5m) | |0 |2 |Zabbix has not received data for items for the last 5 minutes. The database might be unavailable for connecting. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17031 |{19980} < {$ORACLE.EXPIRE.PASSWORD.MIN.WARN} |Oracle: Zabbix account will expire soon (under {$ORACLE.EXPIRE.PASSWORD.MIN.WARN} days) | |0 |2 |Password for zabbix user in the database will expire soon. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |17032 |{19981}=1 and {19982}>0 |Oracle: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |Oracle DB version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |17033 |{19983}=0 |Oracle: LISTENER process is not running | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |17034 |{19984}<2 |Archivelog '{#DEST_NAME}': Log Archive is not valid | |0 |4 |ARL destination not in 3 - Valid or 2 - Deferred. |NULL |0 |2 |0 | |0 | |0 | |0 |
@@ -6159,6 +6133,154 @@ ROW |17055 |{20026}<0 and {20027}>0&eol;and (&eol;{20028}=6 or&eol;{20028}=
ROW |17056 |({20031}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{20032} or&eol;{20033}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{20032}) and&eol;{20032}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{20031}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{20032} and&eol;{20033}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{20032}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
ROW |17057 |{20034}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {20035}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{20036}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {20037}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
ROW |17058 |{$IFCONTROL:"{#IFNAME}"}=1 and ({20038}<>2 and {20039}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:\"{#IFNAME}\"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important.&eol; No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status is different from Connected(2).&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{20038}=2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |17063 |{20054}>{20055} |GarbageCollector: Concurrent Mark Sweep in fire fighting mode | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17064 |{20056}>{20057} |GarbageCollector: Mark Sweep Compact in fire fighting mode | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17065 |{20058}>{20059} |GarbageCollector: PS Mark Sweep in fire fighting mode | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17066 |{20060}>({20061}*{$JMX.HEAP.MEM.USAGE.MAX}/100) |Memory: Heap memory usage more than {$JMX.HEAP.USAGE.MAX}% for {$JMX.HEAP.MEM.USAGE.TIME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17067 |{20062}>({20063}*{$JMX.NONHEAP.MEM.USAGE.MAX}/100) |Memory: Non-Heap memory usage more than {$JMX.NONHEAP.MEM.USAGE.MAX}% for {$JMX.NONHEAP.MEM.USAGE.TIME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17068 |{20064}>({20065}*{$JMX.MP.USAGE.MAX:"CMS Old Gen"}/100) |MemoryPool: CMS Old Gen memory usage more than {$JMX.MP.USAGE.MAX:"CMS Old Gen"}% for {$JMX.MP.USAGE.TIME:"CMS Old Gen"} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17069 |{20066}>({20067}*{$JMX.MP.USAGE.MAX:"CMS Perm Gen"}/100) |MemoryPool: CMS Perm Gen memory usage more than {$JMX.MP.USAGE.MAX:"CMS Perm Gen"}% for {$JMX.MP.USAGE.TIME:"CMS Perm Gen"} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17070 |{20068}>({20069}*{$JMX.MP.USAGE.MAX:"Code Cache"}/100) |MemoryPool: Code Cache memory usage more than {$JMX.MP.USAGE.MAX:"Code Cache"}% for {$JMX.MP.USAGE.TIME:"Code Cache"} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17071 |{20070}>({20071}*{$JMX.MP.USAGE.MAX:"Perm Gen"}/100) |MemoryPool: Perm Gen memory usage more than {$JMX.MP.USAGE.MAX:"Perm Gen"}% for {$JMX.MP.USAGE.TIME:"Perm Gen"} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17072 |{20072}>({20073}*{$JMX.MP.USAGE.MAX:"PS Old Gen"}/100) |MemoryPool: PS Old Gen memory usage more than {$JMX.MP.USAGE.MAX:"PS Old Gen"}% for {$JMX.MP.USAGE.TIME:"PS Old Gen"} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17073 |{20074}>({20075}*{$JMX.MP.USAGE.MAX:"PS Perm Gen"}/100) |MemoryPool: PS Perm Gen memory usage more than {$JMX.MP.USAGE.MAX:"PS Perm Gen"}% for {$JMX.MP.USAGE.TIME:"PS Perm Gen"} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17074 |{20076}>({20077}*{$JMX.MP.USAGE.MAX:"Tenured Gen"}/100) |MemoryPool: Tenured Gen memory usage more than {$JMX.MP.USAGE.MAX:"Tenured Gen"}% for {$JMX.MP.USAGE.TIME:"Tenured Gen"} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17075 |{20078}>({20079}*{$JMX.FILE.DESCRIPTORS.MAX}/100) |OperatingSystem: Opened file descriptor count more than {$JMX.FILE.DESCRIPTORS.MAX}% of maximum | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17076 |{20080}=1 |Compilation: {HOST.NAME} uses suboptimal JIT compiler | |0 |1 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17077 |{20081}>{$JMX.CPU.LOAD.MAX} |OperatingSystem: Process CPU Load more than {$JMX.CPU.LOAD.MAX}% for {$JMX.CPU.LOAD.TIME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17078 |{20082}=1 |Runtime: JVM is not reachable | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17079 |{20083}<>1 |Runtime: {HOST.NAME} runs suboptimal VM type | |0 |1 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17080 |{20084}<10m |VMware: {HOST.HOST} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17081 |{20085}=3 |VMware: The {HOST.HOST} health is Red | |0 |4 |One or more components in the appliance might be in an unusable status and the appliance might become unresponsive soon. Security patches might be available. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17082 |{20086}=2 |VMware: The {HOST.HOST} health is Yellow | |0 |3 |One or more components in the appliance might become overloaded soon. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17083 |{20087}=3 |VMware: The {HOST.HOST} health is Red | |0 |4 |One or more components in the appliance might be in an unusable status and the appliance might become unresponsive soon. Security patches might be available. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17084 |{20088}=2 |VMware: The {HOST.HOST} health is Yellow | |0 |3 |One or more components in the appliance might become overloaded soon. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17085 |{20089}<10m |VMware: {HOST.HOST} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17086 |{20090} > ({20091} * 0.7) |70% http-8080 worker threads busy on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17087 |{20092} > ({20093} * 0.7) |70% http-8443 worker threads busy on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17088 |{20094} > ({20095} *0.7) |70% jk-8009 worker threads busy on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17089 |{20096}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17090 |{20097}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17091 |{20098}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17092 |{20099}<1024 |Configured max number of opened files is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17093 |{20100}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17094 |{20101}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17095 |{20102}<50 |Lack of free swap space on {HOST.NAME} | |0 |2 |It probably means that the systems requires more physical memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17096 |{20103}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17097 |{20104}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17098 |{20105}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17099 |{20106}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17100 |{20107}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17101 |{20108}<1024 |Configured max number of opened files is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17102 |{20109}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17103 |{20110}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17104 |{20111}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17105 |{20112}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17106 |{20113}<1024 |Configured max number of opened files is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17107 |{20114}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17108 |{20115}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17109 |{20116}<50 |Lack of free swap space on {HOST.NAME} | |0 |2 |It probably means that the systems requires more physical memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17110 |{20117}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17111 |{20118}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17112 |{20119}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17113 |{20120}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17114 |{20121}<50 |Lack of free swap space on {HOST.NAME} | |0 |2 |It probably means that the systems requires more physical memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17115 |{20122}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17116 |{20123}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17117 |{20124}<1.597 or {20124}>2.019 |BB +1.8V SM Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17118 |{20125}<1.646 or {20125}>1.960 |BB +1.8V SM Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17119 |{20126}<2.876 or {20126}>3.729 |BB +3.3V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17120 |{20127}<2.970 or {20127}>3.618 |BB +3.3V Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17121 |{20128}<2.876 or {20128}>3.729 |BB +3.3V STBY Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17122 |{20129}<2.970 or {20129}>3.618 |BB +3.3V STBY Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17123 |{20130}<4.362 or {20130}>5.663 |BB +5.0V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17124 |{20131}<4.483 or {20131}>5.495 |BB +5.0V Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17125 |{20132}<5 or {20132}>66 |BB Ambient Temp Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17126 |{20133}<10 or {20133}>61 |BB Ambient Temp Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17127 |{20134}=0 |Power | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17128 |{20135}<5 or {20135}>90 |Baseboard Temp Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17129 |{20136}<10 or {20136}>83 |Baseboard Temp Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17130 |{20137}<0.953 or {20137}>1.149 |BB +1.05V PCH Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17131 |{20138}<0.985 or {20138}>1.117 |BB +1.05V PCH Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17132 |{20139}<0.683 or {20139}>1.543 |BB +1.1V P1 Vccp Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17133 |{20140}<0.708 or {20140}>1.501 |BB +1.1V P1 Vccp Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17134 |{20141}<1.362 or {20141}>1.635 |BB +1.5V P1 DDR3 Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17135 |{20142}<1.401 or {20142}>1.589 |BB +1.5V P1 DDR3 Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17136 |{20143}<2.982 or {20143}>3.625 |BB +3.3V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17137 |{20144}<3.067 or {20144}>3.525 |BB +3.3V Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17138 |{20145}<2.982 or {20145}>3.625 |BB +3.3V STBY Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17139 |{20146}<3.067 or {20146}>3.525 |BB +3.3V STBY Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17140 |{20147}<4.471 or {20147}>5.538 |BB +5.0V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17141 |{20148}<4.630 or {20148}>5.380 |BB +5.0V Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17142 |{20149}<0 or {20149}>48 |Front Panel Temp Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17143 |{20150}<5 or {20150}>44 |Front Panel Temp Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17144 |{20151}=0 |Power | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17145 |{20152}<324 |System Fan 2 Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17146 |{20153}<378 |System Fan 2 Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17147 |{20154}<324 |System Fan 3 Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17148 |{20155}<378 |System Fan 3 Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17149 |{20156} > {$MSSQL.PERCENT_READAHEAD.MAX} / 100 * {20157} |MSSQL: Too many physical reads occurring | |0 |2 |If this value is makes up even a sizeable minority of total Page Reads/sec (say, greater than 20% of total page reads), you may have too many physical reads occurring. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17150 |{20158} > {$MSSQL.PERCENT_COMPILATIONS.MAX} |MSSQL: Percent of adhoc queries running is over {$MSSQL.PERCENT_COMPILATIONS.MAX}% for 15m | |0 |2 |The lower this value is the better. High values often indicate excessive adhoc querying and should be as low as possible. If excessive adhoc querying is happening, try rewriting the queries as procedures or invoke the queries using sp_executeSQL. When rewriting isn’t possible, consider using a plan guide or setting the database to parameterization forced mode. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17151 |{20159} > {$MSSQL.PERCENT_RECOMPILATIONS.MAX} |MSSQL: Percent of times statement recompiles is over {$MSSQL.PERCENT_RECOMPILATIONS.MAX}% for 15m | |0 |2 |This number should be at or near zero, since recompiles can cause deadlocks and exclusive compile locks. This counter’s value should follow in proportion to “Batch Requests/sec” and “SQL Compilations/sec”. This needs to be nil in your system as much as possible. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17152 |{20160} > 0.001 |MSSQL: Index and table scans are often than index searches for 15m | |0 |2 |Index searches are preferable to index and table scans. For OLTP applications, optimize for more index searches and less scans (preferably, 1 full scan for every 1000 index searches). Index and table scans are expensive I/O operations. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17153 |{20161}=0 |MSSQL: Service is unavailable | |0 |5 |The TCP port of the MS SQL Server service is currently unavailable. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17154 |{20162} * 100 / {20163} > {$ORACLE.PROCESSES.MAX.WARN} |Oracle: Too many active processes (over {$ORACLE.PROCESSES.MAX.WARN}% for 5 min) | |0 |2 |Active processes are using more than {$ORACLE.PROCESSES.MAX.WARN}% of the available number of processes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17155 |{20164} * 100 / {20165} > {$ORACLE.SESSIONS.MAX.WARN} |Oracle: Too many active sessions (over {$ORACLE.SESSIONS.MAX.WARN}% for 5 min) | |0 |2 |Active sessions are using more than {$ORACLE.SESSIONS.MAX.WARN}% of the available sessions. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17156 |{20166} * 100 / {20167} > {$ORACLE.DB.FILE.MAX.WARN} |Oracle: Too many database files (over {$ORACLE.DB.FILE.MAX.WARN}% for 5 min) | |0 |2 |Number of datafiles is higher than {$ORACLE.DB.FILE.MAX.WARN}% of the available datafile files limit. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17157 |{20168} * 100 / {20169} > {$ORACLE.PGA.USE.MAX.WARN} |Oracle: Total PGA inuse is too high (over {$ORACLE.PGA.USE.MAX.WARN}% for 5 min) | |0 |2 |Total PGA in use is more than {$ORACLE.PGA.USE.MAX.WARN}% of PGA_AGGREGATE_TARGET. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17158 |{20170}=1 and {20171}>0 |Oracle: Instance hostname has changed (new hostname received: {ITEM.VALUE}) | |0 |1 |Oracle DB Instance hostname has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17159 |{20172}=1 and {20173}>0 |Oracle: Instance name has changed (new name received: {ITEM.VALUE}) | |0 |1 |Oracle DB Instance name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17160 |{20174}=0 |Oracle: Connection to database is unavailable | |0 |5 |Connection to Oracle Database is currently unavailable. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17161 |{20175} < {$ORACLE.REDO.MIN.WARN} |Oracle: Number of REDO logs available for switching is too low (less {$ORACLE.REDO.MIN.WARN} for 5 min) | |0 |2 |Number of available for log switching inactive/unused REDOs is low (Database down risk) |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17162 |{20176} > {$ORACLE.CONCURRENCY.MAX.WARN} |Oracle: Too hight database concurrency (over {$ORACLE.CONCURRENCY.MAX.WARN}% for 5 min) | |0 |2 |Concurrency rate is over {$ORACLE.CONCURRENCY.MAX.WARN}%. A high contention value does not indicate the root cause of the problem, but is a signal to search for it. In the case of high competition, an analysis of resource consumption should be carried out, the most "heavy" queries made in the database, possibly - session tracing. All this will help determine the root cause and possible optimization points both in the database configuration and in the logic of building queries of the application itself. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17163 |{20177} > {$ORACLE.SESSIONS.LOCK.MAX.WARN} |Oracle: Too many locked sessions (over {$ORACLE.SESSIONS.LOCK.MAX.WARN}% for 5 min) | |0 |2 |Number of locked sessions is over {$ORACLE.SESSIONS.LOCK.MAX.WARN}% of the running sessions. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17164 |{20178} > {$ORACLE.SESSION.LONG.LOCK.MAX.WARN} |Oracle: Too many sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME}s (over {$ORACLE.SESSION.LONG.LOCK.MAX.WARN} for 5 min) | |0 |2 |Number of sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME} seconds is too high. Long-term locks can negatively affect database performance, therefore, if they are detected, you should first find the most difficult queries from the database point of view and analyze possible resource leaks. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17165 |{20179}<{$ORACLE.SHARED.FREE.MIN.WARN} |Oracle: Shared pool free is too low (less {$ORACLE.SHARED.FREE.MIN.WARN}% for 5m) | |0 |2 |The shared pool free memory percent has been less than {$ORACLE.SHARED.FREE.MIN.WARN}% in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17166 |{20180}=1 |Oracle: Failed to fetch info data (or no data for 30m) | |0 |1 |Zabbix has not received data for items for the last 5 minutes. The database might be unavailable for connecting. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17167 |{20181}<10m |Oracle: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17168 |{20182} < {$ORACLE.EXPIRE.PASSWORD.MIN.WARN} |Oracle: Zabbix account will expire soon (under {$ORACLE.EXPIRE.PASSWORD.MIN.WARN} days) | |0 |2 |Password for zabbix user in the database will expire soon. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17169 |{20183}=1 and {20184}>0 |Oracle: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |Oracle DB version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17170 |{20185}<2 |Archivelog '{#DEST_NAME}': Log Archive is not valid | |0 |4 |ARL destination not in 3 - Valid or 2 - Deferred. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17171 |{20186} = 0 and {20187} = 1 |Oracle Database '{#DBNAME}': Force logging is deactivated for DB with active Archivelog | |0 |2 |Force Logging mode - it is very important metric for Databases in 'ARCHIVELOG'. This feature allows to forcibly write all transactions to the REDO. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17172 |{20188}=1 |Oracle Database '{#DBNAME}': Open status in mount mode | |0 |2 |The Oracle DB has a MOUNTED state. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17173 |{20189}=1 |Oracle Database '{#DBNAME}': Open status has changed (new value received: {ITEM.VALUE}) | |0 |1 |Oracle DB open status has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17174 |{20190}=1 |Oracle Database '{#DBNAME}': Role has changed (new value received: {ITEM.VALUE}) | |0 |1 |Oracle DB role has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17175 |{20191}>{$ORACLE.ASM.USED.PCT.MAX.WARN} |ASM '{#DG_NAME}': Disk group usage is too high (over {$ORACLE.ASM.USED.PCT.MAX.WARN}% for 5m) | |0 |2 |Usage percent of ASM disk group is over {$ORACLE.ASM.USED.PCT.MAX.WARN} |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17176 |{20192}>{$ORACLE.ASM.USED.PCT.MAX.HIGH} |ASM '{#DG_NAME}': Disk group usage is too high (over {$ORACLE.ASM.USED.PCT.MAX.HIGH}% for 5m) | |0 |4 |Usage percent of ASM disk group is over {$ORACLE.ASM.USED.PCT.MAX.WARN} |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17177 |{20193}=1 |Oracle Database '{#DBNAME}': Open status in mount mode | |0 |2 |The Oracle DB has a MOUNTED state. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17178 |{20194}=1 |Oracle Database '{#DBNAME}': Open status has changed (new value received: {ITEM.VALUE}) | |0 |1 |Oracle DB open status has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17179 |{20195}=2 |Oracle TBS '{#TABLESPACE}': Tablespase is OFFLINE | |0 |2 |The tablespase is in the offline state. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17180 |{20196}=1 |Oracle TBS '{#TABLESPACE}': Tablespace status has changed (new value received: {ITEM.VALUE}) | |0 |1 |Oracle tablespace status has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17181 |{20197}>{$ORACLE.TBS.USED.PCT.MAX.WARN} |Oracle TBS '{#TABLESPACE}': Tablespace usage is too high (over {$ORACLE.TBS.USED.PCT.MAX.WARN}% for 5m). | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17182 |{20198}>{$ORACLE.TBS.USED.PCT.MAX.HIGH} |Oracle TBS '{#TABLESPACE}': Tablespace Usage is too high (over {$ORACLE.TBS.USED.PCT.MAX.HIGH}% for 5m). | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17183 |{20199} * 100 / {20200} > {$ORACLE.PROCESSES.MAX.WARN} |Oracle: Too many active processes (over {$ORACLE.PROCESSES.MAX.WARN}% for 5 min) | |0 |2 |Active processes are using more than {$ORACLE.PROCESSES.MAX.WARN}% of the available number of processes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17184 |{20201} * 100 / {20202} > {$ORACLE.SESSIONS.MAX.WARN} |Oracle: Too many active sessions (over {$ORACLE.SESSIONS.MAX.WARN}% for 5 min) | |0 |2 |Active sessions are using more than {$ORACLE.SESSIONS.MAX.WARN}% of the available sessions. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17185 |{20203} * 100 / {20204} > {$ORACLE.DB.FILE.MAX.WARN} |Oracle: Too many database files (over {$ORACLE.DB.FILE.MAX.WARN}% for 5 min) | |0 |2 |Number of datafiles is higher than {$ORACLE.DB.FILE.MAX.WARN}% of the available datafile files limit. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17186 |{20205} * 100 / {20206} > {$ORACLE.PGA.USE.MAX.WARN} |Oracle: Total PGA inuse is too high (over {$ORACLE.PGA.USE.MAX.WARN}% for 5 min) | |0 |2 |Total PGA in use is more than {$ORACLE.PGA.USE.MAX.WARN}% of PGA_AGGREGATE_TARGET. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17187 |{20207} < {$ORACLE.REDO.MIN.WARN} |Oracle: Number of REDO logs available for switching is too low (less {$ORACLE.REDO.MIN.WARN} for 5 min) | |0 |2 |Number of available for log switching inactive/unused REDOs is low (Database down risk) |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17188 |{20208} > {$ORACLE.CONCURRENCY.MAX.WARN} |Oracle: Too hight database concurrency (over {$ORACLE.CONCURRENCY.MAX.WARN}% for 5 min) | |0 |2 |Concurrency rate is over {$ORACLE.CONCURRENCY.MAX.WARN}%. A high contention value does not indicate the root cause of the problem, but is a signal to search for it. In the case of high competition, an analysis of resource consumption should be carried out, the most "heavy" queries made in the database, possibly - session tracing. All this will help determine the root cause and possible optimization points both in the database configuration and in the logic of building queries of the application itself. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17189 |{20209} > {$ORACLE.SESSIONS.LOCK.MAX.WARN} |Oracle: Too many locked sessions (over {$ORACLE.SESSIONS.LOCK.MAX.WARN}% for 5 min) | |0 |2 |Number of locked sessions is over {$ORACLE.SESSIONS.LOCK.MAX.WARN}% of the running sessions. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17190 |{20210} > {$ORACLE.SESSION.LONG.LOCK.MAX.WARN} |Oracle: Too many sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME}s (over {$ORACLE.SESSION.LONG.LOCK.MAX.WARN} for 5 min) | |0 |2 |Number of sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME} seconds is too high. Long-term locks can negatively affect database performance, therefore, if they are detected, you should first find the most difficult queries from the database point of view and analyze possible resource leaks. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17191 |{20211}<{$ORACLE.SHARED.FREE.MIN.WARN} |Oracle: Shared pool free is too low (less {$ORACLE.SHARED.FREE.MIN.WARN}% for 5m) | |0 |2 |The shared pool free memory percent has been less than {$ORACLE.SHARED.FREE.MIN.WARN}% in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17192 |{20212} < {$ORACLE.EXPIRE.PASSWORD.MIN.WARN} |Oracle: Zabbix account will expire soon (under {$ORACLE.EXPIRE.PASSWORD.MIN.WARN} days) | |0 |2 |Password for zabbix user in the database will expire soon. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17193 |{20213}>{$TEMP_WARN:""}&eol;or&eol;{20214}={$TEMP_WARN_STATUS} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20215}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17194 |{20216}>{$TEMP_WARN:""}&eol;or&eol;{20217}={$TEMP_WARN_STATUS} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20218}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17195 |{20219}>{$TEMP_CRIT:"{#SNMPVALUE}"}&eol;or&eol;{20220}={$TEMP_CRIT_STATUS}&eol;or&eol;{20220}={$TEMP_DISASTER_STATUS} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20221}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17196 |{20222}>{$TEMP_WARN:"{#SNMPVALUE}"}&eol;or&eol;{20223}={$TEMP_WARN_STATUS} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20224}<{$TEMP_WARN:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17203 |{20243}>{$TEMP_CRIT:""}&eol;or&eol;{20244}={$TEMP_CRIT_STATUS} |Device: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |0 |1 |{20245}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17204 |{20246}>{$TEMP_CRIT:""}&eol;or&eol;{20247}={$TEMP_CRIT_STATUS} |{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20248}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17205 |{20249}>{$TEMP_WARN:""}&eol;or&eol;{20250}={$TEMP_WARN_STATUS} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20251}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17206 |{20252}>{$TEMP_WARN:""}&eol;or&eol;{20253}={$TEMP_WARN_STATUS} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20254}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17207 |{20255}>{$TEMP_WARN:"Device"} |Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20256}<{$TEMP_WARN:"Device"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17208 |{20257}>{$TEMP_CRIT:"Device"} |Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20258}<{$TEMP_CRIT:"Device"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17209 |{20259}<{$TEMP_CRIT_LOW:"Device"} |Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"} | |0 |3 | |NULL |0 |2 |1 |{20260}>{$TEMP_CRIT_LOW:"Device"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17210 |{20261}<>"running-ap" |Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running | |0 |2 |Access point interface can be not running by different reasons - disabled interface, power off, network link down. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17211 |{20262}>{$TEMP_CRIT:""}&eol;or&eol;{20263}={$TEMP_CRIT_STATUS} |#{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20264}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17212 |{20265}>{$TEMP_WARN:""}&eol;or&eol;{20266}={$TEMP_WARN_STATUS} |#{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20267}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17213 |{20268}>{$TEMP_CRIT:"Ambient"}&eol;or&eol;{20269}={$TEMP_CRIT_STATUS}&eol;or&eol;{20269}={$TEMP_DISASTER_STATUS} |{#SENSOR_LOCALE}: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20270}<{$TEMP_CRIT:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17214 |{20271}>{$TEMP_WARN:"Ambient"}&eol;or&eol;{20272}={$TEMP_WARN_STATUS} |{#SENSOR_LOCALE}: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20273}<{$TEMP_WARN:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17215 |{20274}>{$TEMP_CRIT:"CPU"}&eol;or&eol;{20275}={$TEMP_CRIT_STATUS}&eol;or&eol;{20275}={$TEMP_DISASTER_STATUS} |{#SENSOR_LOCALE}: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20276}<{$TEMP_CRIT:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17216 |{20277}>{$TEMP_WARN:"CPU"}&eol;or&eol;{20278}={$TEMP_WARN_STATUS} |{#SENSOR_LOCALE}: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20279}<{$TEMP_WARN:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
ROW |15694 |{17807}<0 and {17808}>0&eol;and (&eol;{17809}=6 or&eol;{17809}=7 or&eol;{17809}=11 or&eol;{17809}=62 or&eol;{17809}=69 or&eol;{17809}=117&eol;)&eol;and&eol;({17810}<>2)|Interface {#IFDESCR}: Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |15695 |0 |2 |1 |({17807}>0 and {17811}>0) or&eol;({17810}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
ROW |16279 |{18742}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |0 |
ROW |16285 |{18751}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
@@ -6640,12 +6762,6 @@ ROW |16864 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19740}=2 and {19741}=1)
ROW |16865 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19742}=2 and {19743}=1) |Interface {#IFDESCR}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |16863 |0 |2 |1 |{19742}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |16867 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19746}=2 and {19747}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |16866 |0 |2 |1 |{19746}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |16868 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19748}=2 and {19749}=1) |Interface {#IFDESCR}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |16863 |0 |2 |1 |{19748}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16872 |{19758}>{$TEMP_CRIT:"{#SNMPVALUE}"}&eol;or&eol;{19759}={$TEMP_CRIT_STATUS}&eol;or&eol;{19759}={$TEMP_DISASTER_STATUS} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |16869 |0 |2 |1 |{19760}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16873 |{19761}>{$TEMP_CRIT:"{#SNMPVALUE}"}&eol;or&eol;{19762}={$TEMP_CRIT_STATUS}&eol;or&eol;{19762}={$TEMP_DISASTER_STATUS} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |16869 |0 |2 |1 |{19763}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16874 |{19764}>{$TEMP_CRIT:"{#SNMPVALUE}"}&eol;or&eol;{19765}={$TEMP_CRIT_STATUS}&eol;or&eol;{19765}={$TEMP_DISASTER_STATUS} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |16869 |0 |2 |1 |{19766}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16875 |{19767}>{$TEMP_WARN:"{#SNMPVALUE}"}&eol;or&eol;{19768}={$TEMP_WARN_STATUS} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |16870 |0 |2 |1 |{19769}<{$TEMP_WARN:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16876 |{19770}>{$TEMP_WARN:"{#SNMPVALUE}"}&eol;or&eol;{19771}={$TEMP_WARN_STATUS} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |16870 |0 |2 |1 |{19772}<{$TEMP_WARN:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16877 |{19773}>{$TEMP_WARN:"{#SNMPVALUE}"}&eol;or&eol;{19774}={$TEMP_WARN_STATUS} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |16870 |0 |2 |1 |{19775}<{$TEMP_WARN:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
ROW |16878 |{19776}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} | |0 |3 | |16871 |0 |2 |1 |{19777}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
ROW |16879 |{19778}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} | |0 |3 | |16871 |0 |2 |1 |{19779}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
ROW |16880 |{19780}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} | |0 |3 | |16871 |0 |2 |1 |{19781}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
@@ -6672,6 +6788,12 @@ ROW |17059 |{20040}<0 and {20041}>0&eol;and (&eol;{20042}=6 or&eol;{20042}=
ROW |17060 |({20045}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{20046} or&eol;{20047}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{20046}) and&eol;{20046}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |17056 |0 |2 |1 |{20045}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{20046} and&eol;{20047}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{20046}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
ROW |17061 |{20048}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {20049}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |17057 |0 |2 |1 |{20050}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {20051}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
ROW |17062 |{$IFCONTROL:"{#IFNAME}"}=1 and ({20052}<>2 and {20053}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:\"{#IFNAME}\"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important.&eol; No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status is different from Connected(2).&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |17058 |0 |2 |1 |{20052}=2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |17197 |{20225}>{$TEMP_CRIT:"{#SNMPVALUE}"}&eol;or&eol;{20226}={$TEMP_CRIT_STATUS}&eol;or&eol;{20226}={$TEMP_DISASTER_STATUS} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |17195 |0 |2 |1 |{20227}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17198 |{20228}>{$TEMP_CRIT:"{#SNMPVALUE}"}&eol;or&eol;{20229}={$TEMP_CRIT_STATUS}&eol;or&eol;{20229}={$TEMP_DISASTER_STATUS} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |17195 |0 |2 |1 |{20230}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17199 |{20231}>{$TEMP_CRIT:"{#SNMPVALUE}"}&eol;or&eol;{20232}={$TEMP_CRIT_STATUS}&eol;or&eol;{20232}={$TEMP_DISASTER_STATUS} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |17195 |0 |2 |1 |{20233}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17200 |{20234}>{$TEMP_WARN:"{#SNMPVALUE}"}&eol;or&eol;{20235}={$TEMP_WARN_STATUS} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |17196 |0 |2 |1 |{20236}<{$TEMP_WARN:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17201 |{20237}>{$TEMP_WARN:"{#SNMPVALUE}"}&eol;or&eol;{20238}={$TEMP_WARN_STATUS} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |17196 |0 |2 |1 |{20239}<{$TEMP_WARN:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17202 |{20240}>{$TEMP_WARN:"{#SNMPVALUE}"}&eol;or&eol;{20241}={$TEMP_WARN_STATUS} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |17196 |0 |2 |1 |{20242}<{$TEMP_WARN:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
TABLE |trigger_depends
FIELDS|triggerdepid|triggerid_down|triggerid_up|
@@ -6679,592 +6801,601 @@ ROW |10546 |15978 |15983 |
ROW |10547 |15980 |15979 |
ROW |10548 |15986 |15987 |
ROW |10549 |15988 |15987 |
-ROW |16174 |15944 |15947 |
-ROW |16175 |15944 |15943 |
-ROW |16176 |15943 |15947 |
-ROW |16177 |16888 |15947 |
-ROW |16178 |16888 |15943 |
-ROW |16179 |15948 |15949 |
-ROW |16180 |15950 |15949 |
-ROW |16181 |16743 |16744 |
-ROW |16182 |16784 |16785 |
-ROW |16183 |16790 |16791 |
-ROW |16184 |16892 |16900 |
-ROW |16185 |16894 |16900 |
-ROW |16186 |16646 |16647 |
-ROW |16187 |16809 |16810 |
-ROW |16188 |16902 |16904 |
-ROW |16189 |16904 |16905 |
-ROW |16190 |16909 |16906 |
-ROW |16191 |16910 |16912 |
-ROW |16192 |16912 |16913 |
-ROW |16193 |16917 |16914 |
-ROW |16194 |16752 |16753 |
-ROW |16195 |15955 |15957 |
-ROW |16196 |15955 |15954 |
-ROW |16197 |15954 |15957 |
-ROW |16198 |15956 |15957 |
-ROW |16199 |15956 |15954 |
-ROW |16200 |16678 |15957 |
-ROW |16201 |16678 |15954 |
-ROW |16202 |15961 |15960 |
-ROW |16203 |15962 |15960 |
-ROW |16204 |16679 |15960 |
-ROW |16205 |16257 |16255 |
-ROW |16206 |16257 |16256 |
-ROW |16207 |16256 |16255 |
-ROW |16208 |16251 |16255 |
-ROW |16209 |16251 |16256 |
-ROW |16210 |16443 |16255 |
-ROW |16211 |16443 |16256 |
-ROW |16212 |16270 |16269 |
-ROW |16213 |16448 |16269 |
-ROW |16214 |16265 |16269 |
-ROW |16215 |14195 |14205 |
-ROW |16216 |14196 |14195 |
-ROW |16217 |14196 |14205 |
-ROW |16218 |14197 |14205 |
-ROW |16219 |14198 |14197 |
-ROW |16220 |14198 |14205 |
-ROW |16221 |14200 |14199 |
-ROW |16222 |14201 |14205 |
-ROW |16223 |14202 |14201 |
-ROW |16224 |14202 |14205 |
-ROW |16225 |14204 |14203 |
-ROW |16226 |14206 |14222 |
-ROW |16227 |14207 |14206 |
-ROW |16228 |14207 |14222 |
-ROW |16229 |14208 |14222 |
-ROW |16230 |14209 |14208 |
-ROW |16231 |14209 |14222 |
-ROW |16232 |14210 |14222 |
-ROW |16233 |14211 |14210 |
-ROW |16234 |14211 |14222 |
-ROW |16235 |14212 |14222 |
-ROW |16236 |14213 |14212 |
-ROW |16237 |14213 |14222 |
-ROW |16238 |14214 |14222 |
-ROW |16239 |14215 |14214 |
-ROW |16240 |14215 |14222 |
-ROW |16241 |14217 |14216 |
-ROW |16242 |14218 |14222 |
-ROW |16243 |14219 |14218 |
-ROW |16244 |14219 |14222 |
-ROW |16245 |14220 |14222 |
-ROW |16246 |14221 |14220 |
-ROW |16247 |14221 |14222 |
-ROW |16248 |14223 |14222 |
-ROW |16249 |14224 |14222 |
-ROW |16250 |14224 |14223 |
-ROW |16251 |14225 |14222 |
-ROW |16252 |14226 |14222 |
-ROW |16253 |14226 |14225 |
-ROW |16254 |16920 |16921 |
-ROW |16255 |16833 |16920 |
-ROW |16256 |16929 |16928 |
-ROW |16257 |16940 |16945 |
-ROW |16258 |16719 |16721 |
-ROW |16259 |16975 |16723 |
-ROW |16260 |16729 |16728 |
-ROW |16261 |16730 |16728 |
-ROW |16262 |16756 |16758 |
-ROW |16263 |16979 |16759 |
-ROW |16264 |16765 |16764 |
-ROW |16265 |16766 |16764 |
-ROW |16266 |16734 |16736 |
-ROW |16267 |16983 |16732 |
-ROW |16268 |16741 |16740 |
-ROW |16269 |16742 |16740 |
-ROW |16270 |17030 |17017 |
-ROW |16271 |17035 |17036 |
-ROW |16272 |17039 |17038 |
-ROW |16273 |17044 |17043 |
-ROW |16274 |17045 |17046 |
-ROW |16275 |15928 |15933 |
-ROW |16276 |15931 |15933 |
-ROW |16277 |16683 |16687 |
-ROW |16278 |14252 |14251 |
-ROW |16279 |14294 |14293 |
-ROW |16280 |14312 |14311 |
-ROW |16281 |14328 |14327 |
-ROW |16282 |14348 |14347 |
-ROW |16283 |14357 |14356 |
-ROW |16284 |14390 |14389 |
-ROW |16285 |14404 |14403 |
-ROW |16286 |14452 |14451 |
-ROW |16287 |14469 |14468 |
-ROW |16288 |14487 |14486 |
-ROW |16289 |14506 |14505 |
-ROW |16290 |14535 |14534 |
-ROW |16291 |14545 |14544 |
-ROW |16292 |14583 |14582 |
-ROW |16293 |14599 |14598 |
-ROW |16294 |14616 |14615 |
-ROW |16295 |14653 |14652 |
-ROW |16296 |14674 |14673 |
-ROW |16297 |14692 |14691 |
-ROW |16298 |14705 |14704 |
-ROW |16299 |14718 |14717 |
-ROW |16300 |14907 |14906 |
-ROW |16301 |14929 |14928 |
-ROW |16302 |15221 |15220 |
-ROW |16303 |15702 |15701 |
-ROW |16304 |15724 |15723 |
-ROW |16305 |15756 |15755 |
-ROW |16306 |15820 |15819 |
-ROW |16307 |15841 |15840 |
-ROW |16308 |15991 |15990 |
-ROW |16309 |16018 |16017 |
-ROW |16310 |16454 |16453 |
-ROW |16311 |14253 |14252 |
-ROW |16312 |14295 |14294 |
-ROW |16313 |14313 |14312 |
-ROW |16314 |14329 |14328 |
-ROW |16315 |14349 |14348 |
-ROW |16316 |14358 |14357 |
-ROW |16317 |14391 |14390 |
-ROW |16318 |14405 |14404 |
-ROW |16319 |14453 |14452 |
-ROW |16320 |14470 |14469 |
-ROW |16321 |14488 |14487 |
-ROW |16322 |14507 |14506 |
-ROW |16323 |14536 |14535 |
-ROW |16324 |14546 |14545 |
-ROW |16325 |14584 |14583 |
-ROW |16326 |14600 |14599 |
-ROW |16327 |14617 |14616 |
-ROW |16328 |14654 |14653 |
-ROW |16329 |14675 |14674 |
-ROW |16330 |14693 |14692 |
-ROW |16331 |14706 |14705 |
-ROW |16332 |14719 |14718 |
-ROW |16333 |14908 |14907 |
-ROW |16334 |14930 |14929 |
-ROW |16335 |15222 |15221 |
-ROW |16336 |15703 |15702 |
-ROW |16337 |15725 |15724 |
-ROW |16338 |15757 |15756 |
-ROW |16339 |15821 |15820 |
-ROW |16340 |15842 |15841 |
-ROW |16341 |15992 |15991 |
-ROW |16342 |16019 |16018 |
-ROW |16343 |16455 |16454 |
-ROW |16344 |14253 |14251 |
-ROW |16345 |14295 |14293 |
-ROW |16346 |14313 |14311 |
-ROW |16347 |14329 |14327 |
-ROW |16348 |14349 |14347 |
-ROW |16349 |14358 |14356 |
-ROW |16350 |14391 |14389 |
-ROW |16351 |14405 |14403 |
-ROW |16352 |14453 |14451 |
-ROW |16353 |14470 |14468 |
-ROW |16354 |14488 |14486 |
-ROW |16355 |14507 |14505 |
-ROW |16356 |14536 |14534 |
-ROW |16357 |14546 |14544 |
-ROW |16358 |14584 |14582 |
-ROW |16359 |14600 |14598 |
-ROW |16360 |14617 |14615 |
-ROW |16361 |14654 |14652 |
-ROW |16362 |14675 |14673 |
-ROW |16363 |14693 |14691 |
-ROW |16364 |14706 |14704 |
-ROW |16365 |14719 |14717 |
-ROW |16366 |14908 |14906 |
-ROW |16367 |14930 |14928 |
-ROW |16368 |15222 |15220 |
-ROW |16369 |15703 |15701 |
-ROW |16370 |15725 |15723 |
-ROW |16371 |15757 |15755 |
-ROW |16372 |15821 |15819 |
-ROW |16373 |15842 |15840 |
-ROW |16374 |15992 |15990 |
-ROW |16375 |16019 |16017 |
-ROW |16376 |16455 |16453 |
-ROW |16377 |16287 |16289 |
-ROW |16378 |16279 |16285 |
-ROW |16379 |16290 |16348 |
-ROW |16380 |16291 |16349 |
-ROW |16381 |16292 |16350 |
-ROW |16382 |16293 |16351 |
-ROW |16383 |16294 |16352 |
-ROW |16384 |16295 |16353 |
-ROW |16385 |16296 |16354 |
-ROW |16386 |16297 |16355 |
-ROW |16387 |16298 |16356 |
-ROW |16388 |16299 |16357 |
-ROW |16389 |16300 |16358 |
-ROW |16390 |16301 |16359 |
-ROW |16391 |16302 |16360 |
-ROW |16392 |16303 |16361 |
-ROW |16393 |16304 |16362 |
-ROW |16394 |16305 |16363 |
-ROW |16395 |16306 |16364 |
-ROW |16396 |16307 |16365 |
-ROW |16397 |16308 |16366 |
-ROW |16398 |16309 |16367 |
-ROW |16399 |16310 |16368 |
-ROW |16400 |16311 |16369 |
-ROW |16401 |16312 |16370 |
-ROW |16402 |16313 |16371 |
-ROW |16403 |16314 |16372 |
-ROW |16404 |16315 |16373 |
-ROW |16405 |16316 |16374 |
-ROW |16406 |16317 |16375 |
-ROW |16407 |16318 |16376 |
-ROW |16408 |16457 |16458 |
-ROW |16409 |16289 |14293 |
-ROW |16410 |16285 |14717 |
-ROW |16411 |16348 |14311 |
-ROW |16412 |16349 |14327 |
-ROW |16413 |16350 |14347 |
-ROW |16414 |16351 |14356 |
-ROW |16415 |16352 |14389 |
-ROW |16416 |16353 |14403 |
-ROW |16417 |16354 |14451 |
-ROW |16418 |16355 |14468 |
-ROW |16419 |16356 |14486 |
-ROW |16420 |16357 |14505 |
-ROW |16421 |16358 |14534 |
-ROW |16422 |16359 |14544 |
-ROW |16423 |16360 |14582 |
-ROW |16424 |16361 |14598 |
-ROW |16425 |16362 |14615 |
-ROW |16426 |16363 |14652 |
-ROW |16427 |16364 |14673 |
-ROW |16428 |16365 |14691 |
-ROW |16429 |16366 |14704 |
-ROW |16430 |16367 |14906 |
-ROW |16431 |16368 |14928 |
-ROW |16432 |16369 |15220 |
-ROW |16433 |16370 |15701 |
-ROW |16434 |16371 |15723 |
-ROW |16435 |16372 |15755 |
-ROW |16436 |16373 |15819 |
-ROW |16437 |16374 |15840 |
-ROW |16438 |16375 |15990 |
-ROW |16439 |16376 |16017 |
-ROW |16440 |16458 |16453 |
-ROW |16441 |16631 |16630 |
-ROW |16442 |16640 |16636 |
-ROW |16443 |16641 |16637 |
-ROW |16444 |16642 |16638 |
-ROW |16445 |16643 |16639 |
-ROW |16446 |15695 |16863 |
-ROW |16447 |16429 |16863 |
-ROW |16448 |16430 |16863 |
-ROW |16449 |15694 |16868 |
-ROW |16450 |15696 |16864 |
-ROW |16451 |15697 |16865 |
-ROW |16452 |16426 |16868 |
-ROW |16453 |16431 |16864 |
-ROW |16454 |16432 |16865 |
-ROW |16455 |16428 |16868 |
-ROW |16456 |16433 |16864 |
-ROW |16457 |16434 |16865 |
-ROW |16458 |15671 |16841 |
-ROW |16459 |16379 |16841 |
-ROW |16460 |16380 |16841 |
-ROW |16461 |15672 |16842 |
-ROW |16462 |15673 |16843 |
-ROW |16463 |15674 |16844 |
-ROW |16464 |15675 |16845 |
-ROW |16465 |15676 |16846 |
-ROW |16466 |15677 |16847 |
-ROW |16467 |15678 |16848 |
-ROW |16468 |15679 |16849 |
-ROW |16469 |15680 |16850 |
-ROW |16470 |15681 |16851 |
-ROW |16471 |15682 |16852 |
-ROW |16472 |15683 |16853 |
-ROW |16473 |15684 |16854 |
-ROW |16474 |15685 |16855 |
-ROW |16475 |15686 |16856 |
-ROW |16476 |15687 |16857 |
-ROW |16477 |15689 |16858 |
-ROW |16478 |15690 |16859 |
-ROW |16479 |15691 |16860 |
-ROW |16480 |15708 |16861 |
-ROW |16481 |15997 |16862 |
-ROW |16482 |16381 |16842 |
-ROW |16483 |16382 |16843 |
-ROW |16484 |16383 |16844 |
-ROW |16485 |16384 |16845 |
-ROW |16486 |16385 |16846 |
-ROW |16487 |16386 |16847 |
-ROW |16488 |16387 |16848 |
-ROW |16489 |16388 |16849 |
-ROW |16490 |16389 |16850 |
-ROW |16491 |16390 |16851 |
-ROW |16492 |16391 |16852 |
-ROW |16493 |16392 |16853 |
-ROW |16494 |16393 |16854 |
-ROW |16495 |16394 |16855 |
-ROW |16496 |16395 |16856 |
-ROW |16497 |16396 |16857 |
-ROW |16498 |16397 |16858 |
-ROW |16499 |16398 |16859 |
-ROW |16500 |16399 |16860 |
-ROW |16501 |16400 |16861 |
-ROW |16502 |16401 |16862 |
-ROW |16503 |16402 |16842 |
-ROW |16504 |16403 |16843 |
-ROW |16505 |16404 |16844 |
-ROW |16506 |16405 |16845 |
-ROW |16507 |16406 |16846 |
-ROW |16508 |16407 |16847 |
-ROW |16509 |16408 |16848 |
-ROW |16510 |16409 |16849 |
-ROW |16511 |16410 |16850 |
-ROW |16512 |16411 |16851 |
-ROW |16513 |16412 |16852 |
-ROW |16514 |16413 |16853 |
-ROW |16515 |16414 |16854 |
-ROW |16516 |16415 |16855 |
-ROW |16517 |16416 |16856 |
-ROW |16518 |16417 |16857 |
-ROW |16519 |16418 |16858 |
-ROW |16520 |16419 |16859 |
-ROW |16521 |16420 |16860 |
-ROW |16522 |16421 |16861 |
-ROW |16523 |16422 |16862 |
-ROW |16524 |15698 |16866 |
-ROW |16525 |16435 |16866 |
-ROW |16526 |16436 |16866 |
-ROW |16527 |16028 |16867 |
-ROW |16528 |16437 |16867 |
-ROW |16529 |16438 |16867 |
-ROW |16530 |14318 |14319 |
-ROW |16531 |15714 |15715 |
-ROW |16532 |15721 |15720 |
-ROW |16533 |15394 |15393 |
-ROW |16534 |15392 |15391 |
-ROW |16535 |15390 |14339 |
-ROW |16536 |15382 |15381 |
-ROW |16537 |15380 |15379 |
-ROW |16538 |16504 |16505 |
-ROW |16539 |14372 |14373 |
-ROW |16540 |15386 |15385 |
-ROW |16541 |15384 |15383 |
-ROW |16542 |14380 |14381 |
-ROW |16543 |15347 |15346 |
-ROW |16544 |15345 |15344 |
-ROW |16545 |16870 |16869 |
-ROW |16546 |15363 |15360 |
-ROW |16547 |15364 |15361 |
-ROW |16548 |15365 |15362 |
-ROW |16549 |15357 |15354 |
-ROW |16550 |15358 |15355 |
-ROW |16551 |15359 |15356 |
-ROW |16552 |16875 |16872 |
-ROW |16553 |16876 |16873 |
-ROW |16554 |16877 |16874 |
-ROW |16555 |15334 |15333 |
-ROW |16556 |15332 |15331 |
-ROW |16557 |14460 |14461 |
-ROW |16558 |14476 |14477 |
-ROW |16559 |14495 |14496 |
-ROW |16560 |14511 |15368 |
-ROW |16561 |14551 |14552 |
-ROW |16562 |15374 |15373 |
-ROW |16563 |15376 |15375 |
-ROW |16564 |14914 |14915 |
-ROW |16565 |14589 |14590 |
-ROW |16566 |15338 |15337 |
-ROW |16567 |15335 |15336 |
-ROW |16568 |14624 |14625 |
-ROW |16569 |15387 |14934 |
-ROW |16570 |14658 |14659 |
-ROW |16571 |14664 |14665 |
-ROW |16572 |16547 |16546 |
-ROW |16573 |15396 |15397 |
-ROW |16574 |16551 |16552 |
-ROW |16575 |16034 |16990 |
-ROW |16576 |16051 |16991 |
-ROW |16577 |16052 |16992 |
-ROW |16578 |16034 |16033 |
-ROW |16579 |16051 |16049 |
-ROW |16580 |16052 |16050 |
-ROW |16581 |16031 |16563 |
-ROW |16582 |16045 |16564 |
-ROW |16583 |16046 |16565 |
-ROW |16584 |16039 |16040 |
-ROW |16585 |16061 |16063 |
-ROW |16586 |16062 |16064 |
-ROW |16587 |16042 |16579 |
-ROW |16588 |16067 |16580 |
-ROW |16589 |16068 |16581 |
-ROW |16590 |16041 |16042 |
-ROW |16591 |16065 |16067 |
-ROW |16592 |16066 |16068 |
-ROW |16593 |16041 |16579 |
-ROW |16594 |16065 |16580 |
-ROW |16595 |16066 |16581 |
-ROW |16596 |16990 |16033 |
-ROW |16597 |16991 |16049 |
-ROW |16598 |16992 |16050 |
-ROW |16599 |16070 |16069 |
-ROW |16600 |16072 |16071 |
-ROW |16601 |16076 |16994 |
-ROW |16602 |16074 |16994 |
-ROW |16603 |16079 |16077 |
-ROW |16604 |16080 |16078 |
-ROW |16605 |16083 |16081 |
-ROW |16606 |16084 |16082 |
-ROW |16607 |16091 |16997 |
-ROW |16608 |16092 |16998 |
-ROW |16609 |16087 |16997 |
-ROW |16610 |16088 |16998 |
-ROW |16611 |16100 |16999 |
-ROW |16612 |16113 |17000 |
-ROW |16613 |16100 |16099 |
-ROW |16614 |16113 |16112 |
-ROW |16615 |16097 |16569 |
-ROW |16616 |16110 |16570 |
-ROW |16617 |16105 |16106 |
-ROW |16618 |16118 |16119 |
-ROW |16619 |16108 |16582 |
-ROW |16620 |16121 |16583 |
-ROW |16621 |16107 |16108 |
-ROW |16622 |16120 |16121 |
-ROW |16623 |16107 |16582 |
-ROW |16624 |16120 |16583 |
-ROW |16625 |16999 |16099 |
-ROW |16626 |17000 |16112 |
-ROW |16627 |16123 |16122 |
-ROW |16628 |16125 |16124 |
-ROW |16629 |16129 |17002 |
-ROW |16630 |16127 |17002 |
-ROW |16631 |16131 |16130 |
-ROW |16632 |16133 |16132 |
-ROW |16633 |16137 |17004 |
-ROW |16634 |16135 |17004 |
-ROW |16635 |16149 |16147 |
-ROW |16636 |16149 |16148 |
-ROW |16637 |16141 |16142 |
-ROW |16638 |16146 |16573 |
-ROW |16639 |16143 |16584 |
-ROW |16640 |16147 |16148 |
-ROW |16641 |16152 |16883 |
-ROW |16642 |16153 |16883 |
-ROW |16643 |16150 |16883 |
-ROW |16644 |16151 |16883 |
-ROW |16645 |16156 |16155 |
-ROW |16646 |16158 |16157 |
-ROW |16647 |16001 |15999 |
-ROW |16648 |16005 |16003 |
-ROW |16649 |16001 |16000 |
-ROW |16650 |16005 |16004 |
-ROW |16651 |15999 |16000 |
-ROW |16652 |16003 |16004 |
-ROW |16653 |16009 |16008 |
-ROW |16654 |16011 |16010 |
-ROW |16655 |16014 |16013 |
-ROW |16656 |16016 |16015 |
-ROW |16657 |17005 |16160 |
-ROW |16658 |17007 |16171 |
-ROW |16659 |17006 |16164 |
-ROW |16660 |17008 |16175 |
-ROW |16661 |16161 |16160 |
-ROW |16662 |16172 |16171 |
-ROW |16663 |16162 |16161 |
-ROW |16664 |16173 |16172 |
-ROW |16665 |16162 |16160 |
-ROW |16666 |16173 |16171 |
-ROW |16667 |16166 |16164 |
-ROW |16668 |16177 |16175 |
-ROW |16669 |16167 |16164 |
-ROW |16670 |16178 |16175 |
-ROW |16671 |16183 |16182 |
-ROW |16672 |17047 |17050 |
-ROW |16673 |17048 |17050 |
-ROW |16674 |17049 |17050 |
-ROW |16675 |16190 |16189 |
-ROW |16676 |17051 |17054 |
-ROW |16677 |17052 |17054 |
-ROW |16678 |17053 |17054 |
-ROW |16679 |17011 |16209 |
-ROW |16680 |17013 |16220 |
-ROW |16681 |17012 |16213 |
-ROW |16682 |17014 |16224 |
-ROW |16683 |16210 |16209 |
-ROW |16684 |16221 |16220 |
-ROW |16685 |16211 |16210 |
-ROW |16686 |16222 |16221 |
-ROW |16687 |16211 |16209 |
-ROW |16688 |16222 |16220 |
-ROW |16689 |16215 |16213 |
-ROW |16690 |16226 |16224 |
-ROW |16691 |16216 |16213 |
-ROW |16692 |16227 |16224 |
-ROW |16693 |16232 |16231 |
-ROW |16694 |17055 |17058 |
-ROW |16695 |17056 |17058 |
-ROW |16696 |17057 |17058 |
-ROW |16697 |16239 |16238 |
-ROW |16698 |17059 |17062 |
-ROW |16699 |17060 |17062 |
-ROW |16700 |17061 |17062 |
-ROW |16701 |16768 |16769 |
-ROW |16702 |16768 |16770 |
-ROW |16703 |16769 |16770 |
-ROW |16704 |16771 |16772 |
-ROW |16705 |16771 |16773 |
-ROW |16706 |16772 |16773 |
-ROW |16707 |16488 |16487 |
-ROW |16708 |16485 |16484 |
-ROW |16709 |16486 |16484 |
-ROW |16710 |16486 |16485 |
-ROW |16711 |16480 |16479 |
-ROW |16712 |16482 |16481 |
-ROW |16713 |16475 |16474 |
-ROW |16714 |16471 |16472 |
-ROW |16715 |16468 |16469 |
-ROW |16716 |16459 |16460 |
-ROW |16717 |16462 |16463 |
-ROW |16718 |16465 |16466 |
-ROW |16719 |16477 |16476 |
-ROW |16720 |15729 |15728 |
-ROW |16721 |15730 |15728 |
-ROW |16722 |15730 |15729 |
-ROW |16723 |15752 |15754 |
-ROW |16724 |15753 |15754 |
-ROW |16725 |15753 |15752 |
-ROW |16726 |15742 |15741 |
-ROW |16727 |15750 |15749 |
-ROW |16728 |15751 |15750 |
-ROW |16729 |15751 |15749 |
-ROW |16730 |15746 |15743 |
-ROW |16731 |15744 |15743 |
-ROW |16732 |15740 |15739 |
-ROW |16733 |15736 |15737 |
-ROW |16734 |15733 |15734 |
-ROW |16735 |15748 |15747 |
-ROW |16736 |16440 |16439 |
-ROW |16737 |15791 |15790 |
-ROW |16738 |15788 |15787 |
-ROW |16739 |15789 |15787 |
-ROW |16740 |15789 |15788 |
-ROW |16741 |15786 |15785 |
-ROW |16742 |15784 |15783 |
-ROW |16743 |15794 |15792 |
-ROW |16744 |15793 |15792 |
-ROW |16745 |15782 |15781 |
-ROW |16746 |15763 |15764 |
-ROW |16747 |15766 |15767 |
-ROW |16748 |15769 |15770 |
-ROW |16749 |15778 |15779 |
-ROW |16750 |15772 |15773 |
-ROW |16751 |15775 |15776 |
-ROW |16752 |15797 |15796 |
-ROW |16753 |15825 |15824 |
-ROW |16754 |15826 |15824 |
-ROW |16755 |15826 |15825 |
-ROW |16756 |15828 |15829 |
-ROW |16757 |15831 |15832 |
-ROW |16758 |15834 |15835 |
-ROW |16759 |15845 |15846 |
+ROW |16760 |15944 |15947 |
+ROW |16761 |15944 |15943 |
+ROW |16762 |15943 |15947 |
+ROW |16763 |16888 |15947 |
+ROW |16764 |16888 |15943 |
+ROW |16765 |15948 |15949 |
+ROW |16766 |15950 |15949 |
+ROW |16767 |16743 |16744 |
+ROW |16768 |16784 |16785 |
+ROW |16769 |16790 |16791 |
+ROW |16770 |16892 |16900 |
+ROW |16771 |16894 |16900 |
+ROW |16772 |16646 |16647 |
+ROW |16773 |16809 |16810 |
+ROW |16774 |16902 |16904 |
+ROW |16775 |16904 |16905 |
+ROW |16776 |16909 |16906 |
+ROW |16777 |16910 |16912 |
+ROW |16778 |16912 |16913 |
+ROW |16779 |16917 |16914 |
+ROW |16780 |16752 |16753 |
+ROW |16781 |15955 |15957 |
+ROW |16782 |15955 |15954 |
+ROW |16783 |15954 |15957 |
+ROW |16784 |15956 |15957 |
+ROW |16785 |15956 |15954 |
+ROW |16786 |16678 |15957 |
+ROW |16787 |16678 |15954 |
+ROW |16788 |15961 |15960 |
+ROW |16789 |15962 |15960 |
+ROW |16790 |16679 |15960 |
+ROW |16791 |16257 |16255 |
+ROW |16792 |16257 |16256 |
+ROW |16793 |16256 |16255 |
+ROW |16794 |16251 |16255 |
+ROW |16795 |16251 |16256 |
+ROW |16796 |16443 |16255 |
+ROW |16797 |16443 |16256 |
+ROW |16798 |16270 |16269 |
+ROW |16799 |16448 |16269 |
+ROW |16800 |16265 |16269 |
+ROW |16801 |17081 |17083 |
+ROW |16802 |17082 |17081 |
+ROW |16803 |17082 |17083 |
+ROW |16804 |17082 |17084 |
+ROW |16805 |17084 |17083 |
+ROW |16806 |17117 |17127 |
+ROW |16807 |17118 |17117 |
+ROW |16808 |17118 |17127 |
+ROW |16809 |17119 |17127 |
+ROW |16810 |17120 |17119 |
+ROW |16811 |17120 |17127 |
+ROW |16812 |17122 |17121 |
+ROW |16813 |17123 |17127 |
+ROW |16814 |17124 |17123 |
+ROW |16815 |17124 |17127 |
+ROW |16816 |17126 |17125 |
+ROW |16817 |17128 |17144 |
+ROW |16818 |17129 |17128 |
+ROW |16819 |17129 |17144 |
+ROW |16820 |17130 |17144 |
+ROW |16821 |17131 |17130 |
+ROW |16822 |17131 |17144 |
+ROW |16823 |17132 |17144 |
+ROW |16824 |17133 |17132 |
+ROW |16825 |17133 |17144 |
+ROW |16826 |17134 |17144 |
+ROW |16827 |17135 |17134 |
+ROW |16828 |17135 |17144 |
+ROW |16829 |17136 |17144 |
+ROW |16830 |17137 |17136 |
+ROW |16831 |17137 |17144 |
+ROW |16832 |17139 |17138 |
+ROW |16833 |17140 |17144 |
+ROW |16834 |17141 |17140 |
+ROW |16835 |17141 |17144 |
+ROW |16836 |17142 |17144 |
+ROW |16837 |17143 |17142 |
+ROW |16838 |17143 |17144 |
+ROW |16839 |17145 |17144 |
+ROW |16840 |17146 |17144 |
+ROW |16841 |17146 |17145 |
+ROW |16842 |17147 |17144 |
+ROW |16843 |17148 |17144 |
+ROW |16844 |17148 |17147 |
+ROW |16845 |16920 |16921 |
+ROW |16846 |16833 |16920 |
+ROW |16847 |16929 |16928 |
+ROW |16848 |16940 |17153 |
+ROW |16849 |16719 |16721 |
+ROW |16850 |16975 |16723 |
+ROW |16851 |16729 |16728 |
+ROW |16852 |16730 |16728 |
+ROW |16853 |16756 |16758 |
+ROW |16854 |16979 |16759 |
+ROW |16855 |16765 |16764 |
+ROW |16856 |16766 |16764 |
+ROW |16857 |16734 |16736 |
+ROW |16858 |16983 |16732 |
+ROW |16859 |16741 |16740 |
+ROW |16860 |16742 |16740 |
+ROW |16861 |17173 |17172 |
+ROW |16862 |17175 |17176 |
+ROW |16863 |17180 |17179 |
+ROW |16864 |17181 |17182 |
+ROW |16865 |17030 |17017 |
+ROW |16866 |17035 |17036 |
+ROW |16867 |17039 |17038 |
+ROW |16868 |17044 |17043 |
+ROW |16869 |17045 |17046 |
+ROW |16870 |15928 |15933 |
+ROW |16871 |15931 |15933 |
+ROW |16872 |16683 |16687 |
+ROW |16873 |14252 |14251 |
+ROW |16874 |14294 |14293 |
+ROW |16875 |14312 |14311 |
+ROW |16876 |14328 |14327 |
+ROW |16877 |14348 |14347 |
+ROW |16878 |14357 |14356 |
+ROW |16879 |14390 |14389 |
+ROW |16880 |14404 |14403 |
+ROW |16881 |14452 |14451 |
+ROW |16882 |14469 |14468 |
+ROW |16883 |14487 |14486 |
+ROW |16884 |14506 |14505 |
+ROW |16885 |14535 |14534 |
+ROW |16886 |14545 |14544 |
+ROW |16887 |14583 |14582 |
+ROW |16888 |14599 |14598 |
+ROW |16889 |14616 |14615 |
+ROW |16890 |14653 |14652 |
+ROW |16891 |14674 |14673 |
+ROW |16892 |14692 |14691 |
+ROW |16893 |14705 |14704 |
+ROW |16894 |14718 |14717 |
+ROW |16895 |14907 |14906 |
+ROW |16896 |14929 |14928 |
+ROW |16897 |15221 |15220 |
+ROW |16898 |15702 |15701 |
+ROW |16899 |15724 |15723 |
+ROW |16900 |15756 |15755 |
+ROW |16901 |15820 |15819 |
+ROW |16902 |15841 |15840 |
+ROW |16903 |15991 |15990 |
+ROW |16904 |16018 |16017 |
+ROW |16905 |16454 |16453 |
+ROW |16906 |14253 |14252 |
+ROW |16907 |14295 |14294 |
+ROW |16908 |14313 |14312 |
+ROW |16909 |14329 |14328 |
+ROW |16910 |14349 |14348 |
+ROW |16911 |14358 |14357 |
+ROW |16912 |14391 |14390 |
+ROW |16913 |14405 |14404 |
+ROW |16914 |14453 |14452 |
+ROW |16915 |14470 |14469 |
+ROW |16916 |14488 |14487 |
+ROW |16917 |14507 |14506 |
+ROW |16918 |14536 |14535 |
+ROW |16919 |14546 |14545 |
+ROW |16920 |14584 |14583 |
+ROW |16921 |14600 |14599 |
+ROW |16922 |14617 |14616 |
+ROW |16923 |14654 |14653 |
+ROW |16924 |14675 |14674 |
+ROW |16925 |14693 |14692 |
+ROW |16926 |14706 |14705 |
+ROW |16927 |14719 |14718 |
+ROW |16928 |14908 |14907 |
+ROW |16929 |14930 |14929 |
+ROW |16930 |15222 |15221 |
+ROW |16931 |15703 |15702 |
+ROW |16932 |15725 |15724 |
+ROW |16933 |15757 |15756 |
+ROW |16934 |15821 |15820 |
+ROW |16935 |15842 |15841 |
+ROW |16936 |15992 |15991 |
+ROW |16937 |16019 |16018 |
+ROW |16938 |16455 |16454 |
+ROW |16939 |14253 |14251 |
+ROW |16940 |14295 |14293 |
+ROW |16941 |14313 |14311 |
+ROW |16942 |14329 |14327 |
+ROW |16943 |14349 |14347 |
+ROW |16944 |14358 |14356 |
+ROW |16945 |14391 |14389 |
+ROW |16946 |14405 |14403 |
+ROW |16947 |14453 |14451 |
+ROW |16948 |14470 |14468 |
+ROW |16949 |14488 |14486 |
+ROW |16950 |14507 |14505 |
+ROW |16951 |14536 |14534 |
+ROW |16952 |14546 |14544 |
+ROW |16953 |14584 |14582 |
+ROW |16954 |14600 |14598 |
+ROW |16955 |14617 |14615 |
+ROW |16956 |14654 |14652 |
+ROW |16957 |14675 |14673 |
+ROW |16958 |14693 |14691 |
+ROW |16959 |14706 |14704 |
+ROW |16960 |14719 |14717 |
+ROW |16961 |14908 |14906 |
+ROW |16962 |14930 |14928 |
+ROW |16963 |15222 |15220 |
+ROW |16964 |15703 |15701 |
+ROW |16965 |15725 |15723 |
+ROW |16966 |15757 |15755 |
+ROW |16967 |15821 |15819 |
+ROW |16968 |15842 |15840 |
+ROW |16969 |15992 |15990 |
+ROW |16970 |16019 |16017 |
+ROW |16971 |16455 |16453 |
+ROW |16972 |16287 |16289 |
+ROW |16973 |16279 |16285 |
+ROW |16974 |16290 |16348 |
+ROW |16975 |16291 |16349 |
+ROW |16976 |16292 |16350 |
+ROW |16977 |16293 |16351 |
+ROW |16978 |16294 |16352 |
+ROW |16979 |16295 |16353 |
+ROW |16980 |16296 |16354 |
+ROW |16981 |16297 |16355 |
+ROW |16982 |16298 |16356 |
+ROW |16983 |16299 |16357 |
+ROW |16984 |16300 |16358 |
+ROW |16985 |16301 |16359 |
+ROW |16986 |16302 |16360 |
+ROW |16987 |16303 |16361 |
+ROW |16988 |16304 |16362 |
+ROW |16989 |16305 |16363 |
+ROW |16990 |16306 |16364 |
+ROW |16991 |16307 |16365 |
+ROW |16992 |16308 |16366 |
+ROW |16993 |16309 |16367 |
+ROW |16994 |16310 |16368 |
+ROW |16995 |16311 |16369 |
+ROW |16996 |16312 |16370 |
+ROW |16997 |16313 |16371 |
+ROW |16998 |16314 |16372 |
+ROW |16999 |16315 |16373 |
+ROW |17000 |16316 |16374 |
+ROW |17001 |16317 |16375 |
+ROW |17002 |16318 |16376 |
+ROW |17003 |16457 |16458 |
+ROW |17004 |16289 |14293 |
+ROW |17005 |16285 |14717 |
+ROW |17006 |16348 |14311 |
+ROW |17007 |16349 |14327 |
+ROW |17008 |16350 |14347 |
+ROW |17009 |16351 |14356 |
+ROW |17010 |16352 |14389 |
+ROW |17011 |16353 |14403 |
+ROW |17012 |16354 |14451 |
+ROW |17013 |16355 |14468 |
+ROW |17014 |16356 |14486 |
+ROW |17015 |16357 |14505 |
+ROW |17016 |16358 |14534 |
+ROW |17017 |16359 |14544 |
+ROW |17018 |16360 |14582 |
+ROW |17019 |16361 |14598 |
+ROW |17020 |16362 |14615 |
+ROW |17021 |16363 |14652 |
+ROW |17022 |16364 |14673 |
+ROW |17023 |16365 |14691 |
+ROW |17024 |16366 |14704 |
+ROW |17025 |16367 |14906 |
+ROW |17026 |16368 |14928 |
+ROW |17027 |16369 |15220 |
+ROW |17028 |16370 |15701 |
+ROW |17029 |16371 |15723 |
+ROW |17030 |16372 |15755 |
+ROW |17031 |16373 |15819 |
+ROW |17032 |16374 |15840 |
+ROW |17033 |16375 |15990 |
+ROW |17034 |16376 |16017 |
+ROW |17035 |16458 |16453 |
+ROW |17036 |16631 |16630 |
+ROW |17037 |16640 |16636 |
+ROW |17038 |16641 |16637 |
+ROW |17039 |16642 |16638 |
+ROW |17040 |16643 |16639 |
+ROW |17041 |15695 |16863 |
+ROW |17042 |16429 |16863 |
+ROW |17043 |16430 |16863 |
+ROW |17044 |15694 |16868 |
+ROW |17045 |15696 |16864 |
+ROW |17046 |15697 |16865 |
+ROW |17047 |16426 |16868 |
+ROW |17048 |16431 |16864 |
+ROW |17049 |16432 |16865 |
+ROW |17050 |16428 |16868 |
+ROW |17051 |16433 |16864 |
+ROW |17052 |16434 |16865 |
+ROW |17053 |15671 |16841 |
+ROW |17054 |16379 |16841 |
+ROW |17055 |16380 |16841 |
+ROW |17056 |15672 |16842 |
+ROW |17057 |15673 |16843 |
+ROW |17058 |15674 |16844 |
+ROW |17059 |15675 |16845 |
+ROW |17060 |15676 |16846 |
+ROW |17061 |15677 |16847 |
+ROW |17062 |15678 |16848 |
+ROW |17063 |15679 |16849 |
+ROW |17064 |15680 |16850 |
+ROW |17065 |15681 |16851 |
+ROW |17066 |15682 |16852 |
+ROW |17067 |15683 |16853 |
+ROW |17068 |15684 |16854 |
+ROW |17069 |15685 |16855 |
+ROW |17070 |15686 |16856 |
+ROW |17071 |15687 |16857 |
+ROW |17072 |15689 |16858 |
+ROW |17073 |15690 |16859 |
+ROW |17074 |15691 |16860 |
+ROW |17075 |15708 |16861 |
+ROW |17076 |15997 |16862 |
+ROW |17077 |16381 |16842 |
+ROW |17078 |16382 |16843 |
+ROW |17079 |16383 |16844 |
+ROW |17080 |16384 |16845 |
+ROW |17081 |16385 |16846 |
+ROW |17082 |16386 |16847 |
+ROW |17083 |16387 |16848 |
+ROW |17084 |16388 |16849 |
+ROW |17085 |16389 |16850 |
+ROW |17086 |16390 |16851 |
+ROW |17087 |16391 |16852 |
+ROW |17088 |16392 |16853 |
+ROW |17089 |16393 |16854 |
+ROW |17090 |16394 |16855 |
+ROW |17091 |16395 |16856 |
+ROW |17092 |16396 |16857 |
+ROW |17093 |16397 |16858 |
+ROW |17094 |16398 |16859 |
+ROW |17095 |16399 |16860 |
+ROW |17096 |16400 |16861 |
+ROW |17097 |16401 |16862 |
+ROW |17098 |16402 |16842 |
+ROW |17099 |16403 |16843 |
+ROW |17100 |16404 |16844 |
+ROW |17101 |16405 |16845 |
+ROW |17102 |16406 |16846 |
+ROW |17103 |16407 |16847 |
+ROW |17104 |16408 |16848 |
+ROW |17105 |16409 |16849 |
+ROW |17106 |16410 |16850 |
+ROW |17107 |16411 |16851 |
+ROW |17108 |16412 |16852 |
+ROW |17109 |16413 |16853 |
+ROW |17110 |16414 |16854 |
+ROW |17111 |16415 |16855 |
+ROW |17112 |16416 |16856 |
+ROW |17113 |16417 |16857 |
+ROW |17114 |16418 |16858 |
+ROW |17115 |16419 |16859 |
+ROW |17116 |16420 |16860 |
+ROW |17117 |16421 |16861 |
+ROW |17118 |16422 |16862 |
+ROW |17119 |15698 |16866 |
+ROW |17120 |16435 |16866 |
+ROW |17121 |16436 |16866 |
+ROW |17122 |16028 |16867 |
+ROW |17123 |16437 |16867 |
+ROW |17124 |16438 |16867 |
+ROW |17125 |14318 |14319 |
+ROW |17126 |17193 |15715 |
+ROW |17127 |15721 |15720 |
+ROW |17128 |15394 |15393 |
+ROW |17129 |15392 |15391 |
+ROW |17130 |17194 |14339 |
+ROW |17131 |15382 |15381 |
+ROW |17132 |15380 |15379 |
+ROW |17133 |16504 |16505 |
+ROW |17134 |14372 |14373 |
+ROW |17135 |15386 |15385 |
+ROW |17136 |15384 |15383 |
+ROW |17137 |14380 |14381 |
+ROW |17138 |15347 |15346 |
+ROW |17139 |15345 |15344 |
+ROW |17140 |17196 |17195 |
+ROW |17141 |15363 |15360 |
+ROW |17142 |15364 |15361 |
+ROW |17143 |15365 |15362 |
+ROW |17144 |15357 |15354 |
+ROW |17145 |15358 |15355 |
+ROW |17146 |15359 |15356 |
+ROW |17147 |17200 |17197 |
+ROW |17148 |17201 |17198 |
+ROW |17149 |17202 |17199 |
+ROW |17150 |15334 |15333 |
+ROW |17151 |15332 |15331 |
+ROW |17152 |14460 |14461 |
+ROW |17153 |14476 |14477 |
+ROW |17154 |14495 |14496 |
+ROW |17155 |14511 |17203 |
+ROW |17156 |14551 |14552 |
+ROW |17157 |15374 |15373 |
+ROW |17158 |15376 |15375 |
+ROW |17159 |14914 |14915 |
+ROW |17160 |14589 |14590 |
+ROW |17161 |15338 |15337 |
+ROW |17162 |17205 |17204 |
+ROW |17163 |14624 |14625 |
+ROW |17164 |17206 |14934 |
+ROW |17165 |14664 |14665 |
+ROW |17166 |17207 |17208 |
+ROW |17167 |16547 |16546 |
+ROW |17168 |17212 |17211 |
+ROW |17169 |16551 |16552 |
+ROW |17170 |16034 |16990 |
+ROW |17171 |16051 |16991 |
+ROW |17172 |16052 |16992 |
+ROW |17173 |16034 |16033 |
+ROW |17174 |16051 |16049 |
+ROW |17175 |16052 |16050 |
+ROW |17176 |16031 |16563 |
+ROW |17177 |16045 |16564 |
+ROW |17178 |16046 |16565 |
+ROW |17179 |16039 |16040 |
+ROW |17180 |16061 |16063 |
+ROW |17181 |16062 |16064 |
+ROW |17182 |16042 |16579 |
+ROW |17183 |16067 |16580 |
+ROW |17184 |16068 |16581 |
+ROW |17185 |16041 |16042 |
+ROW |17186 |16065 |16067 |
+ROW |17187 |16066 |16068 |
+ROW |17188 |16041 |16579 |
+ROW |17189 |16065 |16580 |
+ROW |17190 |16066 |16581 |
+ROW |17191 |16990 |16033 |
+ROW |17192 |16991 |16049 |
+ROW |17193 |16992 |16050 |
+ROW |17194 |16070 |16069 |
+ROW |17195 |16072 |16071 |
+ROW |17196 |16076 |16994 |
+ROW |17197 |16074 |16994 |
+ROW |17198 |16079 |16077 |
+ROW |17199 |16080 |16078 |
+ROW |17200 |16083 |16081 |
+ROW |17201 |16084 |16082 |
+ROW |17202 |16091 |16997 |
+ROW |17203 |16092 |16998 |
+ROW |17204 |16087 |16997 |
+ROW |17205 |16088 |16998 |
+ROW |17206 |16100 |16999 |
+ROW |17207 |16113 |17000 |
+ROW |17208 |16100 |16099 |
+ROW |17209 |16113 |16112 |
+ROW |17210 |16097 |16569 |
+ROW |17211 |16110 |16570 |
+ROW |17212 |16105 |16106 |
+ROW |17213 |16118 |16119 |
+ROW |17214 |16108 |16582 |
+ROW |17215 |16121 |16583 |
+ROW |17216 |16107 |16108 |
+ROW |17217 |16120 |16121 |
+ROW |17218 |16107 |16582 |
+ROW |17219 |16120 |16583 |
+ROW |17220 |16999 |16099 |
+ROW |17221 |17000 |16112 |
+ROW |17222 |16123 |16122 |
+ROW |17223 |16125 |16124 |
+ROW |17224 |16129 |17002 |
+ROW |17225 |16127 |17002 |
+ROW |17226 |16131 |16130 |
+ROW |17227 |16133 |16132 |
+ROW |17228 |16137 |17004 |
+ROW |17229 |16135 |17004 |
+ROW |17230 |16149 |16147 |
+ROW |17231 |16149 |16148 |
+ROW |17232 |16141 |16142 |
+ROW |17233 |16146 |16573 |
+ROW |17234 |16143 |16584 |
+ROW |17235 |16147 |16148 |
+ROW |17236 |16152 |16883 |
+ROW |17237 |16153 |16883 |
+ROW |17238 |16150 |16883 |
+ROW |17239 |16151 |16883 |
+ROW |17240 |16156 |16155 |
+ROW |17241 |16158 |16157 |
+ROW |17242 |16001 |15999 |
+ROW |17243 |16005 |16003 |
+ROW |17244 |16001 |16000 |
+ROW |17245 |16005 |16004 |
+ROW |17246 |15999 |16000 |
+ROW |17247 |16003 |16004 |
+ROW |17248 |16009 |16008 |
+ROW |17249 |16011 |16010 |
+ROW |17250 |16014 |16013 |
+ROW |17251 |16016 |16015 |
+ROW |17252 |17005 |16160 |
+ROW |17253 |17007 |16171 |
+ROW |17254 |17006 |16164 |
+ROW |17255 |17008 |16175 |
+ROW |17256 |16161 |16160 |
+ROW |17257 |16172 |16171 |
+ROW |17258 |16162 |16161 |
+ROW |17259 |16173 |16172 |
+ROW |17260 |16162 |16160 |
+ROW |17261 |16173 |16171 |
+ROW |17262 |16166 |16164 |
+ROW |17263 |16177 |16175 |
+ROW |17264 |16167 |16164 |
+ROW |17265 |16178 |16175 |
+ROW |17266 |16183 |16182 |
+ROW |17267 |17047 |17050 |
+ROW |17268 |17048 |17050 |
+ROW |17269 |17049 |17050 |
+ROW |17270 |16190 |16189 |
+ROW |17271 |17051 |17054 |
+ROW |17272 |17052 |17054 |
+ROW |17273 |17053 |17054 |
+ROW |17274 |17011 |16209 |
+ROW |17275 |17013 |16220 |
+ROW |17276 |17012 |16213 |
+ROW |17277 |17014 |16224 |
+ROW |17278 |16210 |16209 |
+ROW |17279 |16221 |16220 |
+ROW |17280 |16211 |16210 |
+ROW |17281 |16222 |16221 |
+ROW |17282 |16211 |16209 |
+ROW |17283 |16222 |16220 |
+ROW |17284 |16215 |16213 |
+ROW |17285 |16226 |16224 |
+ROW |17286 |16216 |16213 |
+ROW |17287 |16227 |16224 |
+ROW |17288 |16232 |16231 |
+ROW |17289 |17055 |17058 |
+ROW |17290 |17056 |17058 |
+ROW |17291 |17057 |17058 |
+ROW |17292 |16239 |16238 |
+ROW |17293 |17059 |17062 |
+ROW |17294 |17060 |17062 |
+ROW |17295 |17061 |17062 |
+ROW |17296 |16768 |16769 |
+ROW |17297 |16768 |16770 |
+ROW |17298 |16769 |16770 |
+ROW |17299 |16771 |16772 |
+ROW |17300 |16771 |16773 |
+ROW |17301 |16772 |16773 |
+ROW |17302 |16488 |16487 |
+ROW |17303 |16485 |16484 |
+ROW |17304 |16486 |16484 |
+ROW |17305 |16486 |16485 |
+ROW |17306 |16480 |16479 |
+ROW |17307 |16482 |16481 |
+ROW |17308 |16475 |16474 |
+ROW |17309 |16471 |16472 |
+ROW |17310 |16468 |16469 |
+ROW |17311 |16459 |16460 |
+ROW |17312 |16462 |16463 |
+ROW |17313 |16465 |16466 |
+ROW |17314 |16477 |16476 |
+ROW |17315 |15729 |15728 |
+ROW |17316 |15730 |15728 |
+ROW |17317 |15730 |15729 |
+ROW |17318 |15752 |15754 |
+ROW |17319 |15753 |15754 |
+ROW |17320 |15753 |15752 |
+ROW |17321 |15742 |15741 |
+ROW |17322 |15750 |15749 |
+ROW |17323 |15751 |15750 |
+ROW |17324 |15751 |15749 |
+ROW |17325 |15746 |15743 |
+ROW |17326 |15744 |15743 |
+ROW |17327 |15740 |15739 |
+ROW |17328 |17214 |17213 |
+ROW |17329 |17216 |17215 |
+ROW |17330 |15748 |15747 |
+ROW |17331 |16440 |16439 |
+ROW |17332 |15791 |15790 |
+ROW |17333 |15788 |15787 |
+ROW |17334 |15789 |15787 |
+ROW |17335 |15789 |15788 |
+ROW |17336 |15786 |15785 |
+ROW |17337 |15784 |15783 |
+ROW |17338 |15794 |15792 |
+ROW |17339 |15793 |15792 |
+ROW |17340 |15782 |15781 |
+ROW |17341 |15763 |15764 |
+ROW |17342 |15766 |15767 |
+ROW |17343 |15769 |15770 |
+ROW |17344 |15778 |15779 |
+ROW |17345 |15772 |15773 |
+ROW |17346 |15775 |15776 |
+ROW |17347 |15797 |15796 |
+ROW |17348 |15825 |15824 |
+ROW |17349 |15826 |15824 |
+ROW |17350 |15826 |15825 |
+ROW |17351 |15828 |15829 |
+ROW |17352 |15831 |15832 |
+ROW |17353 |15834 |15835 |
+ROW |17354 |15845 |15846 |
TABLE |functions
FIELDS|functionid|itemid|triggerid|name |parameter |
@@ -7275,57 +7406,29 @@ ROW |12648 |23620 |13075 |max |10m
ROW |12649 |22185 |13019 |max |10m |
ROW |12651 |22396 |13017 |max |10m |
ROW |12653 |22219 |13023 |min |10m |
-ROW |12717 |22835 |13330 |last |0 |
-ROW |12718 |22836 |13331 |last |0 |
ROW |12723 |22853 |13336 |diff |0 |
-ROW |12724 |22856 |13337 |last |0 |
ROW |12725 |22858 |13338 |diff |0 |
ROW |12726 |22859 |13339 |change |0 |
ROW |12727 |22861 |13340 |diff |0 |
-ROW |12728 |22862 |13341 |last |0 |
-ROW |12729 |22869 |13342 |last |0 |
-ROW |12730 |22872 |13343 |last |0 |
-ROW |12733 |22875 |13346 |last |0 |
-ROW |12734 |22876 |13347 |last |0 |
ROW |12739 |22893 |13352 |diff |0 |
-ROW |12740 |22896 |13353 |last |0 |
ROW |12741 |22898 |13354 |diff |0 |
ROW |12742 |22899 |13355 |change |0 |
ROW |12743 |22901 |13356 |diff |0 |
-ROW |12744 |22902 |13357 |last |0 |
-ROW |12745 |22909 |13358 |last |0 |
-ROW |12746 |22912 |13359 |last |0 |
ROW |12755 |22933 |13368 |diff |0 |
ROW |12757 |22938 |13370 |diff |0 |
ROW |12758 |22939 |13371 |change |0 |
ROW |12759 |22941 |13372 |diff |0 |
-ROW |12760 |22942 |13373 |last |0 |
-ROW |12761 |22949 |13374 |last |0 |
-ROW |12762 |22952 |13375 |last |0 |
ROW |12771 |22973 |13384 |diff |0 |
ROW |12773 |22978 |13386 |diff |0 |
ROW |12775 |22981 |13388 |diff |0 |
-ROW |12776 |22982 |13389 |last |0 |
-ROW |12777 |22989 |13390 |last |0 |
-ROW |12778 |22992 |13391 |last |0 |
-ROW |12782 |22996 |13395 |last |0 |
ROW |12787 |23013 |13400 |diff |0 |
-ROW |12788 |23016 |13401 |last |0 |
ROW |12789 |23018 |13402 |diff |0 |
ROW |12790 |23019 |13403 |change |0 |
ROW |12791 |23021 |13404 |diff |0 |
-ROW |12792 |23022 |13405 |last |0 |
-ROW |12793 |23029 |13406 |last |0 |
-ROW |12794 |23032 |13407 |last |0 |
-ROW |12797 |23035 |13410 |last |0 |
-ROW |12798 |23036 |13411 |last |0 |
ROW |12803 |23053 |13416 |diff |0 |
ROW |12805 |23058 |13418 |diff |0 |
ROW |12806 |23059 |13419 |change |0 |
ROW |12807 |23061 |13420 |diff |0 |
-ROW |12808 |23062 |13421 |last |0 |
-ROW |12809 |23069 |13422 |last |0 |
-ROW |12810 |23072 |13423 |last |0 |
ROW |12895 |23271 |13486 |min |10m |
ROW |12896 |23273 |13487 |max |10m |
ROW |12897 |23274 |13488 |max |10m |
@@ -7429,86 +7532,6 @@ ROW |13228 |25665 |13568 |avg |10m
ROW |13229 |25666 |13569 |avg |10m |
ROW |13230 |25667 |13570 |avg |10m |
ROW |13231 |25668 |13571 |avg |10m |
-ROW |14257 |26909 |14168 |last |0 |
-ROW |14258 |26908 |14168 |last |0 |
-ROW |14259 |26899 |14169 |last |0 |
-ROW |14260 |26903 |14169 |last |0 |
-ROW |14261 |26902 |14170 |last |0 |
-ROW |14262 |26901 |14170 |last |0 |
-ROW |14263 |26864 |14171 |last |0 |
-ROW |14264 |26882 |14171 |last |0 |
-ROW |14265 |26866 |14172 |last |0 |
-ROW |14266 |26865 |14172 |last |0 |
-ROW |14267 |26861 |14173 |last |0 |
-ROW |14268 |26862 |14173 |last |0 |
-ROW |14269 |26858 |14174 |last |0 |
-ROW |14270 |26856 |14174 |last |0 |
-ROW |14271 |26868 |14175 |last |0 |
-ROW |14272 |26860 |14175 |last |0 |
-ROW |14273 |26877 |14176 |last |0 |
-ROW |14274 |26878 |14176 |last |0 |
-ROW |14275 |26880 |14177 |last |0 |
-ROW |14276 |26879 |14177 |last |0 |
-ROW |14277 |26881 |14178 |last |0 |
-ROW |14278 |26887 |14179 |last |0 |
-ROW |14279 |26895 |14179 |last |0 |
-ROW |14280 |26889 |14180 |last |0 |
-ROW |14281 |26884 |14180 |last |0 |
-ROW |14282 |26906 |14181 |last |0 |
-ROW |14283 |26896 |14181 |last |0 |
-ROW |14284 |26907 |14182 |last |0 |
-ROW |14285 |26908 |14182 |last |0 |
-ROW |14286 |26904 |14183 |last |0 |
-ROW |14287 |26903 |14183 |last |0 |
-ROW |14288 |26900 |14184 |last |0 |
-ROW |14289 |26901 |14184 |last |0 |
-ROW |14290 |26883 |14185 |last |0 |
-ROW |14291 |26882 |14185 |last |0 |
-ROW |14292 |26863 |14186 |last |0 |
-ROW |14293 |26865 |14186 |last |0 |
-ROW |14294 |26867 |14187 |last |0 |
-ROW |14295 |26862 |14187 |last |0 |
-ROW |14296 |26857 |14188 |last |0 |
-ROW |14297 |26856 |14188 |last |0 |
-ROW |14298 |26859 |14189 |last |0 |
-ROW |14299 |26860 |14189 |last |0 |
-ROW |14300 |26869 |14190 |last |0 |
-ROW |14301 |26878 |14190 |last |0 |
-ROW |14302 |26876 |14191 |nodata |5m |
-ROW |14303 |26875 |14192 |str |Server |
-ROW |14304 |26893 |14193 |str |Client |
-ROW |14306 |26932 |14195 |last |0 |
-ROW |14307 |26932 |14196 |last |0 |
-ROW |14308 |26930 |14197 |last |0 |
-ROW |14309 |26930 |14198 |last |0 |
-ROW |14310 |26931 |14199 |last |0 |
-ROW |14311 |26931 |14200 |last |0 |
-ROW |14312 |26929 |14201 |last |0 |
-ROW |14313 |26929 |14202 |last |0 |
-ROW |14314 |26928 |14203 |last |0 |
-ROW |14315 |26928 |14204 |last |0 |
-ROW |14316 |26925 |14205 |last |0 |
-ROW |14317 |26943 |14206 |last |0 |
-ROW |14318 |26943 |14207 |last |0 |
-ROW |14319 |26939 |14208 |last |0 |
-ROW |14320 |26939 |14209 |last |0 |
-ROW |14321 |26940 |14210 |last |0 |
-ROW |14322 |26940 |14211 |last |0 |
-ROW |14323 |26941 |14212 |last |0 |
-ROW |14324 |26941 |14213 |last |0 |
-ROW |14325 |26942 |14214 |last |0 |
-ROW |14326 |26942 |14215 |last |0 |
-ROW |14327 |26938 |14216 |last |0 |
-ROW |14328 |26938 |14217 |last |0 |
-ROW |14329 |26937 |14218 |last |0 |
-ROW |14330 |26937 |14219 |last |0 |
-ROW |14331 |26933 |14220 |last |0 |
-ROW |14332 |26933 |14221 |last |0 |
-ROW |14333 |26934 |14222 |last |0 |
-ROW |14334 |26935 |14223 |last |0 |
-ROW |14335 |26935 |14224 |last |0 |
-ROW |14336 |26936 |14225 |last |0 |
-ROW |14337 |26936 |14226 |last |0 |
ROW |14378 |27067 |14251 |max |#3 |
ROW |14379 |27066 |14252 |min |5m |
ROW |14380 |27065 |14253 |avg |5m |
@@ -7677,12 +7700,6 @@ ROW |15047 |27821 |14626 |min |5m
ROW |15094 |27882 |14652 |max |#3 |
ROW |15095 |27883 |14653 |min |5m |
ROW |15096 |27884 |14654 |avg |5m |
-ROW |15100 |27897 |14658 |avg |5m |
-ROW |15101 |27897 |14658 |max |5m |
-ROW |15102 |27897 |14659 |avg |5m |
-ROW |15103 |27897 |14659 |max |5m |
-ROW |15104 |27897 |14660 |avg |5m |
-ROW |15105 |27897 |14660 |min |5m |
ROW |15106 |27894 |14661 |diff | |
ROW |15107 |27894 |14661 |strlen | |
ROW |15108 |27895 |14662 |diff | |
@@ -7765,12 +7782,6 @@ ROW |16819 |27479 |15331 |count |#1,{$PSU_CRIT_STATUS},eq
ROW |16820 |27479 |15332 |count |#1,{$PSU_OK_STATUS},ne |
ROW |16821 |27480 |15333 |count |#1,{$FAN_CRIT_STATUS},eq |
ROW |16822 |27480 |15334 |count |#1,{$FAN_OK_STATUS},ne |
-ROW |16823 |27784 |15335 |avg |5m |
-ROW |16824 |27783 |15335 |last |0 |
-ROW |16825 |27784 |15335 |max |5m |
-ROW |16826 |27784 |15336 |avg |5m |
-ROW |16827 |27783 |15336 |last |0 |
-ROW |16828 |27784 |15336 |max |5m |
ROW |16829 |27786 |15337 |count |#1,{$PSU_CRIT_STATUS},eq |
ROW |16830 |27786 |15338 |count |#1,{$PSU_WARN_STATUS},eq |
ROW |16831 |27787 |15339 |count |#1,{$FAN_CRIT_STATUS},eq |
@@ -7810,9 +7821,6 @@ ROW |16888 |28215 |15365 |count |#1,{$FAN_WARN_STATUS:"warning"},eq
ROW |16889 |28215 |15365 |count |#1,{$FAN_WARN_STATUS:"notFunctioning"},eq |
ROW |16890 |27518 |15366 |count |#1,{$PSU_CRIT_STATUS},eq |
ROW |16891 |27519 |15367 |count |#1,{$FAN_CRIT_STATUS},eq |
-ROW |16892 |27584 |15368 |avg |5m |
-ROW |16893 |27585 |15368 |last |0 |
-ROW |16894 |27584 |15368 |max |5m |
ROW |16895 |27593 |15369 |count |#1,{$PSU_CRIT_STATUS},eq |
ROW |16896 |27595 |15370 |count |#1,{$FAN_CRIT_STATUS},eq |
ROW |16897 |27673 |15371 |count |#1,{$FAN_CRIT_STATUS:"fanError"},eq |
@@ -7834,25 +7842,13 @@ ROW |16912 |27316 |15383 |count |#1,{$PSU_CRIT_STATUS},eq
ROW |16913 |27316 |15384 |count |#1,{$PSU_OK_STATUS},ne |
ROW |16914 |27317 |15385 |count |#1,{$FAN_CRIT_STATUS},eq |
ROW |16915 |27317 |15386 |count |#1,{$FAN_OK_STATUS},ne |
-ROW |16916 |28201 |15387 |avg |5m |
-ROW |16917 |28200 |15387 |last |0 |
-ROW |16918 |28201 |15387 |max |5m |
ROW |16919 |28202 |15388 |count |#1,{$FAN_CRIT_STATUS},eq |
ROW |16920 |28206 |15389 |count |#1,{$PSU_CRIT_STATUS},eq |
-ROW |16921 |27247 |15390 |avg |5m |
-ROW |16922 |27246 |15390 |last |0 |
-ROW |16923 |27247 |15390 |max |5m |
ROW |16924 |27248 |15391 |count |#1,{$PSU_CRIT_STATUS},eq |
ROW |16925 |27248 |15392 |count |#1,{$PSU_OK_STATUS},ne |
ROW |16926 |27250 |15393 |count |#1,{$FAN_CRIT_STATUS},eq |
ROW |16927 |27250 |15394 |count |#1,{$FAN_OK_STATUS},ne |
ROW |16928 |27755 |15395 |count |#1,{$FAN_CRIT_STATUS},eq |
-ROW |16929 |27941 |15396 |avg |5m |
-ROW |16930 |27940 |15396 |last |0 |
-ROW |16931 |27941 |15396 |max |5m |
-ROW |16932 |27941 |15397 |avg |5m |
-ROW |16933 |27940 |15397 |last |0 |
-ROW |16934 |27941 |15397 |max |5m |
ROW |16935 |27942 |15398 |count |#1,{$FAN_CRIT_STATUS:"failed"},eq |
ROW |16936 |27943 |15399 |count |#1,{$PSU_CRIT_STATUS:"failed"},eq |
ROW |17243 |28013 |15493 |last | |
@@ -7993,9 +7989,6 @@ ROW |17849 |28300 |15708 |last |
ROW |17850 |28302 |15708 |last | |
ROW |17851 |28301 |15708 |last | |
ROW |17852 |28300 |15708 |prev | |
-ROW |17859 |28323 |15714 |avg |5m |
-ROW |17860 |28324 |15714 |last |0 |
-ROW |17861 |28323 |15714 |max |5m |
ROW |17862 |28323 |15715 |avg |5m |
ROW |17863 |28323 |15715 |max |5m |
ROW |17864 |28323 |15716 |avg |5m |
@@ -8018,20 +8011,8 @@ ROW |17882 |28344 |15731 |diff |
ROW |17883 |28344 |15731 |strlen | |
ROW |17884 |28345 |15732 |diff | |
ROW |17885 |28345 |15732 |strlen | |
-ROW |17886 |28354 |15733 |avg |5m |
-ROW |17887 |28355 |15733 |last |0 |
-ROW |17888 |28354 |15733 |max |5m |
-ROW |17889 |28354 |15734 |avg |5m |
-ROW |17890 |28355 |15734 |last |0 |
-ROW |17891 |28354 |15734 |max |5m |
ROW |17892 |28354 |15735 |avg |5m |
ROW |17893 |28354 |15735 |min |5m |
-ROW |17894 |28356 |15736 |avg |5m |
-ROW |17895 |28357 |15736 |last |0 |
-ROW |17896 |28356 |15736 |max |5m |
-ROW |17897 |28356 |15737 |avg |5m |
-ROW |17898 |28357 |15737 |last |0 |
-ROW |17899 |28356 |15737 |max |5m |
ROW |17900 |28356 |15738 |avg |5m |
ROW |17901 |28356 |15738 |min |5m |
ROW |17902 |28358 |15739 |count |#1,{$PSU_CRIT_STATUS:"critical"},eq |
@@ -8161,12 +8142,6 @@ ROW |18064 |28495 |15846 |avg |5m
ROW |18065 |28495 |15846 |max |5m |
ROW |18066 |28495 |15847 |avg |5m |
ROW |18067 |28495 |15847 |min |5m |
-ROW |18068 |28503 |15848 |last |0 |
-ROW |18069 |28532 |15848 |last |0 |
-ROW |18070 |28506 |15849 |last |0 |
-ROW |18071 |28505 |15849 |last |0 |
-ROW |18072 |28509 |15850 |last |0 |
-ROW |18073 |28508 |15850 |last |0 |
ROW |18074 |28513 |15851 |str |off |
ROW |18075 |28512 |15852 |str |off |
ROW |18076 |28535 |15853 |avg |10m |
@@ -9476,32 +9451,8 @@ ROW |19746 |29085 |16867 |last |
ROW |19747 |29085 |16867 |diff | |
ROW |19748 |28013 |16868 |last | |
ROW |19749 |28013 |16868 |diff | |
-ROW |19750 |27421 |16869 |avg |5m |
-ROW |19751 |27420 |16869 |last |0 |
-ROW |19752 |27421 |16869 |max |5m |
-ROW |19753 |27421 |16870 |avg |5m |
-ROW |19754 |27420 |16870 |last |0 |
-ROW |19755 |27421 |16870 |max |5m |
ROW |19756 |27421 |16871 |avg |5m |
ROW |19757 |27421 |16871 |min |5m |
-ROW |19758 |27430 |16872 |avg |5m |
-ROW |19759 |27429 |16872 |last |0 |
-ROW |19760 |27430 |16872 |max |5m |
-ROW |19761 |27447 |16873 |avg |5m |
-ROW |19762 |27446 |16873 |last |0 |
-ROW |19763 |27447 |16873 |max |5m |
-ROW |19764 |28218 |16874 |avg |5m |
-ROW |19765 |28217 |16874 |last |0 |
-ROW |19766 |28218 |16874 |max |5m |
-ROW |19767 |27430 |16875 |avg |5m |
-ROW |19768 |27429 |16875 |last |0 |
-ROW |19769 |27430 |16875 |max |5m |
-ROW |19770 |27447 |16876 |avg |5m |
-ROW |19771 |27446 |16876 |last |0 |
-ROW |19772 |27447 |16876 |max |5m |
-ROW |19773 |28218 |16877 |avg |5m |
-ROW |19774 |28217 |16877 |last |0 |
-ROW |19775 |28218 |16877 |max |5m |
ROW |19776 |27430 |16878 |avg |5m |
ROW |19777 |27430 |16878 |min |5m |
ROW |19778 |27447 |16879 |avg |5m |
@@ -9553,16 +9504,8 @@ ROW |19831 |31053 |16919 |strlen |
ROW |19832 |30821 |16920 |last | |
ROW |19833 |31054 |16920 |last | |
ROW |19834 |31054 |16921 |last | |
-ROW |19835 |31108 |16922 |last | |
-ROW |19836 |31110 |16922 |last | |
-ROW |19837 |31072 |16923 |last | |
-ROW |19838 |31095 |16923 |last | |
-ROW |19839 |31073 |16924 |last | |
-ROW |19840 |31072 |16924 |last | |
ROW |19841 |31092 |16925 |last | |
ROW |19842 |31095 |16925 |last | |
-ROW |19843 |31070 |16926 |last | |
-ROW |19844 |31066 |16926 |last | |
ROW |19845 |31056 |16927 |min |5m |
ROW |19846 |31096 |16928 |max |5m |
ROW |19847 |31096 |16929 |max |5m |
@@ -9582,15 +9525,12 @@ ROW |19860 |31085 |16941 |strlen |
ROW |19861 |31086 |16942 |min |5m |
ROW |19862 |31087 |16943 |min |5m |
ROW |19863 |31088 |16944 |max |5m |
-ROW |19864 |31057 |16945 |max |#3 |
ROW |19865 |31133 |16946 |last | |
ROW |19866 |31135 |16947 |last | |
ROW |19867 |31136 |16948 |last | |
ROW |19868 |31136 |16949 |last | |
ROW |19869 |31142 |16950 |min |5m |
ROW |19870 |31143 |16951 |min |5m |
-ROW |19871 |31145 |16952 |min |5m |
-ROW |19872 |31146 |16953 |min |5m |
ROW |19873 |31148 |16954 |min |5m |
ROW |19874 |31149 |16955 |last | |
ROW |19875 |31152 |16956 |last | |
@@ -9679,26 +9619,12 @@ ROW |19957 |31353 |17015 |min |15m
ROW |19958 |31357 |17016 |min |15m |
ROW |19959 |31364 |17017 |max |#3 |
ROW |19960 |31365 |17017 |max |#3 |
-ROW |19961 |31373 |17018 |min |5m |
-ROW |19962 |31374 |17018 |last | |
-ROW |19963 |31381 |17019 |min |5m |
-ROW |19964 |31383 |17019 |last | |
-ROW |19965 |31414 |17020 |min |5m |
-ROW |19966 |31415 |17020 |last | |
-ROW |19967 |31397 |17021 |min |5m |
-ROW |19968 |31418 |17021 |last | |
ROW |19969 |31425 |17022 |diff | |
ROW |19970 |31425 |17022 |strlen | |
ROW |19971 |31426 |17023 |diff | |
ROW |19972 |31426 |17023 |strlen | |
-ROW |19973 |31375 |17024 |max |5m |
-ROW |19974 |31380 |17025 |min |5m |
-ROW |19975 |31371 |17026 |min |5m |
-ROW |19976 |31384 |17027 |min |5m |
-ROW |19977 |31392 |17028 |max |5m |
ROW |19978 |31398 |17029 |last | |
ROW |19979 |31398 |17030 |nodata |5m |
-ROW |19980 |31399 |17031 |last | |
ROW |19981 |31370 |17032 |diff | |
ROW |19982 |31370 |17032 |strlen | |
ROW |19983 |31365 |17033 |max |#3 |
@@ -9772,6 +9698,232 @@ ROW |20050 |31488 |17061 |max |5m
ROW |20051 |31491 |17061 |max |5m |
ROW |20052 |31497 |17062 |last | |
ROW |20053 |31497 |17062 |diff | |
+ROW |20054 |31532 |17063 |last | |
+ROW |20055 |31538 |17063 |last | |
+ROW |20056 |31536 |17064 |last | |
+ROW |20057 |31534 |17064 |last | |
+ROW |20058 |31528 |17065 |last | |
+ROW |20059 |31542 |17065 |last | |
+ROW |20060 |31546 |17066 |min |{$JMX.HEAP.MEM.USAGE.TIME} |
+ROW |20061 |31545 |17066 |last | |
+ROW |20062 |31549 |17067 |min |{$JMX.NONHEAP.MEM.USAGE.TIME} |
+ROW |20063 |31548 |17067 |last | |
+ROW |20064 |31541 |17068 |min |{$JMX.MP.USAGE.TIME:"CMS Old Gen"} |
+ROW |20065 |31552 |17068 |last | |
+ROW |20066 |31525 |17069 |min |{$JMX.MP.USAGE.TIME:"CMS Perm Gen"} |
+ROW |20067 |31513 |17069 |last | |
+ROW |20068 |31503 |17070 |min |{$JMX.MP.USAGE.TIME:"Code Cache"} |
+ROW |20069 |31502 |17070 |last | |
+ROW |20070 |31506 |17071 |min |{$JMX.MP.USAGE.TIME:"Perm Gen"} |
+ROW |20071 |31505 |17071 |last | |
+ROW |20072 |31509 |17072 |min |{$JMX.MP.USAGE.TIME:"PS Old Gen"} |
+ROW |20073 |31508 |17072 |last | |
+ROW |20074 |31500 |17073 |min |{$JMX.MP.USAGE.TIME:"PS Perm Gen"} |
+ROW |20075 |31511 |17073 |last | |
+ROW |20076 |31515 |17074 |min |{$JMX.MP.USAGE.TIME:"Tenured Gen"} |
+ROW |20077 |31514 |17074 |last | |
+ROW |20078 |31517 |17075 |min |{$JMX.FILE.DESCRIPTORS.TIME} |
+ROW |20079 |31516 |17075 |last | |
+ROW |20080 |31530 |17076 |str |Client |
+ROW |20081 |31518 |17077 |min |{$JMX.CPU.LOAD.TIME} |
+ROW |20082 |31519 |17078 |nodata |5m |
+ROW |20083 |31520 |17079 |str |Server |
+ROW |20084 |31575 |17080 |last | |
+ROW |20085 |31581 |17081 |last | |
+ROW |20086 |31581 |17082 |last | |
+ROW |20087 |31580 |17083 |last | |
+ROW |20088 |31580 |17084 |last | |
+ROW |20089 |31579 |17085 |last | |
+ROW |20090 |28503 |17086 |last | |
+ROW |20091 |28532 |17086 |last | |
+ROW |20092 |28506 |17087 |last | |
+ROW |20093 |28505 |17087 |last | |
+ROW |20094 |28509 |17088 |last | |
+ROW |20095 |28508 |17088 |last | |
+ROW |20096 |22942 |17089 |last | |
+ROW |20097 |22952 |17090 |last | |
+ROW |20098 |22949 |17091 |last | |
+ROW |20099 |22875 |17092 |last | |
+ROW |20100 |22876 |17093 |last | |
+ROW |20101 |22902 |17094 |last | |
+ROW |20102 |22896 |17095 |last | |
+ROW |20103 |22912 |17096 |last | |
+ROW |20104 |22909 |17097 |last | |
+ROW |20105 |22982 |17098 |last | |
+ROW |20106 |22992 |17099 |last | |
+ROW |20107 |22989 |17100 |last | |
+ROW |20108 |23035 |17101 |last | |
+ROW |20109 |23036 |17102 |last | |
+ROW |20110 |23062 |17103 |last | |
+ROW |20111 |23072 |17104 |last | |
+ROW |20112 |23069 |17105 |last | |
+ROW |20113 |22835 |17106 |last | |
+ROW |20114 |22836 |17107 |last | |
+ROW |20115 |22862 |17108 |last | |
+ROW |20116 |22856 |17109 |last | |
+ROW |20117 |22872 |17110 |last | |
+ROW |20118 |22869 |17111 |last | |
+ROW |20119 |22996 |17112 |last | |
+ROW |20120 |23022 |17113 |last | |
+ROW |20121 |23016 |17114 |last | |
+ROW |20122 |23032 |17115 |last | |
+ROW |20123 |23029 |17116 |last | |
+ROW |20124 |26932 |17117 |last | |
+ROW |20125 |26932 |17118 |last | |
+ROW |20126 |26930 |17119 |last | |
+ROW |20127 |26930 |17120 |last | |
+ROW |20128 |26931 |17121 |last | |
+ROW |20129 |26931 |17122 |last | |
+ROW |20130 |26929 |17123 |last | |
+ROW |20131 |26929 |17124 |last | |
+ROW |20132 |26928 |17125 |last | |
+ROW |20133 |26928 |17126 |last | |
+ROW |20134 |26925 |17127 |last | |
+ROW |20135 |26943 |17128 |last | |
+ROW |20136 |26943 |17129 |last | |
+ROW |20137 |26939 |17130 |last | |
+ROW |20138 |26939 |17131 |last | |
+ROW |20139 |26940 |17132 |last | |
+ROW |20140 |26940 |17133 |last | |
+ROW |20141 |26941 |17134 |last | |
+ROW |20142 |26941 |17135 |last | |
+ROW |20143 |26942 |17136 |last | |
+ROW |20144 |26942 |17137 |last | |
+ROW |20145 |26938 |17138 |last | |
+ROW |20146 |26938 |17139 |last | |
+ROW |20147 |26937 |17140 |last | |
+ROW |20148 |26937 |17141 |last | |
+ROW |20149 |26933 |17142 |last | |
+ROW |20150 |26933 |17143 |last | |
+ROW |20151 |26934 |17144 |last | |
+ROW |20152 |26935 |17145 |last | |
+ROW |20153 |26935 |17146 |last | |
+ROW |20154 |26936 |17147 |last | |
+ROW |20155 |26936 |17148 |last | |
+ROW |20156 |31070 |17149 |last | |
+ROW |20157 |31066 |17149 |last | |
+ROW |20158 |31626 |17150 |min |15m |
+ROW |20159 |31628 |17151 |min |15m |
+ROW |20160 |31627 |17152 |min |15m |
+ROW |20161 |31057 |17153 |last | |
+ROW |20162 |31632 |17154 |min |5m |
+ROW |20163 |31655 |17154 |last | |
+ROW |20164 |31650 |17155 |min |5m |
+ROW |20165 |31653 |17155 |last | |
+ROW |20166 |31630 |17156 |min |5m |
+ROW |20167 |31683 |17156 |last | |
+ROW |20168 |31668 |17157 |min |5m |
+ROW |20169 |31702 |17157 |last | |
+ROW |20170 |31693 |17158 |diff | |
+ROW |20171 |31693 |17158 |strlen | |
+ROW |20172 |31694 |17159 |diff | |
+ROW |20173 |31694 |17159 |strlen | |
+ROW |20174 |31629 |17160 |last | |
+ROW |20175 |31640 |17161 |max |5m |
+ROW |20176 |31649 |17162 |min |5m |
+ROW |20177 |31654 |17163 |min |5m |
+ROW |20178 |31657 |17164 |min |5m |
+ROW |20179 |31663 |17165 |max |5m |
+ROW |20180 |31669 |17166 |nodata |30m |
+ROW |20181 |31669 |17167 |last | |
+ROW |20182 |31641 |17168 |last | |
+ROW |20183 |31705 |17169 |diff | |
+ROW |20184 |31705 |17169 |strlen | |
+ROW |20185 |31713 |17170 |last | |
+ROW |20186 |31714 |17171 |last | |
+ROW |20187 |31715 |17171 |last | |
+ROW |20188 |31716 |17172 |last | |
+ROW |20189 |31716 |17173 |diff | |
+ROW |20190 |31717 |17174 |diff | |
+ROW |20191 |31720 |17175 |min |5m |
+ROW |20192 |31720 |17176 |min |5m |
+ROW |20193 |31721 |17177 |last | |
+ROW |20194 |31721 |17178 |diff | |
+ROW |20195 |31725 |17179 |last | |
+ROW |20196 |31725 |17180 |diff | |
+ROW |20197 |31726 |17181 |min |5m |
+ROW |20198 |31726 |17182 |min |5m |
+ROW |20199 |31731 |17183 |min |5m |
+ROW |20200 |31732 |17183 |last | |
+ROW |20201 |31739 |17184 |min |5m |
+ROW |20202 |31741 |17184 |last | |
+ROW |20203 |31770 |17185 |min |5m |
+ROW |20204 |31771 |17185 |last | |
+ROW |20205 |31755 |17186 |min |5m |
+ROW |20206 |31774 |17186 |last | |
+ROW |20207 |31733 |17187 |max |5m |
+ROW |20208 |31738 |17188 |min |5m |
+ROW |20209 |31729 |17189 |min |5m |
+ROW |20210 |31742 |17190 |min |5m |
+ROW |20211 |31750 |17191 |max |5m |
+ROW |20212 |31756 |17192 |last | |
+ROW |20213 |28323 |17193 |avg |5m |
+ROW |20214 |28324 |17193 |last | |
+ROW |20215 |28323 |17193 |max |5m |
+ROW |20216 |27247 |17194 |avg |5m |
+ROW |20217 |27246 |17194 |last | |
+ROW |20218 |27247 |17194 |max |5m |
+ROW |20219 |27421 |17195 |avg |5m |
+ROW |20220 |27420 |17195 |last | |
+ROW |20221 |27421 |17195 |max |5m |
+ROW |20222 |27421 |17196 |avg |5m |
+ROW |20223 |27420 |17196 |last | |
+ROW |20224 |27421 |17196 |max |5m |
+ROW |20225 |27430 |17197 |avg |5m |
+ROW |20226 |27429 |17197 |last | |
+ROW |20227 |27430 |17197 |max |5m |
+ROW |20228 |27447 |17198 |avg |5m |
+ROW |20229 |27446 |17198 |last | |
+ROW |20230 |27447 |17198 |max |5m |
+ROW |20231 |28218 |17199 |avg |5m |
+ROW |20232 |28217 |17199 |last | |
+ROW |20233 |28218 |17199 |max |5m |
+ROW |20234 |27430 |17200 |avg |5m |
+ROW |20235 |27429 |17200 |last | |
+ROW |20236 |27430 |17200 |max |5m |
+ROW |20237 |27447 |17201 |avg |5m |
+ROW |20238 |27446 |17201 |last | |
+ROW |20239 |27447 |17201 |max |5m |
+ROW |20240 |28218 |17202 |avg |5m |
+ROW |20241 |28217 |17202 |last | |
+ROW |20242 |28218 |17202 |max |5m |
+ROW |20243 |27584 |17203 |avg |5m |
+ROW |20244 |27585 |17203 |last | |
+ROW |20245 |27584 |17203 |max |5m |
+ROW |20246 |27784 |17204 |avg |5m |
+ROW |20247 |27783 |17204 |last | |
+ROW |20248 |27784 |17204 |max |5m |
+ROW |20249 |27784 |17205 |avg |5m |
+ROW |20250 |27783 |17205 |last | |
+ROW |20251 |27784 |17205 |max |5m |
+ROW |20252 |28201 |17206 |avg |5m |
+ROW |20253 |28200 |17206 |last | |
+ROW |20254 |28201 |17206 |max |5m |
+ROW |20255 |31790 |17207 |avg |5m |
+ROW |20256 |31790 |17207 |max |5m |
+ROW |20257 |31790 |17208 |avg |5m |
+ROW |20258 |31790 |17208 |max |5m |
+ROW |20259 |31790 |17209 |avg |5m |
+ROW |20260 |31790 |17209 |min |5m |
+ROW |20261 |31799 |17210 |last | |
+ROW |20262 |27941 |17211 |avg |5m |
+ROW |20263 |27940 |17211 |last | |
+ROW |20264 |27941 |17211 |max |5m |
+ROW |20265 |27941 |17212 |avg |5m |
+ROW |20266 |27940 |17212 |last | |
+ROW |20267 |27941 |17212 |max |5m |
+ROW |20268 |28356 |17213 |avg |5m |
+ROW |20269 |28357 |17213 |last | |
+ROW |20270 |28356 |17213 |max |5m |
+ROW |20271 |28356 |17214 |avg |5m |
+ROW |20272 |28357 |17214 |last | |
+ROW |20273 |28356 |17214 |max |5m |
+ROW |20274 |28354 |17215 |avg |5m |
+ROW |20275 |28355 |17215 |last | |
+ROW |20276 |28354 |17215 |max |5m |
+ROW |20277 |28354 |17216 |avg |5m |
+ROW |20278 |28355 |17216 |last | |
+ROW |20279 |28354 |17216 |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|
@@ -9972,15 +10124,36 @@ ROW |1233 |{#DEVNAME}: Disk read/write rates
ROW |1235 |{#DEVNAME}: Disk utilization and queue |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
ROW |1237 |ASM '{#DG_NAME}': ASM disk group '{#DG_NAME}' |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
ROW |1238 |Oracle TBS '{#TABLESPACE}': Tablespace '{#TABLESPACE}' |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
-ROW |1239 |Oracle: Datafiles |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |1240 |Oracle: PGA |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |1241 |Oracle: Physical Read\Write Rate |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |1242 |Oracle: Physical Read\Write Rate, Bytes |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |1243 |Oracle: Processes |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |1244 |Oracle: Sessions |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |1245 |Oracle: SGA Memory Usage |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
ROW |1246 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
ROW |1248 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1250 |ClassLoading: Class Loader |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1251 |GarbageCollector: Garbage Collector collections per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1252 |MemoryPool: Memory Pool CMS Old Gen |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1253 |MemoryPool: Memory Pool CMS Perm Gen |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1254 |MemoryPool: Memory Pool Code Cache |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1255 |MemoryPool: Memory Pool Perm Gen |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1256 |MemoryPool: Memory Pool PS Old Gen |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1257 |MemoryPool: Memory Pool PS Perm Gen |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1258 |MemoryPool: Memory Pool Tenured Gen |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1259 |OperatingSystem: File Descriptors |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1260 |Threading: Threads |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1261 |MSSQL DB '{#DBNAME}': Number of Log changes |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1262 |ASM '{#DG_NAME}': ASM disk group '{#DG_NAME}' |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1263 |Oracle TBS '{#TABLESPACE}': Tablespace '{#TABLESPACE}' |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1264 |Oracle: Datafiles |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1265 |Oracle: PGA |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1266 |Oracle: Physical Read\Write Rate |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1267 |Oracle: Physical Read\Write Rate, Bytes |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1268 |Oracle: Processes |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1269 |Oracle: Sessions |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1270 |Oracle: SGA Memory Usage |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1271 |Oracle: Datafiles |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1272 |Oracle: PGA |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1273 |Oracle: Physical Read\Write Rate |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1274 |Oracle: Physical Read\Write Rate, Bytes |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1275 |Oracle: Processes |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1276 |Oracle: Sessions |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1277 |Oracle: SGA Memory Usage |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
ROW |392 |Zabbix server performance |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
ROW |404 |Zabbix data gathering process busy % |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
ROW |406 |Zabbix internal process busy % |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
@@ -10026,17 +10199,6 @@ ROW |542 |Memory usage
ROW |543 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |2 |NULL |23063 |0 |0 |
ROW |544 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |2 |NULL |22863 |0 |0 |
ROW |545 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |2 |NULL |23023 |0 |0 |
-ROW |638 |Class Loader |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |639 |File Descriptors |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |640 |Garbage Collector collections per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |641 |Memory Pool CMS Old Gen |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |642 |Memory Pool CMS Perm Gen |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |643 |Memory Pool Code Cache |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |644 |Memory Pool Perm Gen |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |645 |Memory Pool PS Old Gen |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |646 |Memory Pool PS Perm Gen |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |647 |Memory Pool Tenured Gen |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |648 |Threads |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
ROW |651 |Fan speed and ambient temperature |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
ROW |652 |Voltage |900 |200 |0 |5.5 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
ROW |653 |Fan speed and temperature |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
@@ -10310,1526 +10472,1555 @@ ROW |18847 |864 |28923 |0 |0 |1A7C11|0 |2 |0 |
ROW |18848 |864 |28924 |0 |1 |F63100|0 |2 |0 |
ROW |18849 |864 |28925 |0 |2 |2774A4|0 |2 |0 |
ROW |18850 |864 |28926 |0 |3 |A54F10|0 |2 |0 |
-ROW |30923 |1172 |30918 |0 |0 |1A7C11|0 |2 |0 |
-ROW |30924 |1172 |30919 |0 |1 |2774A4|0 |2 |0 |
-ROW |30925 |1172 |30920 |0 |2 |F63100|0 |2 |0 |
-ROW |30926 |1172 |30921 |2 |3 |A54F10|0 |2 |0 |
-ROW |30927 |1173 |30922 |5 |0 |1A7C11|0 |2 |0 |
-ROW |30928 |835 |28744 |0 |0 |1A7C11|0 |2 |0 |
-ROW |30929 |835 |28745 |0 |1 |2774A4|0 |2 |0 |
-ROW |30930 |1174 |30913 |5 |0 |1A7C11|0 |2 |0 |
-ROW |30931 |1175 |30906 |0 |0 |1A7C11|0 |2 |0 |
-ROW |30932 |1175 |30908 |0 |1 |2774A4|0 |2 |0 |
-ROW |30933 |1175 |30915 |0 |2 |F63100|0 |2 |0 |
-ROW |30934 |1175 |30897 |0 |3 |A54F10|0 |2 |0 |
-ROW |30935 |1175 |30901 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |30936 |1175 |30899 |0 |5 |6C59DC|0 |2 |0 |
-ROW |30937 |1175 |30907 |0 |6 |AC8C14|0 |2 |0 |
-ROW |30938 |1175 |30905 |0 |7 |611F27|0 |2 |0 |
-ROW |30939 |1175 |30904 |0 |8 |F230E0|0 |2 |0 |
-ROW |30940 |1175 |30900 |0 |9 |FFAD40|0 |2 |0 |
-ROW |30941 |1175 |30898 |0 |10 |40CDFF|0 |2 |0 |
-ROW |30942 |1176 |30910 |0 |0 |1A7C11|0 |2 |0 |
-ROW |30943 |1176 |30909 |0 |1 |2774A4|0 |2 |0 |
-ROW |30944 |836 |28798 |0 |0 |1A7C11|0 |2 |0 |
-ROW |30945 |836 |28799 |0 |1 |2774A4|0 |2 |0 |
-ROW |30946 |836 |28800 |0 |2 |F63100|0 |2 |0 |
-ROW |30947 |836 |28801 |2 |3 |A54F10|0 |2 |0 |
-ROW |30948 |837 |28803 |5 |0 |1A7C11|0 |2 |0 |
-ROW |30949 |838 |28793 |5 |0 |1A7C11|0 |2 |0 |
-ROW |30950 |840 |28787 |0 |0 |1A7C11|0 |2 |0 |
-ROW |30951 |840 |28784 |0 |1 |2774A4|0 |2 |0 |
-ROW |30952 |840 |28782 |0 |2 |F63100|0 |2 |0 |
-ROW |30953 |840 |28781 |0 |3 |A54F10|0 |2 |0 |
-ROW |30954 |840 |28780 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |30955 |840 |28778 |0 |5 |6C59DC|0 |2 |0 |
-ROW |30956 |840 |28786 |0 |6 |AC8C14|0 |2 |0 |
-ROW |30957 |840 |28785 |0 |7 |611F27|0 |2 |0 |
-ROW |30958 |840 |28783 |0 |8 |F230E0|0 |2 |0 |
-ROW |30959 |840 |28779 |0 |9 |FFAD40|0 |2 |0 |
-ROW |30960 |840 |28796 |0 |10 |40CDFF|0 |2 |0 |
-ROW |30961 |839 |28789 |0 |0 |1A7C11|0 |2 |0 |
-ROW |30962 |839 |28788 |0 |1 |2774A4|0 |2 |0 |
-ROW |30963 |1121 |30606 |5 |0 |1A7C11|0 |2 |0 |
-ROW |30964 |1121 |30590 |5 |1 |2774A4|0 |2 |0 |
-ROW |30965 |1121 |30582 |5 |2 |F63100|0 |2 |0 |
-ROW |30966 |1122 |30580 |5 |0 |1A7C11|0 |2 |0 |
-ROW |30967 |1122 |30578 |5 |1 |2774A4|0 |2 |0 |
-ROW |30968 |1123 |30586 |2 |0 |1A7C11|0 |2 |0 |
-ROW |30969 |1123 |30608 |2 |1 |2774A4|0 |2 |0 |
-ROW |30970 |1123 |30585 |2 |2 |F63100|0 |2 |0 |
-ROW |30971 |1123 |30589 |2 |3 |A54F10|0 |2 |0 |
-ROW |30972 |1123 |30584 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |30973 |1123 |30588 |2 |5 |6C59DC|0 |2 |0 |
-ROW |30974 |1124 |30583 |2 |0 |1A7C11|0 |2 |0 |
-ROW |30975 |1124 |30587 |2 |1 |2774A4|0 |2 |0 |
-ROW |30976 |1125 |30555 |5 |0 |1A7C11|0 |2 |0 |
-ROW |30977 |1125 |30554 |2 |1 |2774A4|0 |2 |0 |
-ROW |30978 |1125 |30556 |2 |2 |F63100|0 |2 |0 |
-ROW |30979 |1125 |30557 |2 |3 |A54F10|0 |2 |0 |
-ROW |30980 |1126 |30565 |5 |0 |1A7C11|0 |2 |0 |
-ROW |30981 |1127 |30567 |2 |0 |1A7C11|0 |2 |0 |
-ROW |30982 |1127 |30568 |2 |1 |2774A4|0 |2 |0 |
-ROW |30983 |1128 |30536 |2 |0 |1A7C11|0 |2 |0 |
-ROW |30984 |1129 |30566 |2 |0 |1A7C11|0 |2 |0 |
-ROW |30985 |1129 |30549 |2 |1 |2774A4|0 |2 |0 |
-ROW |30986 |1129 |30553 |2 |2 |F63100|0 |2 |0 |
-ROW |30987 |1129 |30570 |2 |3 |A54F10|0 |2 |0 |
-ROW |30988 |1143 |30714 |0 |0 |1A7C11|0 |2 |0 |
-ROW |30989 |1143 |30716 |0 |1 |2774A4|0 |2 |0 |
-ROW |30990 |1143 |30717 |0 |2 |F63100|0 |2 |0 |
-ROW |30991 |1143 |30715 |0 |3 |A54F10|0 |2 |0 |
-ROW |30992 |1144 |30753 |0 |0 |1A7C11|0 |2 |0 |
-ROW |30993 |1144 |30738 |0 |1 |2774A4|0 |2 |0 |
-ROW |30994 |1145 |30718 |0 |0 |1A7C11|0 |2 |0 |
-ROW |30995 |1145 |30737 |0 |1 |2774A4|0 |2 |0 |
-ROW |30996 |1145 |30727 |0 |2 |F63100|0 |2 |0 |
-ROW |30997 |1145 |30729 |0 |3 |A54F10|0 |2 |0 |
-ROW |30998 |1146 |30730 |0 |0 |1A7C11|0 |2 |0 |
-ROW |30999 |1146 |30732 |0 |1 |2774A4|0 |2 |0 |
-ROW |31000 |1146 |30731 |0 |2 |F63100|0 |2 |0 |
-ROW |31001 |1146 |30733 |0 |3 |A54F10|0 |2 |0 |
-ROW |31002 |1147 |30734 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31003 |1147 |30736 |0 |1 |2774A4|0 |2 |0 |
-ROW |31004 |1147 |30735 |0 |2 |F63100|0 |2 |0 |
-ROW |31005 |1147 |30758 |0 |3 |A54F10|0 |2 |0 |
-ROW |31006 |1148 |30711 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31007 |1148 |30706 |0 |1 |2774A4|0 |2 |0 |
-ROW |31008 |1148 |30710 |0 |2 |F63100|0 |2 |0 |
-ROW |31009 |1148 |30712 |0 |3 |A54F10|0 |2 |0 |
-ROW |31010 |1148 |30702 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |31011 |1148 |30707 |0 |5 |6C59DC|0 |2 |0 |
-ROW |31012 |1148 |30704 |0 |6 |AC8C14|0 |2 |0 |
-ROW |31013 |1177 |30927 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31014 |1177 |30944 |2 |1 |2774A4|0 |2 |0 |
-ROW |31015 |1178 |30935 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31016 |1178 |30942 |0 |1 |2774A4|0 |2 |0 |
-ROW |31017 |1179 |30949 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31018 |1179 |30950 |0 |1 |2774A4|0 |2 |0 |
-ROW |31019 |1179 |30951 |0 |2 |F63100|0 |2 |0 |
-ROW |31020 |1180 |30952 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31021 |1180 |30954 |0 |1 |2774A4|0 |2 |0 |
-ROW |31022 |1180 |30955 |0 |2 |F63100|0 |2 |0 |
-ROW |31023 |1181 |30936 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31024 |1181 |30940 |5 |1 |2774A4|0 |2 |0 |
-ROW |31025 |1182 |30930 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31026 |1182 |30929 |0 |1 |2774A4|0 |2 |0 |
-ROW |31027 |1182 |30928 |0 |2 |F63100|0 |2 |0 |
-ROW |31028 |1182 |30931 |2 |3 |A54F10|1 |2 |0 |
-ROW |31029 |1183 |30934 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31030 |1183 |30941 |0 |1 |2774A4|0 |2 |0 |
-ROW |31031 |1149 |30770 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31032 |1149 |30771 |0 |1 |2774A4|0 |2 |0 |
-ROW |31033 |1075 |30204 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31034 |1075 |30205 |0 |1 |2774A4|0 |2 |0 |
-ROW |31035 |1150 |30775 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31036 |1150 |30774 |0 |1 |2774A4|0 |2 |0 |
-ROW |31037 |1151 |30772 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31038 |1151 |30773 |5 |1 |2774A4|0 |2 |0 |
-ROW |31039 |1152 |30777 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31040 |1152 |30776 |0 |1 |2774A4|0 |2 |0 |
-ROW |31041 |1076 |30209 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31042 |1076 |30208 |0 |1 |2774A4|0 |2 |0 |
-ROW |31043 |1077 |30206 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31044 |1077 |30207 |5 |1 |2774A4|0 |2 |0 |
-ROW |31045 |1078 |30216 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31046 |1078 |30215 |0 |1 |2774A4|0 |2 |0 |
-ROW |31047 |1079 |30210 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31048 |1079 |30211 |0 |1 |2774A4|0 |2 |0 |
-ROW |31049 |1079 |30212 |0 |2 |F63100|0 |2 |0 |
-ROW |31050 |1079 |30213 |0 |3 |A54F10|0 |2 |0 |
-ROW |31051 |1079 |30214 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |31052 |1153 |30785 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31053 |1153 |30784 |0 |1 |2774A4|0 |2 |0 |
-ROW |31054 |1080 |30226 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31055 |1080 |30225 |0 |1 |2774A4|0 |2 |0 |
-ROW |31056 |1154 |30802 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31057 |1154 |30803 |0 |1 |2774A4|0 |2 |0 |
-ROW |31058 |1081 |30247 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31059 |1081 |30248 |0 |1 |2774A4|0 |2 |0 |
-ROW |31060 |1155 |30807 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31061 |1155 |30806 |0 |1 |2774A4|0 |2 |0 |
-ROW |31062 |1156 |30804 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31063 |1156 |30805 |5 |1 |2774A4|0 |2 |0 |
-ROW |31064 |1157 |30809 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31065 |1157 |30808 |0 |1 |2774A4|0 |2 |0 |
-ROW |31066 |1082 |30252 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31067 |1082 |30251 |0 |1 |2774A4|0 |2 |0 |
-ROW |31068 |1083 |30249 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31069 |1083 |30250 |5 |1 |2774A4|0 |2 |0 |
-ROW |31070 |1084 |30259 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31071 |1084 |30258 |0 |1 |2774A4|0 |2 |0 |
-ROW |31072 |1085 |30253 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31073 |1085 |30254 |0 |1 |2774A4|0 |2 |0 |
-ROW |31074 |1085 |30255 |0 |2 |F63100|0 |2 |0 |
-ROW |31075 |1085 |30256 |0 |3 |A54F10|0 |2 |0 |
-ROW |31076 |1085 |30257 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |31077 |1158 |30817 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31078 |1158 |30816 |0 |1 |2774A4|0 |2 |0 |
-ROW |31079 |1086 |30269 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31080 |1086 |30268 |0 |1 |2774A4|0 |2 |0 |
-ROW |31081 |1184 |30982 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31082 |1184 |30980 |5 |1 |2774A4|0 |2 |0 |
-ROW |31083 |1185 |30983 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31084 |1185 |30981 |0 |1 |2774A4|0 |2 |0 |
-ROW |31085 |1186 |30976 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31086 |1186 |30985 |0 |1 |2774A4|0 |2 |0 |
-ROW |31087 |1186 |30997 |0 |2 |F63100|0 |2 |0 |
-ROW |31088 |1186 |30970 |0 |3 |A54F10|0 |2 |0 |
-ROW |31089 |1186 |30973 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |31090 |1186 |30995 |0 |5 |6C59DC|0 |2 |0 |
-ROW |31091 |1186 |30998 |0 |6 |AC8C14|0 |2 |0 |
-ROW |31092 |1186 |30978 |0 |7 |611F27|0 |2 |0 |
-ROW |31093 |1187 |31024 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31094 |1187 |31022 |5 |1 |2774A4|0 |2 |0 |
-ROW |31095 |1188 |31025 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31096 |1188 |31023 |0 |1 |2774A4|0 |2 |0 |
-ROW |31097 |1189 |31018 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31098 |1189 |31027 |0 |1 |2774A4|0 |2 |0 |
-ROW |31099 |1189 |31039 |0 |2 |F63100|0 |2 |0 |
-ROW |31100 |1189 |31012 |0 |3 |A54F10|0 |2 |0 |
-ROW |31101 |1189 |31015 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |31102 |1189 |31037 |0 |5 |6C59DC|0 |2 |0 |
-ROW |31103 |1189 |31040 |0 |6 |AC8C14|0 |2 |0 |
-ROW |31104 |1189 |31020 |0 |7 |611F27|0 |2 |0 |
-ROW |31105 |1130 |30613 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31106 |1130 |30635 |0 |1 |2774A4|0 |2 |0 |
-ROW |31107 |1130 |30625 |0 |2 |F63100|0 |2 |0 |
-ROW |31108 |1131 |30632 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31109 |1131 |30633 |5 |1 |2774A4|0 |2 |0 |
-ROW |31110 |1131 |30629 |5 |2 |F63100|0 |2 |0 |
-ROW |31111 |1132 |30630 |2 |0 |1A7C11|0 |2 |0 |
-ROW |31112 |1132 |30628 |2 |1 |2774A4|0 |2 |0 |
-ROW |31113 |1132 |30631 |2 |2 |F63100|0 |2 |0 |
-ROW |31114 |1133 |30619 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31115 |1133 |30618 |0 |1 |2774A4|0 |2 |0 |
-ROW |31116 |1134 |30623 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31117 |1134 |30622 |5 |1 |2774A4|0 |2 |0 |
-ROW |31118 |1135 |30615 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31119 |841 |28813 |2 |0 |1A7C11|0 |2 |0 |
-ROW |31120 |841 |28811 |0 |1 |2774A4|0 |2 |0 |
-ROW |31121 |841 |28812 |0 |2 |F63100|0 |2 |0 |
-ROW |31122 |841 |28814 |0 |3 |A54F10|0 |2 |0 |
-ROW |31123 |842 |28817 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31124 |842 |28815 |0 |1 |2774A4|0 |2 |0 |
-ROW |31125 |842 |28816 |0 |2 |F63100|0 |2 |0 |
-ROW |31126 |844 |28808 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31127 |844 |28807 |0 |1 |2774A4|0 |2 |0 |
-ROW |31128 |843 |28818 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31129 |845 |28829 |2 |0 |1A7C11|0 |2 |0 |
-ROW |31130 |845 |28831 |0 |1 |2774A4|0 |2 |0 |
-ROW |31131 |845 |28832 |0 |2 |F63100|0 |2 |0 |
-ROW |31132 |845 |28830 |0 |3 |A54F10|0 |2 |0 |
-ROW |31133 |846 |28826 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31134 |846 |28828 |0 |1 |2774A4|0 |2 |0 |
-ROW |31135 |846 |28827 |0 |2 |F63100|0 |2 |0 |
-ROW |31136 |847 |28825 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31137 |1001 |29729 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31138 |1001 |29728 |0 |1 |2774A4|0 |2 |0 |
-ROW |31139 |1001 |29727 |0 |2 |F63100|0 |2 |0 |
-ROW |31140 |1001 |29725 |0 |3 |A54F10|0 |2 |0 |
-ROW |31141 |1001 |29723 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |31142 |1001 |29733 |0 |5 |6C59DC|0 |2 |0 |
-ROW |31143 |1001 |29737 |0 |6 |AC8C14|0 |2 |0 |
-ROW |31144 |1001 |29731 |0 |7 |611F27|0 |2 |0 |
-ROW |31145 |1000 |29720 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31146 |1000 |29730 |0 |1 |2774A4|0 |2 |0 |
-ROW |31147 |1000 |29721 |0 |2 |F63100|0 |2 |0 |
-ROW |31148 |1000 |29726 |0 |3 |A54F10|0 |2 |0 |
-ROW |31149 |1000 |29724 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |31150 |1000 |29734 |0 |5 |6C59DC|0 |2 |0 |
-ROW |31151 |1000 |29722 |0 |6 |AC8C14|0 |2 |0 |
-ROW |31152 |1000 |29732 |0 |7 |611F27|0 |2 |0 |
-ROW |31153 |1027 |30022 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31154 |1027 |30021 |0 |1 |2774A4|0 |2 |0 |
-ROW |31155 |1027 |30019 |0 |2 |F63100|0 |2 |0 |
-ROW |31156 |1008 |29698 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31157 |1008 |29700 |2 |1 |FF0000|0 |2 |0 |
-ROW |31158 |1007 |29691 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31159 |1013 |29657 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31160 |1013 |29658 |0 |1 |2774A4|0 |2 |0 |
-ROW |31161 |1009 |29687 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31162 |1009 |29694 |2 |1 |FF0000|0 |2 |0 |
-ROW |31163 |1029 |30017 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31164 |1029 |30016 |0 |1 |2774A4|0 |2 |0 |
-ROW |31165 |1029 |30015 |0 |2 |F63100|0 |2 |0 |
-ROW |31166 |1031 |30007 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31167 |1031 |30013 |0 |1 |2774A4|0 |2 |0 |
-ROW |31168 |1031 |30011 |0 |2 |F63100|0 |2 |0 |
-ROW |31169 |1031 |30009 |0 |3 |A54F10|0 |2 |0 |
-ROW |31170 |1031 |30005 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |31171 |1031 |30003 |0 |5 |6C59DC|0 |2 |0 |
-ROW |31172 |1031 |30023 |0 |6 |AC8C14|0 |2 |0 |
-ROW |31173 |1031 |30001 |0 |7 |611F27|0 |2 |0 |
-ROW |31174 |1030 |30008 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31175 |1030 |30014 |0 |1 |2774A4|0 |2 |0 |
-ROW |31176 |1030 |30012 |0 |2 |F63100|0 |2 |0 |
-ROW |31177 |1030 |30010 |0 |3 |A54F10|0 |2 |0 |
-ROW |31178 |1030 |30006 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |31179 |1030 |30004 |0 |5 |6C59DC|0 |2 |0 |
-ROW |31180 |1030 |30000 |0 |6 |AC8C14|0 |2 |0 |
-ROW |31181 |1030 |30002 |0 |7 |611F27|0 |2 |0 |
-ROW |31182 |1011 |29695 |2 |0 |1A7C11|0 |2 |0 |
-ROW |31183 |1011 |29662 |2 |1 |2774A4|0 |2 |0 |
-ROW |31184 |1028 |30020 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31185 |1010 |29701 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31186 |1010 |29697 |0 |1 |2774A4|0 |2 |0 |
-ROW |31187 |1012 |29692 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31188 |1015 |29812 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31189 |1015 |29811 |0 |1 |2774A4|0 |2 |0 |
-ROW |31190 |1015 |29810 |0 |2 |F63100|0 |2 |0 |
-ROW |31191 |1015 |29808 |0 |3 |A54F10|0 |2 |0 |
-ROW |31192 |1015 |29806 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |31193 |1015 |29816 |0 |5 |6C59DC|0 |2 |0 |
-ROW |31194 |1015 |29820 |0 |6 |AC8C14|0 |2 |0 |
-ROW |31195 |1015 |29814 |0 |7 |611F27|0 |2 |0 |
-ROW |31196 |1014 |29803 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31197 |1014 |29813 |0 |1 |2774A4|0 |2 |0 |
-ROW |31198 |1014 |29804 |0 |2 |F63100|0 |2 |0 |
-ROW |31199 |1014 |29809 |0 |3 |A54F10|0 |2 |0 |
-ROW |31200 |1014 |29807 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |31201 |1014 |29817 |0 |5 |6C59DC|0 |2 |0 |
-ROW |31202 |1014 |29805 |0 |6 |AC8C14|0 |2 |0 |
-ROW |31203 |1014 |29815 |0 |7 |611F27|0 |2 |0 |
-ROW |31204 |1016 |29768 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31205 |1016 |29767 |0 |1 |2774A4|0 |2 |0 |
-ROW |31206 |1016 |29765 |0 |2 |F63100|0 |2 |0 |
-ROW |31207 |1022 |29782 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31208 |1022 |29781 |2 |1 |FF0000|0 |2 |0 |
-ROW |31209 |1021 |29783 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31210 |1023 |29780 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31211 |1023 |29784 |2 |1 |FF0000|0 |2 |0 |
-ROW |31212 |1018 |29763 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31213 |1018 |29762 |0 |1 |2774A4|0 |2 |0 |
-ROW |31214 |1018 |29761 |0 |2 |F63100|0 |2 |0 |
-ROW |31215 |1020 |29753 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31216 |1020 |29759 |0 |1 |2774A4|0 |2 |0 |
-ROW |31217 |1020 |29757 |0 |2 |F63100|0 |2 |0 |
-ROW |31218 |1020 |29755 |0 |3 |A54F10|0 |2 |0 |
-ROW |31219 |1020 |29751 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |31220 |1020 |29749 |0 |5 |6C59DC|0 |2 |0 |
-ROW |31221 |1020 |29769 |0 |6 |AC8C14|0 |2 |0 |
-ROW |31222 |1020 |29747 |0 |7 |611F27|0 |2 |0 |
-ROW |31223 |1019 |29754 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31224 |1019 |29760 |0 |1 |2774A4|0 |2 |0 |
-ROW |31225 |1019 |29758 |0 |2 |F63100|0 |2 |0 |
-ROW |31226 |1019 |29756 |0 |3 |A54F10|0 |2 |0 |
-ROW |31227 |1019 |29752 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |31228 |1019 |29750 |0 |5 |6C59DC|0 |2 |0 |
-ROW |31229 |1019 |29746 |0 |6 |AC8C14|0 |2 |0 |
-ROW |31230 |1019 |29748 |0 |7 |611F27|0 |2 |0 |
-ROW |31231 |1025 |29775 |2 |0 |1A7C11|0 |2 |0 |
-ROW |31232 |1025 |29744 |2 |1 |2774A4|0 |2 |0 |
-ROW |31233 |1017 |29766 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31234 |1024 |29776 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31235 |1024 |29777 |0 |1 |2774A4|0 |2 |0 |
-ROW |31236 |1026 |29772 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31237 |793 |28532 |0 |0 |C80000|0 |2 |0 |
-ROW |31238 |793 |28503 |0 |1 |00C800|0 |2 |0 |
-ROW |31239 |793 |28504 |0 |2 |0000C8|0 |2 |0 |
-ROW |31240 |794 |28505 |0 |0 |C80000|0 |2 |0 |
-ROW |31241 |794 |28506 |0 |1 |00C800|0 |2 |0 |
-ROW |31242 |794 |28507 |0 |2 |0000C8|0 |2 |0 |
-ROW |31243 |795 |28508 |0 |0 |C80000|0 |2 |0 |
-ROW |31244 |795 |28509 |0 |1 |00C800|0 |2 |0 |
-ROW |31245 |795 |28510 |0 |2 |0000C8|0 |2 |0 |
-ROW |31246 |796 |28515 |0 |0 |C80000|0 |2 |0 |
-ROW |31247 |796 |28518 |0 |1 |00C800|0 |2 |0 |
-ROW |31248 |796 |28516 |0 |2 |0000C8|0 |2 |0 |
-ROW |31249 |638 |26892 |0 |0 |C80000|0 |2 |0 |
-ROW |31250 |638 |26891 |0 |1 |00C800|0 |2 |0 |
-ROW |31251 |638 |26910 |0 |2 |0000C8|0 |2 |0 |
-ROW |31252 |639 |26879 |0 |0 |C80000|0 |2 |0 |
-ROW |31253 |639 |26880 |0 |1 |00C800|0 |2 |0 |
-ROW |31254 |640 |26906 |0 |0 |C80000|0 |2 |0 |
-ROW |31255 |640 |26895 |0 |1 |00C800|0 |2 |0 |
-ROW |31256 |640 |26889 |0 |2 |0000C8|0 |2 |0 |
-ROW |31257 |640 |26884 |0 |3 |C8C800|0 |2 |0 |
-ROW |31258 |640 |26896 |0 |4 |00C8C9|0 |2 |0 |
-ROW |31259 |640 |26887 |0 |5 |C800C8|0 |2 |0 |
-ROW |31260 |641 |26900 |0 |0 |C80000|0 |2 |0 |
-ROW |31261 |641 |26901 |0 |1 |00C800|0 |2 |0 |
-ROW |31262 |641 |26902 |0 |2 |0000C8|0 |2 |0 |
-ROW |31263 |642 |26883 |0 |0 |C80000|0 |2 |0 |
-ROW |31264 |642 |26882 |0 |1 |00C800|0 |2 |0 |
-ROW |31265 |642 |26864 |0 |2 |0000C8|0 |2 |0 |
-ROW |31266 |643 |26863 |0 |0 |C80000|0 |2 |0 |
-ROW |31267 |643 |26865 |0 |1 |00C800|0 |2 |0 |
-ROW |31268 |643 |26866 |0 |2 |0000C8|0 |2 |0 |
-ROW |31269 |644 |26867 |0 |0 |C80000|0 |2 |0 |
-ROW |31270 |644 |26862 |0 |1 |00C800|0 |2 |0 |
-ROW |31271 |644 |26861 |0 |2 |0000C8|0 |2 |0 |
-ROW |31272 |645 |26857 |0 |0 |C80000|0 |2 |0 |
-ROW |31273 |645 |26856 |0 |1 |00C800|0 |2 |0 |
-ROW |31274 |645 |26858 |0 |2 |0000C8|0 |2 |0 |
-ROW |31275 |646 |26859 |0 |0 |0000C8|0 |2 |0 |
-ROW |31276 |646 |26860 |0 |1 |C80000|0 |2 |0 |
-ROW |31277 |646 |26868 |0 |2 |00C800|0 |2 |0 |
-ROW |31278 |647 |26869 |0 |0 |C80000|0 |2 |0 |
-ROW |31279 |647 |26878 |0 |1 |00C800|0 |2 |0 |
-ROW |31280 |647 |26877 |0 |2 |0000C8|0 |2 |0 |
-ROW |31281 |648 |26872 |0 |0 |C80000|0 |2 |0 |
-ROW |31282 |648 |26870 |0 |1 |00C800|0 |2 |0 |
-ROW |31283 |648 |26873 |0 |2 |0000C8|0 |2 |0 |
-ROW |31284 |803 |28599 |0 |0 |DD0000|0 |2 |0 |
-ROW |31285 |803 |28596 |0 |1 |00DDDD|0 |2 |0 |
-ROW |31286 |803 |28597 |0 |2 |3333FF|0 |2 |0 |
-ROW |31287 |803 |28598 |0 |3 |00FF00|0 |2 |0 |
-ROW |31288 |804 |28602 |0 |0 |990099|0 |2 |0 |
-ROW |31289 |804 |28606 |0 |1 |990000|0 |2 |0 |
-ROW |31290 |804 |28608 |0 |2 |0000EE|0 |2 |0 |
-ROW |31291 |804 |28615 |0 |3 |FF33FF|0 |2 |0 |
-ROW |31292 |804 |28610 |0 |4 |00EE00|0 |2 |0 |
-ROW |31293 |804 |28611 |0 |5 |003300|0 |2 |0 |
-ROW |31294 |804 |28616 |0 |6 |33FFFF|0 |2 |0 |
-ROW |31295 |804 |28607 |0 |7 |DD0000|0 |2 |0 |
-ROW |31296 |804 |28604 |0 |8 |000099|0 |2 |0 |
-ROW |31297 |804 |28588 |0 |9 |00FF00|0 |2 |0 |
-ROW |31298 |805 |28612 |0 |0 |FFAA00|0 |2 |0 |
-ROW |31299 |805 |28600 |0 |1 |990099|0 |2 |0 |
-ROW |31300 |805 |28613 |0 |2 |EE0000|0 |2 |0 |
-ROW |31301 |805 |28605 |0 |3 |FF66FF|0 |2 |0 |
-ROW |31302 |805 |28614 |0 |4 |960000|0 |2 |0 |
-ROW |31303 |805 |28601 |0 |5 |009600|0 |2 |0 |
-ROW |31304 |805 |28603 |0 |6 |009999|0 |2 |0 |
-ROW |31305 |805 |28609 |0 |7 |BBBB00|0 |2 |0 |
-ROW |31306 |806 |28595 |0 |0 |00C800|0 |2 |0 |
-ROW |31307 |806 |28586 |0 |1 |C80000|0 |2 |0 |
-ROW |31308 |797 |28546 |0 |0 |C80000|0 |2 |0 |
-ROW |31309 |797 |28545 |0 |1 |00C800|0 |2 |0 |
-ROW |31310 |798 |28551 |0 |0 |009900|0 |2 |0 |
-ROW |31311 |798 |28543 |0 |1 |DD0000|0 |2 |0 |
-ROW |31312 |798 |28542 |0 |2 |00DDDD|0 |2 |0 |
-ROW |31313 |798 |28549 |0 |3 |3333FF|0 |2 |0 |
-ROW |31314 |798 |28544 |0 |4 |999900|0 |2 |0 |
-ROW |31315 |798 |28548 |0 |5 |00FF00|0 |2 |0 |
-ROW |31316 |799 |28581 |0 |0 |990099|0 |2 |0 |
-ROW |31317 |799 |28574 |0 |1 |990000|0 |2 |0 |
-ROW |31318 |799 |28571 |0 |2 |0000EE|0 |2 |0 |
-ROW |31319 |799 |28565 |0 |3 |FF33FF|0 |2 |0 |
-ROW |31320 |799 |28570 |0 |4 |009600|0 |2 |0 |
-ROW |31321 |799 |28569 |0 |5 |003300|0 |2 |0 |
-ROW |31322 |799 |28577 |0 |6 |CCCC00|0 |2 |0 |
-ROW |31323 |799 |28552 |0 |7 |33FFFF|0 |2 |0 |
-ROW |31324 |799 |28573 |0 |8 |DD0000|0 |2 |0 |
-ROW |31325 |799 |28579 |0 |9 |000099|0 |2 |0 |
-ROW |31326 |799 |28559 |0 |10 |00FF00|0 |2 |0 |
-ROW |31327 |800 |28572 |0 |0 |00EE00|0 |2 |0 |
-ROW |31328 |800 |28566 |0 |1 |0000EE|0 |2 |0 |
-ROW |31329 |800 |28568 |0 |2 |FFAA00|0 |2 |0 |
-ROW |31330 |800 |28561 |0 |3 |00EEEE|0 |2 |0 |
-ROW |31331 |800 |28564 |0 |4 |990099|0 |2 |0 |
-ROW |31332 |800 |28567 |0 |5 |EE0000|0 |2 |0 |
-ROW |31333 |800 |28578 |0 |6 |FF66FF|0 |2 |0 |
-ROW |31334 |800 |28580 |0 |7 |009999|0 |2 |0 |
-ROW |31335 |800 |28562 |0 |8 |BBBB00|0 |2 |0 |
-ROW |31336 |800 |28563 |0 |9 |AA0000|0 |2 |0 |
-ROW |31337 |800 |28575 |0 |10 |990000|0 |2 |0 |
-ROW |31338 |800 |28576 |0 |11 |008800|0 |2 |0 |
-ROW |31339 |800 |28582 |0 |12 |80B0E0|0 |2 |0 |
-ROW |31340 |800 |28583 |0 |13 |4080B0|0 |2 |0 |
-ROW |31341 |800 |29821 |0 |14 |8000FF|0 |2 |0 |
-ROW |31342 |801 |28560 |0 |0 |008800|0 |2 |0 |
-ROW |31343 |801 |28584 |0 |1 |EE0000|0 |2 |0 |
-ROW |31344 |802 |28550 |5 |0 |00C800|0 |2 |0 |
-ROW |31345 |802 |28540 |0 |1 |F63100|0 |2 |0 |
-ROW |31346 |529 |23357 |0 |0 |DD0000|0 |2 |0 |
-ROW |31347 |529 |23341 |0 |1 |00DDDD|0 |2 |0 |
-ROW |31348 |529 |23342 |0 |2 |3333FF|0 |2 |0 |
-ROW |31349 |529 |28251 |0 |3 |00FF00|0 |2 |0 |
-ROW |31350 |530 |23345 |0 |0 |990099|0 |2 |0 |
-ROW |31351 |530 |23348 |0 |1 |990000|0 |2 |0 |
-ROW |31352 |530 |23355 |0 |2 |0000EE|0 |2 |0 |
-ROW |31353 |530 |23352 |0 |3 |FF33FF|0 |2 |0 |
-ROW |31354 |530 |23356 |0 |4 |007700|0 |2 |0 |
-ROW |31355 |530 |23354 |0 |5 |003300|0 |2 |0 |
-ROW |31356 |530 |23346 |0 |6 |33FFFF|0 |2 |0 |
-ROW |31357 |530 |23349 |0 |7 |DD0000|0 |2 |0 |
-ROW |31358 |530 |23344 |0 |8 |000099|0 |7 |0 |
-ROW |31359 |530 |28250 |0 |9 |00FF00|0 |2 |0 |
-ROW |31360 |531 |23353 |0 |0 |FFAA00|0 |2 |0 |
-ROW |31361 |531 |23347 |0 |1 |990099|0 |2 |0 |
-ROW |31362 |531 |23350 |0 |2 |EE0000|0 |2 |0 |
-ROW |31363 |531 |23343 |0 |3 |FF66FF|0 |2 |0 |
-ROW |31364 |531 |23351 |0 |4 |0000EE|0 |2 |0 |
-ROW |31365 |531 |23360 |0 |5 |00EE00|0 |2 |0 |
-ROW |31366 |531 |25369 |0 |6 |009999|0 |2 |0 |
-ROW |31367 |531 |25368 |0 |7 |BBBB00|0 |2 |0 |
-ROW |31368 |531 |28618 |0 |8 |990000|0 |2 |0 |
-ROW |31369 |531 |28619 |0 |9 |008800|0 |2 |0 |
-ROW |31370 |807 |28617 |0 |0 |008800|0 |2 |0 |
-ROW |31371 |532 |23340 |5 |0 |00C800|0 |2 |0 |
-ROW |31372 |532 |23358 |5 |1 |C80000|1 |2 |0 |
-ROW |31373 |527 |22199 |0 |0 |C80000|0 |2 |0 |
-ROW |31374 |527 |22196 |0 |1 |00C800|0 |2 |0 |
-ROW |31375 |528 |23628 |0 |0 |C80000|0 |2 |0 |
-ROW |31376 |528 |23625 |0 |1 |00C800|0 |2 |0 |
-ROW |31377 |410 |22185 |0 |0 |009900|0 |2 |0 |
-ROW |31378 |410 |22189 |0 |1 |DD0000|0 |2 |0 |
-ROW |31379 |410 |22396 |0 |2 |00DDDD|0 |2 |0 |
-ROW |31380 |410 |22183 |0 |3 |3333FF|0 |2 |0 |
-ROW |31381 |410 |22191 |0 |4 |999900|0 |2 |0 |
-ROW |31382 |410 |23634 |0 |5 |00FF00|0 |2 |0 |
-ROW |31383 |520 |23276 |0 |0 |009900|0 |2 |0 |
-ROW |31384 |520 |23273 |0 |1 |DD0000|0 |2 |0 |
-ROW |31385 |520 |23275 |0 |2 |00DDDD|0 |2 |0 |
-ROW |31386 |520 |23274 |0 |3 |3333FF|0 |2 |0 |
-ROW |31387 |520 |23620 |0 |4 |999900|0 |2 |0 |
-ROW |31388 |520 |23635 |0 |5 |00FF00|0 |2 |0 |
-ROW |31389 |404 |22404 |0 |0 |990099|0 |2 |0 |
-ROW |31390 |404 |22399 |0 |1 |990000|0 |2 |0 |
-ROW |31391 |404 |22416 |0 |2 |0000EE|0 |2 |0 |
-ROW |31392 |404 |22430 |0 |3 |FF33FF|0 |2 |0 |
-ROW |31393 |404 |22418 |0 |4 |009600|0 |2 |0 |
-ROW |31394 |404 |22402 |0 |5 |003300|0 |2 |0 |
-ROW |31395 |404 |22420 |0 |6 |CCCC00|0 |2 |0 |
-ROW |31396 |404 |22400 |0 |7 |33FFFF|0 |2 |0 |
-ROW |31397 |404 |22689 |0 |8 |DD0000|0 |2 |0 |
-ROW |31398 |404 |23171 |0 |9 |000099|0 |2 |0 |
-ROW |31399 |404 |22401 |0 |10 |00FF00|0 |2 |0 |
-ROW |31400 |518 |23269 |0 |0 |990099|0 |2 |0 |
-ROW |31401 |518 |23264 |0 |1 |990000|0 |2 |0 |
-ROW |31402 |518 |23261 |0 |2 |0000EE|0 |2 |0 |
-ROW |31403 |518 |23255 |0 |3 |FF33FF|0 |2 |0 |
-ROW |31404 |518 |23260 |0 |4 |009600|0 |2 |0 |
-ROW |31405 |518 |23259 |0 |5 |003300|0 |2 |0 |
-ROW |31406 |518 |23265 |0 |6 |CCCC00|0 |2 |0 |
-ROW |31407 |518 |23270 |0 |7 |33FFFF|0 |2 |0 |
-ROW |31408 |518 |23262 |0 |8 |DD0000|0 |2 |0 |
-ROW |31409 |518 |23267 |0 |9 |000099|0 |2 |0 |
-ROW |31410 |518 |23328 |0 |10 |00FF00|0 |2 |0 |
-ROW |31411 |406 |22426 |0 |0 |00EE00|0 |2 |0 |
-ROW |31412 |406 |22422 |0 |1 |0000EE|0 |2 |0 |
-ROW |31413 |406 |22408 |0 |2 |FFAA00|0 |2 |0 |
-ROW |31414 |406 |22424 |0 |3 |00EEEE|0 |2 |0 |
-ROW |31415 |406 |22412 |0 |4 |990099|0 |2 |0 |
-ROW |31416 |406 |22406 |0 |5 |EE0000|0 |2 |0 |
-ROW |31417 |406 |22414 |0 |6 |FF66FF|0 |2 |0 |
-ROW |31418 |406 |23663 |0 |7 |009999|0 |2 |0 |
-ROW |31419 |406 |25366 |0 |8 |BBBB00|0 |2 |0 |
-ROW |31420 |406 |25370 |0 |9 |AA0000|0 |2 |0 |
-ROW |31421 |406 |25665 |0 |10 |990000|0 |2 |0 |
-ROW |31422 |406 |25666 |0 |11 |008800|0 |2 |0 |
-ROW |31423 |406 |28535 |0 |12 |80B0E0|0 |2 |0 |
-ROW |31424 |406 |28537 |0 |13 |4080B0|0 |2 |0 |
-ROW |31425 |406 |29822 |0 |14 |8000FF|0 |2 |0 |
-ROW |31426 |517 |23268 |0 |0 |00EE00|0 |2 |0 |
-ROW |31427 |517 |23256 |0 |1 |0000EE|0 |2 |0 |
-ROW |31428 |517 |23258 |0 |2 |FFAA00|0 |2 |0 |
-ROW |31429 |517 |23252 |0 |3 |00EEEE|0 |2 |0 |
-ROW |31430 |517 |23253 |0 |4 |990099|0 |2 |0 |
-ROW |31431 |517 |23257 |0 |5 |EE0000|0 |2 |0 |
-ROW |31432 |517 |23266 |0 |6 |FF66FF|0 |2 |0 |
-ROW |31433 |517 |23664 |0 |7 |009999|0 |2 |0 |
-ROW |31434 |517 |25367 |0 |8 |BBBB00|0 |2 |0 |
-ROW |31435 |517 |25371 |0 |9 |AA0000|0 |2 |0 |
-ROW |31436 |517 |25667 |0 |10 |990000|0 |2 |0 |
-ROW |31437 |517 |25668 |0 |11 |008800|0 |2 |0 |
-ROW |31438 |517 |28536 |0 |12 |80B0E0|0 |2 |0 |
-ROW |31439 |517 |28538 |0 |13 |4080B0|0 |2 |0 |
-ROW |31440 |517 |29823 |0 |14 |8000FF|0 |2 |0 |
-ROW |31441 |788 |28248 |0 |0 |008800|0 |2 |0 |
-ROW |31442 |788 |28533 |0 |1 |EE0000|0 |2 |0 |
-ROW |31443 |789 |28249 |0 |0 |008800|0 |2 |0 |
-ROW |31444 |789 |28534 |0 |1 |EE0000|0 |2 |0 |
-ROW |31445 |392 |22187 |5 |0 |00C800|0 |2 |0 |
-ROW |31446 |392 |23251 |5 |1 |C80000|1 |2 |0 |
-ROW |31447 |519 |23277 |5 |0 |00C800|0 |2 |0 |
-ROW |31448 |519 |23272 |5 |1 |C80000|1 |2 |0 |
-ROW |31449 |472 |22945 |5 |0 |00AA00|0 |2 |0 |
-ROW |31450 |472 |22946 |5 |1 |3333FF|0 |2 |0 |
-ROW |31451 |473 |22950 |0 |0 |C80000|0 |2 |2 |
-ROW |31452 |473 |22948 |0 |1 |00C800|0 |2 |0 |
-ROW |31453 |471 |22924 |0 |0 |009900|0 |2 |0 |
-ROW |31454 |471 |22920 |0 |1 |000099|0 |2 |0 |
-ROW |31455 |469 |22922 |0 |0 |009900|0 |2 |0 |
-ROW |31456 |469 |22923 |0 |1 |000099|0 |2 |0 |
-ROW |31457 |469 |22921 |0 |2 |990000|0 |2 |0 |
-ROW |31458 |498 |23109 |0 |0 |009999|0 |2 |0 |
-ROW |31459 |498 |23112 |0 |1 |990099|0 |2 |0 |
-ROW |31460 |498 |23115 |0 |2 |999900|0 |2 |0 |
-ROW |31461 |498 |23113 |0 |3 |990000|0 |2 |0 |
-ROW |31462 |498 |23114 |0 |4 |000099|0 |2 |0 |
-ROW |31463 |498 |23110 |0 |5 |009900|0 |2 |0 |
-ROW |31464 |540 |22942 |5 |0 |00C800|0 |2 |0 |
-ROW |31465 |492 |23073 |5 |0 |00AA00|0 |2 |0 |
-ROW |31466 |492 |23074 |5 |1 |3333FF|0 |2 |0 |
-ROW |31467 |467 |22910 |0 |0 |C80000|0 |2 |2 |
-ROW |31468 |467 |22908 |0 |1 |00C800|0 |2 |0 |
-ROW |31469 |465 |22884 |0 |0 |009900|0 |2 |0 |
-ROW |31470 |465 |22880 |0 |1 |000099|0 |2 |0 |
-ROW |31471 |463 |22882 |0 |0 |009900|0 |2 |0 |
-ROW |31472 |463 |22883 |0 |1 |000099|0 |2 |0 |
-ROW |31473 |463 |22881 |0 |2 |990000|0 |2 |0 |
-ROW |31474 |462 |22886 |1 |0 |009999|0 |2 |0 |
-ROW |31475 |462 |22888 |1 |1 |990099|0 |2 |0 |
-ROW |31476 |462 |22891 |1 |2 |990000|0 |2 |0 |
-ROW |31477 |462 |22892 |1 |3 |000099|0 |2 |0 |
-ROW |31478 |462 |22885 |1 |4 |009900|0 |2 |0 |
-ROW |31479 |541 |22902 |5 |0 |00C800|0 |2 |0 |
-ROW |31480 |464 |22897 |0 |0 |AA0000|0 |2 |2 |
-ROW |31481 |464 |22895 |0 |1 |00AA00|0 |2 |0 |
-ROW |31482 |478 |22985 |5 |0 |00AA00|0 |2 |0 |
-ROW |31483 |478 |22986 |5 |1 |3333FF|0 |2 |0 |
-ROW |31484 |479 |22990 |0 |0 |C80000|0 |2 |2 |
-ROW |31485 |479 |22988 |0 |1 |00C800|0 |2 |0 |
-ROW |31486 |475 |22962 |0 |0 |009900|0 |2 |0 |
-ROW |31487 |475 |22963 |0 |1 |000099|0 |2 |0 |
-ROW |31488 |475 |22961 |0 |2 |990000|0 |2 |0 |
-ROW |31489 |474 |22968 |1 |0 |990099|0 |2 |0 |
-ROW |31490 |474 |22971 |1 |1 |990000|0 |2 |0 |
-ROW |31491 |474 |22972 |1 |2 |000099|0 |2 |0 |
-ROW |31492 |474 |22965 |1 |3 |009900|0 |2 |0 |
-ROW |31493 |542 |22982 |5 |0 |00C800|0 |2 |0 |
-ROW |31494 |491 |23070 |0 |0 |C80000|0 |2 |2 |
-ROW |31495 |491 |23068 |0 |1 |00C800|0 |2 |0 |
-ROW |31496 |487 |23042 |0 |0 |009900|0 |2 |0 |
-ROW |31497 |487 |23043 |0 |1 |000099|0 |2 |0 |
-ROW |31498 |487 |23041 |0 |2 |990000|0 |2 |0 |
-ROW |31499 |543 |23062 |5 |0 |00C800|0 |2 |0 |
-ROW |31500 |494 |23077 |5 |0 |00AA00|0 |2 |0 |
-ROW |31501 |494 |23078 |5 |1 |3333FF|0 |2 |0 |
-ROW |31502 |493 |23075 |5 |0 |00AA00|0 |2 |0 |
-ROW |31503 |493 |23076 |5 |1 |3333FF|0 |2 |0 |
-ROW |31504 |461 |22870 |0 |0 |C80000|0 |2 |2 |
-ROW |31505 |461 |22868 |0 |1 |00C800|0 |2 |0 |
-ROW |31506 |459 |22844 |0 |0 |009900|0 |2 |0 |
-ROW |31507 |459 |22840 |0 |1 |000099|0 |2 |0 |
-ROW |31508 |457 |22842 |0 |0 |009900|0 |2 |0 |
-ROW |31509 |457 |22843 |0 |1 |000099|0 |2 |0 |
-ROW |31510 |457 |22841 |0 |2 |990000|0 |2 |0 |
-ROW |31511 |456 |22846 |1 |0 |009999|0 |2 |0 |
-ROW |31512 |456 |22848 |1 |1 |990099|0 |2 |0 |
-ROW |31513 |456 |22851 |1 |2 |990000|0 |2 |0 |
-ROW |31514 |456 |22852 |1 |3 |000099|0 |2 |0 |
-ROW |31515 |456 |22845 |1 |4 |009900|0 |2 |0 |
-ROW |31516 |544 |22862 |5 |0 |00C800|0 |2 |0 |
-ROW |31517 |458 |22857 |0 |0 |AA0000|0 |2 |2 |
-ROW |31518 |458 |22855 |0 |1 |00AA00|0 |2 |0 |
-ROW |31519 |484 |23025 |5 |0 |00AA00|0 |2 |0 |
-ROW |31520 |484 |23026 |5 |1 |3333FF|0 |2 |0 |
-ROW |31521 |485 |23030 |0 |0 |C80000|0 |2 |2 |
-ROW |31522 |485 |23028 |0 |1 |00C800|0 |2 |0 |
-ROW |31523 |483 |23004 |0 |0 |009900|0 |2 |0 |
-ROW |31524 |483 |23000 |0 |1 |000099|0 |2 |0 |
-ROW |31525 |481 |23002 |0 |0 |009900|0 |2 |0 |
-ROW |31526 |481 |23003 |0 |1 |000099|0 |2 |0 |
-ROW |31527 |481 |23001 |0 |2 |990000|0 |2 |0 |
-ROW |31528 |480 |23007 |1 |0 |999900|0 |2 |0 |
-ROW |31529 |480 |23011 |1 |1 |990000|0 |2 |0 |
-ROW |31530 |480 |23012 |1 |2 |000099|0 |2 |0 |
-ROW |31531 |480 |23005 |1 |3 |009900|0 |2 |0 |
-ROW |31532 |545 |23022 |5 |0 |00C800|0 |2 |0 |
-ROW |31533 |482 |23017 |0 |0 |AA0000|0 |2 |2 |
-ROW |31534 |482 |23015 |0 |1 |00AA00|0 |2 |0 |
-ROW |31535 |651 |26928 |5 |0 |EE0000|0 |2 |0 |
-ROW |31536 |651 |26927 |0 |1 |000000|1 |2 |0 |
-ROW |31537 |652 |26925 |2 |0 |880000|0 |2 |0 |
-ROW |31538 |652 |26932 |0 |1 |009900|0 |2 |0 |
-ROW |31539 |652 |26930 |0 |2 |00CCCC|0 |2 |0 |
-ROW |31540 |652 |26931 |0 |3 |000000|0 |2 |0 |
-ROW |31541 |652 |26929 |0 |4 |3333FF|0 |2 |0 |
-ROW |31542 |652 |26926 |0 |5 |777700|0 |2 |0 |
-ROW |31543 |653 |26933 |2 |0 |EE0000|0 |2 |0 |
-ROW |31544 |653 |26943 |2 |1 |EE00EE|0 |2 |0 |
-ROW |31545 |653 |26935 |0 |2 |000000|1 |2 |0 |
-ROW |31546 |653 |26936 |4 |3 |000000|1 |2 |0 |
-ROW |31547 |654 |26934 |2 |0 |880000|0 |2 |0 |
-ROW |31548 |654 |26939 |0 |1 |009900|0 |2 |0 |
-ROW |31549 |654 |26942 |0 |2 |00CCCC|0 |2 |0 |
-ROW |31550 |654 |26938 |0 |3 |000000|0 |2 |0 |
-ROW |31551 |654 |26937 |0 |4 |3333FF|0 |2 |0 |
-ROW |31552 |1159 |30886 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31553 |1159 |30887 |0 |1 |2774A4|0 |2 |0 |
-ROW |31554 |1160 |30888 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31555 |1160 |30882 |0 |1 |2774A4|0 |2 |0 |
-ROW |31556 |1160 |30890 |0 |2 |F63100|0 |2 |0 |
-ROW |31557 |1160 |30881 |0 |3 |A54F10|0 |2 |0 |
-ROW |31558 |1160 |30889 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |31559 |1161 |30847 |2 |0 |1A7C11|0 |2 |0 |
-ROW |31560 |1161 |30872 |2 |1 |2774A4|0 |2 |0 |
-ROW |31561 |1162 |30853 |2 |0 |1A7C11|0 |2 |0 |
-ROW |31562 |1162 |30849 |2 |1 |2774A4|0 |2 |0 |
-ROW |31563 |1162 |30852 |2 |2 |F63100|0 |2 |0 |
-ROW |31564 |1162 |30851 |2 |3 |A54F10|0 |2 |0 |
-ROW |31565 |1162 |30848 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |31566 |1163 |30856 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31567 |1163 |30855 |0 |1 |2774A4|0 |2 |0 |
-ROW |31568 |1163 |30854 |2 |2 |F63100|1 |2 |0 |
-ROW |31569 |1164 |30859 |2 |0 |1A7C11|0 |2 |0 |
-ROW |31570 |1164 |30870 |2 |1 |2774A4|0 |2 |0 |
-ROW |31571 |1165 |30860 |2 |0 |1A7C11|0 |2 |0 |
-ROW |31572 |1165 |30871 |2 |1 |2774A4|0 |2 |0 |
-ROW |31573 |1166 |30868 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31574 |1166 |30869 |0 |1 |2774A4|0 |2 |0 |
-ROW |31575 |1166 |30867 |0 |2 |F63100|0 |2 |0 |
-ROW |31576 |1166 |30866 |0 |3 |A54F10|0 |2 |0 |
-ROW |31577 |1166 |30865 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |31578 |1167 |30850 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31579 |1167 |30863 |5 |1 |2774A4|0 |2 |0 |
-ROW |31580 |1167 |30861 |5 |2 |F63100|0 |2 |0 |
-ROW |31581 |1168 |30833 |2 |0 |1A7C11|0 |2 |0 |
-ROW |31582 |1168 |30841 |2 |1 |2774A4|0 |2 |0 |
-ROW |31583 |1168 |30857 |2 |2 |F63100|0 |2 |0 |
-ROW |31584 |1169 |30834 |2 |0 |1A7C11|0 |2 |0 |
-ROW |31585 |1169 |30831 |2 |1 |2774A4|0 |2 |0 |
-ROW |31586 |1170 |30846 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31587 |1171 |30840 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31588 |1171 |30845 |0 |1 |2774A4|0 |2 |0 |
-ROW |31589 |1171 |30842 |0 |2 |F63100|0 |2 |0 |
-ROW |31590 |1171 |30873 |2 |3 |A54F10|1 |2 |0 |
-ROW |31591 |1190 |31140 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31592 |1190 |31141 |0 |1 |2774A4|0 |2 |0 |
-ROW |31593 |1191 |31138 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31594 |1192 |31157 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31595 |1192 |31158 |0 |1 |2774A4|0 |2 |0 |
-ROW |31596 |1193 |31092 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31597 |1193 |31108 |0 |1 |2774A4|0 |2 |0 |
-ROW |31598 |1193 |31110 |0 |2 |F63100|0 |2 |0 |
-ROW |31599 |1193 |31067 |0 |3 |A54F10|0 |2 |0 |
-ROW |31600 |1193 |31086 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |31601 |1193 |31087 |0 |5 |6C59DC|0 |2 |0 |
-ROW |31602 |1194 |31120 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31603 |1194 |31105 |0 |1 |2774A4|0 |2 |0 |
-ROW |31604 |1194 |31071 |0 |2 |F63100|0 |2 |0 |
-ROW |31605 |1194 |31081 |0 |3 |A54F10|0 |2 |0 |
-ROW |31606 |1195 |31098 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31607 |1195 |31099 |0 |1 |2774A4|0 |2 |0 |
-ROW |31608 |1196 |31072 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31609 |1196 |31072 |0 |1 |2774A4|0 |2 |0 |
-ROW |31610 |1197 |31103 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31611 |1197 |31074 |0 |1 |2774A4|0 |2 |0 |
-ROW |31612 |1198 |31104 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31613 |1198 |31063 |0 |1 |2774A4|0 |2 |0 |
-ROW |31614 |1198 |31111 |0 |2 |F63100|0 |2 |0 |
-ROW |31615 |1198 |31112 |0 |3 |A54F10|0 |2 |0 |
-ROW |31616 |1198 |31084 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |31617 |1199 |31115 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31618 |1199 |31116 |0 |1 |2774A4|0 |2 |0 |
-ROW |31619 |1199 |31062 |0 |2 |F63100|0 |2 |0 |
-ROW |31620 |1199 |31118 |0 |3 |A54F10|0 |2 |0 |
-ROW |31621 |1199 |31056 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |31622 |1200 |31107 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31623 |1200 |31090 |0 |1 |2774A4|0 |2 |0 |
-ROW |31624 |1201 |31097 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31625 |1201 |31096 |0 |1 |2774A4|0 |2 |0 |
-ROW |31626 |1202 |31089 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31627 |1202 |31061 |0 |1 |2774A4|0 |2 |0 |
-ROW |31628 |1203 |31064 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31629 |1204 |31065 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31630 |1204 |31066 |0 |1 |2774A4|0 |2 |0 |
-ROW |31631 |1204 |31068 |0 |2 |F63100|0 |2 |0 |
-ROW |31632 |1204 |31070 |0 |3 |A54F10|0 |2 |0 |
-ROW |31633 |1204 |31101 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |31634 |1204 |31106 |0 |5 |6C59DC|0 |2 |0 |
-ROW |31635 |1204 |31114 |0 |6 |AC8C14|0 |2 |0 |
-ROW |31636 |1205 |31069 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31637 |1206 |31076 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31638 |1206 |31078 |0 |1 |2774A4|0 |2 |0 |
-ROW |31639 |1206 |31109 |0 |2 |F63100|0 |2 |0 |
-ROW |31640 |1206 |31075 |0 |3 |A54F10|0 |2 |0 |
-ROW |31641 |1207 |31080 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31642 |1207 |31095 |0 |1 |2774A4|0 |2 |0 |
-ROW |31643 |1208 |31113 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31644 |1208 |31118 |0 |1 |2774A4|0 |2 |0 |
-ROW |31645 |1209 |31058 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31646 |1209 |31077 |0 |1 |2774A4|0 |2 |0 |
-ROW |31647 |1209 |31056 |0 |2 |F63100|0 |2 |0 |
-ROW |31648 |1209 |31117 |0 |3 |A54F10|0 |2 |0 |
-ROW |31649 |1109 |30453 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31650 |1109 |30455 |5 |1 |2774A4|0 |2 |0 |
-ROW |31651 |1110 |30471 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31652 |1110 |30470 |0 |1 |2774A4|0 |2 |0 |
-ROW |31653 |1110 |30466 |0 |2 |F63100|0 |2 |0 |
-ROW |31654 |1110 |30441 |0 |3 |A54F10|0 |2 |0 |
-ROW |31655 |1111 |30463 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31656 |1111 |30452 |0 |1 |2774A4|0 |2 |0 |
-ROW |31657 |1111 |30451 |0 |2 |F63100|0 |2 |0 |
-ROW |31658 |1111 |30437 |0 |3 |A54F10|0 |2 |0 |
-ROW |31659 |1112 |30456 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31660 |1112 |30457 |0 |1 |2774A4|0 |2 |0 |
-ROW |31661 |1112 |30458 |0 |2 |F63100|0 |2 |0 |
-ROW |31662 |1112 |30459 |0 |3 |A54F10|0 |2 |0 |
-ROW |31663 |1113 |30442 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31664 |1113 |30444 |0 |1 |2774A4|0 |2 |0 |
-ROW |31665 |1113 |30445 |0 |2 |F63100|0 |2 |0 |
-ROW |31666 |1114 |30446 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31667 |1114 |30447 |0 |1 |2774A4|0 |2 |0 |
-ROW |31668 |1114 |31168 |0 |2 |F63100|0 |2 |0 |
-ROW |31669 |1114 |30449 |0 |3 |A54F10|0 |2 |0 |
-ROW |31670 |1136 |30659 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31671 |1136 |30661 |5 |1 |2774A4|0 |2 |0 |
-ROW |31672 |1137 |30677 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31673 |1137 |30676 |0 |1 |2774A4|0 |2 |0 |
-ROW |31674 |1137 |30672 |0 |2 |F63100|0 |2 |0 |
-ROW |31675 |1137 |30647 |0 |3 |A54F10|0 |2 |0 |
-ROW |31676 |1138 |30669 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31677 |1138 |30658 |0 |1 |2774A4|0 |2 |0 |
-ROW |31678 |1138 |30657 |0 |2 |F63100|0 |2 |0 |
-ROW |31679 |1138 |30643 |0 |3 |A54F10|0 |2 |0 |
-ROW |31680 |1139 |30662 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31681 |1139 |30663 |0 |1 |2774A4|0 |2 |0 |
-ROW |31682 |1139 |30664 |0 |2 |F63100|0 |2 |0 |
-ROW |31683 |1139 |30665 |0 |3 |A54F10|0 |2 |0 |
-ROW |31684 |1140 |30648 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31685 |1140 |30650 |0 |1 |2774A4|0 |2 |0 |
-ROW |31686 |1140 |30651 |0 |2 |F63100|0 |2 |0 |
-ROW |31687 |1141 |30652 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31688 |1141 |30653 |0 |1 |2774A4|0 |2 |0 |
-ROW |31689 |1141 |31172 |0 |2 |F63100|0 |2 |0 |
-ROW |31690 |1141 |30655 |0 |3 |A54F10|0 |2 |0 |
-ROW |31691 |1115 |30506 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31692 |1115 |30507 |5 |1 |2774A4|0 |2 |0 |
-ROW |31693 |1116 |30504 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31694 |1116 |30505 |0 |1 |2774A4|0 |2 |0 |
-ROW |31695 |1116 |30518 |0 |2 |F63100|0 |2 |0 |
-ROW |31696 |1116 |30492 |0 |3 |A54F10|0 |2 |0 |
-ROW |31697 |1117 |30493 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31698 |1117 |30500 |0 |1 |2774A4|0 |2 |0 |
-ROW |31699 |1117 |30486 |0 |2 |F63100|0 |2 |0 |
-ROW |31700 |1117 |30488 |0 |3 |A54F10|0 |2 |0 |
-ROW |31701 |1118 |30508 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31702 |1118 |30509 |0 |1 |2774A4|0 |2 |0 |
-ROW |31703 |1118 |30503 |0 |2 |F63100|0 |2 |0 |
-ROW |31704 |1118 |30510 |0 |3 |A54F10|0 |2 |0 |
-ROW |31705 |1119 |30491 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31706 |1119 |30494 |0 |1 |2774A4|0 |2 |0 |
-ROW |31707 |1119 |30495 |0 |2 |F63100|0 |2 |0 |
-ROW |31708 |1120 |30496 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31709 |1120 |30497 |0 |1 |2774A4|0 |2 |0 |
-ROW |31710 |1120 |31176 |0 |2 |F63100|0 |2 |0 |
-ROW |31711 |1120 |30499 |0 |3 |A54F10|0 |2 |0 |
-ROW |31712 |1237 |31442 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31713 |1237 |31443 |0 |1 |2774A4|0 |2 |0 |
-ROW |31714 |1238 |31453 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31715 |1238 |31451 |0 |1 |2774A4|0 |2 |0 |
-ROW |31716 |1239 |31414 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31717 |1239 |31415 |0 |1 |2774A4|0 |2 |0 |
-ROW |31718 |1240 |31397 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31719 |1240 |31418 |0 |1 |2774A4|0 |2 |0 |
-ROW |31720 |1240 |31395 |0 |2 |F63100|0 |2 |0 |
-ROW |31721 |1241 |31372 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31722 |1241 |31402 |0 |1 |2774A4|0 |2 |0 |
-ROW |31723 |1242 |31387 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31724 |1242 |31401 |0 |1 |2774A4|0 |2 |0 |
-ROW |31725 |1243 |31373 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31726 |1243 |31374 |0 |1 |2774A4|0 |2 |0 |
-ROW |31727 |1244 |31381 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31728 |1244 |31378 |0 |1 |2774A4|0 |2 |0 |
-ROW |31729 |1244 |31382 |0 |2 |F63100|0 |2 |0 |
-ROW |31730 |1244 |31379 |0 |3 |A54F10|0 |2 |0 |
-ROW |31731 |1244 |31383 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |31732 |1245 |31388 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31733 |1245 |31389 |0 |1 |2774A4|0 |2 |0 |
-ROW |31734 |1245 |31391 |0 |2 |F63100|0 |2 |0 |
-ROW |31735 |1245 |31390 |0 |3 |A54F10|0 |2 |0 |
-ROW |31736 |1245 |31400 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |31737 |1245 |31386 |0 |5 |6C59DC|0 |2 |0 |
-ROW |31738 |814 |28730 |0 |0 |66BB6A|0 |2 |0 |
-ROW |31739 |814 |28728 |0 |1 |42A5F5|0 |2 |0 |
-ROW |31740 |815 |28712 |0 |0 |66BB6A|0 |2 |0 |
-ROW |31741 |816 |28733 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31742 |816 |28715 |0 |1 |F63100|0 |2 |0 |
-ROW |31743 |816 |28729 |0 |2 |2774A4|0 |2 |0 |
-ROW |31744 |816 |28732 |0 |3 |A54F10|0 |2 |0 |
-ROW |31745 |817 |28716 |0 |0 |EC407A|0 |2 |0 |
-ROW |31746 |818 |28726 |0 |0 |4CAF50|1 |2 |0 |
-ROW |31747 |818 |28723 |0 |1 |03A9F4|1 |2 |0 |
-ROW |31748 |818 |28720 |0 |2 |9C27B0|1 |2 |0 |
-ROW |31749 |818 |28725 |5 |3 |81C784|0 |2 |0 |
-ROW |31750 |818 |28722 |5 |4 |90CAF9|0 |2 |0 |
-ROW |31751 |818 |28719 |5 |5 |CE93D8|0 |2 |0 |
-ROW |31752 |819 |28727 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31753 |819 |28724 |0 |1 |F63100|0 |2 |0 |
-ROW |31754 |819 |28721 |0 |2 |2774A4|0 |2 |0 |
-ROW |31755 |820 |28740 |5 |0 |66BB6A|0 |2 |0 |
-ROW |31756 |820 |28739 |0 |1 |42A5F5|1 |2 |0 |
-ROW |31757 |821 |28738 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31758 |821 |28737 |0 |1 |F63100|0 |2 |0 |
-ROW |31759 |821 |28736 |0 |2 |2774A4|0 |2 |0 |
-ROW |31760 |821 |28735 |0 |3 |A54F10|0 |2 |0 |
-ROW |31761 |821 |28734 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |31762 |822 |28693 |0 |0 |1A7C11|1 |2 |0 |
-ROW |31763 |822 |28698 |0 |1 |F63100|1 |2 |0 |
-ROW |31764 |822 |28694 |0 |2 |2774A4|1 |2 |0 |
-ROW |31765 |822 |28697 |0 |3 |A54F10|1 |2 |0 |
-ROW |31766 |822 |28702 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |31767 |822 |28696 |0 |5 |6C59DC|0 |2 |0 |
-ROW |31768 |823 |28700 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31769 |823 |28699 |0 |1 |F63100|0 |2 |0 |
-ROW |31770 |823 |28701 |0 |2 |2774A4|1 |2 |0 |
-ROW |31771 |823 |28695 |0 |3 |A54F10|1 |2 |0 |
-ROW |31772 |824 |28708 |5 |0 |C8E6C9|1 |2 |0 |
-ROW |31773 |824 |28709 |0 |1 |6C59DC|0 |2 |0 |
-ROW |31774 |824 |28704 |0 |2 |1A7C11|1 |2 |0 |
-ROW |31775 |824 |28705 |0 |3 |F63100|1 |2 |0 |
-ROW |31776 |824 |28706 |0 |4 |2774A4|1 |2 |0 |
-ROW |31777 |824 |28707 |0 |5 |A54F10|1 |2 |0 |
-ROW |31778 |824 |28703 |0 |6 |AC8C14|1 |2 |0 |
-ROW |31779 |825 |28674 |5 |0 |A5D6A7|0 |2 |0 |
-ROW |31780 |825 |28673 |0 |1 |039BE5|1 |2 |0 |
-ROW |31781 |826 |28677 |0 |0 |42A5F5|0 |2 |0 |
-ROW |31782 |827 |28689 |0 |0 |1A7C11|1 |2 |0 |
-ROW |31783 |827 |28688 |0 |1 |F63100|1 |2 |0 |
-ROW |31784 |827 |28690 |0 |2 |2774A4|1 |2 |0 |
-ROW |31785 |827 |28691 |0 |3 |A54F10|1 |2 |0 |
-ROW |31786 |828 |28684 |0 |0 |66BB6A|0 |2 |0 |
-ROW |31787 |828 |28681 |0 |1 |03A9F4|1 |2 |0 |
-ROW |31788 |829 |28710 |0 |0 |29B6F6|0 |2 |0 |
-ROW |31789 |829 |28692 |0 |1 |AB47BC|1 |2 |0 |
-ROW |31790 |1210 |31269 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31791 |1210 |31252 |0 |1 |2774A4|0 |2 |0 |
-ROW |31792 |1210 |31251 |0 |2 |F63100|0 |2 |0 |
-ROW |31793 |1210 |31250 |0 |3 |A54F10|0 |2 |0 |
-ROW |31794 |1210 |31249 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |31795 |1210 |31248 |0 |5 |6C59DC|0 |2 |0 |
-ROW |31796 |1210 |31246 |0 |6 |AC8C14|0 |2 |0 |
-ROW |31797 |1210 |31245 |0 |7 |611F27|0 |2 |0 |
-ROW |31798 |1210 |31247 |0 |8 |F230E0|0 |2 |0 |
-ROW |31799 |1210 |31247 |0 |9 |FFAD40|0 |2 |0 |
-ROW |31800 |1211 |31243 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31801 |1212 |31266 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31802 |1212 |31265 |0 |1 |2774A4|0 |2 |0 |
-ROW |31803 |1212 |31263 |0 |2 |F63100|0 |2 |0 |
-ROW |31804 |1212 |31262 |0 |3 |A54F10|0 |2 |0 |
-ROW |31805 |1212 |31260 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |31806 |1212 |31259 |0 |5 |6C59DC|0 |2 |0 |
-ROW |31807 |1212 |31258 |0 |6 |AC8C14|0 |2 |0 |
-ROW |31808 |1212 |31256 |0 |7 |611F27|0 |2 |0 |
-ROW |31809 |1212 |31257 |0 |8 |F230E0|0 |2 |0 |
-ROW |31810 |1212 |31244 |0 |9 |FFAD40|0 |2 |0 |
-ROW |31811 |1212 |31255 |0 |10 |40CDFF|0 |2 |0 |
-ROW |31812 |1212 |31254 |0 |11 |40FFA0|0 |2 |0 |
-ROW |31813 |1212 |31253 |0 |12 |AE4500|0 |2 |0 |
-ROW |31814 |1213 |31242 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31815 |1087 |30346 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31816 |1087 |30345 |0 |1 |2774A4|0 |2 |0 |
-ROW |31817 |1088 |30350 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31818 |1088 |30349 |5 |1 |2774A4|0 |2 |0 |
-ROW |31819 |1089 |30396 |2 |0 |1A7C11|0 |2 |0 |
-ROW |31820 |1090 |30398 |2 |0 |1A7C11|0 |2 |0 |
-ROW |31821 |1091 |30322 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31822 |1091 |30277 |5 |1 |2774A4|0 |2 |0 |
-ROW |31823 |1092 |30284 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31824 |1093 |30313 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31825 |1093 |30314 |0 |1 |2774A4|0 |2 |0 |
-ROW |31826 |1093 |30315 |5 |2 |F63100|0 |2 |0 |
-ROW |31827 |1093 |30316 |0 |3 |A54F10|0 |2 |0 |
-ROW |31828 |1094 |30279 |2 |0 |1A7C11|0 |2 |0 |
-ROW |31829 |1094 |30280 |2 |1 |2774A4|0 |2 |0 |
-ROW |31830 |1095 |30290 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31831 |1095 |30293 |0 |1 |2774A4|0 |2 |0 |
-ROW |31832 |1096 |30318 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31833 |1096 |30308 |2 |1 |2774A4|0 |2 |0 |
-ROW |31834 |1096 |30320 |2 |2 |F63100|0 |2 |0 |
-ROW |31835 |1097 |30317 |2 |0 |1A7C11|0 |2 |0 |
-ROW |31836 |1098 |30289 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31837 |1098 |30291 |5 |1 |2774A4|0 |2 |0 |
-ROW |31838 |1099 |30334 |2 |0 |1A7C11|0 |2 |0 |
-ROW |31839 |1099 |30325 |2 |1 |2774A4|0 |2 |0 |
-ROW |31840 |1100 |30306 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31841 |1101 |30274 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31842 |1102 |30281 |0 |0 |1A7C11|0 |2 |0 |
-ROW |31843 |1060 |30159 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31844 |1061 |30165 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31845 |1062 |30171 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31846 |1063 |30177 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31847 |1064 |30183 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31848 |1065 |30161 |0 |0 |969696|0 |9 |2 |
-ROW |31849 |1065 |30162 |0 |1 |C80000|0 |9 |0 |
-ROW |31850 |1066 |30167 |0 |0 |969696|0 |9 |2 |
-ROW |31851 |1066 |30168 |0 |1 |C80000|0 |9 |0 |
-ROW |31852 |1067 |30173 |0 |0 |969696|0 |9 |2 |
-ROW |31853 |1067 |30174 |0 |1 |C80000|0 |9 |0 |
-ROW |31854 |1068 |30179 |0 |0 |969696|0 |9 |2 |
-ROW |31855 |1068 |30180 |0 |1 |C80000|0 |9 |0 |
-ROW |31856 |1069 |30185 |0 |0 |969696|0 |9 |2 |
-ROW |31857 |1069 |30186 |0 |1 |C80000|0 |9 |0 |
-ROW |31858 |1070 |30142 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31859 |1071 |30143 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31860 |1072 |30144 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31861 |1073 |30145 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31862 |1074 |30146 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31863 |741 |27084 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31864 |741 |27085 |2 |1 |2774A4|0 |2 |0 |
-ROW |31865 |741 |27083 |0 |2 |F63100|1 |2 |0 |
-ROW |31866 |741 |27086 |0 |3 |A54F10|1 |2 |0 |
-ROW |31867 |741 |27082 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |31868 |741 |27079 |0 |5 |6C59DC|1 |2 |0 |
-ROW |31869 |742 |27622 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31870 |742 |27625 |2 |1 |2774A4|0 |2 |0 |
-ROW |31871 |742 |27624 |0 |2 |F63100|1 |2 |0 |
-ROW |31872 |742 |27621 |0 |3 |A54F10|1 |2 |0 |
-ROW |31873 |742 |27623 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |31874 |742 |27620 |0 |5 |6C59DC|1 |2 |0 |
-ROW |31875 |743 |27979 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31876 |743 |27982 |2 |1 |2774A4|0 |2 |0 |
-ROW |31877 |743 |27981 |0 |2 |F63100|1 |2 |0 |
-ROW |31878 |743 |27978 |0 |3 |A54F10|1 |2 |0 |
-ROW |31879 |743 |27980 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |31880 |743 |27977 |0 |5 |6C59DC|1 |2 |0 |
-ROW |31881 |740 |28008 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31882 |740 |28011 |2 |1 |2774A4|0 |2 |0 |
-ROW |31883 |740 |28010 |0 |2 |F63100|1 |2 |0 |
-ROW |31884 |740 |28007 |0 |3 |A54F10|1 |2 |0 |
-ROW |31885 |740 |28009 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |31886 |740 |28006 |0 |5 |6C59DC|1 |2 |0 |
-ROW |31887 |745 |27104 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31888 |745 |27105 |2 |1 |2774A4|0 |2 |0 |
-ROW |31889 |745 |27103 |0 |2 |F63100|1 |2 |0 |
-ROW |31890 |745 |27106 |0 |3 |A54F10|1 |2 |0 |
-ROW |31891 |745 |27102 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |31892 |745 |27099 |0 |5 |6C59DC|1 |2 |0 |
-ROW |31893 |746 |27183 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31894 |746 |27186 |2 |1 |2774A4|0 |2 |0 |
-ROW |31895 |746 |27185 |0 |2 |F63100|1 |2 |0 |
-ROW |31896 |746 |27182 |0 |3 |A54F10|1 |2 |0 |
-ROW |31897 |746 |27184 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |31898 |746 |27181 |0 |5 |6C59DC|1 |2 |0 |
-ROW |31899 |747 |27218 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31900 |747 |27221 |2 |1 |2774A4|0 |2 |0 |
-ROW |31901 |747 |27220 |0 |2 |F63100|1 |2 |0 |
-ROW |31902 |747 |27217 |0 |3 |A54F10|1 |2 |0 |
-ROW |31903 |747 |27219 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |31904 |747 |27216 |0 |5 |6C59DC|1 |2 |0 |
-ROW |31905 |748 |27254 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31906 |748 |27257 |2 |1 |2774A4|0 |2 |0 |
-ROW |31907 |748 |27256 |0 |2 |F63100|1 |2 |0 |
-ROW |31908 |748 |27253 |0 |3 |A54F10|1 |2 |0 |
-ROW |31909 |748 |27255 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |31910 |748 |27252 |0 |5 |6C59DC|1 |2 |0 |
-ROW |31911 |749 |27275 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31912 |749 |27278 |2 |1 |2774A4|0 |2 |0 |
-ROW |31913 |749 |27277 |0 |2 |F63100|1 |2 |0 |
-ROW |31914 |749 |27274 |0 |3 |A54F10|1 |2 |0 |
-ROW |31915 |749 |27276 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |31916 |749 |27273 |0 |5 |6C59DC|1 |2 |0 |
-ROW |31917 |750 |27324 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31918 |750 |27327 |2 |1 |2774A4|0 |2 |0 |
-ROW |31919 |750 |27326 |0 |2 |F63100|1 |2 |0 |
-ROW |31920 |750 |27323 |0 |3 |A54F10|1 |2 |0 |
-ROW |31921 |750 |27325 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |31922 |750 |27322 |0 |5 |6C59DC|1 |2 |0 |
-ROW |31923 |752 |27453 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31924 |752 |27456 |2 |1 |2774A4|0 |2 |0 |
-ROW |31925 |752 |27455 |0 |2 |F63100|1 |2 |0 |
-ROW |31926 |752 |27452 |0 |3 |A54F10|1 |2 |0 |
-ROW |31927 |752 |27454 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |31928 |752 |27451 |0 |5 |6C59DC|1 |2 |0 |
-ROW |31929 |753 |27489 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31930 |753 |27492 |2 |1 |2774A4|0 |2 |0 |
-ROW |31931 |753 |27491 |0 |2 |F63100|1 |2 |0 |
-ROW |31932 |753 |27488 |0 |3 |A54F10|1 |2 |0 |
-ROW |31933 |753 |27490 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |31934 |753 |27487 |0 |5 |6C59DC|1 |2 |0 |
-ROW |31935 |754 |27523 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31936 |754 |27526 |2 |1 |2774A4|0 |2 |0 |
-ROW |31937 |754 |27525 |0 |2 |F63100|1 |2 |0 |
-ROW |31938 |754 |27522 |0 |3 |A54F10|1 |2 |0 |
-ROW |31939 |754 |27524 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |31940 |754 |27521 |0 |5 |6C59DC|1 |2 |0 |
-ROW |31941 |755 |27559 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31942 |755 |27562 |2 |1 |2774A4|0 |2 |0 |
-ROW |31943 |755 |27561 |0 |2 |F63100|1 |2 |0 |
-ROW |31944 |755 |27558 |0 |3 |A54F10|1 |2 |0 |
-ROW |31945 |755 |27560 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |31946 |755 |27557 |0 |5 |6C59DC|1 |2 |0 |
-ROW |31947 |756 |27645 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31948 |756 |27648 |2 |1 |2774A4|0 |2 |0 |
-ROW |31949 |756 |27647 |0 |2 |F63100|1 |2 |0 |
-ROW |31950 |756 |27644 |0 |3 |A54F10|1 |2 |0 |
-ROW |31951 |756 |27646 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |31952 |756 |27643 |0 |5 |6C59DC|1 |2 |0 |
-ROW |31953 |758 |27725 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31954 |758 |27728 |2 |1 |2774A4|0 |2 |0 |
-ROW |31955 |758 |27727 |0 |2 |F63100|1 |2 |0 |
-ROW |31956 |758 |27724 |0 |3 |A54F10|1 |2 |0 |
-ROW |31957 |758 |27726 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |31958 |758 |27723 |0 |5 |6C59DC|1 |2 |0 |
-ROW |31959 |759 |27759 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31960 |759 |27762 |2 |1 |2774A4|0 |2 |0 |
-ROW |31961 |759 |27761 |0 |2 |F63100|1 |2 |0 |
-ROW |31962 |759 |27758 |0 |3 |A54F10|1 |2 |0 |
-ROW |31963 |759 |27760 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |31964 |759 |27757 |0 |5 |6C59DC|1 |2 |0 |
-ROW |31965 |760 |27791 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31966 |760 |27794 |2 |1 |2774A4|0 |2 |0 |
-ROW |31967 |760 |27793 |0 |2 |F63100|1 |2 |0 |
-ROW |31968 |760 |27790 |0 |3 |A54F10|1 |2 |0 |
-ROW |31969 |760 |27792 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |31970 |760 |27789 |0 |5 |6C59DC|1 |2 |0 |
-ROW |31971 |762 |27875 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31972 |762 |27878 |2 |1 |2774A4|0 |2 |0 |
-ROW |31973 |762 |27877 |0 |2 |F63100|1 |2 |0 |
-ROW |31974 |762 |27874 |0 |3 |A54F10|1 |2 |0 |
-ROW |31975 |762 |27876 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |31976 |762 |27873 |0 |5 |6C59DC|1 |2 |0 |
-ROW |31977 |763 |27912 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31978 |763 |27915 |2 |1 |2774A4|0 |2 |0 |
-ROW |31979 |763 |27914 |0 |2 |F63100|1 |2 |0 |
-ROW |31980 |763 |27911 |0 |3 |A54F10|1 |2 |0 |
-ROW |31981 |763 |27913 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |31982 |763 |27910 |0 |5 |6C59DC|1 |2 |0 |
-ROW |31983 |764 |27947 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31984 |764 |27950 |2 |1 |2774A4|0 |2 |0 |
-ROW |31985 |764 |27949 |0 |2 |F63100|1 |2 |0 |
-ROW |31986 |764 |27946 |0 |3 |A54F10|1 |2 |0 |
-ROW |31987 |764 |27948 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |31988 |764 |27945 |0 |5 |6C59DC|1 |2 |0 |
-ROW |31989 |773 |28121 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31990 |773 |28124 |2 |1 |2774A4|0 |2 |0 |
-ROW |31991 |773 |28123 |0 |2 |F63100|1 |2 |0 |
-ROW |31992 |773 |28120 |0 |3 |A54F10|1 |2 |0 |
-ROW |31993 |773 |28122 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |31994 |773 |28119 |0 |5 |6C59DC|1 |2 |0 |
-ROW |31995 |778 |28178 |5 |0 |1A7C11|0 |2 |0 |
-ROW |31996 |778 |28181 |2 |1 |2774A4|0 |2 |0 |
-ROW |31997 |778 |28180 |0 |2 |F63100|1 |2 |0 |
-ROW |31998 |778 |28177 |0 |3 |A54F10|1 |2 |0 |
-ROW |31999 |778 |28179 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |32000 |778 |28176 |0 |5 |6C59DC|1 |2 |0 |
-ROW |32001 |785 |28226 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32002 |785 |28229 |2 |1 |2774A4|0 |2 |0 |
-ROW |32003 |785 |28228 |0 |2 |F63100|1 |2 |0 |
-ROW |32004 |785 |28225 |0 |3 |A54F10|1 |2 |0 |
-ROW |32005 |785 |28227 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |32006 |785 |28224 |0 |5 |6C59DC|1 |2 |0 |
-ROW |32007 |790 |28296 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32008 |790 |28299 |2 |1 |2774A4|0 |2 |0 |
-ROW |32009 |790 |28298 |0 |2 |F63100|1 |2 |0 |
-ROW |32010 |790 |28295 |0 |3 |A54F10|1 |2 |0 |
-ROW |32011 |790 |28297 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |32012 |790 |28294 |0 |5 |6C59DC|1 |2 |0 |
-ROW |32013 |865 |28971 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32014 |865 |28974 |2 |1 |2774A4|0 |2 |0 |
-ROW |32015 |865 |28973 |0 |2 |F63100|1 |2 |0 |
-ROW |32016 |865 |28970 |0 |3 |A54F10|1 |2 |0 |
-ROW |32017 |865 |28972 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |32018 |865 |28969 |0 |5 |6C59DC|1 |2 |0 |
-ROW |32019 |766 |27124 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32020 |766 |27125 |2 |1 |2774A4|0 |2 |0 |
-ROW |32021 |766 |27123 |0 |2 |F63100|1 |2 |0 |
-ROW |32022 |766 |27126 |0 |3 |A54F10|1 |2 |0 |
-ROW |32023 |766 |27122 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |32024 |766 |27119 |0 |5 |6C59DC|1 |2 |0 |
-ROW |32025 |886 |29080 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32026 |886 |29083 |2 |1 |2774A4|0 |2 |0 |
-ROW |32027 |886 |29082 |0 |2 |F63100|1 |2 |0 |
-ROW |32028 |886 |29079 |0 |3 |A54F10|1 |2 |0 |
-ROW |32029 |886 |29081 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |32030 |886 |29078 |0 |5 |6C59DC|1 |2 |0 |
-ROW |32031 |668 |27208 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32032 |1032 |30088 |2 |0 |1A7C11|0 |2 |0 |
-ROW |32033 |1032 |30087 |5 |1 |2774A4|0 |2 |0 |
-ROW |32034 |1033 |30089 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32035 |671 |27240 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32036 |1034 |30093 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32037 |675 |27294 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32038 |676 |27299 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32039 |677 |27301 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32040 |1035 |30094 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32041 |1036 |30095 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32042 |1037 |30096 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32043 |1038 |30101 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32044 |1039 |30102 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32045 |1040 |30103 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32046 |1041 |30104 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32047 |786 |28246 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32048 |787 |28247 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32049 |687 |27417 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32050 |688 |27427 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32051 |691 |27376 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32052 |692 |27380 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32053 |694 |27478 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32054 |1042 |30105 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32055 |1043 |30107 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32056 |698 |27511 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32057 |1044 |30108 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32058 |701 |27547 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32059 |1045 |27591 |2 |0 |1A7C11|0 |2 |0 |
-ROW |32060 |1045 |30110 |5 |1 |2774A4|0 |2 |0 |
-ROW |32061 |1046 |30111 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32062 |704 |27586 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32063 |708 |27671 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32064 |1047 |30112 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32065 |1048 |30114 |2 |0 |1A7C11|0 |2 |0 |
-ROW |32066 |1048 |30113 |5 |1 |2774A4|0 |2 |0 |
-ROW |32067 |1049 |30115 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32068 |775 |28143 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32069 |714 |27753 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32070 |1050 |30116 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32071 |856 |28894 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32072 |1051 |30118 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32073 |724 |27904 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32074 |1052 |27907 |0 |0 |969696|0 |9 |2 |
-ROW |32075 |1052 |27908 |0 |1 |C80000|0 |9 |0 |
-ROW |32076 |1053 |30120 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32077 |727 |27936 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32078 |1054 |27935 |2 |0 |1A7C11|0 |2 |0 |
-ROW |32079 |1054 |30122 |5 |1 |2774A4|0 |2 |0 |
-ROW |32080 |1055 |30123 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32081 |730 |27975 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32082 |1056 |30126 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32083 |733 |28003 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32084 |1057 |30131 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32085 |736 |28031 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32086 |1058 |30136 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32087 |1214 |31276 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32088 |1214 |31277 |5 |1 |2774A4|0 |2 |0 |
-ROW |32089 |1215 |31279 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32090 |1215 |31280 |5 |1 |2774A4|0 |2 |0 |
-ROW |32091 |1216 |31282 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32092 |1216 |31283 |5 |1 |2774A4|0 |2 |0 |
-ROW |32093 |1217 |31286 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32094 |1217 |31289 |5 |1 |2774A4|0 |2 |0 |
-ROW |32095 |1218 |31292 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32096 |1218 |31295 |5 |1 |2774A4|0 |2 |0 |
-ROW |32097 |1219 |31298 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32098 |1219 |31301 |5 |1 |2774A4|0 |2 |0 |
-ROW |32099 |1220 |31285 |0 |0 |1A7C11|1 |2 |0 |
-ROW |32100 |1220 |31288 |5 |1 |2774A4|0 |2 |0 |
-ROW |32101 |1221 |31291 |0 |0 |1A7C11|1 |2 |0 |
-ROW |32102 |1221 |31294 |5 |1 |2774A4|0 |2 |0 |
-ROW |32103 |1222 |31297 |0 |0 |1A7C11|1 |2 |0 |
-ROW |32104 |1222 |31300 |5 |1 |2774A4|0 |2 |0 |
-ROW |32105 |887 |29211 |0 |0 |969696|0 |9 |2 |
-ROW |32106 |887 |29210 |0 |1 |C80000|0 |9 |0 |
-ROW |32107 |888 |29225 |0 |0 |969696|0 |9 |2 |
-ROW |32108 |888 |29224 |0 |1 |C80000|0 |9 |0 |
-ROW |32109 |889 |29239 |0 |0 |969696|0 |9 |2 |
-ROW |32110 |889 |29238 |0 |1 |C80000|0 |9 |0 |
-ROW |32111 |899 |29216 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32112 |899 |29217 |2 |1 |2774A4|0 |2 |0 |
-ROW |32113 |899 |29218 |0 |2 |F63100|1 |2 |0 |
-ROW |32114 |899 |29219 |0 |3 |A54F10|1 |2 |0 |
-ROW |32115 |899 |29220 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |32116 |899 |29221 |0 |5 |6C59DC|1 |2 |0 |
-ROW |32117 |900 |29230 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32118 |900 |29231 |2 |1 |2774A4|0 |2 |0 |
-ROW |32119 |900 |29232 |0 |2 |F63100|1 |2 |0 |
-ROW |32120 |900 |29233 |0 |3 |A54F10|1 |2 |0 |
-ROW |32121 |900 |29234 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |32122 |900 |29235 |0 |5 |6C59DC|1 |2 |0 |
-ROW |32123 |901 |29244 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32124 |901 |29245 |2 |1 |2774A4|0 |2 |0 |
-ROW |32125 |901 |29246 |0 |2 |F63100|1 |2 |0 |
-ROW |32126 |901 |29247 |0 |3 |A54F10|1 |2 |0 |
-ROW |32127 |901 |29248 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |32128 |901 |29249 |0 |5 |6C59DC|1 |2 |0 |
-ROW |32129 |911 |29089 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32130 |911 |29102 |0 |1 |2774A4|0 |2 |0 |
-ROW |32131 |912 |29126 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32132 |912 |29139 |0 |1 |2774A4|0 |2 |0 |
-ROW |32133 |913 |29163 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32134 |913 |29176 |0 |1 |2774A4|0 |2 |0 |
-ROW |32135 |908 |29098 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32136 |908 |29097 |0 |1 |2774A4|0 |2 |0 |
-ROW |32137 |908 |29095 |0 |2 |F63100|0 |2 |0 |
-ROW |32138 |908 |29088 |0 |3 |A54F10|0 |2 |0 |
-ROW |32139 |908 |29094 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |32140 |908 |29093 |0 |5 |6C59DC|0 |2 |0 |
-ROW |32141 |908 |29092 |0 |6 |AC8C14|0 |2 |0 |
-ROW |32142 |908 |29091 |0 |7 |611F27|0 |2 |0 |
-ROW |32143 |908 |29090 |0 |8 |F230E0|0 |2 |0 |
-ROW |32144 |909 |29135 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32145 |909 |29134 |0 |1 |2774A4|0 |2 |0 |
-ROW |32146 |909 |29132 |0 |2 |F63100|0 |2 |0 |
-ROW |32147 |909 |29125 |0 |3 |A54F10|0 |2 |0 |
-ROW |32148 |909 |29131 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |32149 |909 |29130 |0 |5 |6C59DC|0 |2 |0 |
-ROW |32150 |909 |29129 |0 |6 |AC8C14|0 |2 |0 |
-ROW |32151 |909 |29128 |0 |7 |611F27|0 |2 |0 |
-ROW |32152 |909 |29127 |0 |8 |F230E0|0 |2 |0 |
-ROW |32153 |910 |29172 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32154 |910 |29171 |0 |1 |2774A4|0 |2 |0 |
-ROW |32155 |910 |29169 |0 |2 |F63100|0 |2 |0 |
-ROW |32156 |910 |29162 |0 |3 |A54F10|0 |2 |0 |
-ROW |32157 |910 |29168 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |32158 |910 |29167 |0 |5 |6C59DC|0 |2 |0 |
-ROW |32159 |910 |29166 |0 |6 |AC8C14|0 |2 |0 |
-ROW |32160 |910 |29165 |0 |7 |611F27|0 |2 |0 |
-ROW |32161 |910 |29164 |0 |8 |F230E0|0 |2 |0 |
-ROW |32162 |905 |29198 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32163 |906 |29199 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32164 |907 |29200 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32165 |917 |29104 |2 |0 |1A7C11|0 |2 |0 |
-ROW |32166 |917 |29105 |5 |1 |2774A4|0 |2 |0 |
-ROW |32167 |918 |29141 |2 |0 |1A7C11|0 |2 |0 |
-ROW |32168 |918 |29142 |5 |1 |2774A4|0 |2 |0 |
-ROW |32169 |919 |29178 |2 |0 |1A7C11|0 |2 |0 |
-ROW |32170 |919 |29179 |5 |1 |2774A4|0 |2 |0 |
-ROW |32171 |914 |31270 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32172 |915 |31271 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32173 |916 |31272 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32174 |923 |29118 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32175 |923 |29119 |0 |1 |2774A4|0 |2 |0 |
-ROW |32176 |923 |29117 |0 |2 |F63100|0 |2 |0 |
-ROW |32177 |924 |29155 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32178 |924 |29156 |0 |1 |2774A4|0 |2 |0 |
-ROW |32179 |924 |29154 |0 |2 |F63100|0 |2 |0 |
-ROW |32180 |925 |29192 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32181 |925 |29193 |0 |1 |2774A4|0 |2 |0 |
-ROW |32182 |925 |29191 |0 |2 |F63100|0 |2 |0 |
-ROW |32183 |920 |29107 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32184 |920 |29106 |0 |1 |2774A4|0 |2 |0 |
-ROW |32185 |921 |29144 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32186 |921 |29143 |0 |1 |2774A4|0 |2 |0 |
-ROW |32187 |922 |29181 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32188 |922 |29180 |0 |1 |2774A4|0 |2 |0 |
-ROW |32189 |902 |29096 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32190 |902 |29101 |0 |1 |2774A4|0 |2 |0 |
-ROW |32191 |902 |29100 |0 |2 |F63100|0 |2 |0 |
-ROW |32192 |902 |29087 |0 |3 |A54F10|1 |2 |0 |
-ROW |32193 |903 |29133 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32194 |903 |29138 |0 |1 |2774A4|0 |2 |0 |
-ROW |32195 |903 |29137 |0 |2 |F63100|0 |2 |0 |
-ROW |32196 |903 |29124 |0 |3 |A54F10|1 |2 |0 |
-ROW |32197 |904 |29170 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32198 |904 |29175 |0 |1 |2774A4|0 |2 |0 |
-ROW |32199 |904 |29174 |0 |2 |F63100|0 |2 |0 |
-ROW |32200 |904 |29161 |0 |3 |A54F10|1 |2 |0 |
-ROW |32201 |1223 |31307 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32202 |1223 |31308 |5 |1 |2774A4|0 |2 |0 |
-ROW |32203 |1224 |31310 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32204 |1224 |31311 |5 |1 |2774A4|0 |2 |0 |
-ROW |32205 |1225 |31314 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32206 |1225 |31317 |5 |1 |2774A4|0 |2 |0 |
-ROW |32207 |1226 |31320 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32208 |1226 |31323 |5 |1 |2774A4|0 |2 |0 |
-ROW |32209 |1227 |31313 |0 |0 |1A7C11|1 |2 |0 |
-ROW |32210 |1227 |31316 |5 |1 |2774A4|0 |2 |0 |
-ROW |32211 |1228 |31319 |0 |0 |1A7C11|1 |2 |0 |
-ROW |32212 |1228 |31322 |5 |1 |2774A4|0 |2 |0 |
-ROW |32213 |926 |29356 |0 |0 |969696|0 |9 |2 |
-ROW |32214 |926 |29355 |0 |1 |C80000|0 |9 |0 |
-ROW |32215 |927 |29370 |0 |0 |969696|0 |9 |2 |
-ROW |32216 |927 |29369 |0 |1 |C80000|0 |9 |0 |
-ROW |32217 |934 |29361 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32218 |934 |29362 |2 |1 |2774A4|0 |2 |0 |
-ROW |32219 |934 |29363 |0 |2 |F63100|1 |2 |0 |
-ROW |32220 |934 |29364 |0 |3 |A54F10|1 |2 |0 |
-ROW |32221 |934 |29365 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |32222 |934 |29366 |0 |5 |6C59DC|1 |2 |0 |
-ROW |32223 |935 |29375 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32224 |935 |29376 |2 |1 |2774A4|0 |2 |0 |
-ROW |32225 |935 |29377 |0 |2 |F63100|1 |2 |0 |
-ROW |32226 |935 |29378 |0 |3 |A54F10|1 |2 |0 |
-ROW |32227 |935 |29379 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |32228 |935 |29380 |0 |5 |6C59DC|1 |2 |0 |
-ROW |32229 |942 |29275 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32230 |942 |29288 |0 |1 |2774A4|0 |2 |0 |
-ROW |32231 |943 |29312 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32232 |943 |29325 |0 |1 |2774A4|0 |2 |0 |
-ROW |32233 |940 |29284 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32234 |940 |29283 |0 |1 |2774A4|0 |2 |0 |
-ROW |32235 |940 |29281 |0 |2 |F63100|0 |2 |0 |
-ROW |32236 |940 |29274 |0 |3 |A54F10|0 |2 |0 |
-ROW |32237 |940 |29280 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |32238 |940 |29279 |0 |5 |6C59DC|0 |2 |0 |
-ROW |32239 |940 |29278 |0 |6 |AC8C14|0 |2 |0 |
-ROW |32240 |940 |29277 |0 |7 |611F27|0 |2 |0 |
-ROW |32241 |940 |29276 |0 |8 |F230E0|0 |2 |0 |
-ROW |32242 |941 |29321 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32243 |941 |29320 |0 |1 |2774A4|0 |2 |0 |
-ROW |32244 |941 |29318 |0 |2 |F63100|0 |2 |0 |
-ROW |32245 |941 |29311 |0 |3 |A54F10|0 |2 |0 |
-ROW |32246 |941 |29317 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |32247 |941 |29316 |0 |5 |6C59DC|0 |2 |0 |
-ROW |32248 |941 |29315 |0 |6 |AC8C14|0 |2 |0 |
-ROW |32249 |941 |29314 |0 |7 |611F27|0 |2 |0 |
-ROW |32250 |941 |29313 |0 |8 |F230E0|0 |2 |0 |
-ROW |32251 |938 |29347 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32252 |939 |29348 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32253 |946 |29290 |2 |0 |1A7C11|0 |2 |0 |
-ROW |32254 |946 |29291 |5 |1 |2774A4|0 |2 |0 |
-ROW |32255 |947 |29327 |2 |0 |1A7C11|0 |2 |0 |
-ROW |32256 |947 |29328 |5 |1 |2774A4|0 |2 |0 |
-ROW |32257 |944 |31303 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32258 |945 |31304 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32259 |950 |29304 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32260 |950 |29305 |0 |1 |2774A4|0 |2 |0 |
-ROW |32261 |950 |29303 |0 |2 |F63100|0 |2 |0 |
-ROW |32262 |951 |29341 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32263 |951 |29342 |0 |1 |2774A4|0 |2 |0 |
-ROW |32264 |951 |29340 |0 |2 |F63100|0 |2 |0 |
-ROW |32265 |948 |29293 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32266 |948 |29292 |0 |1 |2774A4|0 |2 |0 |
-ROW |32267 |949 |29330 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32268 |949 |29329 |0 |1 |2774A4|0 |2 |0 |
-ROW |32269 |936 |29282 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32270 |936 |29287 |0 |1 |2774A4|0 |2 |0 |
-ROW |32271 |936 |29286 |0 |2 |F63100|0 |2 |0 |
-ROW |32272 |936 |29273 |0 |3 |A54F10|1 |2 |0 |
-ROW |32273 |937 |29319 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32274 |937 |29324 |0 |1 |2774A4|0 |2 |0 |
-ROW |32275 |937 |29323 |0 |2 |F63100|0 |2 |0 |
-ROW |32276 |937 |29310 |0 |3 |A54F10|1 |2 |0 |
-ROW |32277 |952 |29436 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32278 |952 |29437 |2 |1 |2774A4|0 |2 |0 |
-ROW |32279 |952 |29438 |0 |2 |F63100|1 |2 |0 |
-ROW |32280 |952 |29439 |0 |3 |A54F10|1 |2 |0 |
-ROW |32281 |952 |29441 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |32282 |952 |29440 |0 |5 |6C59DC|1 |2 |0 |
-ROW |32283 |955 |29434 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32284 |955 |29435 |5 |1 |2774A4|0 |2 |0 |
-ROW |32285 |954 |29448 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32286 |954 |29449 |5 |1 |2774A4|0 |2 |0 |
-ROW |32287 |956 |29452 |0 |0 |1A7C11|1 |2 |0 |
-ROW |32288 |956 |29453 |5 |1 |2774A4|0 |2 |0 |
-ROW |32289 |953 |29446 |0 |0 |969696|0 |9 |2 |
-ROW |32290 |953 |29432 |0 |1 |C80000|0 |9 |0 |
-ROW |32291 |960 |29405 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32292 |960 |29406 |0 |1 |2774A4|0 |2 |0 |
-ROW |32293 |959 |29426 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32294 |959 |29413 |0 |1 |2774A4|0 |2 |0 |
-ROW |32295 |959 |29411 |0 |2 |F63100|0 |2 |0 |
-ROW |32296 |959 |29410 |0 |3 |A54F10|0 |2 |0 |
-ROW |32297 |959 |29399 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |32298 |959 |29409 |0 |5 |6C59DC|0 |2 |0 |
-ROW |32299 |959 |29412 |0 |6 |AC8C14|0 |2 |0 |
-ROW |32300 |959 |29408 |0 |7 |611F27|0 |2 |0 |
-ROW |32301 |959 |29407 |0 |8 |F230E0|0 |2 |0 |
-ROW |32302 |958 |29427 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32303 |962 |29403 |2 |0 |1A7C11|0 |2 |0 |
-ROW |32304 |962 |29402 |5 |1 |2774A4|0 |2 |0 |
-ROW |32305 |961 |29396 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32306 |963 |29400 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32307 |963 |29401 |0 |1 |2774A4|0 |2 |0 |
-ROW |32308 |957 |29420 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32309 |957 |29419 |0 |1 |2774A4|0 |2 |0 |
-ROW |32310 |957 |29418 |0 |2 |F63100|0 |2 |0 |
-ROW |32311 |957 |29417 |0 |3 |A54F10|1 |2 |0 |
-ROW |32312 |866 |29014 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32313 |866 |29015 |5 |1 |2774A4|0 |2 |0 |
-ROW |32314 |867 |29031 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32315 |867 |29032 |5 |1 |2774A4|0 |2 |0 |
-ROW |32316 |868 |29018 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32317 |868 |29019 |0 |1 |2774A4|0 |2 |0 |
-ROW |32318 |868 |29022 |0 |2 |F63100|0 |2 |0 |
-ROW |32319 |868 |29023 |0 |3 |A54F10|0 |2 |0 |
-ROW |32320 |868 |29020 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |32321 |868 |29024 |0 |5 |6C59DC|0 |2 |0 |
-ROW |32322 |868 |29021 |0 |6 |AC8C14|0 |2 |0 |
-ROW |32323 |868 |29025 |0 |7 |611F27|0 |2 |0 |
-ROW |32324 |868 |29026 |0 |8 |F230E0|0 |2 |0 |
-ROW |32325 |869 |29035 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32326 |869 |29036 |0 |1 |2774A4|0 |2 |0 |
-ROW |32327 |869 |29039 |0 |2 |F63100|0 |2 |0 |
-ROW |32328 |869 |29040 |0 |3 |A54F10|0 |2 |0 |
-ROW |32329 |869 |29037 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |32330 |869 |29041 |0 |5 |6C59DC|0 |2 |0 |
-ROW |32331 |869 |29038 |0 |6 |AC8C14|0 |2 |0 |
-ROW |32332 |869 |29042 |0 |7 |611F27|0 |2 |0 |
-ROW |32333 |869 |29043 |0 |8 |F230E0|0 |2 |0 |
-ROW |32334 |870 |29048 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32335 |871 |29049 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32336 |872 |29028 |0 |0 |969696|0 |9 |2 |
-ROW |32337 |872 |29027 |0 |1 |C80000|0 |9 |0 |
-ROW |32338 |873 |29045 |0 |0 |969696|0 |9 |2 |
-ROW |32339 |873 |29044 |0 |1 |C80000|0 |9 |0 |
-ROW |32340 |882 |28992 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32341 |882 |28991 |0 |1 |2774A4|0 |2 |0 |
-ROW |32342 |883 |29007 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32343 |883 |29006 |0 |1 |2774A4|0 |2 |0 |
-ROW |32344 |876 |28982 |2 |0 |1A7C11|0 |2 |0 |
-ROW |32345 |876 |28983 |5 |1 |2774A4|0 |2 |0 |
-ROW |32346 |877 |28997 |2 |0 |1A7C11|0 |2 |0 |
-ROW |32347 |877 |28998 |5 |1 |2774A4|0 |2 |0 |
-ROW |32348 |874 |28978 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32349 |875 |28993 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32350 |878 |28985 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32351 |878 |28984 |0 |1 |2774A4|0 |2 |0 |
-ROW |32352 |879 |29000 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32353 |879 |28999 |0 |1 |2774A4|0 |2 |0 |
-ROW |32354 |880 |28987 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32355 |880 |28988 |0 |1 |2774A4|0 |2 |0 |
-ROW |32356 |880 |28989 |0 |2 |F63100|0 |2 |0 |
-ROW |32357 |880 |28990 |0 |3 |A54F10|1 |2 |0 |
-ROW |32358 |881 |29002 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32359 |881 |29003 |0 |1 |2774A4|0 |2 |0 |
-ROW |32360 |881 |29004 |0 |2 |F63100|0 |2 |0 |
-ROW |32361 |881 |29005 |0 |3 |A54F10|1 |2 |0 |
-ROW |32362 |964 |29513 |0 |0 |969696|0 |9 |2 |
-ROW |32363 |964 |29512 |0 |1 |C80000|0 |9 |0 |
-ROW |32364 |965 |29522 |0 |0 |969696|0 |9 |2 |
-ROW |32365 |965 |29521 |0 |1 |C80000|0 |9 |0 |
-ROW |32366 |1246 |31461 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32367 |1246 |31464 |2 |1 |2774A4|0 |2 |0 |
-ROW |32368 |1246 |31463 |0 |2 |F63100|1 |2 |0 |
-ROW |32369 |1246 |31460 |0 |3 |A54F10|1 |2 |0 |
-ROW |32370 |1246 |31462 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |32371 |1246 |31459 |0 |5 |6C59DC|1 |2 |0 |
-ROW |32372 |1247 |31467 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32373 |1247 |31470 |2 |1 |2774A4|0 |2 |0 |
-ROW |32374 |1247 |31469 |0 |2 |F63100|1 |2 |0 |
-ROW |32375 |1247 |31466 |0 |3 |A54F10|1 |2 |0 |
-ROW |32376 |1247 |31468 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |32377 |1247 |31465 |0 |5 |6C59DC|1 |2 |0 |
-ROW |32378 |1229 |31337 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32379 |1229 |31338 |5 |1 |2774A4|0 |2 |0 |
-ROW |32380 |1230 |31341 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32381 |1230 |31342 |5 |1 |2774A4|0 |2 |0 |
-ROW |32382 |1231 |31336 |0 |0 |1A7C11|1 |2 |0 |
-ROW |32383 |1231 |31335 |5 |1 |2774A4|0 |2 |0 |
-ROW |32384 |1232 |31340 |0 |0 |1A7C11|1 |2 |0 |
-ROW |32385 |1232 |31339 |5 |1 |2774A4|0 |2 |0 |
-ROW |32386 |974 |29456 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32387 |974 |29455 |0 |1 |2774A4|0 |2 |0 |
-ROW |32388 |975 |29482 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32389 |975 |29481 |0 |1 |2774A4|0 |2 |0 |
-ROW |32390 |976 |29458 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32391 |976 |29457 |0 |1 |2774A4|0 |2 |0 |
-ROW |32392 |977 |29484 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32393 |977 |29483 |0 |1 |2774A4|0 |2 |0 |
-ROW |32394 |972 |29454 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32395 |973 |29480 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32396 |978 |29462 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32397 |979 |29488 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32398 |980 |31327 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32399 |980 |29466 |0 |1 |2774A4|0 |2 |0 |
-ROW |32400 |981 |31330 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32401 |981 |29492 |0 |1 |2774A4|0 |2 |0 |
-ROW |32402 |982 |29620 |0 |0 |969696|0 |9 |2 |
-ROW |32403 |982 |29619 |0 |1 |C80000|0 |9 |0 |
-ROW |32404 |983 |29629 |0 |0 |969696|0 |9 |2 |
-ROW |32405 |983 |29628 |0 |1 |C80000|0 |9 |0 |
-ROW |32406 |1248 |31483 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32407 |1248 |31486 |2 |1 |2774A4|0 |2 |0 |
-ROW |32408 |1248 |31485 |0 |2 |F63100|1 |2 |0 |
-ROW |32409 |1248 |31482 |0 |3 |A54F10|1 |2 |0 |
-ROW |32410 |1248 |31484 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |32411 |1248 |31481 |0 |5 |6C59DC|1 |2 |0 |
-ROW |32412 |1249 |31489 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32413 |1249 |31492 |2 |1 |2774A4|0 |2 |0 |
-ROW |32414 |1249 |31491 |0 |2 |F63100|1 |2 |0 |
-ROW |32415 |1249 |31488 |0 |3 |A54F10|1 |2 |0 |
-ROW |32416 |1249 |31490 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |32417 |1249 |31487 |0 |5 |6C59DC|1 |2 |0 |
-ROW |32418 |1233 |31355 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32419 |1233 |31356 |5 |1 |2774A4|0 |2 |0 |
-ROW |32420 |1234 |31359 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32421 |1234 |31360 |5 |1 |2774A4|0 |2 |0 |
-ROW |32422 |1235 |31354 |0 |0 |1A7C11|1 |2 |0 |
-ROW |32423 |1235 |31353 |5 |1 |2774A4|0 |2 |0 |
-ROW |32424 |1236 |31358 |0 |0 |1A7C11|1 |2 |0 |
-ROW |32425 |1236 |31357 |5 |1 |2774A4|0 |2 |0 |
-ROW |32426 |992 |29563 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32427 |992 |29562 |0 |1 |2774A4|0 |2 |0 |
-ROW |32428 |993 |29589 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32429 |993 |29588 |0 |1 |2774A4|0 |2 |0 |
-ROW |32430 |994 |29565 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32431 |994 |29564 |0 |1 |2774A4|0 |2 |0 |
-ROW |32432 |995 |29591 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32433 |995 |29590 |0 |1 |2774A4|0 |2 |0 |
-ROW |32434 |990 |29561 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32435 |991 |29587 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32436 |996 |29569 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32437 |997 |29595 |5 |0 |1A7C11|0 |2 |0 |
-ROW |32438 |998 |31345 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32439 |998 |29573 |0 |1 |2774A4|0 |2 |0 |
-ROW |32440 |999 |31348 |0 |0 |1A7C11|0 |2 |0 |
-ROW |32441 |999 |29599 |0 |1 |2774A4|0 |2 |0 |
-ROW |32442 |1142 |30689 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32443 |1172 |30918 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32444 |1172 |30919 |0 |1 |2774A4|0 |2 |0 |
+ROW |32445 |1172 |30920 |0 |2 |F63100|0 |2 |0 |
+ROW |32446 |1172 |30921 |2 |3 |A54F10|0 |2 |0 |
+ROW |32447 |1173 |30922 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32448 |835 |28744 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32449 |835 |28745 |0 |1 |2774A4|0 |2 |0 |
+ROW |32450 |1174 |30913 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32451 |1175 |30906 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32452 |1175 |30908 |0 |1 |2774A4|0 |2 |0 |
+ROW |32453 |1175 |30915 |0 |2 |F63100|0 |2 |0 |
+ROW |32454 |1175 |30897 |0 |3 |A54F10|0 |2 |0 |
+ROW |32455 |1175 |30901 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |32456 |1175 |30899 |0 |5 |6C59DC|0 |2 |0 |
+ROW |32457 |1175 |30907 |0 |6 |AC8C14|0 |2 |0 |
+ROW |32458 |1175 |30905 |0 |7 |611F27|0 |2 |0 |
+ROW |32459 |1175 |30904 |0 |8 |F230E0|0 |2 |0 |
+ROW |32460 |1175 |30900 |0 |9 |FFAD40|0 |2 |0 |
+ROW |32461 |1175 |30898 |0 |10 |40CDFF|0 |2 |0 |
+ROW |32462 |1176 |30910 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32463 |1176 |30909 |0 |1 |2774A4|0 |2 |0 |
+ROW |32464 |836 |28798 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32465 |836 |28799 |0 |1 |2774A4|0 |2 |0 |
+ROW |32466 |836 |28800 |0 |2 |F63100|0 |2 |0 |
+ROW |32467 |836 |28801 |2 |3 |A54F10|0 |2 |0 |
+ROW |32468 |837 |28803 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32469 |838 |28793 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32470 |840 |28787 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32471 |840 |28784 |0 |1 |2774A4|0 |2 |0 |
+ROW |32472 |840 |28782 |0 |2 |F63100|0 |2 |0 |
+ROW |32473 |840 |28781 |0 |3 |A54F10|0 |2 |0 |
+ROW |32474 |840 |28780 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |32475 |840 |28778 |0 |5 |6C59DC|0 |2 |0 |
+ROW |32476 |840 |28786 |0 |6 |AC8C14|0 |2 |0 |
+ROW |32477 |840 |28785 |0 |7 |611F27|0 |2 |0 |
+ROW |32478 |840 |28783 |0 |8 |F230E0|0 |2 |0 |
+ROW |32479 |840 |28779 |0 |9 |FFAD40|0 |2 |0 |
+ROW |32480 |840 |28796 |0 |10 |40CDFF|0 |2 |0 |
+ROW |32481 |839 |28789 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32482 |839 |28788 |0 |1 |2774A4|0 |2 |0 |
+ROW |32483 |1121 |30606 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32484 |1121 |30590 |5 |1 |2774A4|0 |2 |0 |
+ROW |32485 |1121 |30582 |5 |2 |F63100|0 |2 |0 |
+ROW |32486 |1122 |30580 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32487 |1122 |30578 |5 |1 |2774A4|0 |2 |0 |
+ROW |32488 |1123 |30586 |2 |0 |1A7C11|0 |2 |0 |
+ROW |32489 |1123 |30608 |2 |1 |2774A4|0 |2 |0 |
+ROW |32490 |1123 |30585 |2 |2 |F63100|0 |2 |0 |
+ROW |32491 |1123 |30589 |2 |3 |A54F10|0 |2 |0 |
+ROW |32492 |1123 |30584 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |32493 |1123 |30588 |2 |5 |6C59DC|0 |2 |0 |
+ROW |32494 |1124 |30583 |2 |0 |1A7C11|0 |2 |0 |
+ROW |32495 |1124 |30587 |2 |1 |2774A4|0 |2 |0 |
+ROW |32496 |1125 |30555 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32497 |1125 |30554 |2 |1 |2774A4|0 |2 |0 |
+ROW |32498 |1125 |30556 |2 |2 |F63100|0 |2 |0 |
+ROW |32499 |1125 |30557 |2 |3 |A54F10|0 |2 |0 |
+ROW |32500 |1126 |30565 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32501 |1127 |30567 |2 |0 |1A7C11|0 |2 |0 |
+ROW |32502 |1127 |30568 |2 |1 |2774A4|0 |2 |0 |
+ROW |32503 |1128 |30536 |2 |0 |1A7C11|0 |2 |0 |
+ROW |32504 |1129 |30566 |2 |0 |1A7C11|0 |2 |0 |
+ROW |32505 |1129 |30549 |2 |1 |2774A4|0 |2 |0 |
+ROW |32506 |1129 |30553 |2 |2 |F63100|0 |2 |0 |
+ROW |32507 |1129 |30570 |2 |3 |A54F10|0 |2 |0 |
+ROW |32508 |1143 |30714 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32509 |1143 |30716 |0 |1 |2774A4|0 |2 |0 |
+ROW |32510 |1143 |30717 |0 |2 |F63100|0 |2 |0 |
+ROW |32511 |1143 |30715 |0 |3 |A54F10|0 |2 |0 |
+ROW |32512 |1144 |30753 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32513 |1144 |30738 |0 |1 |2774A4|0 |2 |0 |
+ROW |32514 |1145 |30718 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32515 |1145 |30737 |0 |1 |2774A4|0 |2 |0 |
+ROW |32516 |1145 |30727 |0 |2 |F63100|0 |2 |0 |
+ROW |32517 |1145 |30729 |0 |3 |A54F10|0 |2 |0 |
+ROW |32518 |1146 |30730 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32519 |1146 |30732 |0 |1 |2774A4|0 |2 |0 |
+ROW |32520 |1146 |30731 |0 |2 |F63100|0 |2 |0 |
+ROW |32521 |1146 |30733 |0 |3 |A54F10|0 |2 |0 |
+ROW |32522 |1147 |30734 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32523 |1147 |30736 |0 |1 |2774A4|0 |2 |0 |
+ROW |32524 |1147 |30735 |0 |2 |F63100|0 |2 |0 |
+ROW |32525 |1147 |30758 |0 |3 |A54F10|0 |2 |0 |
+ROW |32526 |1148 |30711 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32527 |1148 |30706 |0 |1 |2774A4|0 |2 |0 |
+ROW |32528 |1148 |30710 |0 |2 |F63100|0 |2 |0 |
+ROW |32529 |1148 |30712 |0 |3 |A54F10|0 |2 |0 |
+ROW |32530 |1148 |30702 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |32531 |1148 |30707 |0 |5 |6C59DC|0 |2 |0 |
+ROW |32532 |1148 |30704 |0 |6 |AC8C14|0 |2 |0 |
+ROW |32533 |1177 |30927 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32534 |1177 |30944 |2 |1 |2774A4|0 |2 |0 |
+ROW |32535 |1178 |30935 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32536 |1178 |30942 |0 |1 |2774A4|0 |2 |0 |
+ROW |32537 |1179 |30949 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32538 |1179 |30950 |0 |1 |2774A4|0 |2 |0 |
+ROW |32539 |1179 |30951 |0 |2 |F63100|0 |2 |0 |
+ROW |32540 |1180 |30952 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32541 |1180 |30954 |0 |1 |2774A4|0 |2 |0 |
+ROW |32542 |1180 |30955 |0 |2 |F63100|0 |2 |0 |
+ROW |32543 |1181 |30936 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32544 |1181 |30940 |5 |1 |2774A4|0 |2 |0 |
+ROW |32545 |1182 |30930 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32546 |1182 |30929 |0 |1 |2774A4|0 |2 |0 |
+ROW |32547 |1182 |30928 |0 |2 |F63100|0 |2 |0 |
+ROW |32548 |1182 |30931 |2 |3 |A54F10|1 |2 |0 |
+ROW |32549 |1183 |30934 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32550 |1183 |30941 |0 |1 |2774A4|0 |2 |0 |
+ROW |32551 |1250 |31527 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32552 |1250 |31529 |0 |1 |2774A4|0 |2 |0 |
+ROW |32553 |1250 |31499 |0 |2 |F63100|0 |2 |0 |
+ROW |32554 |1251 |31532 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32555 |1251 |31534 |0 |1 |2774A4|0 |2 |0 |
+ROW |32556 |1251 |31538 |0 |2 |F63100|0 |2 |0 |
+ROW |32557 |1251 |31536 |0 |3 |A54F10|0 |2 |0 |
+ROW |32558 |1251 |31528 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |32559 |1251 |31542 |0 |5 |6C59DC|0 |2 |0 |
+ROW |32560 |1252 |31552 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32561 |1252 |31551 |0 |1 |2774A4|0 |2 |0 |
+ROW |32562 |1252 |31541 |0 |2 |F63100|0 |2 |0 |
+ROW |32563 |1253 |31513 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32564 |1253 |31526 |0 |1 |2774A4|0 |2 |0 |
+ROW |32565 |1253 |31525 |0 |2 |F63100|0 |2 |0 |
+ROW |32566 |1254 |31502 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32567 |1254 |31501 |0 |1 |2774A4|0 |2 |0 |
+ROW |32568 |1254 |31503 |0 |2 |F63100|0 |2 |0 |
+ROW |32569 |1255 |31505 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32570 |1255 |31504 |0 |1 |2774A4|0 |2 |0 |
+ROW |32571 |1255 |31506 |0 |2 |F63100|0 |2 |0 |
+ROW |32572 |1256 |31508 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32573 |1256 |31507 |0 |1 |2774A4|0 |2 |0 |
+ROW |32574 |1256 |31509 |0 |2 |F63100|0 |2 |0 |
+ROW |32575 |1257 |31511 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32576 |1257 |31510 |0 |1 |2774A4|0 |2 |0 |
+ROW |32577 |1257 |31500 |0 |2 |F63100|0 |2 |0 |
+ROW |32578 |1258 |31514 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32579 |1258 |31512 |0 |1 |2774A4|0 |2 |0 |
+ROW |32580 |1258 |31515 |0 |2 |F63100|0 |2 |0 |
+ROW |32581 |1259 |31516 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32582 |1259 |31517 |0 |1 |2774A4|0 |2 |0 |
+ROW |32583 |1260 |31523 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32584 |1260 |31522 |0 |1 |2774A4|0 |2 |0 |
+ROW |32585 |1260 |31524 |0 |2 |F63100|0 |2 |0 |
+ROW |32586 |1149 |30770 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32587 |1149 |30771 |0 |1 |2774A4|0 |2 |0 |
+ROW |32588 |1075 |30204 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32589 |1075 |30205 |0 |1 |2774A4|0 |2 |0 |
+ROW |32590 |1150 |30775 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32591 |1150 |30774 |0 |1 |2774A4|0 |2 |0 |
+ROW |32592 |1151 |30772 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32593 |1151 |30773 |5 |1 |2774A4|0 |2 |0 |
+ROW |32594 |1152 |30777 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32595 |1152 |30776 |0 |1 |2774A4|0 |2 |0 |
+ROW |32596 |1076 |30209 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32597 |1076 |30208 |0 |1 |2774A4|0 |2 |0 |
+ROW |32598 |1077 |30206 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32599 |1077 |30207 |5 |1 |2774A4|0 |2 |0 |
+ROW |32600 |1078 |30216 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32601 |1078 |30215 |0 |1 |2774A4|0 |2 |0 |
+ROW |32602 |1079 |30210 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32603 |1079 |30211 |0 |1 |2774A4|0 |2 |0 |
+ROW |32604 |1079 |30212 |0 |2 |F63100|0 |2 |0 |
+ROW |32605 |1079 |30213 |0 |3 |A54F10|0 |2 |0 |
+ROW |32606 |1079 |30214 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |32607 |1153 |30785 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32608 |1153 |30784 |0 |1 |2774A4|0 |2 |0 |
+ROW |32609 |1080 |30226 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32610 |1080 |30225 |0 |1 |2774A4|0 |2 |0 |
+ROW |32611 |1154 |30802 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32612 |1154 |30803 |0 |1 |2774A4|0 |2 |0 |
+ROW |32613 |1081 |30247 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32614 |1081 |30248 |0 |1 |2774A4|0 |2 |0 |
+ROW |32615 |1155 |30807 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32616 |1155 |30806 |0 |1 |2774A4|0 |2 |0 |
+ROW |32617 |1156 |30804 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32618 |1156 |30805 |5 |1 |2774A4|0 |2 |0 |
+ROW |32619 |1157 |30809 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32620 |1157 |30808 |0 |1 |2774A4|0 |2 |0 |
+ROW |32621 |1082 |30252 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32622 |1082 |30251 |0 |1 |2774A4|0 |2 |0 |
+ROW |32623 |1083 |30249 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32624 |1083 |30250 |5 |1 |2774A4|0 |2 |0 |
+ROW |32625 |1084 |30259 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32626 |1084 |30258 |0 |1 |2774A4|0 |2 |0 |
+ROW |32627 |1085 |30253 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32628 |1085 |30254 |0 |1 |2774A4|0 |2 |0 |
+ROW |32629 |1085 |30255 |0 |2 |F63100|0 |2 |0 |
+ROW |32630 |1085 |30256 |0 |3 |A54F10|0 |2 |0 |
+ROW |32631 |1085 |30257 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |32632 |1158 |30817 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32633 |1158 |30816 |0 |1 |2774A4|0 |2 |0 |
+ROW |32634 |1086 |30269 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32635 |1086 |30268 |0 |1 |2774A4|0 |2 |0 |
+ROW |32636 |1184 |30982 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32637 |1184 |30980 |5 |1 |2774A4|0 |2 |0 |
+ROW |32638 |1185 |30983 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32639 |1185 |30981 |0 |1 |2774A4|0 |2 |0 |
+ROW |32640 |1186 |30976 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32641 |1186 |30985 |0 |1 |2774A4|0 |2 |0 |
+ROW |32642 |1186 |30997 |0 |2 |F63100|0 |2 |0 |
+ROW |32643 |1186 |30970 |0 |3 |A54F10|0 |2 |0 |
+ROW |32644 |1186 |30973 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |32645 |1186 |30995 |0 |5 |6C59DC|0 |2 |0 |
+ROW |32646 |1186 |30998 |0 |6 |AC8C14|0 |2 |0 |
+ROW |32647 |1186 |30978 |0 |7 |611F27|0 |2 |0 |
+ROW |32648 |1187 |31024 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32649 |1187 |31022 |5 |1 |2774A4|0 |2 |0 |
+ROW |32650 |1188 |31025 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32651 |1188 |31023 |0 |1 |2774A4|0 |2 |0 |
+ROW |32652 |1189 |31018 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32653 |1189 |31027 |0 |1 |2774A4|0 |2 |0 |
+ROW |32654 |1189 |31039 |0 |2 |F63100|0 |2 |0 |
+ROW |32655 |1189 |31012 |0 |3 |A54F10|0 |2 |0 |
+ROW |32656 |1189 |31015 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |32657 |1189 |31037 |0 |5 |6C59DC|0 |2 |0 |
+ROW |32658 |1189 |31040 |0 |6 |AC8C14|0 |2 |0 |
+ROW |32659 |1189 |31020 |0 |7 |611F27|0 |2 |0 |
+ROW |32660 |1130 |30613 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32661 |1130 |30635 |0 |1 |2774A4|0 |2 |0 |
+ROW |32662 |1130 |30625 |0 |2 |F63100|0 |2 |0 |
+ROW |32663 |1131 |30632 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32664 |1131 |30633 |5 |1 |2774A4|0 |2 |0 |
+ROW |32665 |1131 |30629 |5 |2 |F63100|0 |2 |0 |
+ROW |32666 |1132 |30630 |2 |0 |1A7C11|0 |2 |0 |
+ROW |32667 |1132 |30628 |2 |1 |2774A4|0 |2 |0 |
+ROW |32668 |1132 |30631 |2 |2 |F63100|0 |2 |0 |
+ROW |32669 |1133 |30619 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32670 |1133 |30618 |0 |1 |2774A4|0 |2 |0 |
+ROW |32671 |1134 |30623 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32672 |1134 |30622 |5 |1 |2774A4|0 |2 |0 |
+ROW |32673 |1135 |30615 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32674 |841 |28813 |2 |0 |1A7C11|0 |2 |0 |
+ROW |32675 |841 |28811 |0 |1 |2774A4|0 |2 |0 |
+ROW |32676 |841 |28812 |0 |2 |F63100|0 |2 |0 |
+ROW |32677 |841 |28814 |0 |3 |A54F10|0 |2 |0 |
+ROW |32678 |842 |28817 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32679 |842 |28815 |0 |1 |2774A4|0 |2 |0 |
+ROW |32680 |842 |28816 |0 |2 |F63100|0 |2 |0 |
+ROW |32681 |844 |28808 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32682 |844 |28807 |0 |1 |2774A4|0 |2 |0 |
+ROW |32683 |843 |28818 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32684 |845 |28829 |2 |0 |1A7C11|0 |2 |0 |
+ROW |32685 |845 |28831 |0 |1 |2774A4|0 |2 |0 |
+ROW |32686 |845 |28832 |0 |2 |F63100|0 |2 |0 |
+ROW |32687 |845 |28830 |0 |3 |A54F10|0 |2 |0 |
+ROW |32688 |846 |28826 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32689 |846 |28828 |0 |1 |2774A4|0 |2 |0 |
+ROW |32690 |846 |28827 |0 |2 |F63100|0 |2 |0 |
+ROW |32691 |847 |28825 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32692 |1001 |29729 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32693 |1001 |29728 |0 |1 |2774A4|0 |2 |0 |
+ROW |32694 |1001 |29727 |0 |2 |F63100|0 |2 |0 |
+ROW |32695 |1001 |29725 |0 |3 |A54F10|0 |2 |0 |
+ROW |32696 |1001 |29723 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |32697 |1001 |29733 |0 |5 |6C59DC|0 |2 |0 |
+ROW |32698 |1001 |29737 |0 |6 |AC8C14|0 |2 |0 |
+ROW |32699 |1001 |29731 |0 |7 |611F27|0 |2 |0 |
+ROW |32700 |1000 |29720 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32701 |1000 |29730 |0 |1 |2774A4|0 |2 |0 |
+ROW |32702 |1000 |29721 |0 |2 |F63100|0 |2 |0 |
+ROW |32703 |1000 |29726 |0 |3 |A54F10|0 |2 |0 |
+ROW |32704 |1000 |29724 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |32705 |1000 |29734 |0 |5 |6C59DC|0 |2 |0 |
+ROW |32706 |1000 |29722 |0 |6 |AC8C14|0 |2 |0 |
+ROW |32707 |1000 |29732 |0 |7 |611F27|0 |2 |0 |
+ROW |32708 |1027 |30022 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32709 |1027 |30021 |0 |1 |2774A4|0 |2 |0 |
+ROW |32710 |1027 |30019 |0 |2 |F63100|0 |2 |0 |
+ROW |32711 |1008 |29698 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32712 |1008 |29700 |2 |1 |FF0000|0 |2 |0 |
+ROW |32713 |1007 |29691 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32714 |1013 |29657 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32715 |1013 |29658 |0 |1 |2774A4|0 |2 |0 |
+ROW |32716 |1009 |29687 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32717 |1009 |29694 |2 |1 |FF0000|0 |2 |0 |
+ROW |32718 |1029 |30017 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32719 |1029 |30016 |0 |1 |2774A4|0 |2 |0 |
+ROW |32720 |1029 |30015 |0 |2 |F63100|0 |2 |0 |
+ROW |32721 |1031 |30007 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32722 |1031 |30013 |0 |1 |2774A4|0 |2 |0 |
+ROW |32723 |1031 |30011 |0 |2 |F63100|0 |2 |0 |
+ROW |32724 |1031 |30009 |0 |3 |A54F10|0 |2 |0 |
+ROW |32725 |1031 |30005 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |32726 |1031 |30003 |0 |5 |6C59DC|0 |2 |0 |
+ROW |32727 |1031 |30023 |0 |6 |AC8C14|0 |2 |0 |
+ROW |32728 |1031 |30001 |0 |7 |611F27|0 |2 |0 |
+ROW |32729 |1030 |30008 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32730 |1030 |30014 |0 |1 |2774A4|0 |2 |0 |
+ROW |32731 |1030 |30012 |0 |2 |F63100|0 |2 |0 |
+ROW |32732 |1030 |30010 |0 |3 |A54F10|0 |2 |0 |
+ROW |32733 |1030 |30006 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |32734 |1030 |30004 |0 |5 |6C59DC|0 |2 |0 |
+ROW |32735 |1030 |30000 |0 |6 |AC8C14|0 |2 |0 |
+ROW |32736 |1030 |30002 |0 |7 |611F27|0 |2 |0 |
+ROW |32737 |1011 |29695 |2 |0 |1A7C11|0 |2 |0 |
+ROW |32738 |1011 |29662 |2 |1 |2774A4|0 |2 |0 |
+ROW |32739 |1028 |30020 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32740 |1010 |29701 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32741 |1010 |29697 |0 |1 |2774A4|0 |2 |0 |
+ROW |32742 |1012 |29692 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32743 |1015 |29812 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32744 |1015 |29811 |0 |1 |2774A4|0 |2 |0 |
+ROW |32745 |1015 |29810 |0 |2 |F63100|0 |2 |0 |
+ROW |32746 |1015 |29808 |0 |3 |A54F10|0 |2 |0 |
+ROW |32747 |1015 |29806 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |32748 |1015 |29816 |0 |5 |6C59DC|0 |2 |0 |
+ROW |32749 |1015 |29820 |0 |6 |AC8C14|0 |2 |0 |
+ROW |32750 |1015 |29814 |0 |7 |611F27|0 |2 |0 |
+ROW |32751 |1014 |29803 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32752 |1014 |29813 |0 |1 |2774A4|0 |2 |0 |
+ROW |32753 |1014 |29804 |0 |2 |F63100|0 |2 |0 |
+ROW |32754 |1014 |29809 |0 |3 |A54F10|0 |2 |0 |
+ROW |32755 |1014 |29807 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |32756 |1014 |29817 |0 |5 |6C59DC|0 |2 |0 |
+ROW |32757 |1014 |29805 |0 |6 |AC8C14|0 |2 |0 |
+ROW |32758 |1014 |29815 |0 |7 |611F27|0 |2 |0 |
+ROW |32759 |1016 |29768 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32760 |1016 |29767 |0 |1 |2774A4|0 |2 |0 |
+ROW |32761 |1016 |29765 |0 |2 |F63100|0 |2 |0 |
+ROW |32762 |1022 |29782 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32763 |1022 |29781 |2 |1 |FF0000|0 |2 |0 |
+ROW |32764 |1021 |29783 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32765 |1023 |29780 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32766 |1023 |29784 |2 |1 |FF0000|0 |2 |0 |
+ROW |32767 |1018 |29763 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32768 |1018 |29762 |0 |1 |2774A4|0 |2 |0 |
+ROW |32769 |1018 |29761 |0 |2 |F63100|0 |2 |0 |
+ROW |32770 |1020 |29753 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32771 |1020 |29759 |0 |1 |2774A4|0 |2 |0 |
+ROW |32772 |1020 |29757 |0 |2 |F63100|0 |2 |0 |
+ROW |32773 |1020 |29755 |0 |3 |A54F10|0 |2 |0 |
+ROW |32774 |1020 |29751 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |32775 |1020 |29749 |0 |5 |6C59DC|0 |2 |0 |
+ROW |32776 |1020 |29769 |0 |6 |AC8C14|0 |2 |0 |
+ROW |32777 |1020 |29747 |0 |7 |611F27|0 |2 |0 |
+ROW |32778 |1019 |29754 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32779 |1019 |29760 |0 |1 |2774A4|0 |2 |0 |
+ROW |32780 |1019 |29758 |0 |2 |F63100|0 |2 |0 |
+ROW |32781 |1019 |29756 |0 |3 |A54F10|0 |2 |0 |
+ROW |32782 |1019 |29752 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |32783 |1019 |29750 |0 |5 |6C59DC|0 |2 |0 |
+ROW |32784 |1019 |29746 |0 |6 |AC8C14|0 |2 |0 |
+ROW |32785 |1019 |29748 |0 |7 |611F27|0 |2 |0 |
+ROW |32786 |1025 |29775 |2 |0 |1A7C11|0 |2 |0 |
+ROW |32787 |1025 |29744 |2 |1 |2774A4|0 |2 |0 |
+ROW |32788 |1017 |29766 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32789 |1024 |29776 |5 |0 |1A7C11|0 |2 |0 |
+ROW |32790 |1024 |29777 |0 |1 |2774A4|0 |2 |0 |
+ROW |32791 |1026 |29772 |0 |0 |1A7C11|0 |2 |0 |
+ROW |32792 |793 |28532 |0 |0 |C80000|0 |2 |0 |
+ROW |32793 |793 |28503 |0 |1 |00C800|0 |2 |0 |
+ROW |32794 |793 |28504 |0 |2 |0000C8|0 |2 |0 |
+ROW |32795 |794 |28505 |0 |0 |C80000|0 |2 |0 |
+ROW |32796 |794 |28506 |0 |1 |00C800|0 |2 |0 |
+ROW |32797 |794 |28507 |0 |2 |0000C8|0 |2 |0 |
+ROW |32798 |795 |28508 |0 |0 |C80000|0 |2 |0 |
+ROW |32799 |795 |28509 |0 |1 |00C800|0 |2 |0 |
+ROW |32800 |795 |28510 |0 |2 |0000C8|0 |2 |0 |
+ROW |32801 |796 |28515 |0 |0 |C80000|0 |2 |0 |
+ROW |32802 |796 |28518 |0 |1 |00C800|0 |2 |0 |
+ROW |32803 |796 |28516 |0 |2 |0000C8|0 |2 |0 |
+ROW |32804 |803 |28599 |0 |0 |DD0000|0 |2 |0 |
+ROW |32805 |803 |28596 |0 |1 |00DDDD|0 |2 |0 |
+ROW |32806 |803 |28597 |0 |2 |3333FF|0 |2 |0 |
+ROW |32807 |803 |28598 |0 |3 |00FF00|0 |2 |0 |
+ROW |32808 |804 |28602 |0 |0 |990099|0 |2 |0 |
+ROW |32809 |804 |28606 |0 |1 |990000|0 |2 |0 |
+ROW |32810 |804 |28608 |0 |2 |0000EE|0 |2 |0 |
+ROW |32811 |804 |28615 |0 |3 |FF33FF|0 |2 |0 |
+ROW |32812 |804 |28610 |0 |4 |00EE00|0 |2 |0 |
+ROW |32813 |804 |28611 |0 |5 |003300|0 |2 |0 |
+ROW |32814 |804 |28616 |0 |6 |33FFFF|0 |2 |0 |
+ROW |32815 |804 |28607 |0 |7 |DD0000|0 |2 |0 |
+ROW |32816 |804 |28604 |0 |8 |000099|0 |2 |0 |
+ROW |32817 |804 |28588 |0 |9 |00FF00|0 |2 |0 |
+ROW |32818 |805 |28612 |0 |0 |FFAA00|0 |2 |0 |
+ROW |32819 |805 |28600 |0 |1 |990099|0 |2 |0 |
+ROW |32820 |805 |28613 |0 |2 |EE0000|0 |2 |0 |
+ROW |32821 |805 |28605 |0 |3 |FF66FF|0 |2 |0 |
+ROW |32822 |805 |28614 |0 |4 |960000|0 |2 |0 |
+ROW |32823 |805 |28601 |0 |5 |009600|0 |2 |0 |
+ROW |32824 |805 |28603 |0 |6 |009999|0 |2 |0 |
+ROW |32825 |805 |28609 |0 |7 |BBBB00|0 |2 |0 |
+ROW |32826 |806 |28595 |0 |0 |00C800|0 |2 |0 |
+ROW |32827 |806 |28586 |0 |1 |C80000|0 |2 |0 |
+ROW |32828 |797 |28546 |0 |0 |C80000|0 |2 |0 |
+ROW |32829 |797 |28545 |0 |1 |00C800|0 |2 |0 |
+ROW |32830 |798 |28551 |0 |0 |009900|0 |2 |0 |
+ROW |32831 |798 |28543 |0 |1 |DD0000|0 |2 |0 |
+ROW |32832 |798 |28542 |0 |2 |00DDDD|0 |2 |0 |
+ROW |32833 |798 |28549 |0 |3 |3333FF|0 |2 |0 |
+ROW |32834 |798 |28544 |0 |4 |999900|0 |2 |0 |
+ROW |32835 |798 |28548 |0 |5 |00FF00|0 |2 |0 |
+ROW |32836 |799 |28581 |0 |0 |990099|0 |2 |0 |
+ROW |32837 |799 |28574 |0 |1 |990000|0 |2 |0 |
+ROW |32838 |799 |28571 |0 |2 |0000EE|0 |2 |0 |
+ROW |32839 |799 |28565 |0 |3 |FF33FF|0 |2 |0 |
+ROW |32840 |799 |28570 |0 |4 |009600|0 |2 |0 |
+ROW |32841 |799 |28569 |0 |5 |003300|0 |2 |0 |
+ROW |32842 |799 |28577 |0 |6 |CCCC00|0 |2 |0 |
+ROW |32843 |799 |28552 |0 |7 |33FFFF|0 |2 |0 |
+ROW |32844 |799 |28573 |0 |8 |DD0000|0 |2 |0 |
+ROW |32845 |799 |28579 |0 |9 |000099|0 |2 |0 |
+ROW |32846 |799 |28559 |0 |10 |00FF00|0 |2 |0 |
+ROW |32847 |800 |28572 |0 |0 |00EE00|0 |2 |0 |
+ROW |32848 |800 |28566 |0 |1 |0000EE|0 |2 |0 |
+ROW |32849 |800 |28568 |0 |2 |FFAA00|0 |2 |0 |
+ROW |32850 |800 |28561 |0 |3 |00EEEE|0 |2 |0 |
+ROW |32851 |800 |28564 |0 |4 |990099|0 |2 |0 |
+ROW |32852 |800 |28567 |0 |5 |EE0000|0 |2 |0 |
+ROW |32853 |800 |28578 |0 |6 |FF66FF|0 |2 |0 |
+ROW |32854 |800 |28580 |0 |7 |009999|0 |2 |0 |
+ROW |32855 |800 |28562 |0 |8 |BBBB00|0 |2 |0 |
+ROW |32856 |800 |28563 |0 |9 |AA0000|0 |2 |0 |
+ROW |32857 |800 |28575 |0 |10 |990000|0 |2 |0 |
+ROW |32858 |800 |28576 |0 |11 |008800|0 |2 |0 |
+ROW |32859 |800 |28582 |0 |12 |80B0E0|0 |2 |0 |
+ROW |32860 |800 |28583 |0 |13 |4080B0|0 |2 |0 |
+ROW |32861 |800 |29821 |0 |14 |8000FF|0 |2 |0 |
+ROW |32862 |801 |28560 |0 |0 |008800|0 |2 |0 |
+ROW |32863 |801 |28584 |0 |1 |EE0000|0 |2 |0 |
+ROW |32864 |802 |28550 |5 |0 |00C800|0 |2 |0 |
+ROW |32865 |802 |28540 |0 |1 |F63100|0 |2 |0 |
+ROW |32866 |529 |23357 |0 |0 |DD0000|0 |2 |0 |
+ROW |32867 |529 |23341 |0 |1 |00DDDD|0 |2 |0 |
+ROW |32868 |529 |23342 |0 |2 |3333FF|0 |2 |0 |
+ROW |32869 |529 |28251 |0 |3 |00FF00|0 |2 |0 |
+ROW |32870 |530 |23345 |0 |0 |990099|0 |2 |0 |
+ROW |32871 |530 |23348 |0 |1 |990000|0 |2 |0 |
+ROW |32872 |530 |23355 |0 |2 |0000EE|0 |2 |0 |
+ROW |32873 |530 |23352 |0 |3 |FF33FF|0 |2 |0 |
+ROW |32874 |530 |23356 |0 |4 |007700|0 |2 |0 |
+ROW |32875 |530 |23354 |0 |5 |003300|0 |2 |0 |
+ROW |32876 |530 |23346 |0 |6 |33FFFF|0 |2 |0 |
+ROW |32877 |530 |23349 |0 |7 |DD0000|0 |2 |0 |
+ROW |32878 |530 |23344 |0 |8 |000099|0 |7 |0 |
+ROW |32879 |530 |28250 |0 |9 |00FF00|0 |2 |0 |
+ROW |32880 |531 |23353 |0 |0 |FFAA00|0 |2 |0 |
+ROW |32881 |531 |23347 |0 |1 |990099|0 |2 |0 |
+ROW |32882 |531 |23350 |0 |2 |EE0000|0 |2 |0 |
+ROW |32883 |531 |23343 |0 |3 |FF66FF|0 |2 |0 |
+ROW |32884 |531 |23351 |0 |4 |0000EE|0 |2 |0 |
+ROW |32885 |531 |23360 |0 |5 |00EE00|0 |2 |0 |
+ROW |32886 |531 |25369 |0 |6 |009999|0 |2 |0 |
+ROW |32887 |531 |25368 |0 |7 |BBBB00|0 |2 |0 |
+ROW |32888 |531 |28618 |0 |8 |990000|0 |2 |0 |
+ROW |32889 |531 |28619 |0 |9 |008800|0 |2 |0 |
+ROW |32890 |807 |28617 |0 |0 |008800|0 |2 |0 |
+ROW |32891 |532 |23340 |5 |0 |00C800|0 |2 |0 |
+ROW |32892 |532 |23358 |5 |1 |C80000|1 |2 |0 |
+ROW |32893 |527 |22199 |0 |0 |C80000|0 |2 |0 |
+ROW |32894 |527 |22196 |0 |1 |00C800|0 |2 |0 |
+ROW |32895 |528 |23628 |0 |0 |C80000|0 |2 |0 |
+ROW |32896 |528 |23625 |0 |1 |00C800|0 |2 |0 |
+ROW |32897 |410 |22185 |0 |0 |009900|0 |2 |0 |
+ROW |32898 |410 |22189 |0 |1 |DD0000|0 |2 |0 |
+ROW |32899 |410 |22396 |0 |2 |00DDDD|0 |2 |0 |
+ROW |32900 |410 |22183 |0 |3 |3333FF|0 |2 |0 |
+ROW |32901 |410 |22191 |0 |4 |999900|0 |2 |0 |
+ROW |32902 |410 |23634 |0 |5 |00FF00|0 |2 |0 |
+ROW |32903 |520 |23276 |0 |0 |009900|0 |2 |0 |
+ROW |32904 |520 |23273 |0 |1 |DD0000|0 |2 |0 |
+ROW |32905 |520 |23275 |0 |2 |00DDDD|0 |2 |0 |
+ROW |32906 |520 |23274 |0 |3 |3333FF|0 |2 |0 |
+ROW |32907 |520 |23620 |0 |4 |999900|0 |2 |0 |
+ROW |32908 |520 |23635 |0 |5 |00FF00|0 |2 |0 |
+ROW |32909 |404 |22404 |0 |0 |990099|0 |2 |0 |
+ROW |32910 |404 |22399 |0 |1 |990000|0 |2 |0 |
+ROW |32911 |404 |22416 |0 |2 |0000EE|0 |2 |0 |
+ROW |32912 |404 |22430 |0 |3 |FF33FF|0 |2 |0 |
+ROW |32913 |404 |22418 |0 |4 |009600|0 |2 |0 |
+ROW |32914 |404 |22402 |0 |5 |003300|0 |2 |0 |
+ROW |32915 |404 |22420 |0 |6 |CCCC00|0 |2 |0 |
+ROW |32916 |404 |22400 |0 |7 |33FFFF|0 |2 |0 |
+ROW |32917 |404 |22689 |0 |8 |DD0000|0 |2 |0 |
+ROW |32918 |404 |23171 |0 |9 |000099|0 |2 |0 |
+ROW |32919 |404 |22401 |0 |10 |00FF00|0 |2 |0 |
+ROW |32920 |518 |23269 |0 |0 |990099|0 |2 |0 |
+ROW |32921 |518 |23264 |0 |1 |990000|0 |2 |0 |
+ROW |32922 |518 |23261 |0 |2 |0000EE|0 |2 |0 |
+ROW |32923 |518 |23255 |0 |3 |FF33FF|0 |2 |0 |
+ROW |32924 |518 |23260 |0 |4 |009600|0 |2 |0 |
+ROW |32925 |518 |23259 |0 |5 |003300|0 |2 |0 |
+ROW |32926 |518 |23265 |0 |6 |CCCC00|0 |2 |0 |
+ROW |32927 |518 |23270 |0 |7 |33FFFF|0 |2 |0 |
+ROW |32928 |518 |23262 |0 |8 |DD0000|0 |2 |0 |
+ROW |32929 |518 |23267 |0 |9 |000099|0 |2 |0 |
+ROW |32930 |518 |23328 |0 |10 |00FF00|0 |2 |0 |
+ROW |32931 |406 |22426 |0 |0 |00EE00|0 |2 |0 |
+ROW |32932 |406 |22422 |0 |1 |0000EE|0 |2 |0 |
+ROW |32933 |406 |22408 |0 |2 |FFAA00|0 |2 |0 |
+ROW |32934 |406 |22424 |0 |3 |00EEEE|0 |2 |0 |
+ROW |32935 |406 |22412 |0 |4 |990099|0 |2 |0 |
+ROW |32936 |406 |22406 |0 |5 |EE0000|0 |2 |0 |
+ROW |32937 |406 |22414 |0 |6 |FF66FF|0 |2 |0 |
+ROW |32938 |406 |23663 |0 |7 |009999|0 |2 |0 |
+ROW |32939 |406 |25366 |0 |8 |BBBB00|0 |2 |0 |
+ROW |32940 |406 |25370 |0 |9 |AA0000|0 |2 |0 |
+ROW |32941 |406 |25665 |0 |10 |990000|0 |2 |0 |
+ROW |32942 |406 |25666 |0 |11 |008800|0 |2 |0 |
+ROW |32943 |406 |28535 |0 |12 |80B0E0|0 |2 |0 |
+ROW |32944 |406 |28537 |0 |13 |4080B0|0 |2 |0 |
+ROW |32945 |406 |29822 |0 |14 |8000FF|0 |2 |0 |
+ROW |32946 |517 |23268 |0 |0 |00EE00|0 |2 |0 |
+ROW |32947 |517 |23256 |0 |1 |0000EE|0 |2 |0 |
+ROW |32948 |517 |23258 |0 |2 |FFAA00|0 |2 |0 |
+ROW |32949 |517 |23252 |0 |3 |00EEEE|0 |2 |0 |
+ROW |32950 |517 |23253 |0 |4 |990099|0 |2 |0 |
+ROW |32951 |517 |23257 |0 |5 |EE0000|0 |2 |0 |
+ROW |32952 |517 |23266 |0 |6 |FF66FF|0 |2 |0 |
+ROW |32953 |517 |23664 |0 |7 |009999|0 |2 |0 |
+ROW |32954 |517 |25367 |0 |8 |BBBB00|0 |2 |0 |
+ROW |32955 |517 |25371 |0 |9 |AA0000|0 |2 |0 |
+ROW |32956 |517 |25667 |0 |10 |990000|0 |2 |0 |
+ROW |32957 |517 |25668 |0 |11 |008800|0 |2 |0 |
+ROW |32958 |517 |28536 |0 |12 |80B0E0|0 |2 |0 |
+ROW |32959 |517 |28538 |0 |13 |4080B0|0 |2 |0 |
+ROW |32960 |517 |29823 |0 |14 |8000FF|0 |2 |0 |
+ROW |32961 |788 |28248 |0 |0 |008800|0 |2 |0 |
+ROW |32962 |788 |28533 |0 |1 |EE0000|0 |2 |0 |
+ROW |32963 |789 |28249 |0 |0 |008800|0 |2 |0 |
+ROW |32964 |789 |28534 |0 |1 |EE0000|0 |2 |0 |
+ROW |32965 |392 |22187 |5 |0 |00C800|0 |2 |0 |
+ROW |32966 |392 |23251 |5 |1 |C80000|1 |2 |0 |
+ROW |32967 |519 |23277 |5 |0 |00C800|0 |2 |0 |
+ROW |32968 |519 |23272 |5 |1 |C80000|1 |2 |0 |
+ROW |32969 |472 |22945 |5 |0 |00AA00|0 |2 |0 |
+ROW |32970 |472 |22946 |5 |1 |3333FF|0 |2 |0 |
+ROW |32971 |473 |22950 |0 |0 |C80000|0 |2 |2 |
+ROW |32972 |473 |22948 |0 |1 |00C800|0 |2 |0 |
+ROW |32973 |471 |22924 |0 |0 |009900|0 |2 |0 |
+ROW |32974 |471 |22920 |0 |1 |000099|0 |2 |0 |
+ROW |32975 |469 |22922 |0 |0 |009900|0 |2 |0 |
+ROW |32976 |469 |22923 |0 |1 |000099|0 |2 |0 |
+ROW |32977 |469 |22921 |0 |2 |990000|0 |2 |0 |
+ROW |32978 |498 |23109 |0 |0 |009999|0 |2 |0 |
+ROW |32979 |498 |23112 |0 |1 |990099|0 |2 |0 |
+ROW |32980 |498 |23115 |0 |2 |999900|0 |2 |0 |
+ROW |32981 |498 |23113 |0 |3 |990000|0 |2 |0 |
+ROW |32982 |498 |23114 |0 |4 |000099|0 |2 |0 |
+ROW |32983 |498 |23110 |0 |5 |009900|0 |2 |0 |
+ROW |32984 |540 |22942 |5 |0 |00C800|0 |2 |0 |
+ROW |32985 |492 |23073 |5 |0 |00AA00|0 |2 |0 |
+ROW |32986 |492 |23074 |5 |1 |3333FF|0 |2 |0 |
+ROW |32987 |467 |22910 |0 |0 |C80000|0 |2 |2 |
+ROW |32988 |467 |22908 |0 |1 |00C800|0 |2 |0 |
+ROW |32989 |465 |22884 |0 |0 |009900|0 |2 |0 |
+ROW |32990 |465 |22880 |0 |1 |000099|0 |2 |0 |
+ROW |32991 |463 |22882 |0 |0 |009900|0 |2 |0 |
+ROW |32992 |463 |22883 |0 |1 |000099|0 |2 |0 |
+ROW |32993 |463 |22881 |0 |2 |990000|0 |2 |0 |
+ROW |32994 |462 |22886 |1 |0 |009999|0 |2 |0 |
+ROW |32995 |462 |22888 |1 |1 |990099|0 |2 |0 |
+ROW |32996 |462 |22891 |1 |2 |990000|0 |2 |0 |
+ROW |32997 |462 |22892 |1 |3 |000099|0 |2 |0 |
+ROW |32998 |462 |22885 |1 |4 |009900|0 |2 |0 |
+ROW |32999 |541 |22902 |5 |0 |00C800|0 |2 |0 |
+ROW |33000 |464 |22897 |0 |0 |AA0000|0 |2 |2 |
+ROW |33001 |464 |22895 |0 |1 |00AA00|0 |2 |0 |
+ROW |33002 |478 |22985 |5 |0 |00AA00|0 |2 |0 |
+ROW |33003 |478 |22986 |5 |1 |3333FF|0 |2 |0 |
+ROW |33004 |479 |22990 |0 |0 |C80000|0 |2 |2 |
+ROW |33005 |479 |22988 |0 |1 |00C800|0 |2 |0 |
+ROW |33006 |475 |22962 |0 |0 |009900|0 |2 |0 |
+ROW |33007 |475 |22963 |0 |1 |000099|0 |2 |0 |
+ROW |33008 |475 |22961 |0 |2 |990000|0 |2 |0 |
+ROW |33009 |474 |22968 |1 |0 |990099|0 |2 |0 |
+ROW |33010 |474 |22971 |1 |1 |990000|0 |2 |0 |
+ROW |33011 |474 |22972 |1 |2 |000099|0 |2 |0 |
+ROW |33012 |474 |22965 |1 |3 |009900|0 |2 |0 |
+ROW |33013 |542 |22982 |5 |0 |00C800|0 |2 |0 |
+ROW |33014 |491 |23070 |0 |0 |C80000|0 |2 |2 |
+ROW |33015 |491 |23068 |0 |1 |00C800|0 |2 |0 |
+ROW |33016 |487 |23042 |0 |0 |009900|0 |2 |0 |
+ROW |33017 |487 |23043 |0 |1 |000099|0 |2 |0 |
+ROW |33018 |487 |23041 |0 |2 |990000|0 |2 |0 |
+ROW |33019 |543 |23062 |5 |0 |00C800|0 |2 |0 |
+ROW |33020 |494 |23077 |5 |0 |00AA00|0 |2 |0 |
+ROW |33021 |494 |23078 |5 |1 |3333FF|0 |2 |0 |
+ROW |33022 |493 |23075 |5 |0 |00AA00|0 |2 |0 |
+ROW |33023 |493 |23076 |5 |1 |3333FF|0 |2 |0 |
+ROW |33024 |461 |22870 |0 |0 |C80000|0 |2 |2 |
+ROW |33025 |461 |22868 |0 |1 |00C800|0 |2 |0 |
+ROW |33026 |459 |22844 |0 |0 |009900|0 |2 |0 |
+ROW |33027 |459 |22840 |0 |1 |000099|0 |2 |0 |
+ROW |33028 |457 |22842 |0 |0 |009900|0 |2 |0 |
+ROW |33029 |457 |22843 |0 |1 |000099|0 |2 |0 |
+ROW |33030 |457 |22841 |0 |2 |990000|0 |2 |0 |
+ROW |33031 |456 |22846 |1 |0 |009999|0 |2 |0 |
+ROW |33032 |456 |22848 |1 |1 |990099|0 |2 |0 |
+ROW |33033 |456 |22851 |1 |2 |990000|0 |2 |0 |
+ROW |33034 |456 |22852 |1 |3 |000099|0 |2 |0 |
+ROW |33035 |456 |22845 |1 |4 |009900|0 |2 |0 |
+ROW |33036 |544 |22862 |5 |0 |00C800|0 |2 |0 |
+ROW |33037 |458 |22857 |0 |0 |AA0000|0 |2 |2 |
+ROW |33038 |458 |22855 |0 |1 |00AA00|0 |2 |0 |
+ROW |33039 |484 |23025 |5 |0 |00AA00|0 |2 |0 |
+ROW |33040 |484 |23026 |5 |1 |3333FF|0 |2 |0 |
+ROW |33041 |485 |23030 |0 |0 |C80000|0 |2 |2 |
+ROW |33042 |485 |23028 |0 |1 |00C800|0 |2 |0 |
+ROW |33043 |483 |23004 |0 |0 |009900|0 |2 |0 |
+ROW |33044 |483 |23000 |0 |1 |000099|0 |2 |0 |
+ROW |33045 |481 |23002 |0 |0 |009900|0 |2 |0 |
+ROW |33046 |481 |23003 |0 |1 |000099|0 |2 |0 |
+ROW |33047 |481 |23001 |0 |2 |990000|0 |2 |0 |
+ROW |33048 |480 |23007 |1 |0 |999900|0 |2 |0 |
+ROW |33049 |480 |23011 |1 |1 |990000|0 |2 |0 |
+ROW |33050 |480 |23012 |1 |2 |000099|0 |2 |0 |
+ROW |33051 |480 |23005 |1 |3 |009900|0 |2 |0 |
+ROW |33052 |545 |23022 |5 |0 |00C800|0 |2 |0 |
+ROW |33053 |482 |23017 |0 |0 |AA0000|0 |2 |2 |
+ROW |33054 |482 |23015 |0 |1 |00AA00|0 |2 |0 |
+ROW |33055 |651 |26928 |5 |0 |EE0000|0 |2 |0 |
+ROW |33056 |651 |26927 |0 |1 |000000|1 |2 |0 |
+ROW |33057 |652 |26925 |2 |0 |880000|0 |2 |0 |
+ROW |33058 |652 |26932 |0 |1 |009900|0 |2 |0 |
+ROW |33059 |652 |26930 |0 |2 |00CCCC|0 |2 |0 |
+ROW |33060 |652 |26931 |0 |3 |000000|0 |2 |0 |
+ROW |33061 |652 |26929 |0 |4 |3333FF|0 |2 |0 |
+ROW |33062 |652 |26926 |0 |5 |777700|0 |2 |0 |
+ROW |33063 |653 |26933 |2 |0 |EE0000|0 |2 |0 |
+ROW |33064 |653 |26943 |2 |1 |EE00EE|0 |2 |0 |
+ROW |33065 |653 |26935 |0 |2 |000000|1 |2 |0 |
+ROW |33066 |653 |26936 |4 |3 |000000|1 |2 |0 |
+ROW |33067 |654 |26934 |2 |0 |880000|0 |2 |0 |
+ROW |33068 |654 |26939 |0 |1 |009900|0 |2 |0 |
+ROW |33069 |654 |26942 |0 |2 |00CCCC|0 |2 |0 |
+ROW |33070 |654 |26938 |0 |3 |000000|0 |2 |0 |
+ROW |33071 |654 |26937 |0 |4 |3333FF|0 |2 |0 |
+ROW |33072 |1159 |30886 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33073 |1159 |30887 |0 |1 |2774A4|0 |2 |0 |
+ROW |33074 |1160 |30888 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33075 |1160 |30882 |0 |1 |2774A4|0 |2 |0 |
+ROW |33076 |1160 |30890 |0 |2 |F63100|0 |2 |0 |
+ROW |33077 |1160 |30881 |0 |3 |A54F10|0 |2 |0 |
+ROW |33078 |1160 |30889 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |33079 |1161 |30847 |2 |0 |1A7C11|0 |2 |0 |
+ROW |33080 |1161 |30872 |2 |1 |2774A4|0 |2 |0 |
+ROW |33081 |1162 |30853 |2 |0 |1A7C11|0 |2 |0 |
+ROW |33082 |1162 |30849 |2 |1 |2774A4|0 |2 |0 |
+ROW |33083 |1162 |30852 |2 |2 |F63100|0 |2 |0 |
+ROW |33084 |1162 |30851 |2 |3 |A54F10|0 |2 |0 |
+ROW |33085 |1162 |30848 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |33086 |1163 |30856 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33087 |1163 |30855 |0 |1 |2774A4|0 |2 |0 |
+ROW |33088 |1163 |30854 |2 |2 |F63100|1 |2 |0 |
+ROW |33089 |1164 |30859 |2 |0 |1A7C11|0 |2 |0 |
+ROW |33090 |1164 |30870 |2 |1 |2774A4|0 |2 |0 |
+ROW |33091 |1165 |30860 |2 |0 |1A7C11|0 |2 |0 |
+ROW |33092 |1165 |30871 |2 |1 |2774A4|0 |2 |0 |
+ROW |33093 |1166 |30868 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33094 |1166 |30869 |0 |1 |2774A4|0 |2 |0 |
+ROW |33095 |1166 |30867 |0 |2 |F63100|0 |2 |0 |
+ROW |33096 |1166 |30866 |0 |3 |A54F10|0 |2 |0 |
+ROW |33097 |1166 |30865 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |33098 |1167 |30850 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33099 |1167 |30863 |5 |1 |2774A4|0 |2 |0 |
+ROW |33100 |1167 |30861 |5 |2 |F63100|0 |2 |0 |
+ROW |33101 |1168 |30833 |2 |0 |1A7C11|0 |2 |0 |
+ROW |33102 |1168 |30841 |2 |1 |2774A4|0 |2 |0 |
+ROW |33103 |1168 |30857 |2 |2 |F63100|0 |2 |0 |
+ROW |33104 |1169 |30834 |2 |0 |1A7C11|0 |2 |0 |
+ROW |33105 |1169 |30831 |2 |1 |2774A4|0 |2 |0 |
+ROW |33106 |1170 |30846 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33107 |1171 |30840 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33108 |1171 |30845 |0 |1 |2774A4|0 |2 |0 |
+ROW |33109 |1171 |30842 |0 |2 |F63100|0 |2 |0 |
+ROW |33110 |1171 |30873 |2 |3 |A54F10|1 |2 |0 |
+ROW |33111 |1261 |31145 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33112 |1261 |31146 |0 |1 |2774A4|0 |2 |0 |
+ROW |33113 |1261 |31147 |0 |2 |F63100|0 |2 |0 |
+ROW |33114 |1190 |31140 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33115 |1190 |31141 |0 |1 |2774A4|0 |2 |0 |
+ROW |33116 |1191 |31138 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33117 |1192 |31157 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33118 |1192 |31158 |0 |1 |2774A4|0 |2 |0 |
+ROW |33119 |1193 |31092 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33120 |1193 |31108 |0 |1 |2774A4|0 |2 |0 |
+ROW |33121 |1193 |31110 |0 |2 |F63100|0 |2 |0 |
+ROW |33122 |1193 |31067 |0 |3 |A54F10|0 |2 |0 |
+ROW |33123 |1193 |31086 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |33124 |1193 |31087 |0 |5 |6C59DC|0 |2 |0 |
+ROW |33125 |1194 |31120 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33126 |1194 |31105 |0 |1 |2774A4|0 |2 |0 |
+ROW |33127 |1194 |31071 |0 |2 |F63100|0 |2 |0 |
+ROW |33128 |1194 |31081 |0 |3 |A54F10|0 |2 |0 |
+ROW |33129 |1195 |31098 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33130 |1195 |31099 |0 |1 |2774A4|0 |2 |0 |
+ROW |33131 |1196 |31072 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33132 |1196 |31072 |0 |1 |2774A4|0 |2 |0 |
+ROW |33133 |1197 |31103 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33134 |1197 |31074 |0 |1 |2774A4|0 |2 |0 |
+ROW |33135 |1198 |31104 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33136 |1198 |31063 |0 |1 |2774A4|0 |2 |0 |
+ROW |33137 |1198 |31111 |0 |2 |F63100|0 |2 |0 |
+ROW |33138 |1198 |31112 |0 |3 |A54F10|0 |2 |0 |
+ROW |33139 |1198 |31084 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |33140 |1199 |31115 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33141 |1199 |31116 |0 |1 |2774A4|0 |2 |0 |
+ROW |33142 |1199 |31062 |0 |2 |F63100|0 |2 |0 |
+ROW |33143 |1199 |31118 |0 |3 |A54F10|0 |2 |0 |
+ROW |33144 |1199 |31056 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |33145 |1200 |31107 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33146 |1200 |31090 |0 |1 |2774A4|0 |2 |0 |
+ROW |33147 |1201 |31097 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33148 |1201 |31096 |0 |1 |2774A4|0 |2 |0 |
+ROW |33149 |1202 |31089 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33150 |1202 |31061 |0 |1 |2774A4|0 |2 |0 |
+ROW |33151 |1203 |31064 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33152 |1204 |31065 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33153 |1204 |31066 |0 |1 |2774A4|0 |2 |0 |
+ROW |33154 |1204 |31068 |0 |2 |F63100|0 |2 |0 |
+ROW |33155 |1204 |31070 |0 |3 |A54F10|0 |2 |0 |
+ROW |33156 |1204 |31101 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |33157 |1204 |31106 |0 |5 |6C59DC|0 |2 |0 |
+ROW |33158 |1204 |31114 |0 |6 |AC8C14|0 |2 |0 |
+ROW |33159 |1205 |31069 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33160 |1206 |31076 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33161 |1206 |31078 |0 |1 |2774A4|0 |2 |0 |
+ROW |33162 |1206 |31109 |0 |2 |F63100|0 |2 |0 |
+ROW |33163 |1206 |31075 |0 |3 |A54F10|0 |2 |0 |
+ROW |33164 |1207 |31080 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33165 |1207 |31095 |0 |1 |2774A4|0 |2 |0 |
+ROW |33166 |1208 |31113 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33167 |1208 |31118 |0 |1 |2774A4|0 |2 |0 |
+ROW |33168 |1209 |31058 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33169 |1209 |31077 |0 |1 |2774A4|0 |2 |0 |
+ROW |33170 |1209 |31056 |0 |2 |F63100|0 |2 |0 |
+ROW |33171 |1209 |31117 |0 |3 |A54F10|0 |2 |0 |
+ROW |33172 |1109 |30453 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33173 |1109 |30455 |5 |1 |2774A4|0 |2 |0 |
+ROW |33174 |1110 |30471 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33175 |1110 |30470 |0 |1 |2774A4|0 |2 |0 |
+ROW |33176 |1110 |30466 |0 |2 |F63100|0 |2 |0 |
+ROW |33177 |1110 |30441 |0 |3 |A54F10|0 |2 |0 |
+ROW |33178 |1111 |30463 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33179 |1111 |30452 |0 |1 |2774A4|0 |2 |0 |
+ROW |33180 |1111 |30451 |0 |2 |F63100|0 |2 |0 |
+ROW |33181 |1111 |30437 |0 |3 |A54F10|0 |2 |0 |
+ROW |33182 |1112 |30456 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33183 |1112 |30457 |0 |1 |2774A4|0 |2 |0 |
+ROW |33184 |1112 |30458 |0 |2 |F63100|0 |2 |0 |
+ROW |33185 |1112 |30459 |0 |3 |A54F10|0 |2 |0 |
+ROW |33186 |1113 |30442 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33187 |1113 |30444 |0 |1 |2774A4|0 |2 |0 |
+ROW |33188 |1113 |30445 |0 |2 |F63100|0 |2 |0 |
+ROW |33189 |1114 |30446 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33190 |1114 |30447 |0 |1 |2774A4|0 |2 |0 |
+ROW |33191 |1114 |31168 |0 |2 |F63100|0 |2 |0 |
+ROW |33192 |1114 |30449 |0 |3 |A54F10|0 |2 |0 |
+ROW |33193 |1136 |30659 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33194 |1136 |30661 |5 |1 |2774A4|0 |2 |0 |
+ROW |33195 |1137 |30677 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33196 |1137 |30676 |0 |1 |2774A4|0 |2 |0 |
+ROW |33197 |1137 |30672 |0 |2 |F63100|0 |2 |0 |
+ROW |33198 |1137 |30647 |0 |3 |A54F10|0 |2 |0 |
+ROW |33199 |1138 |30669 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33200 |1138 |30658 |0 |1 |2774A4|0 |2 |0 |
+ROW |33201 |1138 |30657 |0 |2 |F63100|0 |2 |0 |
+ROW |33202 |1138 |30643 |0 |3 |A54F10|0 |2 |0 |
+ROW |33203 |1139 |30662 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33204 |1139 |30663 |0 |1 |2774A4|0 |2 |0 |
+ROW |33205 |1139 |30664 |0 |2 |F63100|0 |2 |0 |
+ROW |33206 |1139 |30665 |0 |3 |A54F10|0 |2 |0 |
+ROW |33207 |1140 |30648 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33208 |1140 |30650 |0 |1 |2774A4|0 |2 |0 |
+ROW |33209 |1140 |30651 |0 |2 |F63100|0 |2 |0 |
+ROW |33210 |1141 |30652 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33211 |1141 |30653 |0 |1 |2774A4|0 |2 |0 |
+ROW |33212 |1141 |31172 |0 |2 |F63100|0 |2 |0 |
+ROW |33213 |1141 |30655 |0 |3 |A54F10|0 |2 |0 |
+ROW |33214 |1115 |30506 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33215 |1115 |30507 |5 |1 |2774A4|0 |2 |0 |
+ROW |33216 |1116 |30504 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33217 |1116 |30505 |0 |1 |2774A4|0 |2 |0 |
+ROW |33218 |1116 |30518 |0 |2 |F63100|0 |2 |0 |
+ROW |33219 |1116 |30492 |0 |3 |A54F10|0 |2 |0 |
+ROW |33220 |1117 |30493 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33221 |1117 |30500 |0 |1 |2774A4|0 |2 |0 |
+ROW |33222 |1117 |30486 |0 |2 |F63100|0 |2 |0 |
+ROW |33223 |1117 |30488 |0 |3 |A54F10|0 |2 |0 |
+ROW |33224 |1118 |30508 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33225 |1118 |30509 |0 |1 |2774A4|0 |2 |0 |
+ROW |33226 |1118 |30503 |0 |2 |F63100|0 |2 |0 |
+ROW |33227 |1118 |30510 |0 |3 |A54F10|0 |2 |0 |
+ROW |33228 |1119 |30491 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33229 |1119 |30494 |0 |1 |2774A4|0 |2 |0 |
+ROW |33230 |1119 |30495 |0 |2 |F63100|0 |2 |0 |
+ROW |33231 |1120 |30496 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33232 |1120 |30497 |0 |1 |2774A4|0 |2 |0 |
+ROW |33233 |1120 |31176 |0 |2 |F63100|0 |2 |0 |
+ROW |33234 |1120 |30499 |0 |3 |A54F10|0 |2 |0 |
+ROW |33235 |1262 |31718 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33236 |1262 |31719 |0 |1 |2774A4|0 |2 |0 |
+ROW |33237 |1263 |31722 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33238 |1263 |31724 |0 |1 |2774A4|0 |2 |0 |
+ROW |33239 |1264 |31630 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33240 |1264 |31683 |0 |1 |2774A4|0 |2 |0 |
+ROW |33241 |1265 |31668 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33242 |1265 |31702 |0 |1 |2774A4|0 |2 |0 |
+ROW |33243 |1265 |31666 |0 |2 |F63100|0 |2 |0 |
+ROW |33244 |1266 |31673 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33245 |1266 |31704 |0 |1 |2774A4|0 |2 |0 |
+ROW |33246 |1267 |31690 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33247 |1267 |31672 |0 |1 |2774A4|0 |2 |0 |
+ROW |33248 |1268 |31632 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33249 |1268 |31655 |0 |1 |2774A4|0 |2 |0 |
+ROW |33250 |1269 |31650 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33251 |1269 |31648 |0 |1 |2774A4|0 |2 |0 |
+ROW |33252 |1269 |31651 |0 |2 |F63100|0 |2 |0 |
+ROW |33253 |1269 |31646 |0 |3 |A54F10|0 |2 |0 |
+ROW |33254 |1269 |31653 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |33255 |1270 |31660 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33256 |1270 |31671 |0 |1 |2774A4|0 |2 |0 |
+ROW |33257 |1270 |31662 |0 |2 |F63100|0 |2 |0 |
+ROW |33258 |1270 |31661 |0 |3 |A54F10|0 |2 |0 |
+ROW |33259 |1270 |31659 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |33260 |1270 |31658 |0 |5 |6C59DC|0 |2 |0 |
+ROW |33261 |1237 |31442 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33262 |1237 |31443 |0 |1 |2774A4|0 |2 |0 |
+ROW |33263 |1238 |31786 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33264 |1238 |31451 |0 |1 |2774A4|0 |2 |0 |
+ROW |33265 |1271 |31770 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33266 |1271 |31771 |0 |1 |2774A4|0 |2 |0 |
+ROW |33267 |1272 |31755 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33268 |1272 |31774 |0 |1 |2774A4|0 |2 |0 |
+ROW |33269 |1272 |31753 |0 |2 |F63100|0 |2 |0 |
+ROW |33270 |1273 |31730 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33271 |1273 |31759 |0 |1 |2774A4|0 |2 |0 |
+ROW |33272 |1274 |31745 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33273 |1274 |31758 |0 |1 |2774A4|0 |2 |0 |
+ROW |33274 |1275 |31731 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33275 |1275 |31732 |0 |1 |2774A4|0 |2 |0 |
+ROW |33276 |1276 |31739 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33277 |1276 |31736 |0 |1 |2774A4|0 |2 |0 |
+ROW |33278 |1276 |31740 |0 |2 |F63100|0 |2 |0 |
+ROW |33279 |1276 |31737 |0 |3 |A54F10|0 |2 |0 |
+ROW |33280 |1276 |31741 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |33281 |1277 |31746 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33282 |1277 |31747 |0 |1 |2774A4|0 |2 |0 |
+ROW |33283 |1277 |31749 |0 |2 |F63100|0 |2 |0 |
+ROW |33284 |1277 |31748 |0 |3 |A54F10|0 |2 |0 |
+ROW |33285 |1277 |31757 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |33286 |1277 |31744 |0 |5 |6C59DC|0 |2 |0 |
+ROW |33287 |814 |28730 |0 |0 |66BB6A|0 |2 |0 |
+ROW |33288 |814 |28728 |0 |1 |42A5F5|0 |2 |0 |
+ROW |33289 |815 |28712 |0 |0 |66BB6A|0 |2 |0 |
+ROW |33290 |816 |28733 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33291 |816 |28715 |0 |1 |F63100|0 |2 |0 |
+ROW |33292 |816 |28729 |0 |2 |2774A4|0 |2 |0 |
+ROW |33293 |816 |28732 |0 |3 |A54F10|0 |2 |0 |
+ROW |33294 |817 |28716 |0 |0 |EC407A|0 |2 |0 |
+ROW |33295 |818 |28726 |0 |0 |4CAF50|1 |2 |0 |
+ROW |33296 |818 |28723 |0 |1 |03A9F4|1 |2 |0 |
+ROW |33297 |818 |28720 |0 |2 |9C27B0|1 |2 |0 |
+ROW |33298 |818 |28725 |5 |3 |81C784|0 |2 |0 |
+ROW |33299 |818 |28722 |5 |4 |90CAF9|0 |2 |0 |
+ROW |33300 |818 |28719 |5 |5 |CE93D8|0 |2 |0 |
+ROW |33301 |819 |28727 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33302 |819 |28724 |0 |1 |F63100|0 |2 |0 |
+ROW |33303 |819 |28721 |0 |2 |2774A4|0 |2 |0 |
+ROW |33304 |820 |28740 |5 |0 |66BB6A|0 |2 |0 |
+ROW |33305 |820 |28739 |0 |1 |42A5F5|1 |2 |0 |
+ROW |33306 |821 |28738 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33307 |821 |28737 |0 |1 |F63100|0 |2 |0 |
+ROW |33308 |821 |28736 |0 |2 |2774A4|0 |2 |0 |
+ROW |33309 |821 |28735 |0 |3 |A54F10|0 |2 |0 |
+ROW |33310 |821 |28734 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |33311 |822 |28693 |0 |0 |1A7C11|1 |2 |0 |
+ROW |33312 |822 |28698 |0 |1 |F63100|1 |2 |0 |
+ROW |33313 |822 |28694 |0 |2 |2774A4|1 |2 |0 |
+ROW |33314 |822 |28697 |0 |3 |A54F10|1 |2 |0 |
+ROW |33315 |822 |28702 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |33316 |822 |28696 |0 |5 |6C59DC|0 |2 |0 |
+ROW |33317 |823 |28700 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33318 |823 |28699 |0 |1 |F63100|0 |2 |0 |
+ROW |33319 |823 |28701 |0 |2 |2774A4|1 |2 |0 |
+ROW |33320 |823 |28695 |0 |3 |A54F10|1 |2 |0 |
+ROW |33321 |824 |28708 |5 |0 |C8E6C9|1 |2 |0 |
+ROW |33322 |824 |28709 |0 |1 |6C59DC|0 |2 |0 |
+ROW |33323 |824 |28704 |0 |2 |1A7C11|1 |2 |0 |
+ROW |33324 |824 |28705 |0 |3 |F63100|1 |2 |0 |
+ROW |33325 |824 |28706 |0 |4 |2774A4|1 |2 |0 |
+ROW |33326 |824 |28707 |0 |5 |A54F10|1 |2 |0 |
+ROW |33327 |824 |28703 |0 |6 |AC8C14|1 |2 |0 |
+ROW |33328 |825 |28674 |5 |0 |A5D6A7|0 |2 |0 |
+ROW |33329 |825 |28673 |0 |1 |039BE5|1 |2 |0 |
+ROW |33330 |826 |28677 |0 |0 |42A5F5|0 |2 |0 |
+ROW |33331 |827 |28689 |0 |0 |1A7C11|1 |2 |0 |
+ROW |33332 |827 |28688 |0 |1 |F63100|1 |2 |0 |
+ROW |33333 |827 |28690 |0 |2 |2774A4|1 |2 |0 |
+ROW |33334 |827 |28691 |0 |3 |A54F10|1 |2 |0 |
+ROW |33335 |828 |28684 |0 |0 |66BB6A|0 |2 |0 |
+ROW |33336 |828 |28681 |0 |1 |03A9F4|1 |2 |0 |
+ROW |33337 |829 |28710 |0 |0 |29B6F6|0 |2 |0 |
+ROW |33338 |829 |28692 |0 |1 |AB47BC|1 |2 |0 |
+ROW |33339 |1210 |31269 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33340 |1210 |31252 |0 |1 |2774A4|0 |2 |0 |
+ROW |33341 |1210 |31251 |0 |2 |F63100|0 |2 |0 |
+ROW |33342 |1210 |31250 |0 |3 |A54F10|0 |2 |0 |
+ROW |33343 |1210 |31249 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |33344 |1210 |31248 |0 |5 |6C59DC|0 |2 |0 |
+ROW |33345 |1210 |31246 |0 |6 |AC8C14|0 |2 |0 |
+ROW |33346 |1210 |31245 |0 |7 |611F27|0 |2 |0 |
+ROW |33347 |1210 |31247 |0 |8 |F230E0|0 |2 |0 |
+ROW |33348 |1210 |31247 |0 |9 |FFAD40|0 |2 |0 |
+ROW |33349 |1211 |31243 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33350 |1212 |31266 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33351 |1212 |31265 |0 |1 |2774A4|0 |2 |0 |
+ROW |33352 |1212 |31263 |0 |2 |F63100|0 |2 |0 |
+ROW |33353 |1212 |31262 |0 |3 |A54F10|0 |2 |0 |
+ROW |33354 |1212 |31260 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |33355 |1212 |31259 |0 |5 |6C59DC|0 |2 |0 |
+ROW |33356 |1212 |31258 |0 |6 |AC8C14|0 |2 |0 |
+ROW |33357 |1212 |31256 |0 |7 |611F27|0 |2 |0 |
+ROW |33358 |1212 |31257 |0 |8 |F230E0|0 |2 |0 |
+ROW |33359 |1212 |31244 |0 |9 |FFAD40|0 |2 |0 |
+ROW |33360 |1212 |31255 |0 |10 |40CDFF|0 |2 |0 |
+ROW |33361 |1212 |31254 |0 |11 |40FFA0|0 |2 |0 |
+ROW |33362 |1212 |31253 |0 |12 |AE4500|0 |2 |0 |
+ROW |33363 |1213 |31242 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33364 |1087 |30346 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33365 |1087 |30345 |0 |1 |2774A4|0 |2 |0 |
+ROW |33366 |1088 |30350 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33367 |1088 |30349 |5 |1 |2774A4|0 |2 |0 |
+ROW |33368 |1089 |30396 |2 |0 |1A7C11|0 |2 |0 |
+ROW |33369 |1090 |30398 |2 |0 |1A7C11|0 |2 |0 |
+ROW |33370 |1091 |30322 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33371 |1091 |30277 |5 |1 |2774A4|0 |2 |0 |
+ROW |33372 |1092 |30284 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33373 |1093 |30313 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33374 |1093 |30314 |0 |1 |2774A4|0 |2 |0 |
+ROW |33375 |1093 |30315 |5 |2 |F63100|0 |2 |0 |
+ROW |33376 |1093 |30316 |0 |3 |A54F10|0 |2 |0 |
+ROW |33377 |1094 |30279 |2 |0 |1A7C11|0 |2 |0 |
+ROW |33378 |1094 |30280 |2 |1 |2774A4|0 |2 |0 |
+ROW |33379 |1095 |30290 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33380 |1095 |30293 |0 |1 |2774A4|0 |2 |0 |
+ROW |33381 |1096 |30318 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33382 |1096 |30308 |2 |1 |2774A4|0 |2 |0 |
+ROW |33383 |1096 |30320 |2 |2 |F63100|0 |2 |0 |
+ROW |33384 |1097 |30317 |2 |0 |1A7C11|0 |2 |0 |
+ROW |33385 |1098 |30289 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33386 |1098 |30291 |5 |1 |2774A4|0 |2 |0 |
+ROW |33387 |1099 |30334 |2 |0 |1A7C11|0 |2 |0 |
+ROW |33388 |1099 |30325 |2 |1 |2774A4|0 |2 |0 |
+ROW |33389 |1100 |30306 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33390 |1101 |30274 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33391 |1102 |30281 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33392 |1060 |30159 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33393 |1061 |30165 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33394 |1062 |30171 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33395 |1063 |30177 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33396 |1064 |30183 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33397 |1065 |30161 |0 |0 |969696|0 |9 |2 |
+ROW |33398 |1065 |30162 |0 |1 |C80000|0 |9 |0 |
+ROW |33399 |1066 |30167 |0 |0 |969696|0 |9 |2 |
+ROW |33400 |1066 |30168 |0 |1 |C80000|0 |9 |0 |
+ROW |33401 |1067 |30173 |0 |0 |969696|0 |9 |2 |
+ROW |33402 |1067 |30174 |0 |1 |C80000|0 |9 |0 |
+ROW |33403 |1068 |30179 |0 |0 |969696|0 |9 |2 |
+ROW |33404 |1068 |30180 |0 |1 |C80000|0 |9 |0 |
+ROW |33405 |1069 |30185 |0 |0 |969696|0 |9 |2 |
+ROW |33406 |1069 |30186 |0 |1 |C80000|0 |9 |0 |
+ROW |33407 |1070 |30142 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33408 |1071 |30143 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33409 |1072 |30144 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33410 |1073 |30145 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33411 |1074 |30146 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33412 |741 |27084 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33413 |741 |27085 |2 |1 |2774A4|0 |2 |0 |
+ROW |33414 |741 |27083 |0 |2 |F63100|1 |2 |0 |
+ROW |33415 |741 |27086 |0 |3 |A54F10|1 |2 |0 |
+ROW |33416 |741 |27082 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33417 |741 |27079 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33418 |742 |27622 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33419 |742 |27625 |2 |1 |2774A4|0 |2 |0 |
+ROW |33420 |742 |27624 |0 |2 |F63100|1 |2 |0 |
+ROW |33421 |742 |27621 |0 |3 |A54F10|1 |2 |0 |
+ROW |33422 |742 |27623 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33423 |742 |27620 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33424 |743 |27979 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33425 |743 |27982 |2 |1 |2774A4|0 |2 |0 |
+ROW |33426 |743 |27981 |0 |2 |F63100|1 |2 |0 |
+ROW |33427 |743 |27978 |0 |3 |A54F10|1 |2 |0 |
+ROW |33428 |743 |27980 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33429 |743 |27977 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33430 |740 |28008 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33431 |740 |28011 |2 |1 |2774A4|0 |2 |0 |
+ROW |33432 |740 |28010 |0 |2 |F63100|1 |2 |0 |
+ROW |33433 |740 |28007 |0 |3 |A54F10|1 |2 |0 |
+ROW |33434 |740 |28009 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33435 |740 |28006 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33436 |745 |27104 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33437 |745 |27105 |2 |1 |2774A4|0 |2 |0 |
+ROW |33438 |745 |27103 |0 |2 |F63100|1 |2 |0 |
+ROW |33439 |745 |27106 |0 |3 |A54F10|1 |2 |0 |
+ROW |33440 |745 |27102 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33441 |745 |27099 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33442 |746 |27183 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33443 |746 |27186 |2 |1 |2774A4|0 |2 |0 |
+ROW |33444 |746 |27185 |0 |2 |F63100|1 |2 |0 |
+ROW |33445 |746 |27182 |0 |3 |A54F10|1 |2 |0 |
+ROW |33446 |746 |27184 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33447 |746 |27181 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33448 |747 |27218 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33449 |747 |27221 |2 |1 |2774A4|0 |2 |0 |
+ROW |33450 |747 |27220 |0 |2 |F63100|1 |2 |0 |
+ROW |33451 |747 |27217 |0 |3 |A54F10|1 |2 |0 |
+ROW |33452 |747 |27219 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33453 |747 |27216 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33454 |748 |27254 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33455 |748 |27257 |2 |1 |2774A4|0 |2 |0 |
+ROW |33456 |748 |27256 |0 |2 |F63100|1 |2 |0 |
+ROW |33457 |748 |27253 |0 |3 |A54F10|1 |2 |0 |
+ROW |33458 |748 |27255 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33459 |748 |27252 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33460 |749 |27275 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33461 |749 |27278 |2 |1 |2774A4|0 |2 |0 |
+ROW |33462 |749 |27277 |0 |2 |F63100|1 |2 |0 |
+ROW |33463 |749 |27274 |0 |3 |A54F10|1 |2 |0 |
+ROW |33464 |749 |27276 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33465 |749 |27273 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33466 |750 |27324 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33467 |750 |27327 |2 |1 |2774A4|0 |2 |0 |
+ROW |33468 |750 |27326 |0 |2 |F63100|1 |2 |0 |
+ROW |33469 |750 |27323 |0 |3 |A54F10|1 |2 |0 |
+ROW |33470 |750 |27325 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33471 |750 |27322 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33472 |752 |27453 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33473 |752 |27456 |2 |1 |2774A4|0 |2 |0 |
+ROW |33474 |752 |27455 |0 |2 |F63100|1 |2 |0 |
+ROW |33475 |752 |27452 |0 |3 |A54F10|1 |2 |0 |
+ROW |33476 |752 |27454 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33477 |752 |27451 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33478 |753 |27489 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33479 |753 |27492 |2 |1 |2774A4|0 |2 |0 |
+ROW |33480 |753 |27491 |0 |2 |F63100|1 |2 |0 |
+ROW |33481 |753 |27488 |0 |3 |A54F10|1 |2 |0 |
+ROW |33482 |753 |27490 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33483 |753 |27487 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33484 |754 |27523 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33485 |754 |27526 |2 |1 |2774A4|0 |2 |0 |
+ROW |33486 |754 |27525 |0 |2 |F63100|1 |2 |0 |
+ROW |33487 |754 |27522 |0 |3 |A54F10|1 |2 |0 |
+ROW |33488 |754 |27524 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33489 |754 |27521 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33490 |755 |27559 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33491 |755 |27562 |2 |1 |2774A4|0 |2 |0 |
+ROW |33492 |755 |27561 |0 |2 |F63100|1 |2 |0 |
+ROW |33493 |755 |27558 |0 |3 |A54F10|1 |2 |0 |
+ROW |33494 |755 |27560 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33495 |755 |27557 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33496 |756 |27645 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33497 |756 |27648 |2 |1 |2774A4|0 |2 |0 |
+ROW |33498 |756 |27647 |0 |2 |F63100|1 |2 |0 |
+ROW |33499 |756 |27644 |0 |3 |A54F10|1 |2 |0 |
+ROW |33500 |756 |27646 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33501 |756 |27643 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33502 |758 |27725 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33503 |758 |27728 |2 |1 |2774A4|0 |2 |0 |
+ROW |33504 |758 |27727 |0 |2 |F63100|1 |2 |0 |
+ROW |33505 |758 |27724 |0 |3 |A54F10|1 |2 |0 |
+ROW |33506 |758 |27726 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33507 |758 |27723 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33508 |759 |27759 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33509 |759 |27762 |2 |1 |2774A4|0 |2 |0 |
+ROW |33510 |759 |27761 |0 |2 |F63100|1 |2 |0 |
+ROW |33511 |759 |27758 |0 |3 |A54F10|1 |2 |0 |
+ROW |33512 |759 |27760 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33513 |759 |27757 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33514 |760 |27791 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33515 |760 |27794 |2 |1 |2774A4|0 |2 |0 |
+ROW |33516 |760 |27793 |0 |2 |F63100|1 |2 |0 |
+ROW |33517 |760 |27790 |0 |3 |A54F10|1 |2 |0 |
+ROW |33518 |760 |27792 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33519 |760 |27789 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33520 |762 |27875 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33521 |762 |27878 |2 |1 |2774A4|0 |2 |0 |
+ROW |33522 |762 |27877 |0 |2 |F63100|1 |2 |0 |
+ROW |33523 |762 |27874 |0 |3 |A54F10|1 |2 |0 |
+ROW |33524 |762 |27876 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33525 |762 |27873 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33526 |763 |27912 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33527 |763 |27915 |2 |1 |2774A4|0 |2 |0 |
+ROW |33528 |763 |27914 |0 |2 |F63100|1 |2 |0 |
+ROW |33529 |763 |27911 |0 |3 |A54F10|1 |2 |0 |
+ROW |33530 |763 |27913 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33531 |763 |27910 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33532 |764 |27947 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33533 |764 |27950 |2 |1 |2774A4|0 |2 |0 |
+ROW |33534 |764 |27949 |0 |2 |F63100|1 |2 |0 |
+ROW |33535 |764 |27946 |0 |3 |A54F10|1 |2 |0 |
+ROW |33536 |764 |27948 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33537 |764 |27945 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33538 |773 |28121 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33539 |773 |28124 |2 |1 |2774A4|0 |2 |0 |
+ROW |33540 |773 |28123 |0 |2 |F63100|1 |2 |0 |
+ROW |33541 |773 |28120 |0 |3 |A54F10|1 |2 |0 |
+ROW |33542 |773 |28122 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33543 |773 |28119 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33544 |778 |28178 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33545 |778 |28181 |2 |1 |2774A4|0 |2 |0 |
+ROW |33546 |778 |28180 |0 |2 |F63100|1 |2 |0 |
+ROW |33547 |778 |28177 |0 |3 |A54F10|1 |2 |0 |
+ROW |33548 |778 |28179 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33549 |778 |28176 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33550 |785 |28226 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33551 |785 |28229 |2 |1 |2774A4|0 |2 |0 |
+ROW |33552 |785 |28228 |0 |2 |F63100|1 |2 |0 |
+ROW |33553 |785 |28225 |0 |3 |A54F10|1 |2 |0 |
+ROW |33554 |785 |28227 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33555 |785 |28224 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33556 |790 |28296 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33557 |790 |28299 |2 |1 |2774A4|0 |2 |0 |
+ROW |33558 |790 |28298 |0 |2 |F63100|1 |2 |0 |
+ROW |33559 |790 |28295 |0 |3 |A54F10|1 |2 |0 |
+ROW |33560 |790 |28297 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33561 |790 |28294 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33562 |865 |28971 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33563 |865 |28974 |2 |1 |2774A4|0 |2 |0 |
+ROW |33564 |865 |28973 |0 |2 |F63100|1 |2 |0 |
+ROW |33565 |865 |28970 |0 |3 |A54F10|1 |2 |0 |
+ROW |33566 |865 |28972 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33567 |865 |28969 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33568 |766 |27124 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33569 |766 |27125 |2 |1 |2774A4|0 |2 |0 |
+ROW |33570 |766 |27123 |0 |2 |F63100|1 |2 |0 |
+ROW |33571 |766 |27126 |0 |3 |A54F10|1 |2 |0 |
+ROW |33572 |766 |27122 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33573 |766 |27119 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33574 |886 |29080 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33575 |886 |29083 |2 |1 |2774A4|0 |2 |0 |
+ROW |33576 |886 |29082 |0 |2 |F63100|1 |2 |0 |
+ROW |33577 |886 |29079 |0 |3 |A54F10|1 |2 |0 |
+ROW |33578 |886 |29081 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33579 |886 |29078 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33580 |668 |27208 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33581 |1032 |30088 |2 |0 |1A7C11|0 |2 |0 |
+ROW |33582 |1032 |30087 |5 |1 |2774A4|0 |2 |0 |
+ROW |33583 |1033 |30089 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33584 |671 |27240 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33585 |1034 |30093 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33586 |675 |27294 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33587 |676 |27299 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33588 |677 |27301 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33589 |1035 |30094 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33590 |1036 |30095 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33591 |1037 |30096 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33592 |1038 |30101 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33593 |1039 |30102 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33594 |1040 |30103 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33595 |1041 |30104 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33596 |786 |28246 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33597 |787 |28247 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33598 |687 |27417 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33599 |688 |27427 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33600 |691 |27376 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33601 |692 |27380 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33602 |694 |27478 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33603 |1042 |30105 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33604 |1043 |30107 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33605 |698 |27511 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33606 |1044 |30108 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33607 |701 |27547 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33608 |1045 |27591 |2 |0 |1A7C11|0 |2 |0 |
+ROW |33609 |1045 |30110 |5 |1 |2774A4|0 |2 |0 |
+ROW |33610 |1046 |30111 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33611 |704 |27586 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33612 |708 |27671 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33613 |1047 |30112 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33614 |1048 |30114 |2 |0 |1A7C11|0 |2 |0 |
+ROW |33615 |1048 |30113 |5 |1 |2774A4|0 |2 |0 |
+ROW |33616 |1049 |30115 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33617 |775 |28143 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33618 |714 |27753 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33619 |1050 |30116 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33620 |856 |28894 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33621 |1051 |30118 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33622 |724 |27904 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33623 |1052 |27907 |0 |0 |969696|0 |9 |2 |
+ROW |33624 |1052 |27908 |0 |1 |C80000|0 |9 |0 |
+ROW |33625 |1053 |30120 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33626 |727 |27936 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33627 |1054 |27935 |2 |0 |1A7C11|0 |2 |0 |
+ROW |33628 |1054 |30122 |5 |1 |2774A4|0 |2 |0 |
+ROW |33629 |1055 |30123 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33630 |730 |27975 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33631 |1056 |30126 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33632 |733 |28003 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33633 |1057 |30131 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33634 |736 |28031 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33635 |1058 |30136 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33636 |1214 |31276 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33637 |1214 |31277 |5 |1 |2774A4|0 |2 |0 |
+ROW |33638 |1215 |31279 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33639 |1215 |31280 |5 |1 |2774A4|0 |2 |0 |
+ROW |33640 |1216 |31282 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33641 |1216 |31283 |5 |1 |2774A4|0 |2 |0 |
+ROW |33642 |1217 |31286 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33643 |1217 |31289 |5 |1 |2774A4|0 |2 |0 |
+ROW |33644 |1218 |31292 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33645 |1218 |31295 |5 |1 |2774A4|0 |2 |0 |
+ROW |33646 |1219 |31298 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33647 |1219 |31301 |5 |1 |2774A4|0 |2 |0 |
+ROW |33648 |1220 |31285 |0 |0 |1A7C11|1 |2 |0 |
+ROW |33649 |1220 |31288 |5 |1 |2774A4|0 |2 |0 |
+ROW |33650 |1221 |31291 |0 |0 |1A7C11|1 |2 |0 |
+ROW |33651 |1221 |31294 |5 |1 |2774A4|0 |2 |0 |
+ROW |33652 |1222 |31297 |0 |0 |1A7C11|1 |2 |0 |
+ROW |33653 |1222 |31300 |5 |1 |2774A4|0 |2 |0 |
+ROW |33654 |887 |29211 |0 |0 |969696|0 |9 |2 |
+ROW |33655 |887 |29210 |0 |1 |C80000|0 |9 |0 |
+ROW |33656 |888 |29225 |0 |0 |969696|0 |9 |2 |
+ROW |33657 |888 |29224 |0 |1 |C80000|0 |9 |0 |
+ROW |33658 |889 |29239 |0 |0 |969696|0 |9 |2 |
+ROW |33659 |889 |29238 |0 |1 |C80000|0 |9 |0 |
+ROW |33660 |899 |29216 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33661 |899 |29217 |2 |1 |2774A4|0 |2 |0 |
+ROW |33662 |899 |29218 |0 |2 |F63100|1 |2 |0 |
+ROW |33663 |899 |29219 |0 |3 |A54F10|1 |2 |0 |
+ROW |33664 |899 |29220 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33665 |899 |29221 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33666 |900 |29230 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33667 |900 |29231 |2 |1 |2774A4|0 |2 |0 |
+ROW |33668 |900 |29232 |0 |2 |F63100|1 |2 |0 |
+ROW |33669 |900 |29233 |0 |3 |A54F10|1 |2 |0 |
+ROW |33670 |900 |29234 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33671 |900 |29235 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33672 |901 |29244 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33673 |901 |29245 |2 |1 |2774A4|0 |2 |0 |
+ROW |33674 |901 |29246 |0 |2 |F63100|1 |2 |0 |
+ROW |33675 |901 |29247 |0 |3 |A54F10|1 |2 |0 |
+ROW |33676 |901 |29248 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33677 |901 |29249 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33678 |911 |29089 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33679 |911 |29102 |0 |1 |2774A4|0 |2 |0 |
+ROW |33680 |912 |29126 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33681 |912 |29139 |0 |1 |2774A4|0 |2 |0 |
+ROW |33682 |913 |29163 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33683 |913 |29176 |0 |1 |2774A4|0 |2 |0 |
+ROW |33684 |908 |29098 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33685 |908 |29097 |0 |1 |2774A4|0 |2 |0 |
+ROW |33686 |908 |29095 |0 |2 |F63100|0 |2 |0 |
+ROW |33687 |908 |29088 |0 |3 |A54F10|0 |2 |0 |
+ROW |33688 |908 |29094 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |33689 |908 |29093 |0 |5 |6C59DC|0 |2 |0 |
+ROW |33690 |908 |29092 |0 |6 |AC8C14|0 |2 |0 |
+ROW |33691 |908 |29091 |0 |7 |611F27|0 |2 |0 |
+ROW |33692 |908 |29090 |0 |8 |F230E0|0 |2 |0 |
+ROW |33693 |909 |29135 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33694 |909 |29134 |0 |1 |2774A4|0 |2 |0 |
+ROW |33695 |909 |29132 |0 |2 |F63100|0 |2 |0 |
+ROW |33696 |909 |29125 |0 |3 |A54F10|0 |2 |0 |
+ROW |33697 |909 |29131 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |33698 |909 |29130 |0 |5 |6C59DC|0 |2 |0 |
+ROW |33699 |909 |29129 |0 |6 |AC8C14|0 |2 |0 |
+ROW |33700 |909 |29128 |0 |7 |611F27|0 |2 |0 |
+ROW |33701 |909 |29127 |0 |8 |F230E0|0 |2 |0 |
+ROW |33702 |910 |29172 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33703 |910 |29171 |0 |1 |2774A4|0 |2 |0 |
+ROW |33704 |910 |29169 |0 |2 |F63100|0 |2 |0 |
+ROW |33705 |910 |29162 |0 |3 |A54F10|0 |2 |0 |
+ROW |33706 |910 |29168 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |33707 |910 |29167 |0 |5 |6C59DC|0 |2 |0 |
+ROW |33708 |910 |29166 |0 |6 |AC8C14|0 |2 |0 |
+ROW |33709 |910 |29165 |0 |7 |611F27|0 |2 |0 |
+ROW |33710 |910 |29164 |0 |8 |F230E0|0 |2 |0 |
+ROW |33711 |905 |29198 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33712 |906 |29199 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33713 |907 |29200 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33714 |917 |29104 |2 |0 |1A7C11|0 |2 |0 |
+ROW |33715 |917 |29105 |5 |1 |2774A4|0 |2 |0 |
+ROW |33716 |918 |29141 |2 |0 |1A7C11|0 |2 |0 |
+ROW |33717 |918 |29142 |5 |1 |2774A4|0 |2 |0 |
+ROW |33718 |919 |29178 |2 |0 |1A7C11|0 |2 |0 |
+ROW |33719 |919 |29179 |5 |1 |2774A4|0 |2 |0 |
+ROW |33720 |914 |31270 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33721 |915 |31271 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33722 |916 |31272 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33723 |923 |29118 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33724 |923 |29119 |0 |1 |2774A4|0 |2 |0 |
+ROW |33725 |923 |29117 |0 |2 |F63100|0 |2 |0 |
+ROW |33726 |924 |29155 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33727 |924 |29156 |0 |1 |2774A4|0 |2 |0 |
+ROW |33728 |924 |29154 |0 |2 |F63100|0 |2 |0 |
+ROW |33729 |925 |29192 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33730 |925 |29193 |0 |1 |2774A4|0 |2 |0 |
+ROW |33731 |925 |29191 |0 |2 |F63100|0 |2 |0 |
+ROW |33732 |920 |29107 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33733 |920 |29106 |0 |1 |2774A4|0 |2 |0 |
+ROW |33734 |921 |29144 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33735 |921 |29143 |0 |1 |2774A4|0 |2 |0 |
+ROW |33736 |922 |29181 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33737 |922 |29180 |0 |1 |2774A4|0 |2 |0 |
+ROW |33738 |902 |29096 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33739 |902 |29101 |0 |1 |2774A4|0 |2 |0 |
+ROW |33740 |902 |29100 |0 |2 |F63100|0 |2 |0 |
+ROW |33741 |902 |29087 |0 |3 |A54F10|1 |2 |0 |
+ROW |33742 |903 |29133 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33743 |903 |29138 |0 |1 |2774A4|0 |2 |0 |
+ROW |33744 |903 |29137 |0 |2 |F63100|0 |2 |0 |
+ROW |33745 |903 |29124 |0 |3 |A54F10|1 |2 |0 |
+ROW |33746 |904 |29170 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33747 |904 |29175 |0 |1 |2774A4|0 |2 |0 |
+ROW |33748 |904 |29174 |0 |2 |F63100|0 |2 |0 |
+ROW |33749 |904 |29161 |0 |3 |A54F10|1 |2 |0 |
+ROW |33750 |1223 |31307 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33751 |1223 |31308 |5 |1 |2774A4|0 |2 |0 |
+ROW |33752 |1224 |31310 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33753 |1224 |31311 |5 |1 |2774A4|0 |2 |0 |
+ROW |33754 |1225 |31314 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33755 |1225 |31317 |5 |1 |2774A4|0 |2 |0 |
+ROW |33756 |1226 |31320 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33757 |1226 |31323 |5 |1 |2774A4|0 |2 |0 |
+ROW |33758 |1227 |31313 |0 |0 |1A7C11|1 |2 |0 |
+ROW |33759 |1227 |31316 |5 |1 |2774A4|0 |2 |0 |
+ROW |33760 |1228 |31319 |0 |0 |1A7C11|1 |2 |0 |
+ROW |33761 |1228 |31322 |5 |1 |2774A4|0 |2 |0 |
+ROW |33762 |926 |29356 |0 |0 |969696|0 |9 |2 |
+ROW |33763 |926 |29355 |0 |1 |C80000|0 |9 |0 |
+ROW |33764 |927 |29370 |0 |0 |969696|0 |9 |2 |
+ROW |33765 |927 |29369 |0 |1 |C80000|0 |9 |0 |
+ROW |33766 |934 |29361 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33767 |934 |29362 |2 |1 |2774A4|0 |2 |0 |
+ROW |33768 |934 |29363 |0 |2 |F63100|1 |2 |0 |
+ROW |33769 |934 |29364 |0 |3 |A54F10|1 |2 |0 |
+ROW |33770 |934 |29365 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33771 |934 |29366 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33772 |935 |29375 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33773 |935 |29376 |2 |1 |2774A4|0 |2 |0 |
+ROW |33774 |935 |29377 |0 |2 |F63100|1 |2 |0 |
+ROW |33775 |935 |29378 |0 |3 |A54F10|1 |2 |0 |
+ROW |33776 |935 |29379 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33777 |935 |29380 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33778 |942 |29275 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33779 |942 |29288 |0 |1 |2774A4|0 |2 |0 |
+ROW |33780 |943 |29312 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33781 |943 |29325 |0 |1 |2774A4|0 |2 |0 |
+ROW |33782 |940 |29284 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33783 |940 |29283 |0 |1 |2774A4|0 |2 |0 |
+ROW |33784 |940 |29281 |0 |2 |F63100|0 |2 |0 |
+ROW |33785 |940 |29274 |0 |3 |A54F10|0 |2 |0 |
+ROW |33786 |940 |29280 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |33787 |940 |29279 |0 |5 |6C59DC|0 |2 |0 |
+ROW |33788 |940 |29278 |0 |6 |AC8C14|0 |2 |0 |
+ROW |33789 |940 |29277 |0 |7 |611F27|0 |2 |0 |
+ROW |33790 |940 |29276 |0 |8 |F230E0|0 |2 |0 |
+ROW |33791 |941 |29321 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33792 |941 |29320 |0 |1 |2774A4|0 |2 |0 |
+ROW |33793 |941 |29318 |0 |2 |F63100|0 |2 |0 |
+ROW |33794 |941 |29311 |0 |3 |A54F10|0 |2 |0 |
+ROW |33795 |941 |29317 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |33796 |941 |29316 |0 |5 |6C59DC|0 |2 |0 |
+ROW |33797 |941 |29315 |0 |6 |AC8C14|0 |2 |0 |
+ROW |33798 |941 |29314 |0 |7 |611F27|0 |2 |0 |
+ROW |33799 |941 |29313 |0 |8 |F230E0|0 |2 |0 |
+ROW |33800 |938 |29347 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33801 |939 |29348 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33802 |946 |29290 |2 |0 |1A7C11|0 |2 |0 |
+ROW |33803 |946 |29291 |5 |1 |2774A4|0 |2 |0 |
+ROW |33804 |947 |29327 |2 |0 |1A7C11|0 |2 |0 |
+ROW |33805 |947 |29328 |5 |1 |2774A4|0 |2 |0 |
+ROW |33806 |944 |31303 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33807 |945 |31304 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33808 |950 |29304 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33809 |950 |29305 |0 |1 |2774A4|0 |2 |0 |
+ROW |33810 |950 |29303 |0 |2 |F63100|0 |2 |0 |
+ROW |33811 |951 |29341 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33812 |951 |29342 |0 |1 |2774A4|0 |2 |0 |
+ROW |33813 |951 |29340 |0 |2 |F63100|0 |2 |0 |
+ROW |33814 |948 |29293 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33815 |948 |29292 |0 |1 |2774A4|0 |2 |0 |
+ROW |33816 |949 |29330 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33817 |949 |29329 |0 |1 |2774A4|0 |2 |0 |
+ROW |33818 |936 |29282 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33819 |936 |29287 |0 |1 |2774A4|0 |2 |0 |
+ROW |33820 |936 |29286 |0 |2 |F63100|0 |2 |0 |
+ROW |33821 |936 |29273 |0 |3 |A54F10|1 |2 |0 |
+ROW |33822 |937 |29319 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33823 |937 |29324 |0 |1 |2774A4|0 |2 |0 |
+ROW |33824 |937 |29323 |0 |2 |F63100|0 |2 |0 |
+ROW |33825 |937 |29310 |0 |3 |A54F10|1 |2 |0 |
+ROW |33826 |952 |29436 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33827 |952 |29437 |2 |1 |2774A4|0 |2 |0 |
+ROW |33828 |952 |29438 |0 |2 |F63100|1 |2 |0 |
+ROW |33829 |952 |29439 |0 |3 |A54F10|1 |2 |0 |
+ROW |33830 |952 |29441 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33831 |952 |29440 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33832 |955 |29434 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33833 |955 |29435 |5 |1 |2774A4|0 |2 |0 |
+ROW |33834 |954 |29448 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33835 |954 |29449 |5 |1 |2774A4|0 |2 |0 |
+ROW |33836 |956 |29452 |0 |0 |1A7C11|1 |2 |0 |
+ROW |33837 |956 |29453 |5 |1 |2774A4|0 |2 |0 |
+ROW |33838 |953 |29446 |0 |0 |969696|0 |9 |2 |
+ROW |33839 |953 |29432 |0 |1 |C80000|0 |9 |0 |
+ROW |33840 |960 |29405 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33841 |960 |29406 |0 |1 |2774A4|0 |2 |0 |
+ROW |33842 |959 |29426 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33843 |959 |29413 |0 |1 |2774A4|0 |2 |0 |
+ROW |33844 |959 |29411 |0 |2 |F63100|0 |2 |0 |
+ROW |33845 |959 |29410 |0 |3 |A54F10|0 |2 |0 |
+ROW |33846 |959 |29399 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |33847 |959 |29409 |0 |5 |6C59DC|0 |2 |0 |
+ROW |33848 |959 |29412 |0 |6 |AC8C14|0 |2 |0 |
+ROW |33849 |959 |29408 |0 |7 |611F27|0 |2 |0 |
+ROW |33850 |959 |29407 |0 |8 |F230E0|0 |2 |0 |
+ROW |33851 |958 |29427 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33852 |962 |29403 |2 |0 |1A7C11|0 |2 |0 |
+ROW |33853 |962 |29402 |5 |1 |2774A4|0 |2 |0 |
+ROW |33854 |961 |29396 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33855 |963 |29400 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33856 |963 |29401 |0 |1 |2774A4|0 |2 |0 |
+ROW |33857 |957 |29420 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33858 |957 |29419 |0 |1 |2774A4|0 |2 |0 |
+ROW |33859 |957 |29418 |0 |2 |F63100|0 |2 |0 |
+ROW |33860 |957 |29417 |0 |3 |A54F10|1 |2 |0 |
+ROW |33861 |866 |29014 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33862 |866 |29015 |5 |1 |2774A4|0 |2 |0 |
+ROW |33863 |867 |29031 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33864 |867 |29032 |5 |1 |2774A4|0 |2 |0 |
+ROW |33865 |868 |29018 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33866 |868 |29019 |0 |1 |2774A4|0 |2 |0 |
+ROW |33867 |868 |29022 |0 |2 |F63100|0 |2 |0 |
+ROW |33868 |868 |29023 |0 |3 |A54F10|0 |2 |0 |
+ROW |33869 |868 |29020 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |33870 |868 |29024 |0 |5 |6C59DC|0 |2 |0 |
+ROW |33871 |868 |29021 |0 |6 |AC8C14|0 |2 |0 |
+ROW |33872 |868 |29025 |0 |7 |611F27|0 |2 |0 |
+ROW |33873 |868 |29026 |0 |8 |F230E0|0 |2 |0 |
+ROW |33874 |869 |29035 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33875 |869 |29036 |0 |1 |2774A4|0 |2 |0 |
+ROW |33876 |869 |29039 |0 |2 |F63100|0 |2 |0 |
+ROW |33877 |869 |29040 |0 |3 |A54F10|0 |2 |0 |
+ROW |33878 |869 |29037 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |33879 |869 |29041 |0 |5 |6C59DC|0 |2 |0 |
+ROW |33880 |869 |29038 |0 |6 |AC8C14|0 |2 |0 |
+ROW |33881 |869 |29042 |0 |7 |611F27|0 |2 |0 |
+ROW |33882 |869 |29043 |0 |8 |F230E0|0 |2 |0 |
+ROW |33883 |870 |29048 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33884 |871 |29049 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33885 |872 |29028 |0 |0 |969696|0 |9 |2 |
+ROW |33886 |872 |29027 |0 |1 |C80000|0 |9 |0 |
+ROW |33887 |873 |29045 |0 |0 |969696|0 |9 |2 |
+ROW |33888 |873 |29044 |0 |1 |C80000|0 |9 |0 |
+ROW |33889 |882 |28992 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33890 |882 |28991 |0 |1 |2774A4|0 |2 |0 |
+ROW |33891 |883 |29007 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33892 |883 |29006 |0 |1 |2774A4|0 |2 |0 |
+ROW |33893 |876 |28982 |2 |0 |1A7C11|0 |2 |0 |
+ROW |33894 |876 |28983 |5 |1 |2774A4|0 |2 |0 |
+ROW |33895 |877 |28997 |2 |0 |1A7C11|0 |2 |0 |
+ROW |33896 |877 |28998 |5 |1 |2774A4|0 |2 |0 |
+ROW |33897 |874 |28978 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33898 |875 |28993 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33899 |878 |28985 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33900 |878 |28984 |0 |1 |2774A4|0 |2 |0 |
+ROW |33901 |879 |29000 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33902 |879 |28999 |0 |1 |2774A4|0 |2 |0 |
+ROW |33903 |880 |28987 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33904 |880 |28988 |0 |1 |2774A4|0 |2 |0 |
+ROW |33905 |880 |28989 |0 |2 |F63100|0 |2 |0 |
+ROW |33906 |880 |28990 |0 |3 |A54F10|1 |2 |0 |
+ROW |33907 |881 |29002 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33908 |881 |29003 |0 |1 |2774A4|0 |2 |0 |
+ROW |33909 |881 |29004 |0 |2 |F63100|0 |2 |0 |
+ROW |33910 |881 |29005 |0 |3 |A54F10|1 |2 |0 |
+ROW |33911 |964 |29513 |0 |0 |969696|0 |9 |2 |
+ROW |33912 |964 |29512 |0 |1 |C80000|0 |9 |0 |
+ROW |33913 |965 |29522 |0 |0 |969696|0 |9 |2 |
+ROW |33914 |965 |29521 |0 |1 |C80000|0 |9 |0 |
+ROW |33915 |1246 |31461 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33916 |1246 |31464 |2 |1 |2774A4|0 |2 |0 |
+ROW |33917 |1246 |31463 |0 |2 |F63100|1 |2 |0 |
+ROW |33918 |1246 |31460 |0 |3 |A54F10|1 |2 |0 |
+ROW |33919 |1246 |31462 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33920 |1246 |31459 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33921 |1247 |31467 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33922 |1247 |31470 |2 |1 |2774A4|0 |2 |0 |
+ROW |33923 |1247 |31469 |0 |2 |F63100|1 |2 |0 |
+ROW |33924 |1247 |31466 |0 |3 |A54F10|1 |2 |0 |
+ROW |33925 |1247 |31468 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33926 |1247 |31465 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33927 |1229 |31337 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33928 |1229 |31338 |5 |1 |2774A4|0 |2 |0 |
+ROW |33929 |1230 |31341 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33930 |1230 |31342 |5 |1 |2774A4|0 |2 |0 |
+ROW |33931 |1231 |31336 |0 |0 |1A7C11|1 |2 |0 |
+ROW |33932 |1231 |31335 |5 |1 |2774A4|0 |2 |0 |
+ROW |33933 |1232 |31340 |0 |0 |1A7C11|1 |2 |0 |
+ROW |33934 |1232 |31339 |5 |1 |2774A4|0 |2 |0 |
+ROW |33935 |974 |29456 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33936 |974 |29455 |0 |1 |2774A4|0 |2 |0 |
+ROW |33937 |975 |29482 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33938 |975 |29481 |0 |1 |2774A4|0 |2 |0 |
+ROW |33939 |976 |29458 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33940 |976 |29457 |0 |1 |2774A4|0 |2 |0 |
+ROW |33941 |977 |29484 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33942 |977 |29483 |0 |1 |2774A4|0 |2 |0 |
+ROW |33943 |972 |29454 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33944 |973 |29480 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33945 |978 |29462 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33946 |979 |29488 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33947 |980 |31327 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33948 |980 |29466 |0 |1 |2774A4|0 |2 |0 |
+ROW |33949 |981 |31330 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33950 |981 |29492 |0 |1 |2774A4|0 |2 |0 |
+ROW |33951 |982 |29620 |0 |0 |969696|0 |9 |2 |
+ROW |33952 |982 |29619 |0 |1 |C80000|0 |9 |0 |
+ROW |33953 |983 |29629 |0 |0 |969696|0 |9 |2 |
+ROW |33954 |983 |29628 |0 |1 |C80000|0 |9 |0 |
+ROW |33955 |1248 |31483 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33956 |1248 |31486 |2 |1 |2774A4|0 |2 |0 |
+ROW |33957 |1248 |31485 |0 |2 |F63100|1 |2 |0 |
+ROW |33958 |1248 |31482 |0 |3 |A54F10|1 |2 |0 |
+ROW |33959 |1248 |31484 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33960 |1248 |31481 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33961 |1249 |31489 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33962 |1249 |31492 |2 |1 |2774A4|0 |2 |0 |
+ROW |33963 |1249 |31491 |0 |2 |F63100|1 |2 |0 |
+ROW |33964 |1249 |31488 |0 |3 |A54F10|1 |2 |0 |
+ROW |33965 |1249 |31490 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |33966 |1249 |31487 |0 |5 |6C59DC|1 |2 |0 |
+ROW |33967 |1233 |31355 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33968 |1233 |31356 |5 |1 |2774A4|0 |2 |0 |
+ROW |33969 |1234 |31359 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33970 |1234 |31360 |5 |1 |2774A4|0 |2 |0 |
+ROW |33971 |1235 |31354 |0 |0 |1A7C11|1 |2 |0 |
+ROW |33972 |1235 |31353 |5 |1 |2774A4|0 |2 |0 |
+ROW |33973 |1236 |31358 |0 |0 |1A7C11|1 |2 |0 |
+ROW |33974 |1236 |31357 |5 |1 |2774A4|0 |2 |0 |
+ROW |33975 |992 |29563 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33976 |992 |29562 |0 |1 |2774A4|0 |2 |0 |
+ROW |33977 |993 |29589 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33978 |993 |29588 |0 |1 |2774A4|0 |2 |0 |
+ROW |33979 |994 |29565 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33980 |994 |29564 |0 |1 |2774A4|0 |2 |0 |
+ROW |33981 |995 |29591 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33982 |995 |29590 |0 |1 |2774A4|0 |2 |0 |
+ROW |33983 |990 |29561 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33984 |991 |29587 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33985 |996 |29569 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33986 |997 |29595 |5 |0 |1A7C11|0 |2 |0 |
+ROW |33987 |998 |31345 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33988 |998 |29573 |0 |1 |2774A4|0 |2 |0 |
+ROW |33989 |999 |31348 |0 |0 |1A7C11|0 |2 |0 |
+ROW |33990 |999 |29599 |0 |1 |2774A4|0 |2 |0 |
+ROW |33991 |1142 |30689 |0 |0 |1A7C11|0 |2 |0 |
TABLE |hostmacro
FIELDS|hostmacroid|hostid|macro |value |description |type|
@@ -12055,15 +12246,6 @@ ROW |769 |10261 |{$ADDRESS}
ROW |770 |10261 |{$PORT} | | |0 |
ROW |771 |10262 |{$ADDRESS} | | |0 |
ROW |772 |10262 |{$PORT} | | |0 |
-ROW |773 |10175 |{$VMWARE_INTERVAL} |1m | |0 |
-ROW |774 |10175 |{$VMWARE_INTERVAL:conf} |1h | |0 |
-ROW |775 |10175 |{$VMWARE_PERF_INTERVAL} |1m | |0 |
-ROW |776 |10175 |{$VMWARE_PERF_INTERVAL:datastore} |5m | |0 |
-ROW |777 |10174 |{$VMWARE_INTERVAL} |1m | |0 |
-ROW |778 |10174 |{$VMWARE_INTERVAL:conf} |1h | |0 |
-ROW |779 |10174 |{$VMWARE_PERF_INTERVAL} |1m | |0 |
-ROW |780 |10173 |{$VMWARE_PERF_INTERVAL} |1m | |0 |
-ROW |781 |10173 |{$VMWARE_PERF_INTERVAL:datastore} |5m | |0 |
ROW |787 |10263 |{$PG.CACHE_HITRATIO.MIN.WARN} |90 | |0 |
ROW |788 |10263 |{$PG.CHECKPOINTS_REQ.MAX.WARN} |5 | |0 |
ROW |789 |10263 |{$PG.CONFLICTS.MAX.WARN} |0 | |0 |
@@ -12410,10 +12592,10 @@ ROW |1169 |10307 |{$VFS.FS.FSTYPE.MATCHES}
ROW |1170 |10307 |{$VFS.FS.FSTYPE.NOT_MATCHES} |CHANGE_IF_NEEDED |This macro is used in filesystems discovery. Can be overridden on the host or linked template level. |0 |
ROW |1171 |10307 |{$VFS.FS.PUSED.MAX.CRIT} |90 | |0 |
ROW |1172 |10307 |{$VFS.FS.PUSED.MAX.WARN} |80 | |0 |
-ROW |1173 |10308 |{$HAPROXY.BACK_ERESP.MAX.WARN} |10 |Maximum of responses with error on BACKEND for trigger expression. |0 |
-ROW |1174 |10308 |{$HAPROXY.BACK_QCUR.MAX.WARN} |10 |Maximum number of requests on BACKEND unassigned in queue for trigger expression. |0 |
-ROW |1175 |10308 |{$HAPROXY.BACK_QTIME.MAX.WARN} |10s |Maximum of average time spent in queue on BACKEND for trigger expression. |0 |
-ROW |1176 |10308 |{$HAPROXY.BACK_RTIME.MAX.WARN} |10s |Maximum of average BACKEND response time for trigger expression. |0 |
+ROW |1173 |10308 |{$HAPROXY.BACK_ERESP.MAX.WARN} |10 |Maximum of responses with error on Backend for trigger expression. |0 |
+ROW |1174 |10308 |{$HAPROXY.BACK_QCUR.MAX.WARN} |10 |Maximum number of requests on Backend unassigned in queue for trigger expression. |0 |
+ROW |1175 |10308 |{$HAPROXY.BACK_QTIME.MAX.WARN} |10s |Maximum of average time spent in queue on Backend for trigger expression. |0 |
+ROW |1176 |10308 |{$HAPROXY.BACK_RTIME.MAX.WARN} |10s |Maximum of average Backend response time for trigger expression. |0 |
ROW |1177 |10308 |{$HAPROXY.FRONT_DREQ.MAX.WARN} |10 |The HAProxy maximum denied requests for trigger expression. |0 |
ROW |1178 |10308 |{$HAPROXY.FRONT_EREQ.MAX.WARN} |10 |The HAProxy maximum number of request errors for trigger expression. |0 |
ROW |1179 |10308 |{$HAPROXY.FRONT_SUTIL.MAX.WARN} |80 |Maximum of session usage percentage on frontend for trigger expression. |0 |
@@ -12425,10 +12607,10 @@ ROW |1184 |10308 |{$HAPROXY.SERVER_RTIME.MAX.WARN}
ROW |1185 |10308 |{$HAPROXY.STATS.PATH} |stats |The path of HAProxy stats page. |0 |
ROW |1186 |10308 |{$HAPROXY.STATS.PORT} |8404 |The port of the HAProxy stats host or container. |0 |
ROW |1187 |10308 |{$HAPROXY.STATS.SCHEME} |http |The scheme of HAProxy stats page(http/https). |0 |
-ROW |1188 |10309 |{$HAPROXY.BACK_ERESP.MAX.WARN} |10 |Maximum of responses with error on BACKEND for trigger expression. |0 |
-ROW |1189 |10309 |{$HAPROXY.BACK_QCUR.MAX.WARN} |10 |Maximum number of requests on BACKEND unassigned in queue for trigger expression. |0 |
-ROW |1190 |10309 |{$HAPROXY.BACK_QTIME.MAX.WARN} |10s |Maximum of average time spent in queue on BACKEND for trigger expression. |0 |
-ROW |1191 |10309 |{$HAPROXY.BACK_RTIME.MAX.WARN} |10s |Maximum of average BACKEND response time for trigger expression. |0 |
+ROW |1188 |10309 |{$HAPROXY.BACK_ERESP.MAX.WARN} |10 |Maximum of responses with error on Backend for trigger expression. |0 |
+ROW |1189 |10309 |{$HAPROXY.BACK_QCUR.MAX.WARN} |10 |Maximum number of requests on Backend unassigned in queue for trigger expression. |0 |
+ROW |1190 |10309 |{$HAPROXY.BACK_QTIME.MAX.WARN} |10s |Maximum of average time spent in queue on Backend for trigger expression. |0 |
+ROW |1191 |10309 |{$HAPROXY.BACK_RTIME.MAX.WARN} |10s |Maximum of average Backend response time for trigger expression. |0 |
ROW |1192 |10309 |{$HAPROXY.FRONT_DREQ.MAX.WARN} |10 |The HAProxy maximum denied requests for trigger expression. |0 |
ROW |1193 |10309 |{$HAPROXY.FRONT_EREQ.MAX.WARN} |10 |The HAProxy maximum number of request errors for trigger expression. |0 |
ROW |1194 |10309 |{$HAPROXY.FRONT_SUTIL.MAX.WARN} |80% |Maximum of session usage percentage on frontend for trigger expression. |0 |
@@ -12567,8 +12749,6 @@ ROW |1339 |10327 |{$MSSQL.LOCK_REQUESTS.MAX}
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 |1343 |10327 |{$MSSQL.LOG_GROWTHS.MAX} |1 |The maximum log growths for trigger expression. |0 |
-ROW |1344 |10327 |{$MSSQL.LOG_SHRINKS.MAX} |1 |The maximum log shrinks 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 |
@@ -12622,6 +12802,42 @@ ROW |1394 |10329 |{$ORACLE.TABLESPACE.NAME.NOT_MATCHES}
ROW |1395 |10329 |{$ORACLE.TBS.USED.PCT.MAX.HIGH} |90 |Maximum percentage of used tablespace high severity alert treshold (for trigger expression). |0 |
ROW |1396 |10329 |{$ORACLE.TBS.USED.PCT.MAX.WARN} |80 |Maximum percentage of used tablespace warning severity alert treshold (for trigger expression). |0 |
ROW |1397 |10329 |{$ORACLE.USER} |<Put your username here> |Oracle username. |0 |
+ROW |1398 |10169 |{$JMX.CPU.LOAD.MAX} |85 |A threshold in percent for CPU utilization trigger. |0 |
+ROW |1399 |10169 |{$JMX.CPU.LOAD.TIME} |5m |The time during which the CPU utilization may exceed the threshold. |0 |
+ROW |1400 |10169 |{$JMX.FILE.DESCRIPTORS.MAX} |85 |A threshold in percent for file descriptors count trigger. |0 |
+ROW |1401 |10169 |{$JMX.FILE.DESCRIPTORS.TIME} |3m |The time during which the file descriptors count may exceed the threshold. |0 |
+ROW |1402 |10169 |{$JMX.HEAP.MEM.USAGE.MAX} |85 |A threshold in percent for Heap memory utilization trigger. |0 |
+ROW |1403 |10169 |{$JMX.HEAP.MEM.USAGE.TIME} |10m |The time during which the Heap memory utilization may exceed the threshold. |0 |
+ROW |1404 |10169 |{$JMX.MP.USAGE.MAX} |85 |A threshold in percent for memory pools utilization trigger. Use a context to change the treshold for a specific pool. |0 |
+ROW |1405 |10169 |{$JMX.MP.USAGE.TIME} |10m |The time during which the memory pools utilization may exceed the threshold. |0 |
+ROW |1406 |10169 |{$JMX.NONHEAP.MEM.USAGE.MAX} |85 |A threshold in percent for Non-heap memory utilization trigger. |0 |
+ROW |1407 |10169 |{$JMX.NONHEAP.MEM.USAGE.TIME} |10m |The time during which the Non-heap memory utilization may exceed the threshold. |0 |
+ROW |1408 |10330 |{$VMWARE.PASSWORD} | |VMware service {$USERNAME} user password |0 |
+ROW |1409 |10330 |{$VMWARE.URL} | |VMware service (vCenter or ESX hypervisor) SDK URL (https://servername/sdk) |0 |
+ROW |1410 |10330 |{$VMWARE.USERNAME} | |VMware service user name |0 |
+ROW |1411 |10333 |{$ORACLE.ASM.USED.PCT.MAX.HIGH} |95 |Maximum percentage of used ASM disk group for high trigger expression. |0 |
+ROW |1412 |10333 |{$ORACLE.ASM.USED.PCT.MAX.WARN} |90 |Maximum percentage of used ASM disk group for warning trigger expression. |0 |
+ROW |1413 |10333 |{$ORACLE.CONCURRENCY.MAX.WARN} |80 |Maximum percentage of sessions concurrency usage for trigger expression. |0 |
+ROW |1414 |10333 |{$ORACLE.CONNSTRING} |tcp://localhost:1521 | |0 |
+ROW |1415 |10333 |{$ORACLE.DB.FILE.MAX.WARN} |80 |Maximum percentage of database files for trigger expression. |0 |
+ROW |1416 |10333 |{$ORACLE.DBNAME.MATCHES} |.* |This macro is used in database discovery. It can be overridden on the host or linked template level. |0 |
+ROW |1417 |10333 |{$ORACLE.DBNAME.NOT_MATCHES} |PDB\$SEED |This macro is used in database discovery. It can be overridden on a host or linked template level. |0 |
+ROW |1418 |10333 |{$ORACLE.EXPIRE.PASSWORD.MIN.WARN} |7 |Number of days of warning before password expires (for trigger expression). |0 |
+ROW |1419 |10333 |{$ORACLE.PASSWORD} |zabbix_password |Oracle user password. |0 |
+ROW |1420 |10333 |{$ORACLE.PGA.USE.MAX.WARN} |90 |Maximum percentage of PGA usage alert treshold (for trigger expression). |0 |
+ROW |1421 |10333 |{$ORACLE.PROCESSES.MAX.WARN} |80 |Maximum percentage of active processes alert treshold (for trigger expression). |0 |
+ROW |1422 |10333 |{$ORACLE.REDO.MIN.WARN} |3 |Minimum number of REDO logs alert treshold (for trigger expression). |0 |
+ROW |1423 |10333 |{$ORACLE.SERVICE} |ORA |Oracle Service Name |0 |
+ROW |1424 |10333 |{$ORACLE.SESSION.LOCK.MAX.TIME} |600 |Maximum session lock duration in seconds for count the session as a prolongely locked query. |0 |
+ROW |1425 |10333 |{$ORACLE.SESSION.LONG.LOCK.MAX.WARN} |3 |Maximum number of the prolongely locked sessions alert treshold (for trigger expression). |0 |
+ROW |1426 |10333 |{$ORACLE.SESSIONS.LOCK.MAX.WARN} |20 |Maximum percentage of locked sessions alert treshold (for trigger expression). |0 |
+ROW |1427 |10333 |{$ORACLE.SESSIONS.MAX.WARN} |80 |Maximum percentage of active sessions alert treshold (for trigger expression). |0 |
+ROW |1428 |10333 |{$ORACLE.SHARED.FREE.MIN.WARN} |5 |Minimum percentage of free shared pool alert treshold (for trigger expression). |0 |
+ROW |1429 |10333 |{$ORACLE.TABLESPACE.NAME.MATCHES} |.* |This macro is used in tablespace discovery. It can be overridden on a host or linked template level. |0 |
+ROW |1430 |10333 |{$ORACLE.TABLESPACE.NAME.NOT_MATCHES} |CHANGE_IF_NEEDED |This macro is used in tablespace discovery. It can be overridden on a host or linked template level. |0 |
+ROW |1431 |10333 |{$ORACLE.TBS.USED.PCT.MAX.HIGH} |90 |Maximum percentage of used tablespace high severity alert treshold (for trigger expression). |0 |
+ROW |1432 |10333 |{$ORACLE.TBS.USED.PCT.MAX.WARN} |80 |Maximum percentage of used tablespace warning severity alert treshold (for trigger expression). |0 |
+ROW |1433 |10333 |{$ORACLE.USER} |zabbix |Oracle username. |0 |
TABLE |hosts_groups
FIELDS|hostgroupid|hostid|groupid|
@@ -12652,9 +12868,6 @@ ROW |197 |10078 |10 |
ROW |198 |10081 |10 |
ROW |199 |10171 |11 |
ROW |200 |10172 |11 |
-ROW |201 |10173 |14 |
-ROW |202 |10174 |14 |
-ROW |203 |10175 |14 |
ROW |209 |10183 |8 |
ROW |211 |10185 |8 |
ROW |212 |10186 |8 |
@@ -12766,6 +12979,11 @@ ROW |352 |10326 |12 |
ROW |353 |10327 |13 |
ROW |354 |10328 |13 |
ROW |355 |10329 |13 |
+ROW |356 |10330 |12 |
+ROW |357 |10173 |12 |
+ROW |358 |10174 |12 |
+ROW |359 |10175 |12 |
+ROW |360 |10333 |13 |
TABLE |hosts_templates
FIELDS|hosttemplateid|hostid|templateid|
@@ -12779,8 +12997,6 @@ ROW |36 |10079 |10050 |
ROW |37 |10081 |10050 |
ROW |38 |10084 |10047 |
ROW |39 |10084 |10001 |
-ROW |131 |10176 |10175 |
-ROW |132 |10177 |10174 |
ROW |134 |10204 |10186 |
ROW |135 |10207 |10190 |
ROW |136 |10207 |10183 |
@@ -12903,6 +13119,11 @@ ROW |283 |10081 |10314 |
ROW |284 |10299 |10315 |
ROW |285 |10237 |10204 |
ROW |286 |10237 |10188 |
+ROW |287 |10173 |10330 |
+ROW |288 |10174 |10330 |
+ROW |289 |10175 |10330 |
+ROW |290 |10331 |10175 |
+ROW |291 |10332 |10174 |
TABLE |items_applications
FIELDS|itemappid|applicationid|itemid|
@@ -12950,2817 +13171,2893 @@ ROW |46636 |1124 |28951 |
ROW |46637 |740 |28952 |
ROW |46638 |740 |28953 |
ROW |46639 |740 |28954 |
-ROW |69120 |1116 |28743 |
-ROW |69121 |1116 |28744 |
-ROW |69122 |1116 |28745 |
-ROW |69123 |1116 |28746 |
-ROW |69124 |1116 |28747 |
-ROW |69125 |1116 |28748 |
-ROW |69126 |1117 |30896 |
-ROW |69127 |1116 |30897 |
-ROW |69128 |1116 |30898 |
-ROW |69129 |1116 |30899 |
-ROW |69130 |1116 |30900 |
-ROW |69131 |1116 |30901 |
-ROW |69132 |1116 |30902 |
-ROW |69133 |1116 |30903 |
-ROW |69134 |1116 |30904 |
-ROW |69135 |1116 |30905 |
-ROW |69136 |1116 |30906 |
-ROW |69137 |1116 |30907 |
-ROW |69138 |1116 |30908 |
-ROW |69139 |1116 |30909 |
-ROW |69140 |1116 |30910 |
-ROW |69141 |1116 |30911 |
-ROW |69142 |1116 |30912 |
-ROW |69143 |1116 |30913 |
-ROW |69144 |1116 |30914 |
-ROW |69145 |1116 |30915 |
-ROW |69146 |1116 |30917 |
-ROW |69147 |1116 |30918 |
-ROW |69148 |1116 |30919 |
-ROW |69149 |1116 |30920 |
-ROW |69150 |1116 |30921 |
-ROW |69151 |1116 |30922 |
-ROW |69152 |1119 |28775 |
-ROW |69153 |1118 |28776 |
-ROW |69154 |1118 |28777 |
-ROW |69155 |1118 |28778 |
-ROW |69156 |1118 |28779 |
-ROW |69157 |1118 |28780 |
-ROW |69158 |1118 |28781 |
-ROW |69159 |1118 |28782 |
-ROW |69160 |1118 |28783 |
-ROW |69161 |1118 |28784 |
-ROW |69162 |1118 |28785 |
-ROW |69163 |1118 |28786 |
-ROW |69164 |1118 |28787 |
-ROW |69165 |1118 |28788 |
-ROW |69166 |1118 |28789 |
-ROW |69167 |1118 |28790 |
-ROW |69168 |1118 |28791 |
-ROW |69169 |1118 |28792 |
-ROW |69170 |1118 |28793 |
-ROW |69171 |1118 |28794 |
-ROW |69172 |1118 |28795 |
-ROW |69173 |1118 |28796 |
-ROW |69174 |1118 |28798 |
-ROW |69175 |1118 |28799 |
-ROW |69176 |1118 |28800 |
-ROW |69177 |1118 |28801 |
-ROW |69178 |1118 |28802 |
-ROW |69179 |1118 |28803 |
-ROW |69180 |1319 |30527 |
-ROW |69181 |1319 |30528 |
-ROW |69182 |1319 |30529 |
-ROW |69183 |1318 |30530 |
-ROW |69184 |1319 |30531 |
-ROW |69185 |1318 |30532 |
-ROW |69186 |1318 |30533 |
-ROW |69187 |1318 |30534 |
-ROW |69188 |1318 |30535 |
-ROW |69189 |1318 |30536 |
-ROW |69190 |1318 |30537 |
-ROW |69191 |1318 |30538 |
-ROW |69192 |1318 |30539 |
-ROW |69193 |1318 |30540 |
-ROW |69194 |1318 |30541 |
-ROW |69195 |1318 |30542 |
-ROW |69196 |1318 |30543 |
-ROW |69197 |1318 |30544 |
-ROW |69198 |1318 |30545 |
-ROW |69199 |1318 |30546 |
-ROW |69200 |1318 |30547 |
-ROW |69201 |1318 |30548 |
-ROW |69202 |1318 |30549 |
-ROW |69203 |1318 |30550 |
-ROW |69204 |1318 |30551 |
-ROW |69205 |1318 |30552 |
-ROW |69206 |1318 |30553 |
-ROW |69207 |1318 |30554 |
-ROW |69208 |1318 |30555 |
-ROW |69209 |1318 |30556 |
-ROW |69210 |1318 |30557 |
-ROW |69211 |1318 |30558 |
-ROW |69212 |1318 |30559 |
-ROW |69213 |1318 |30560 |
-ROW |69214 |1318 |30561 |
-ROW |69215 |1318 |30562 |
-ROW |69216 |1318 |30563 |
-ROW |69217 |1318 |30564 |
-ROW |69218 |1318 |30565 |
-ROW |69219 |1318 |30566 |
-ROW |69220 |1318 |30567 |
-ROW |69221 |1318 |30568 |
-ROW |69222 |1318 |30569 |
-ROW |69223 |1318 |30570 |
-ROW |69224 |1326 |30690 |
-ROW |69225 |1327 |30691 |
-ROW |69226 |1326 |30692 |
-ROW |69227 |1327 |30693 |
-ROW |69228 |1327 |30694 |
-ROW |69229 |1326 |30695 |
-ROW |69230 |1326 |30696 |
-ROW |69231 |1326 |30697 |
-ROW |69232 |1326 |30698 |
-ROW |69233 |1326 |30699 |
-ROW |69234 |1326 |30700 |
-ROW |69235 |1326 |30701 |
-ROW |69236 |1326 |30702 |
-ROW |69237 |1326 |30703 |
-ROW |69238 |1326 |30704 |
-ROW |69239 |1326 |30705 |
-ROW |69240 |1326 |30706 |
-ROW |69241 |1326 |30707 |
-ROW |69242 |1326 |30708 |
-ROW |69243 |1326 |30709 |
-ROW |69244 |1326 |30710 |
-ROW |69245 |1326 |30711 |
-ROW |69246 |1326 |30712 |
-ROW |69247 |1327 |30719 |
-ROW |69248 |1327 |30739 |
-ROW |69249 |1327 |30743 |
-ROW |69250 |1327 |30744 |
-ROW |69251 |1327 |30746 |
-ROW |69252 |1327 |30747 |
-ROW |69253 |1327 |30754 |
-ROW |69254 |1327 |30756 |
-ROW |69255 |1331 |30923 |
-ROW |69256 |1331 |30924 |
-ROW |69257 |1332 |30925 |
-ROW |69258 |1332 |30926 |
-ROW |69259 |1331 |30927 |
-ROW |69260 |1331 |30928 |
-ROW |69261 |1331 |30929 |
-ROW |69262 |1331 |30930 |
-ROW |69263 |1331 |30931 |
-ROW |69264 |1331 |30932 |
-ROW |69265 |1331 |30933 |
-ROW |69266 |1331 |30934 |
-ROW |69267 |1331 |30935 |
-ROW |69268 |1331 |30936 |
-ROW |69269 |1331 |30937 |
-ROW |69270 |1331 |30938 |
-ROW |69271 |1331 |30939 |
-ROW |69272 |1331 |30940 |
-ROW |69273 |1331 |30941 |
-ROW |69274 |1331 |30942 |
-ROW |69275 |1331 |30943 |
-ROW |69276 |1331 |30944 |
-ROW |69277 |1331 |30945 |
-ROW |69278 |1331 |30946 |
-ROW |69279 |1331 |30947 |
-ROW |69280 |1331 |30948 |
-ROW |69281 |1331 |30949 |
-ROW |69282 |1331 |30950 |
-ROW |69283 |1331 |30951 |
-ROW |69284 |1331 |30952 |
-ROW |69285 |1331 |30953 |
-ROW |69286 |1331 |30954 |
-ROW |69287 |1331 |30955 |
-ROW |69288 |1331 |30956 |
-ROW |69289 |1331 |30957 |
-ROW |69290 |1331 |30958 |
-ROW |69291 |1331 |30959 |
-ROW |69292 |1331 |30960 |
-ROW |69293 |1331 |30963 |
-ROW |69294 |1298 |30187 |
-ROW |69295 |1298 |30188 |
-ROW |69296 |1299 |30189 |
-ROW |69297 |1299 |30190 |
-ROW |69298 |1298 |30191 |
-ROW |69299 |1298 |30192 |
-ROW |69300 |1301 |30230 |
-ROW |69301 |1301 |30231 |
-ROW |69302 |1300 |30789 |
-ROW |69303 |1300 |30790 |
-ROW |69304 |1300 |30234 |
-ROW |69305 |1300 |30235 |
-ROW |69306 |1333 |30968 |
-ROW |69307 |1333 |30969 |
-ROW |69308 |1333 |30970 |
-ROW |69309 |1333 |30971 |
-ROW |69310 |1333 |30972 |
-ROW |69311 |1333 |30973 |
-ROW |69312 |1333 |30974 |
-ROW |69313 |1333 |30975 |
-ROW |69314 |1333 |30976 |
-ROW |69315 |1333 |30977 |
-ROW |69316 |1333 |30978 |
-ROW |69317 |1333 |30979 |
-ROW |69318 |1333 |30980 |
-ROW |69319 |1333 |30981 |
-ROW |69320 |1333 |30982 |
-ROW |69321 |1333 |30983 |
-ROW |69322 |1333 |30984 |
-ROW |69323 |1333 |30985 |
-ROW |69324 |1333 |30986 |
-ROW |69325 |1333 |30987 |
-ROW |69326 |1333 |30988 |
-ROW |69327 |1333 |30989 |
-ROW |69328 |1333 |30990 |
-ROW |69329 |1333 |30991 |
-ROW |69330 |1333 |30992 |
-ROW |69331 |1333 |30993 |
-ROW |69332 |1333 |30994 |
-ROW |69333 |1333 |30995 |
-ROW |69334 |1333 |30996 |
-ROW |69335 |1333 |30997 |
-ROW |69336 |1333 |30998 |
-ROW |69337 |1333 |30999 |
-ROW |69338 |1333 |31000 |
-ROW |69339 |1333 |31001 |
-ROW |69340 |1333 |31002 |
-ROW |69341 |1333 |31003 |
-ROW |69342 |1333 |31004 |
-ROW |69343 |1334 |31010 |
-ROW |69344 |1334 |31011 |
-ROW |69345 |1334 |31012 |
-ROW |69346 |1334 |31013 |
-ROW |69347 |1334 |31014 |
-ROW |69348 |1334 |31015 |
-ROW |69349 |1334 |31016 |
-ROW |69350 |1334 |31017 |
-ROW |69351 |1334 |31018 |
-ROW |69352 |1334 |31019 |
-ROW |69353 |1334 |31020 |
-ROW |69354 |1334 |31021 |
-ROW |69355 |1334 |31022 |
-ROW |69356 |1334 |31023 |
-ROW |69357 |1334 |31024 |
-ROW |69358 |1334 |31025 |
-ROW |69359 |1334 |31026 |
-ROW |69360 |1334 |31027 |
-ROW |69361 |1334 |31028 |
-ROW |69362 |1334 |31029 |
-ROW |69363 |1334 |31030 |
-ROW |69364 |1334 |31031 |
-ROW |69365 |1334 |31032 |
-ROW |69366 |1334 |31033 |
-ROW |69367 |1334 |31034 |
-ROW |69368 |1334 |31035 |
-ROW |69369 |1334 |31036 |
-ROW |69370 |1334 |31037 |
-ROW |69371 |1334 |31038 |
-ROW |69372 |1334 |31039 |
-ROW |69373 |1334 |31040 |
-ROW |69374 |1334 |31041 |
-ROW |69375 |1334 |31042 |
-ROW |69376 |1334 |31043 |
-ROW |69377 |1334 |31044 |
-ROW |69378 |1334 |31045 |
-ROW |69379 |1334 |31046 |
-ROW |69380 |1320 |30611 |
-ROW |69381 |1321 |30612 |
-ROW |69382 |1320 |30613 |
-ROW |69383 |1320 |30614 |
-ROW |69384 |1320 |30615 |
-ROW |69385 |1320 |30616 |
-ROW |69386 |1320 |30617 |
-ROW |69387 |1320 |30618 |
-ROW |69388 |1320 |30619 |
-ROW |69389 |1320 |30620 |
-ROW |69390 |1320 |30621 |
-ROW |69391 |1320 |30622 |
-ROW |69392 |1320 |30623 |
-ROW |69393 |1320 |30624 |
-ROW |69394 |1320 |30625 |
-ROW |69395 |1320 |30626 |
-ROW |69396 |1320 |30627 |
-ROW |69397 |1320 |30628 |
-ROW |69398 |1320 |30629 |
-ROW |69399 |1320 |30630 |
-ROW |69400 |1320 |30631 |
-ROW |69401 |1320 |30632 |
-ROW |69402 |1320 |30633 |
-ROW |69403 |1320 |30634 |
-ROW |69404 |1320 |30635 |
-ROW |69405 |1320 |30636 |
-ROW |69406 |1121 |28804 |
-ROW |69407 |1120 |28805 |
-ROW |69408 |1120 |28806 |
-ROW |69409 |1120 |28807 |
-ROW |69410 |1120 |28808 |
-ROW |69411 |1120 |28809 |
-ROW |69412 |1120 |28810 |
-ROW |69413 |1120 |28811 |
-ROW |69414 |1120 |28812 |
-ROW |69415 |1120 |28813 |
-ROW |69416 |1120 |28814 |
-ROW |69417 |1120 |28815 |
-ROW |69418 |1120 |28816 |
-ROW |69419 |1120 |28817 |
-ROW |69420 |1120 |28818 |
-ROW |69421 |1120 |28819 |
-ROW |69422 |1120 |28820 |
-ROW |69423 |1123 |28821 |
-ROW |69424 |1122 |28822 |
-ROW |69425 |1122 |28823 |
-ROW |69426 |1122 |28824 |
-ROW |69427 |1122 |28825 |
-ROW |69428 |1122 |28826 |
-ROW |69429 |1122 |28827 |
-ROW |69430 |1122 |28828 |
-ROW |69431 |1122 |28829 |
-ROW |69432 |1122 |28830 |
-ROW |69433 |1122 |28831 |
-ROW |69434 |1122 |28832 |
-ROW |69435 |1122 |28833 |
-ROW |69436 |1264 |29653 |
-ROW |69437 |1264 |29654 |
-ROW |69438 |1263 |29655 |
-ROW |69439 |1263 |29656 |
-ROW |69440 |1263 |29657 |
-ROW |69441 |1263 |29658 |
-ROW |69442 |1263 |29659 |
-ROW |69443 |1263 |29660 |
-ROW |69444 |1264 |29661 |
-ROW |69445 |1263 |29662 |
-ROW |69446 |1262 |29998 |
-ROW |69447 |1262 |29999 |
-ROW |69448 |1263 |29687 |
-ROW |69449 |1263 |29688 |
-ROW |69450 |1263 |29691 |
-ROW |69451 |1263 |29692 |
-ROW |69452 |1263 |29693 |
-ROW |69453 |1263 |29694 |
-ROW |69454 |1263 |29695 |
-ROW |69455 |1263 |29696 |
-ROW |69456 |1263 |29697 |
-ROW |69457 |1263 |29698 |
-ROW |69458 |1263 |29699 |
-ROW |69459 |1263 |29700 |
-ROW |69460 |1263 |29701 |
-ROW |69461 |1261 |30000 |
-ROW |69462 |1261 |30001 |
-ROW |69463 |1261 |30002 |
-ROW |69464 |1261 |30003 |
-ROW |69465 |1261 |30004 |
-ROW |69466 |1261 |30005 |
-ROW |69467 |1261 |30006 |
-ROW |69468 |1261 |30007 |
-ROW |69469 |1261 |30008 |
-ROW |69470 |1261 |30009 |
-ROW |69471 |1261 |30010 |
-ROW |69472 |1261 |30011 |
-ROW |69473 |1261 |30012 |
-ROW |69474 |1261 |30013 |
-ROW |69475 |1261 |30014 |
-ROW |69476 |1261 |30015 |
-ROW |69477 |1261 |30016 |
-ROW |69478 |1261 |30017 |
-ROW |69479 |1261 |30018 |
-ROW |69480 |1261 |30019 |
-ROW |69481 |1261 |30020 |
-ROW |69482 |1261 |30021 |
-ROW |69483 |1261 |30022 |
-ROW |69484 |1261 |30023 |
-ROW |69485 |1263 |30024 |
-ROW |69486 |1263 |30025 |
-ROW |69487 |1266 |29738 |
-ROW |69488 |1266 |29739 |
-ROW |69489 |1268 |29741 |
-ROW |69490 |1267 |29742 |
-ROW |69491 |1267 |29743 |
-ROW |69492 |1267 |29744 |
-ROW |69493 |1268 |29745 |
-ROW |69494 |1268 |30043 |
-ROW |69495 |1265 |29746 |
-ROW |69496 |1265 |29747 |
-ROW |69497 |1265 |29748 |
-ROW |69498 |1265 |29749 |
-ROW |69499 |1265 |29750 |
-ROW |69500 |1265 |29751 |
-ROW |69501 |1265 |29752 |
-ROW |69502 |1265 |29753 |
-ROW |69503 |1265 |29754 |
-ROW |69504 |1265 |29755 |
-ROW |69505 |1265 |29756 |
-ROW |69506 |1265 |29757 |
-ROW |69507 |1265 |29758 |
-ROW |69508 |1265 |29759 |
-ROW |69509 |1265 |29760 |
-ROW |69510 |1265 |29761 |
-ROW |69511 |1265 |29762 |
-ROW |69512 |1265 |29763 |
-ROW |69513 |1265 |29764 |
-ROW |69514 |1265 |29765 |
-ROW |69515 |1265 |29766 |
-ROW |69516 |1265 |29767 |
-ROW |69517 |1265 |29768 |
-ROW |69518 |1265 |29769 |
-ROW |69519 |1267 |29771 |
-ROW |69520 |1267 |29772 |
-ROW |69521 |1267 |29773 |
-ROW |69522 |1267 |29774 |
-ROW |69523 |1267 |29775 |
-ROW |69524 |1267 |29776 |
-ROW |69525 |1267 |29777 |
-ROW |69526 |1267 |29779 |
-ROW |69527 |1267 |29780 |
-ROW |69528 |1267 |29781 |
-ROW |69529 |1267 |29782 |
-ROW |69530 |1267 |29783 |
-ROW |69531 |1267 |29784 |
-ROW |69532 |1267 |30044 |
-ROW |69533 |1267 |30045 |
-ROW |69534 |1107 |28501 |
-ROW |69535 |1108 |28502 |
-ROW |69536 |1105 |28503 |
-ROW |69537 |1105 |28504 |
-ROW |69538 |1106 |28505 |
-ROW |69539 |1106 |28506 |
-ROW |69540 |1106 |28507 |
-ROW |69541 |1107 |28508 |
-ROW |69542 |1107 |28509 |
-ROW |69543 |1107 |28510 |
-ROW |69544 |1109 |28511 |
-ROW |69545 |1106 |28512 |
-ROW |69546 |1105 |28513 |
-ROW |69547 |1108 |28514 |
-ROW |69548 |1108 |28515 |
-ROW |69549 |1108 |28516 |
-ROW |69550 |1107 |28517 |
-ROW |69551 |1108 |28518 |
-ROW |69552 |1105 |28519 |
-ROW |69553 |1105 |28520 |
-ROW |69554 |1105 |28521 |
-ROW |69555 |1105 |28522 |
-ROW |69556 |1105 |28523 |
-ROW |69557 |1106 |28524 |
-ROW |69558 |1106 |28525 |
-ROW |69559 |1106 |28526 |
-ROW |69560 |1106 |28527 |
-ROW |69561 |1106 |28528 |
-ROW |69562 |1107 |28529 |
-ROW |69563 |1107 |28530 |
-ROW |69564 |1107 |28531 |
-ROW |69565 |1105 |28532 |
-ROW |69566 |446 |23644 |
-ROW |69567 |736 |26856 |
-ROW |69568 |736 |26857 |
-ROW |69569 |736 |26858 |
-ROW |69570 |736 |26859 |
-ROW |69571 |736 |26860 |
-ROW |69572 |736 |26861 |
-ROW |69573 |736 |26862 |
-ROW |69574 |736 |26863 |
-ROW |69575 |736 |26864 |
-ROW |69576 |736 |26865 |
-ROW |69577 |736 |26866 |
-ROW |69578 |736 |26867 |
-ROW |69579 |736 |26868 |
-ROW |69580 |736 |26869 |
-ROW |69581 |739 |26870 |
-ROW |69582 |738 |26871 |
-ROW |69583 |739 |26872 |
-ROW |69584 |739 |26873 |
-ROW |69585 |739 |26874 |
-ROW |69586 |738 |26875 |
-ROW |69587 |738 |26876 |
-ROW |69588 |736 |26877 |
-ROW |69589 |736 |26878 |
-ROW |69590 |737 |26879 |
-ROW |69591 |737 |26880 |
-ROW |69592 |737 |26881 |
-ROW |69593 |736 |26882 |
-ROW |69594 |736 |26883 |
-ROW |69595 |734 |26884 |
-ROW |69596 |734 |26885 |
-ROW |69597 |734 |26886 |
-ROW |69598 |734 |26887 |
-ROW |69599 |734 |26888 |
-ROW |69600 |734 |26889 |
-ROW |69601 |734 |26890 |
-ROW |69602 |732 |26891 |
-ROW |69603 |732 |26892 |
-ROW |69604 |733 |26893 |
-ROW |69605 |733 |26894 |
-ROW |69606 |734 |26895 |
-ROW |69607 |734 |26896 |
-ROW |69608 |734 |26897 |
-ROW |69609 |735 |26898 |
-ROW |69610 |735 |26899 |
-ROW |69611 |736 |26900 |
-ROW |69612 |736 |26901 |
-ROW |69613 |736 |26902 |
-ROW |69614 |735 |26903 |
-ROW |69615 |735 |26904 |
-ROW |69616 |734 |26905 |
-ROW |69617 |734 |26906 |
-ROW |69618 |735 |26907 |
-ROW |69619 |735 |26908 |
-ROW |69620 |735 |26909 |
-ROW |69621 |732 |26910 |
-ROW |69622 |447 |23645 |
-ROW |69623 |448 |23646 |
-ROW |69624 |449 |23647 |
-ROW |69625 |450 |23648 |
-ROW |69626 |451 |23649 |
-ROW |69627 |452 |23650 |
-ROW |69628 |453 |23651 |
-ROW |69629 |1111 |28585 |
-ROW |69630 |1111 |28586 |
-ROW |69631 |1111 |28587 |
-ROW |69632 |1111 |28588 |
-ROW |69633 |1111 |28589 |
-ROW |69634 |1111 |28590 |
-ROW |69635 |1111 |28591 |
-ROW |69636 |1111 |28592 |
-ROW |69637 |1111 |28593 |
-ROW |69638 |1111 |28594 |
-ROW |69639 |1111 |28595 |
-ROW |69640 |1111 |28596 |
-ROW |69641 |1111 |28597 |
-ROW |69642 |1111 |28598 |
-ROW |69643 |1111 |28599 |
-ROW |69644 |1111 |28600 |
-ROW |69645 |1111 |28601 |
-ROW |69646 |1111 |28602 |
-ROW |69647 |1111 |28603 |
-ROW |69648 |1111 |28604 |
-ROW |69649 |1111 |28605 |
-ROW |69650 |1111 |28606 |
-ROW |69651 |1111 |28607 |
-ROW |69652 |1111 |28608 |
-ROW |69653 |1111 |28609 |
-ROW |69654 |1111 |28610 |
-ROW |69655 |1111 |28611 |
-ROW |69656 |1111 |28612 |
-ROW |69657 |1111 |28613 |
-ROW |69658 |1111 |28614 |
-ROW |69659 |1111 |28615 |
-ROW |69660 |1111 |28616 |
-ROW |69661 |1111 |31052 |
-ROW |69662 |1110 |28539 |
-ROW |69663 |1110 |28540 |
-ROW |69664 |1110 |28541 |
-ROW |69665 |1110 |28542 |
-ROW |69666 |1110 |28543 |
-ROW |69667 |1110 |28544 |
-ROW |69668 |1110 |28545 |
-ROW |69669 |1110 |28546 |
-ROW |69670 |1110 |28547 |
-ROW |69671 |1110 |28548 |
-ROW |69672 |1110 |28549 |
-ROW |69673 |1110 |28550 |
-ROW |69674 |1110 |28551 |
-ROW |69675 |1110 |28552 |
-ROW |69676 |1110 |28553 |
-ROW |69677 |1110 |28554 |
-ROW |69678 |1110 |28555 |
-ROW |69679 |1110 |28556 |
-ROW |69680 |1110 |28557 |
-ROW |69681 |1110 |28558 |
-ROW |69682 |1110 |28559 |
-ROW |69683 |1110 |28560 |
-ROW |69684 |1110 |28561 |
-ROW |69685 |1110 |28562 |
-ROW |69686 |1110 |28563 |
-ROW |69687 |1110 |28564 |
-ROW |69688 |1110 |28565 |
-ROW |69689 |1110 |28566 |
-ROW |69690 |1110 |28567 |
-ROW |69691 |1110 |28568 |
-ROW |69692 |1110 |28569 |
-ROW |69693 |1110 |28570 |
-ROW |69694 |1110 |28571 |
-ROW |69695 |1110 |28572 |
-ROW |69696 |1110 |28573 |
-ROW |69697 |1110 |28574 |
-ROW |69698 |1110 |28575 |
-ROW |69699 |1110 |28576 |
-ROW |69700 |1110 |28577 |
-ROW |69701 |1110 |28578 |
-ROW |69702 |1110 |28579 |
-ROW |69703 |1110 |28580 |
-ROW |69704 |1110 |28581 |
-ROW |69705 |1110 |28582 |
-ROW |69706 |1110 |28583 |
-ROW |69707 |1110 |28584 |
-ROW |69708 |1110 |29821 |
-ROW |69709 |1110 |31053 |
-ROW |69710 |454 |23652 |
-ROW |69711 |455 |23653 |
-ROW |69712 |456 |23654 |
-ROW |69713 |356 |10067 |
-ROW |69714 |356 |10068 |
-ROW |69715 |356 |10069 |
-ROW |69716 |356 |10070 |
-ROW |69717 |356 |10071 |
-ROW |69718 |356 |10072 |
-ROW |69719 |356 |23340 |
-ROW |69720 |356 |23341 |
-ROW |69721 |356 |23342 |
-ROW |69722 |356 |23343 |
-ROW |69723 |356 |23344 |
-ROW |69724 |356 |23345 |
-ROW |69725 |356 |23346 |
-ROW |69726 |356 |23347 |
-ROW |69727 |356 |23348 |
-ROW |69728 |356 |23349 |
-ROW |69729 |356 |23350 |
-ROW |69730 |356 |23351 |
-ROW |69731 |356 |23352 |
-ROW |69732 |356 |23353 |
-ROW |69733 |356 |23354 |
-ROW |69734 |356 |23355 |
-ROW |69735 |356 |23356 |
-ROW |69736 |356 |23357 |
-ROW |69737 |356 |23358 |
-ROW |69738 |356 |23359 |
-ROW |69739 |356 |23360 |
-ROW |69740 |356 |25368 |
-ROW |69741 |356 |25369 |
-ROW |69742 |356 |28250 |
-ROW |69743 |356 |28251 |
-ROW |69744 |356 |28617 |
-ROW |69745 |356 |28618 |
-ROW |69746 |356 |28619 |
-ROW |69747 |179 |10061 |
-ROW |69748 |179 |10062 |
-ROW |69749 |179 |10063 |
-ROW |69750 |179 |10064 |
-ROW |69751 |179 |10065 |
-ROW |69752 |179 |10066 |
-ROW |69753 |179 |22183 |
-ROW |69754 |179 |22185 |
-ROW |69755 |179 |22187 |
-ROW |69756 |179 |22189 |
-ROW |69757 |179 |22191 |
-ROW |69758 |179 |22196 |
-ROW |69759 |179 |22199 |
-ROW |69760 |179 |22219 |
-ROW |69761 |179 |22396 |
-ROW |69762 |179 |22399 |
-ROW |69763 |179 |22400 |
-ROW |69764 |179 |22401 |
-ROW |69765 |179 |22402 |
-ROW |69766 |179 |22404 |
-ROW |69767 |179 |22406 |
-ROW |69768 |179 |22408 |
-ROW |69769 |179 |22412 |
-ROW |69770 |179 |22414 |
-ROW |69771 |179 |22416 |
-ROW |69772 |179 |22418 |
-ROW |69773 |179 |22420 |
-ROW |69774 |179 |22422 |
-ROW |69775 |179 |22424 |
-ROW |69776 |179 |22426 |
-ROW |69777 |179 |22430 |
-ROW |69778 |179 |22689 |
-ROW |69779 |179 |23171 |
-ROW |69780 |179 |23251 |
-ROW |69781 |179 |23634 |
-ROW |69782 |179 |23661 |
-ROW |69783 |179 |23663 |
-ROW |69784 |179 |25366 |
-ROW |69785 |179 |25370 |
-ROW |69786 |179 |25665 |
-ROW |69787 |179 |25666 |
-ROW |69788 |179 |28248 |
-ROW |69789 |179 |28533 |
-ROW |69790 |179 |28535 |
-ROW |69791 |179 |28537 |
-ROW |69792 |179 |29822 |
-ROW |69793 |345 |10073 |
-ROW |69794 |345 |10074 |
-ROW |69795 |345 |10075 |
-ROW |69796 |345 |10076 |
-ROW |69797 |345 |10077 |
-ROW |69798 |345 |10078 |
-ROW |69799 |345 |23252 |
-ROW |69800 |345 |23253 |
-ROW |69801 |345 |23255 |
-ROW |69802 |345 |23256 |
-ROW |69803 |345 |23257 |
-ROW |69804 |345 |23258 |
-ROW |69805 |345 |23259 |
-ROW |69806 |345 |23260 |
-ROW |69807 |345 |23261 |
-ROW |69808 |345 |23262 |
-ROW |69809 |345 |23264 |
-ROW |69810 |345 |23265 |
-ROW |69811 |345 |23266 |
-ROW |69812 |345 |23267 |
-ROW |69813 |345 |23268 |
-ROW |69814 |345 |23269 |
-ROW |69815 |345 |23270 |
-ROW |69816 |345 |23271 |
-ROW |69817 |345 |23272 |
-ROW |69818 |345 |23273 |
-ROW |69819 |345 |23274 |
-ROW |69820 |345 |23275 |
-ROW |69821 |345 |23276 |
-ROW |69822 |345 |23277 |
-ROW |69823 |345 |23328 |
-ROW |69824 |345 |23620 |
-ROW |69825 |345 |23625 |
-ROW |69826 |345 |23628 |
-ROW |69827 |345 |23635 |
-ROW |69828 |345 |23662 |
-ROW |69829 |345 |23664 |
-ROW |69830 |345 |25367 |
-ROW |69831 |345 |25371 |
-ROW |69832 |345 |25667 |
-ROW |69833 |345 |25668 |
-ROW |69834 |345 |28249 |
-ROW |69835 |345 |28534 |
-ROW |69836 |345 |28536 |
-ROW |69837 |345 |28538 |
-ROW |69838 |345 |29823 |
-ROW |69839 |280 |22917 |
-ROW |69840 |280 |22918 |
-ROW |69841 |273 |22920 |
-ROW |69842 |279 |22920 |
-ROW |69843 |273 |22921 |
-ROW |69844 |279 |22921 |
-ROW |69845 |273 |22922 |
-ROW |69846 |279 |22922 |
-ROW |69847 |273 |22923 |
-ROW |69848 |279 |22923 |
-ROW |69849 |273 |22924 |
-ROW |69850 |279 |22924 |
-ROW |69851 |275 |22933 |
-ROW |69852 |278 |22933 |
-ROW |69853 |275 |22934 |
-ROW |69854 |278 |22934 |
-ROW |69855 |275 |22938 |
-ROW |69856 |278 |22938 |
-ROW |69857 |275 |22939 |
-ROW |69858 |278 |22939 |
-ROW |69859 |278 |22940 |
-ROW |69860 |281 |22940 |
-ROW |69861 |281 |22941 |
-ROW |69862 |276 |22942 |
-ROW |69863 |276 |22943 |
-ROW |69864 |273 |23108 |
-ROW |69865 |331 |23108 |
-ROW |69866 |279 |23108 |
-ROW |69867 |273 |23109 |
-ROW |69868 |331 |23109 |
-ROW |69869 |279 |23109 |
-ROW |69870 |273 |23110 |
-ROW |69871 |279 |23110 |
-ROW |69872 |273 |23111 |
-ROW |69873 |331 |23111 |
-ROW |69874 |279 |23111 |
-ROW |69875 |273 |23112 |
-ROW |69876 |331 |23112 |
-ROW |69877 |279 |23112 |
-ROW |69878 |273 |23113 |
-ROW |69879 |279 |23113 |
-ROW |69880 |273 |23114 |
-ROW |69881 |279 |23114 |
-ROW |69882 |273 |23115 |
-ROW |69883 |279 |23115 |
-ROW |69884 |274 |23116 |
-ROW |69885 |279 |23116 |
-ROW |69886 |274 |23117 |
-ROW |69887 |279 |23117 |
-ROW |69888 |273 |23118 |
-ROW |69889 |331 |23118 |
-ROW |69890 |273 |23119 |
-ROW |69891 |279 |23119 |
-ROW |69892 |273 |23120 |
-ROW |69893 |279 |23120 |
-ROW |69894 |273 |23121 |
-ROW |69895 |279 |23121 |
-ROW |69896 |276 |23122 |
-ROW |69897 |279 |23122 |
-ROW |69898 |273 |23123 |
-ROW |69899 |279 |23123 |
-ROW |69900 |276 |23124 |
-ROW |69901 |276 |23125 |
-ROW |69902 |276 |23126 |
-ROW |69903 |276 |23127 |
-ROW |69904 |276 |23128 |
-ROW |69905 |276 |23129 |
-ROW |69906 |276 |23130 |
-ROW |69907 |276 |23131 |
-ROW |69908 |277 |22945 |
-ROW |69909 |277 |22946 |
-ROW |69910 |274 |22948 |
-ROW |69911 |274 |22949 |
-ROW |69912 |274 |22950 |
-ROW |69913 |274 |22951 |
-ROW |69914 |274 |22952 |
-ROW |69915 |268 |22875 |
-ROW |69916 |268 |22876 |
-ROW |69917 |270 |22877 |
-ROW |69918 |270 |22878 |
-ROW |69919 |265 |22879 |
-ROW |69920 |268 |22879 |
-ROW |69921 |263 |22880 |
-ROW |69922 |269 |22880 |
-ROW |69923 |263 |22881 |
-ROW |69924 |269 |22881 |
-ROW |69925 |263 |22882 |
-ROW |69926 |269 |22882 |
-ROW |69927 |263 |22883 |
-ROW |69928 |269 |22883 |
-ROW |69929 |263 |22884 |
-ROW |69930 |269 |22884 |
-ROW |69931 |263 |22885 |
-ROW |69932 |269 |22885 |
-ROW |69933 |263 |22886 |
-ROW |69934 |269 |22886 |
-ROW |69935 |263 |22888 |
-ROW |69936 |269 |22888 |
-ROW |69937 |263 |22891 |
-ROW |69938 |269 |22891 |
-ROW |69939 |263 |22892 |
-ROW |69940 |269 |22892 |
-ROW |69941 |265 |22893 |
-ROW |69942 |268 |22893 |
-ROW |69943 |265 |22894 |
-ROW |69944 |268 |22894 |
-ROW |69945 |266 |22895 |
-ROW |69946 |266 |22896 |
-ROW |69947 |266 |22897 |
-ROW |69948 |265 |22898 |
-ROW |69949 |268 |22898 |
-ROW |69950 |265 |22899 |
-ROW |69951 |268 |22899 |
-ROW |69952 |268 |22900 |
-ROW |69953 |271 |22900 |
-ROW |69954 |271 |22901 |
-ROW |69955 |266 |22902 |
-ROW |69956 |266 |22903 |
-ROW |69957 |264 |22908 |
-ROW |69958 |264 |22909 |
-ROW |69959 |264 |22910 |
-ROW |69960 |264 |22911 |
-ROW |69961 |264 |22912 |
-ROW |69962 |267 |23073 |
-ROW |69963 |267 |23074 |
-ROW |69964 |283 |22961 |
-ROW |69965 |289 |22961 |
-ROW |69966 |283 |22962 |
-ROW |69967 |289 |22962 |
-ROW |69968 |283 |22963 |
-ROW |69969 |289 |22963 |
-ROW |69970 |283 |22965 |
-ROW |69971 |289 |22965 |
-ROW |69972 |283 |22968 |
-ROW |69973 |289 |22968 |
-ROW |69974 |283 |22971 |
-ROW |69975 |289 |22971 |
-ROW |69976 |283 |22972 |
-ROW |69977 |289 |22972 |
-ROW |69978 |285 |22973 |
-ROW |69979 |288 |22973 |
-ROW |69980 |285 |22974 |
-ROW |69981 |288 |22974 |
-ROW |69982 |285 |22978 |
-ROW |69983 |288 |22978 |
-ROW |69984 |288 |22980 |
-ROW |69985 |291 |22980 |
-ROW |69986 |291 |22981 |
-ROW |69987 |286 |22982 |
-ROW |69988 |286 |22983 |
-ROW |69989 |287 |22985 |
-ROW |69990 |287 |22986 |
-ROW |69991 |284 |22988 |
-ROW |69992 |284 |22989 |
-ROW |69993 |284 |22990 |
-ROW |69994 |284 |22991 |
-ROW |69995 |284 |22992 |
-ROW |69996 |308 |23035 |
-ROW |69997 |308 |23036 |
-ROW |69998 |305 |23039 |
-ROW |69999 |308 |23039 |
-ROW |70000 |303 |23041 |
-ROW |70001 |309 |23041 |
-ROW |70002 |303 |23042 |
-ROW |70003 |309 |23042 |
-ROW |70004 |303 |23043 |
-ROW |70005 |309 |23043 |
-ROW |70006 |305 |23053 |
-ROW |70007 |308 |23053 |
-ROW |70008 |305 |23054 |
-ROW |70009 |308 |23054 |
-ROW |70010 |305 |23058 |
-ROW |70011 |308 |23058 |
-ROW |70012 |305 |23059 |
-ROW |70013 |308 |23059 |
-ROW |70014 |308 |23060 |
-ROW |70015 |311 |23060 |
-ROW |70016 |311 |23061 |
-ROW |70017 |306 |23062 |
-ROW |70018 |306 |23063 |
-ROW |70019 |307 |23077 |
-ROW |70020 |307 |23078 |
-ROW |70021 |304 |23068 |
-ROW |70022 |304 |23069 |
-ROW |70023 |304 |23070 |
-ROW |70024 |304 |23071 |
-ROW |70025 |304 |23072 |
-ROW |70026 |258 |22835 |
-ROW |70027 |258 |22836 |
-ROW |70028 |260 |22837 |
-ROW |70029 |260 |22838 |
-ROW |70030 |255 |22839 |
-ROW |70031 |258 |22839 |
-ROW |70032 |253 |22840 |
-ROW |70033 |259 |22840 |
-ROW |70034 |253 |22841 |
-ROW |70035 |259 |22841 |
-ROW |70036 |253 |22842 |
-ROW |70037 |259 |22842 |
-ROW |70038 |253 |22843 |
-ROW |70039 |259 |22843 |
-ROW |70040 |253 |22844 |
-ROW |70041 |259 |22844 |
-ROW |70042 |253 |22845 |
-ROW |70043 |259 |22845 |
-ROW |70044 |253 |22846 |
-ROW |70045 |259 |22846 |
-ROW |70046 |253 |22848 |
-ROW |70047 |259 |22848 |
-ROW |70048 |253 |22851 |
-ROW |70049 |259 |22851 |
-ROW |70050 |253 |22852 |
-ROW |70051 |259 |22852 |
-ROW |70052 |255 |22853 |
-ROW |70053 |258 |22853 |
-ROW |70054 |255 |22854 |
-ROW |70055 |258 |22854 |
-ROW |70056 |256 |22855 |
-ROW |70057 |256 |22856 |
-ROW |70058 |256 |22857 |
-ROW |70059 |255 |22858 |
-ROW |70060 |258 |22858 |
-ROW |70061 |255 |22859 |
-ROW |70062 |258 |22859 |
-ROW |70063 |258 |22860 |
-ROW |70064 |261 |22860 |
-ROW |70065 |261 |22861 |
-ROW |70066 |256 |22862 |
-ROW |70067 |256 |22863 |
-ROW |70068 |254 |22868 |
-ROW |70069 |254 |22869 |
-ROW |70070 |254 |22870 |
-ROW |70071 |254 |22871 |
-ROW |70072 |254 |22872 |
-ROW |70073 |257 |23075 |
-ROW |70074 |257 |23076 |
-ROW |70075 |298 |22996 |
-ROW |70076 |300 |22997 |
-ROW |70077 |300 |22998 |
-ROW |70078 |295 |22999 |
-ROW |70079 |298 |22999 |
-ROW |70080 |293 |23000 |
-ROW |70081 |299 |23000 |
-ROW |70082 |293 |23001 |
-ROW |70083 |299 |23001 |
-ROW |70084 |293 |23002 |
-ROW |70085 |299 |23002 |
-ROW |70086 |293 |23003 |
-ROW |70087 |299 |23003 |
-ROW |70088 |293 |23004 |
-ROW |70089 |299 |23004 |
-ROW |70090 |293 |23005 |
-ROW |70091 |299 |23005 |
-ROW |70092 |293 |23007 |
-ROW |70093 |299 |23007 |
-ROW |70094 |293 |23011 |
-ROW |70095 |299 |23011 |
-ROW |70096 |293 |23012 |
-ROW |70097 |299 |23012 |
-ROW |70098 |295 |23013 |
-ROW |70099 |298 |23013 |
-ROW |70100 |295 |23014 |
-ROW |70101 |298 |23014 |
-ROW |70102 |296 |23015 |
-ROW |70103 |296 |23016 |
-ROW |70104 |296 |23017 |
-ROW |70105 |295 |23018 |
-ROW |70106 |298 |23018 |
-ROW |70107 |295 |23019 |
-ROW |70108 |298 |23019 |
-ROW |70109 |298 |23020 |
-ROW |70110 |301 |23020 |
-ROW |70111 |301 |23021 |
-ROW |70112 |296 |23022 |
-ROW |70113 |296 |23023 |
-ROW |70114 |297 |23025 |
-ROW |70115 |297 |23026 |
-ROW |70116 |294 |23028 |
-ROW |70117 |294 |23029 |
-ROW |70118 |294 |23030 |
-ROW |70119 |294 |23031 |
-ROW |70120 |294 |23032 |
-ROW |70121 |743 |26925 |
-ROW |70122 |743 |26926 |
-ROW |70123 |741 |26927 |
-ROW |70124 |742 |26928 |
-ROW |70125 |743 |26929 |
-ROW |70126 |743 |26930 |
-ROW |70127 |743 |26931 |
-ROW |70128 |743 |26932 |
-ROW |70129 |745 |26933 |
-ROW |70130 |746 |26934 |
-ROW |70131 |744 |26935 |
-ROW |70132 |744 |26936 |
-ROW |70133 |746 |26937 |
-ROW |70134 |746 |26938 |
-ROW |70135 |746 |26939 |
-ROW |70136 |746 |26940 |
-ROW |70137 |746 |26941 |
-ROW |70138 |746 |26942 |
-ROW |70139 |745 |26943 |
-ROW |70140 |748 |26944 |
-ROW |70141 |748 |26945 |
-ROW |70142 |749 |26946 |
-ROW |70143 |755 |26947 |
-ROW |70144 |755 |26948 |
-ROW |70145 |755 |26949 |
-ROW |70146 |753 |26950 |
-ROW |70147 |757 |26951 |
-ROW |70148 |753 |26952 |
-ROW |70149 |757 |26953 |
-ROW |70150 |757 |26954 |
-ROW |70151 |755 |26955 |
-ROW |70152 |755 |26956 |
-ROW |70153 |750 |26957 |
-ROW |70154 |750 |26958 |
-ROW |70155 |750 |26959 |
-ROW |70156 |753 |26960 |
-ROW |70157 |753 |26961 |
-ROW |70158 |755 |26962 |
-ROW |70159 |755 |26963 |
-ROW |70160 |755 |26964 |
-ROW |70161 |753 |26965 |
-ROW |70162 |763 |26966 |
-ROW |70163 |763 |26967 |
-ROW |70164 |762 |26968 |
-ROW |70165 |762 |26969 |
-ROW |70166 |760 |26970 |
-ROW |70167 |760 |26971 |
-ROW |70168 |760 |26972 |
-ROW |70169 |760 |26973 |
-ROW |70170 |760 |26974 |
-ROW |70171 |761 |26975 |
-ROW |70172 |761 |26976 |
-ROW |70173 |758 |26977 |
-ROW |70174 |761 |26977 |
-ROW |70175 |760 |26978 |
-ROW |70176 |760 |26979 |
-ROW |70177 |758 |26980 |
-ROW |70178 |758 |26981 |
-ROW |70179 |761 |26981 |
-ROW |70180 |758 |26982 |
-ROW |70181 |761 |26982 |
-ROW |70182 |761 |26983 |
-ROW |70183 |761 |26984 |
-ROW |70184 |762 |26984 |
-ROW |70185 |758 |26985 |
-ROW |70186 |761 |26985 |
-ROW |70187 |760 |26986 |
-ROW |70188 |747 |26994 |
-ROW |70189 |754 |26995 |
-ROW |70190 |754 |26996 |
-ROW |70191 |754 |26997 |
-ROW |70192 |754 |26998 |
-ROW |70193 |751 |26999 |
-ROW |70194 |751 |27000 |
-ROW |70195 |751 |27001 |
-ROW |70196 |751 |27002 |
-ROW |70197 |752 |27003 |
-ROW |70198 |752 |27004 |
-ROW |70199 |752 |27005 |
-ROW |70200 |752 |27006 |
-ROW |70201 |759 |27007 |
-ROW |70202 |759 |27008 |
-ROW |70203 |759 |27009 |
-ROW |70204 |759 |27010 |
-ROW |70205 |1112 |28621 |
-ROW |70206 |1112 |28622 |
-ROW |70207 |1112 |28623 |
-ROW |70208 |1112 |28624 |
-ROW |70209 |1328 |30821 |
-ROW |70210 |1328 |30822 |
-ROW |70211 |1330 |30823 |
-ROW |70212 |1330 |30824 |
-ROW |70213 |1330 |30825 |
-ROW |70214 |1330 |30826 |
-ROW |70215 |1328 |30827 |
-ROW |70216 |1330 |30828 |
-ROW |70217 |1330 |30829 |
-ROW |70218 |1330 |30830 |
-ROW |70219 |1328 |31054 |
-ROW |70220 |1328 |30831 |
-ROW |70221 |1328 |30832 |
-ROW |70222 |1328 |30833 |
-ROW |70223 |1328 |30834 |
-ROW |70224 |1328 |30835 |
-ROW |70225 |1329 |30836 |
-ROW |70226 |1328 |30837 |
-ROW |70227 |1328 |30838 |
-ROW |70228 |1328 |30839 |
-ROW |70229 |1329 |30840 |
-ROW |70230 |1328 |30841 |
-ROW |70231 |1329 |30842 |
-ROW |70232 |1329 |30843 |
-ROW |70233 |1329 |30844 |
-ROW |70234 |1329 |30845 |
-ROW |70235 |1328 |30846 |
-ROW |70236 |1328 |30847 |
-ROW |70237 |1328 |30848 |
-ROW |70238 |1328 |30849 |
-ROW |70239 |1328 |30850 |
-ROW |70240 |1328 |30851 |
-ROW |70241 |1328 |30852 |
-ROW |70242 |1328 |30853 |
-ROW |70243 |1328 |30854 |
-ROW |70244 |1328 |30855 |
-ROW |70245 |1328 |30856 |
-ROW |70246 |1328 |30857 |
-ROW |70247 |1328 |30858 |
-ROW |70248 |1328 |30859 |
-ROW |70249 |1328 |30860 |
-ROW |70250 |1328 |30861 |
-ROW |70251 |1328 |30862 |
-ROW |70252 |1328 |30863 |
-ROW |70253 |1328 |30864 |
-ROW |70254 |1328 |30865 |
-ROW |70255 |1328 |30866 |
-ROW |70256 |1328 |30867 |
-ROW |70257 |1328 |30868 |
-ROW |70258 |1328 |30869 |
-ROW |70259 |1328 |30870 |
-ROW |70260 |1328 |30871 |
-ROW |70261 |1328 |30872 |
-ROW |70262 |1329 |30873 |
-ROW |70263 |1336 |31055 |
-ROW |70264 |1335 |31056 |
-ROW |70265 |1335 |31057 |
-ROW |70266 |1335 |31058 |
-ROW |70267 |1336 |31059 |
-ROW |70268 |1335 |31060 |
-ROW |70269 |1335 |31061 |
-ROW |70270 |1335 |31062 |
-ROW |70271 |1335 |31063 |
-ROW |70272 |1335 |31064 |
-ROW |70273 |1335 |31065 |
-ROW |70274 |1335 |31066 |
-ROW |70275 |1335 |31067 |
-ROW |70276 |1335 |31068 |
-ROW |70277 |1335 |31069 |
-ROW |70278 |1335 |31070 |
-ROW |70279 |1335 |31071 |
-ROW |70280 |1335 |31072 |
-ROW |70281 |1335 |31073 |
-ROW |70282 |1335 |31074 |
-ROW |70283 |1335 |31075 |
-ROW |70284 |1335 |31076 |
-ROW |70285 |1335 |31077 |
-ROW |70286 |1335 |31078 |
-ROW |70287 |1335 |31079 |
-ROW |70288 |1335 |31080 |
-ROW |70289 |1335 |31081 |
-ROW |70290 |1335 |31082 |
-ROW |70291 |1335 |31083 |
-ROW |70292 |1335 |31084 |
-ROW |70293 |1335 |31085 |
-ROW |70294 |1335 |31086 |
-ROW |70295 |1335 |31087 |
-ROW |70296 |1335 |31088 |
-ROW |70297 |1335 |31089 |
-ROW |70298 |1335 |31090 |
-ROW |70299 |1336 |31091 |
-ROW |70300 |1335 |31092 |
-ROW |70301 |1336 |31093 |
-ROW |70302 |1336 |31094 |
-ROW |70303 |1335 |31095 |
-ROW |70304 |1335 |31096 |
-ROW |70305 |1335 |31097 |
-ROW |70306 |1335 |31098 |
-ROW |70307 |1335 |31099 |
-ROW |70308 |1335 |31100 |
-ROW |70309 |1335 |31101 |
-ROW |70310 |1335 |31102 |
-ROW |70311 |1335 |31103 |
-ROW |70312 |1335 |31104 |
-ROW |70313 |1335 |31105 |
-ROW |70314 |1335 |31106 |
-ROW |70315 |1335 |31107 |
-ROW |70316 |1335 |31108 |
-ROW |70317 |1335 |31109 |
-ROW |70318 |1335 |31110 |
-ROW |70319 |1335 |31111 |
-ROW |70320 |1335 |31112 |
-ROW |70321 |1335 |31113 |
-ROW |70322 |1335 |31114 |
-ROW |70323 |1335 |31115 |
-ROW |70324 |1335 |31116 |
-ROW |70325 |1335 |31117 |
-ROW |70326 |1335 |31118 |
-ROW |70327 |1335 |31119 |
-ROW |70328 |1335 |31120 |
-ROW |70329 |1335 |31121 |
-ROW |70330 |1336 |31128 |
-ROW |70331 |1336 |31129 |
-ROW |70332 |1336 |31130 |
-ROW |70333 |1336 |31131 |
-ROW |70334 |1336 |31132 |
-ROW |70335 |1314 |30431 |
-ROW |70336 |1314 |30432 |
-ROW |70337 |1315 |30433 |
-ROW |70338 |1314 |30434 |
-ROW |70339 |1314 |30435 |
-ROW |70340 |1315 |30436 |
-ROW |70341 |1314 |30437 |
-ROW |70342 |1314 |30438 |
-ROW |70343 |1314 |30439 |
-ROW |70344 |1314 |30440 |
-ROW |70345 |1314 |30441 |
-ROW |70346 |1314 |30442 |
-ROW |70347 |1315 |30443 |
-ROW |70348 |1314 |30444 |
-ROW |70349 |1314 |30445 |
-ROW |70350 |1314 |30446 |
-ROW |70351 |1314 |30447 |
-ROW |70352 |1314 |30449 |
-ROW |70353 |1314 |30450 |
-ROW |70354 |1314 |30451 |
-ROW |70355 |1314 |30452 |
-ROW |70356 |1314 |30453 |
-ROW |70357 |1314 |30454 |
-ROW |70358 |1314 |30455 |
-ROW |70359 |1314 |30456 |
-ROW |70360 |1314 |30457 |
-ROW |70361 |1314 |30458 |
-ROW |70362 |1314 |30459 |
-ROW |70363 |1314 |30460 |
-ROW |70364 |1314 |30461 |
-ROW |70365 |1314 |30462 |
-ROW |70366 |1314 |30463 |
-ROW |70367 |1314 |30464 |
-ROW |70368 |1314 |30465 |
-ROW |70369 |1314 |30466 |
-ROW |70370 |1314 |30470 |
-ROW |70371 |1314 |30471 |
-ROW |70372 |1314 |31168 |
-ROW |70373 |1314 |31169 |
-ROW |70374 |1314 |31170 |
-ROW |70375 |1314 |31171 |
-ROW |70376 |1314 |30474 |
-ROW |70377 |1315 |30475 |
-ROW |70378 |1314 |30476 |
-ROW |70379 |1314 |30477 |
-ROW |70380 |1314 |30478 |
-ROW |70381 |1322 |30637 |
-ROW |70382 |1322 |30638 |
-ROW |70383 |1323 |30639 |
-ROW |70384 |1322 |30640 |
-ROW |70385 |1322 |30641 |
-ROW |70386 |1323 |30642 |
-ROW |70387 |1322 |30643 |
-ROW |70388 |1322 |30644 |
-ROW |70389 |1322 |30645 |
-ROW |70390 |1322 |30646 |
-ROW |70391 |1322 |30647 |
-ROW |70392 |1322 |30648 |
-ROW |70393 |1323 |30649 |
-ROW |70394 |1322 |30650 |
-ROW |70395 |1322 |30651 |
-ROW |70396 |1322 |30652 |
-ROW |70397 |1322 |30653 |
-ROW |70398 |1322 |30655 |
-ROW |70399 |1322 |30656 |
-ROW |70400 |1322 |30657 |
-ROW |70401 |1322 |30658 |
-ROW |70402 |1322 |30659 |
-ROW |70403 |1322 |30660 |
-ROW |70404 |1322 |30661 |
-ROW |70405 |1322 |30662 |
-ROW |70406 |1322 |30663 |
-ROW |70407 |1322 |30664 |
-ROW |70408 |1322 |30665 |
-ROW |70409 |1322 |30666 |
-ROW |70410 |1322 |30667 |
-ROW |70411 |1322 |30668 |
-ROW |70412 |1322 |30669 |
-ROW |70413 |1322 |30670 |
-ROW |70414 |1322 |30671 |
-ROW |70415 |1322 |30672 |
-ROW |70416 |1322 |30676 |
-ROW |70417 |1322 |30677 |
-ROW |70418 |1322 |31172 |
-ROW |70419 |1322 |31173 |
-ROW |70420 |1322 |31174 |
-ROW |70421 |1322 |31175 |
-ROW |70422 |1322 |30680 |
-ROW |70423 |1323 |30681 |
-ROW |70424 |1322 |30682 |
-ROW |70425 |1322 |30683 |
-ROW |70426 |1322 |30684 |
-ROW |70427 |1317 |30479 |
-ROW |70428 |1316 |30480 |
-ROW |70429 |1316 |30481 |
-ROW |70430 |1316 |30482 |
-ROW |70431 |1316 |30483 |
-ROW |70432 |1316 |30484 |
-ROW |70433 |1317 |30485 |
-ROW |70434 |1316 |30486 |
-ROW |70435 |1317 |30487 |
-ROW |70436 |1316 |30488 |
-ROW |70437 |1316 |30489 |
-ROW |70438 |1316 |30490 |
-ROW |70439 |1316 |30491 |
-ROW |70440 |1316 |30492 |
-ROW |70441 |1316 |30493 |
-ROW |70442 |1316 |30494 |
-ROW |70443 |1316 |30495 |
-ROW |70444 |1316 |30496 |
-ROW |70445 |1316 |30497 |
-ROW |70446 |1316 |30499 |
-ROW |70447 |1316 |30500 |
-ROW |70448 |1316 |30503 |
-ROW |70449 |1316 |30504 |
-ROW |70450 |1316 |30505 |
-ROW |70451 |1316 |30506 |
-ROW |70452 |1316 |30507 |
-ROW |70453 |1316 |30508 |
-ROW |70454 |1316 |30509 |
-ROW |70455 |1316 |30510 |
-ROW |70456 |1316 |30512 |
-ROW |70457 |1316 |30513 |
-ROW |70458 |1316 |30514 |
-ROW |70459 |1316 |30515 |
-ROW |70460 |1316 |30516 |
-ROW |70461 |1316 |30517 |
-ROW |70462 |1316 |30518 |
-ROW |70463 |1316 |30519 |
-ROW |70464 |1316 |31176 |
-ROW |70465 |1316 |31177 |
-ROW |70466 |1316 |31178 |
-ROW |70467 |1316 |31179 |
-ROW |70468 |1316 |30522 |
-ROW |70469 |1317 |30523 |
-ROW |70470 |1316 |30524 |
-ROW |70471 |1316 |30525 |
-ROW |70472 |1316 |30526 |
-ROW |70473 |1340 |31361 |
-ROW |70474 |1340 |31362 |
-ROW |70475 |1340 |31363 |
-ROW |70476 |1339 |31364 |
-ROW |70477 |1339 |31365 |
-ROW |70478 |1340 |31366 |
-ROW |70479 |1340 |31367 |
-ROW |70480 |1340 |31368 |
-ROW |70481 |1340 |31369 |
-ROW |70482 |1339 |31370 |
-ROW |70483 |1339 |31371 |
-ROW |70484 |1339 |31372 |
-ROW |70485 |1339 |31373 |
-ROW |70486 |1339 |31374 |
-ROW |70487 |1339 |31375 |
-ROW |70488 |1339 |31376 |
-ROW |70489 |1339 |31377 |
-ROW |70490 |1339 |31378 |
-ROW |70491 |1339 |31379 |
-ROW |70492 |1339 |31380 |
-ROW |70493 |1339 |31381 |
-ROW |70494 |1339 |31382 |
-ROW |70495 |1339 |31383 |
-ROW |70496 |1339 |31384 |
-ROW |70497 |1339 |31385 |
-ROW |70498 |1339 |31386 |
-ROW |70499 |1339 |31387 |
-ROW |70500 |1339 |31388 |
-ROW |70501 |1339 |31389 |
-ROW |70502 |1339 |31390 |
-ROW |70503 |1339 |31391 |
-ROW |70504 |1339 |31392 |
-ROW |70505 |1339 |31393 |
-ROW |70506 |1339 |31394 |
-ROW |70507 |1339 |31395 |
-ROW |70508 |1339 |31396 |
-ROW |70509 |1339 |31397 |
-ROW |70510 |1339 |31398 |
-ROW |70511 |1339 |31399 |
-ROW |70512 |1339 |31400 |
-ROW |70513 |1339 |31401 |
-ROW |70514 |1339 |31402 |
-ROW |70515 |1339 |31403 |
-ROW |70516 |1339 |31404 |
-ROW |70517 |1339 |31405 |
-ROW |70518 |1339 |31406 |
-ROW |70519 |1339 |31407 |
-ROW |70520 |1339 |31408 |
-ROW |70521 |1339 |31409 |
-ROW |70522 |1339 |31410 |
-ROW |70523 |1339 |31411 |
-ROW |70524 |1339 |31412 |
-ROW |70525 |1339 |31413 |
-ROW |70526 |1339 |31414 |
-ROW |70527 |1339 |31415 |
-ROW |70528 |1339 |31416 |
-ROW |70529 |1339 |31417 |
-ROW |70530 |1339 |31418 |
-ROW |70531 |1339 |31419 |
-ROW |70532 |1339 |31420 |
-ROW |70533 |1339 |31421 |
-ROW |70534 |1339 |31422 |
-ROW |70535 |1339 |31423 |
-ROW |70536 |1339 |31424 |
-ROW |70537 |1339 |31425 |
-ROW |70538 |1339 |31426 |
-ROW |70539 |1339 |31427 |
-ROW |70540 |1339 |31428 |
-ROW |70541 |1339 |31429 |
-ROW |70542 |1339 |31430 |
-ROW |70543 |1339 |31431 |
-ROW |70544 |1339 |31432 |
-ROW |70545 |1339 |31433 |
-ROW |70546 |1115 |28671 |
-ROW |70547 |1115 |28672 |
-ROW |70548 |1114 |28673 |
-ROW |70549 |1114 |28674 |
-ROW |70550 |1115 |28675 |
-ROW |70551 |1114 |28676 |
-ROW |70552 |1114 |28677 |
-ROW |70553 |1114 |28678 |
-ROW |70554 |1114 |28679 |
-ROW |70555 |1114 |28680 |
-ROW |70556 |1114 |28681 |
-ROW |70557 |1115 |28682 |
-ROW |70558 |1115 |28683 |
-ROW |70559 |1114 |28684 |
-ROW |70560 |1114 |28685 |
-ROW |70561 |1115 |28686 |
-ROW |70562 |1115 |28687 |
-ROW |70563 |1114 |28688 |
-ROW |70564 |1114 |28689 |
-ROW |70565 |1114 |28690 |
-ROW |70566 |1114 |28691 |
-ROW |70567 |1114 |28692 |
-ROW |70568 |1114 |28693 |
-ROW |70569 |1114 |28694 |
-ROW |70570 |1114 |28695 |
-ROW |70571 |1114 |28696 |
-ROW |70572 |1114 |28697 |
-ROW |70573 |1114 |28698 |
-ROW |70574 |1114 |28699 |
-ROW |70575 |1114 |28700 |
-ROW |70576 |1114 |28701 |
-ROW |70577 |1114 |28702 |
-ROW |70578 |1114 |28703 |
-ROW |70579 |1114 |28704 |
-ROW |70580 |1114 |28705 |
-ROW |70581 |1114 |28706 |
-ROW |70582 |1114 |28707 |
-ROW |70583 |1114 |28708 |
-ROW |70584 |1114 |28709 |
-ROW |70585 |1114 |28710 |
-ROW |70586 |1115 |28713 |
-ROW |70587 |1115 |28714 |
-ROW |70588 |1338 |31180 |
-ROW |70589 |1337 |31181 |
-ROW |70590 |1338 |31182 |
-ROW |70591 |1338 |31183 |
-ROW |70592 |1337 |31184 |
-ROW |70593 |1338 |31185 |
-ROW |70594 |1338 |31186 |
-ROW |70595 |1337 |31187 |
-ROW |70596 |1337 |31188 |
-ROW |70597 |1337 |31189 |
-ROW |70598 |1337 |31190 |
-ROW |70599 |1337 |31191 |
-ROW |70600 |1337 |31192 |
-ROW |70601 |1337 |31193 |
-ROW |70602 |1337 |31194 |
-ROW |70603 |1338 |31195 |
-ROW |70604 |1338 |31196 |
-ROW |70605 |1337 |31197 |
-ROW |70606 |1337 |31199 |
-ROW |70607 |1337 |31200 |
-ROW |70608 |1337 |31201 |
-ROW |70609 |1337 |31202 |
-ROW |70610 |1337 |31203 |
-ROW |70611 |1337 |31204 |
-ROW |70612 |1337 |31205 |
-ROW |70613 |1337 |31206 |
-ROW |70614 |1337 |31207 |
-ROW |70615 |1337 |31208 |
-ROW |70616 |1337 |31209 |
-ROW |70617 |1337 |31210 |
-ROW |70618 |1337 |31211 |
-ROW |70619 |1337 |31212 |
-ROW |70620 |1337 |31213 |
-ROW |70621 |1337 |31214 |
-ROW |70622 |1337 |31215 |
-ROW |70623 |1337 |31216 |
-ROW |70624 |1337 |31217 |
-ROW |70625 |1337 |31218 |
-ROW |70626 |1337 |31219 |
-ROW |70627 |1337 |31220 |
-ROW |70628 |1337 |31221 |
-ROW |70629 |1337 |31222 |
-ROW |70630 |1337 |31223 |
-ROW |70631 |1337 |31224 |
-ROW |70632 |1337 |31225 |
-ROW |70633 |1337 |31226 |
-ROW |70634 |1337 |31227 |
-ROW |70635 |1337 |31228 |
-ROW |70636 |1337 |31229 |
-ROW |70637 |1337 |31230 |
-ROW |70638 |1337 |31231 |
-ROW |70639 |1337 |31232 |
-ROW |70640 |1337 |31233 |
-ROW |70641 |1337 |31234 |
-ROW |70642 |1337 |31235 |
-ROW |70643 |1337 |31236 |
-ROW |70644 |1337 |31237 |
-ROW |70645 |1337 |31238 |
-ROW |70646 |1337 |31239 |
-ROW |70647 |1302 |30273 |
-ROW |70648 |1302 |30274 |
-ROW |70649 |1303 |30275 |
-ROW |70650 |1303 |30276 |
-ROW |70651 |1302 |30277 |
-ROW |70652 |1302 |30278 |
-ROW |70653 |1302 |30279 |
-ROW |70654 |1302 |30280 |
-ROW |70655 |1302 |30281 |
-ROW |70656 |1302 |30282 |
-ROW |70657 |1302 |30283 |
-ROW |70658 |1302 |30284 |
-ROW |70659 |1302 |30285 |
-ROW |70660 |1302 |30286 |
-ROW |70661 |1302 |30287 |
-ROW |70662 |1302 |30288 |
-ROW |70663 |1302 |30289 |
-ROW |70664 |1302 |30290 |
-ROW |70665 |1302 |30291 |
-ROW |70666 |1302 |30292 |
-ROW |70667 |1302 |30293 |
-ROW |70668 |1302 |30294 |
-ROW |70669 |1302 |30295 |
-ROW |70670 |1302 |30296 |
-ROW |70671 |1302 |30297 |
-ROW |70672 |1302 |30298 |
-ROW |70673 |1302 |30299 |
-ROW |70674 |1302 |30300 |
-ROW |70675 |1302 |30301 |
-ROW |70676 |1302 |30302 |
-ROW |70677 |1302 |30303 |
-ROW |70678 |1302 |30304 |
-ROW |70679 |1302 |30305 |
-ROW |70680 |1302 |30306 |
-ROW |70681 |1302 |30307 |
-ROW |70682 |1302 |30308 |
-ROW |70683 |1302 |30309 |
-ROW |70684 |1302 |30310 |
-ROW |70685 |1302 |30311 |
-ROW |70686 |1302 |30312 |
-ROW |70687 |1302 |30313 |
-ROW |70688 |1302 |30314 |
-ROW |70689 |1302 |30315 |
-ROW |70690 |1302 |30316 |
-ROW |70691 |1302 |30317 |
-ROW |70692 |1302 |30318 |
-ROW |70693 |1302 |30319 |
-ROW |70694 |1302 |30320 |
-ROW |70695 |1302 |30321 |
-ROW |70696 |1302 |30322 |
-ROW |70697 |1302 |30323 |
-ROW |70698 |1302 |30324 |
-ROW |70699 |1302 |30325 |
-ROW |70700 |1302 |30326 |
-ROW |70701 |1302 |30327 |
-ROW |70702 |1302 |30328 |
-ROW |70703 |1302 |30329 |
-ROW |70704 |1302 |30330 |
-ROW |70705 |1302 |30331 |
-ROW |70706 |1302 |30332 |
-ROW |70707 |1302 |30333 |
-ROW |70708 |1302 |30334 |
-ROW |70709 |1302 |30335 |
-ROW |70710 |1302 |30336 |
-ROW |70711 |1302 |30344 |
-ROW |70712 |1302 |30345 |
-ROW |70713 |1302 |30346 |
-ROW |70714 |1302 |30347 |
-ROW |70715 |1302 |30351 |
-ROW |70716 |1302 |30352 |
-ROW |70717 |1302 |30353 |
-ROW |70718 |1302 |30354 |
-ROW |70719 |1302 |30355 |
-ROW |70720 |1302 |30356 |
-ROW |70721 |1302 |30357 |
-ROW |70722 |1302 |30358 |
-ROW |70723 |1302 |30359 |
-ROW |70724 |1302 |30360 |
-ROW |70725 |1302 |30361 |
-ROW |70726 |1302 |30362 |
-ROW |70727 |1302 |30363 |
-ROW |70728 |1302 |30364 |
-ROW |70729 |1302 |30365 |
-ROW |70730 |1302 |30366 |
-ROW |70731 |1302 |30367 |
-ROW |70732 |1302 |30368 |
-ROW |70733 |1302 |30369 |
-ROW |70734 |1302 |30370 |
-ROW |70735 |1302 |30371 |
-ROW |70736 |1302 |30372 |
-ROW |70737 |1302 |30373 |
-ROW |70738 |1302 |30374 |
-ROW |70739 |1302 |30375 |
-ROW |70740 |1302 |30376 |
-ROW |70741 |1302 |30377 |
-ROW |70742 |1302 |30378 |
-ROW |70743 |1302 |30379 |
-ROW |70744 |1302 |30380 |
-ROW |70745 |1302 |30381 |
-ROW |70746 |1302 |30382 |
-ROW |70747 |1302 |30383 |
-ROW |70748 |1302 |30384 |
-ROW |70749 |1302 |30385 |
-ROW |70750 |1302 |30386 |
-ROW |70751 |1302 |30387 |
-ROW |70752 |1302 |30388 |
-ROW |70753 |1302 |30389 |
-ROW |70754 |1302 |30390 |
-ROW |70755 |1302 |30391 |
-ROW |70756 |1302 |30392 |
-ROW |70757 |1302 |30393 |
-ROW |70758 |1302 |30394 |
-ROW |70759 |1302 |30395 |
-ROW |70760 |1302 |30397 |
-ROW |70761 |1302 |30398 |
-ROW |70762 |1302 |30399 |
-ROW |70763 |1302 |30400 |
-ROW |70764 |1302 |30401 |
-ROW |70765 |1302 |30402 |
-ROW |70766 |1302 |30403 |
-ROW |70767 |1302 |30404 |
-ROW |70768 |780 |27065 |
-ROW |70769 |780 |27066 |
-ROW |70770 |780 |27067 |
-ROW |70771 |799 |27149 |
-ROW |70772 |799 |27150 |
-ROW |70773 |799 |27151 |
-ROW |70774 |805 |27192 |
-ROW |70775 |805 |27193 |
-ROW |70776 |805 |27194 |
-ROW |70777 |813 |27225 |
-ROW |70778 |813 |27226 |
-ROW |70779 |813 |27227 |
-ROW |70780 |822 |27261 |
-ROW |70781 |822 |27262 |
-ROW |70782 |822 |27263 |
-ROW |70783 |825 |27282 |
-ROW |70784 |825 |27283 |
-ROW |70785 |825 |27284 |
-ROW |70786 |842 |27333 |
-ROW |70787 |842 |27334 |
-ROW |70788 |842 |27335 |
-ROW |70789 |847 |27365 |
-ROW |70790 |847 |27366 |
-ROW |70791 |847 |27367 |
-ROW |70792 |876 |27462 |
-ROW |70793 |876 |27463 |
-ROW |70794 |876 |27464 |
-ROW |70795 |885 |27496 |
-ROW |70796 |885 |27497 |
-ROW |70797 |885 |27498 |
-ROW |70798 |894 |27532 |
-ROW |70799 |894 |27533 |
-ROW |70800 |894 |27534 |
-ROW |70801 |903 |27568 |
-ROW |70802 |903 |27569 |
-ROW |70803 |903 |27570 |
-ROW |70804 |915 |27631 |
-ROW |70805 |915 |27632 |
-ROW |70806 |915 |27633 |
-ROW |70807 |918 |27654 |
-ROW |70808 |918 |27655 |
-ROW |70809 |918 |27656 |
-ROW |70810 |936 |27734 |
-ROW |70811 |936 |27735 |
-ROW |70812 |936 |27736 |
-ROW |70813 |944 |27766 |
-ROW |70814 |944 |27767 |
-ROW |70815 |944 |27768 |
-ROW |70816 |951 |27800 |
-ROW |70817 |951 |27801 |
-ROW |70818 |951 |27802 |
-ROW |70819 |971 |27882 |
-ROW |70820 |971 |27883 |
-ROW |70821 |971 |27884 |
-ROW |70822 |979 |27919 |
-ROW |70823 |979 |27920 |
-ROW |70824 |979 |27921 |
-ROW |70825 |988 |27956 |
-ROW |70826 |988 |27957 |
-ROW |70827 |988 |27958 |
-ROW |70828 |994 |27986 |
-ROW |70829 |994 |27987 |
-ROW |70830 |994 |27988 |
-ROW |70831 |1000 |28015 |
-ROW |70832 |1000 |28016 |
-ROW |70833 |1000 |28017 |
-ROW |70834 |1030 |28130 |
-ROW |70835 |1030 |28131 |
-ROW |70836 |1030 |28132 |
-ROW |70837 |1043 |28185 |
-ROW |70838 |1043 |28186 |
-ROW |70839 |1043 |28187 |
-ROW |70840 |1055 |28233 |
-ROW |70841 |1055 |28234 |
-ROW |70842 |1055 |28235 |
-ROW |70843 |1060 |28282 |
-ROW |70844 |1060 |28283 |
-ROW |70845 |1060 |28284 |
-ROW |70846 |1070 |28330 |
-ROW |70847 |1070 |28331 |
-ROW |70848 |1070 |28332 |
-ROW |70849 |1079 |28377 |
-ROW |70850 |1079 |28378 |
-ROW |70851 |1079 |28379 |
-ROW |70852 |1095 |28454 |
-ROW |70853 |1095 |28455 |
-ROW |70854 |1095 |28456 |
-ROW |70855 |1102 |28482 |
-ROW |70856 |1102 |28483 |
-ROW |70857 |1102 |28484 |
-ROW |70858 |1127 |28957 |
-ROW |70859 |1127 |28958 |
-ROW |70860 |1127 |28959 |
-ROW |70861 |1136 |29050 |
-ROW |70862 |1136 |29051 |
-ROW |70863 |1136 |29052 |
-ROW |70864 |1271 |30046 |
-ROW |70865 |1271 |30047 |
-ROW |70866 |1271 |30048 |
-ROW |70867 |800 |27152 |
-ROW |70868 |799 |27154 |
-ROW |70869 |800 |27157 |
-ROW |70870 |799 |29844 |
-ROW |70871 |800 |29845 |
-ROW |70872 |800 |29846 |
-ROW |70873 |800 |29847 |
-ROW |70874 |800 |29848 |
-ROW |70875 |804 |27195 |
-ROW |70876 |804 |27199 |
-ROW |70877 |805 |27202 |
-ROW |70878 |812 |27228 |
-ROW |70879 |812 |27232 |
-ROW |70880 |813 |27235 |
-ROW |70881 |821 |27264 |
-ROW |70882 |821 |27268 |
-ROW |70883 |822 |27271 |
-ROW |70884 |824 |27285 |
-ROW |70885 |824 |27289 |
-ROW |70886 |825 |27292 |
-ROW |70887 |841 |27336 |
-ROW |70888 |841 |27340 |
-ROW |70889 |842 |27343 |
-ROW |70890 |846 |27368 |
-ROW |70891 |846 |27372 |
-ROW |70892 |847 |27375 |
-ROW |70893 |875 |27465 |
-ROW |70894 |875 |27469 |
-ROW |70895 |876 |27472 |
-ROW |70896 |884 |27499 |
-ROW |70897 |884 |27503 |
-ROW |70898 |885 |27506 |
-ROW |70899 |893 |27535 |
-ROW |70900 |893 |27539 |
-ROW |70901 |894 |27542 |
-ROW |70902 |902 |27571 |
-ROW |70903 |902 |27575 |
-ROW |70904 |903 |27578 |
-ROW |70905 |914 |27634 |
-ROW |70906 |914 |27638 |
-ROW |70907 |915 |27641 |
-ROW |70908 |917 |27657 |
-ROW |70909 |917 |27661 |
-ROW |70910 |918 |27664 |
-ROW |70911 |935 |27737 |
-ROW |70912 |935 |27741 |
-ROW |70913 |936 |27744 |
-ROW |70914 |943 |27769 |
-ROW |70915 |943 |27773 |
-ROW |70916 |944 |27776 |
-ROW |70917 |950 |27803 |
-ROW |70918 |950 |27807 |
-ROW |70919 |951 |27810 |
-ROW |70920 |970 |27885 |
-ROW |70921 |970 |27889 |
-ROW |70922 |971 |27892 |
-ROW |70923 |978 |27922 |
-ROW |70924 |978 |27926 |
-ROW |70925 |979 |27929 |
-ROW |70926 |987 |27959 |
-ROW |70927 |987 |27963 |
-ROW |70928 |988 |27966 |
-ROW |70929 |993 |27989 |
-ROW |70930 |993 |27993 |
-ROW |70931 |994 |27996 |
-ROW |70932 |999 |28018 |
-ROW |70933 |999 |28022 |
-ROW |70934 |1000 |28025 |
-ROW |70935 |1029 |28133 |
-ROW |70936 |1029 |28137 |
-ROW |70937 |1030 |28140 |
-ROW |70938 |1042 |28188 |
-ROW |70939 |1042 |28192 |
-ROW |70940 |1043 |28195 |
-ROW |70941 |1054 |28236 |
-ROW |70942 |1054 |28240 |
-ROW |70943 |1055 |28243 |
-ROW |70944 |1059 |28285 |
-ROW |70945 |1059 |28289 |
-ROW |70946 |1060 |28292 |
-ROW |70947 |1069 |28333 |
-ROW |70948 |1069 |28337 |
-ROW |70949 |1070 |28340 |
-ROW |70950 |1078 |28380 |
-ROW |70951 |1078 |28384 |
-ROW |70952 |1079 |28387 |
-ROW |70953 |1094 |28457 |
-ROW |70954 |1094 |28461 |
-ROW |70955 |1095 |28464 |
-ROW |70956 |1101 |28485 |
-ROW |70957 |1101 |28489 |
-ROW |70958 |1102 |28492 |
-ROW |70959 |1126 |28960 |
-ROW |70960 |1126 |28964 |
-ROW |70961 |1127 |28967 |
-ROW |70962 |1135 |29053 |
-ROW |70963 |1135 |29057 |
-ROW |70964 |1136 |29060 |
-ROW |70965 |1000 |29834 |
-ROW |70966 |999 |29835 |
-ROW |70967 |999 |29836 |
-ROW |70968 |999 |29837 |
-ROW |70969 |999 |29838 |
-ROW |70970 |805 |29849 |
-ROW |70971 |804 |29850 |
-ROW |70972 |804 |29851 |
-ROW |70973 |804 |29852 |
-ROW |70974 |804 |29853 |
-ROW |70975 |813 |29854 |
-ROW |70976 |812 |29855 |
-ROW |70977 |812 |29856 |
-ROW |70978 |812 |29857 |
-ROW |70979 |812 |29858 |
-ROW |70980 |822 |29859 |
-ROW |70981 |821 |29860 |
-ROW |70982 |821 |29861 |
-ROW |70983 |821 |29862 |
-ROW |70984 |821 |29863 |
-ROW |70985 |825 |29864 |
-ROW |70986 |824 |29865 |
-ROW |70987 |824 |29866 |
-ROW |70988 |824 |29867 |
-ROW |70989 |824 |29868 |
-ROW |70990 |842 |29869 |
-ROW |70991 |841 |29870 |
-ROW |70992 |841 |29871 |
-ROW |70993 |841 |29872 |
-ROW |70994 |841 |29873 |
-ROW |70995 |847 |29874 |
-ROW |70996 |846 |29875 |
-ROW |70997 |846 |29876 |
-ROW |70998 |846 |29877 |
-ROW |70999 |846 |29878 |
-ROW |71000 |876 |29879 |
-ROW |71001 |875 |29880 |
-ROW |71002 |875 |29881 |
-ROW |71003 |875 |29882 |
-ROW |71004 |875 |29883 |
-ROW |71005 |885 |29884 |
-ROW |71006 |884 |29885 |
-ROW |71007 |884 |29886 |
-ROW |71008 |884 |29887 |
-ROW |71009 |884 |29888 |
-ROW |71010 |894 |29889 |
-ROW |71011 |893 |29890 |
-ROW |71012 |893 |29891 |
-ROW |71013 |893 |29892 |
-ROW |71014 |893 |29893 |
-ROW |71015 |903 |29894 |
-ROW |71016 |902 |29895 |
-ROW |71017 |902 |29896 |
-ROW |71018 |902 |29897 |
-ROW |71019 |902 |29898 |
-ROW |71020 |915 |29899 |
-ROW |71021 |914 |29900 |
-ROW |71022 |914 |29901 |
-ROW |71023 |914 |29902 |
-ROW |71024 |914 |29903 |
-ROW |71025 |918 |29904 |
-ROW |71026 |917 |29905 |
-ROW |71027 |917 |29906 |
-ROW |71028 |917 |29907 |
-ROW |71029 |917 |29908 |
-ROW |71030 |936 |29909 |
-ROW |71031 |935 |29910 |
-ROW |71032 |935 |29911 |
-ROW |71033 |935 |29912 |
-ROW |71034 |935 |29913 |
-ROW |71035 |944 |29914 |
-ROW |71036 |943 |29915 |
-ROW |71037 |943 |29916 |
-ROW |71038 |943 |29917 |
-ROW |71039 |943 |29918 |
-ROW |71040 |951 |29919 |
-ROW |71041 |950 |29920 |
-ROW |71042 |950 |29921 |
-ROW |71043 |950 |29922 |
-ROW |71044 |950 |29923 |
-ROW |71045 |971 |29924 |
-ROW |71046 |970 |29925 |
-ROW |71047 |970 |29926 |
-ROW |71048 |970 |29927 |
-ROW |71049 |970 |29928 |
-ROW |71050 |979 |29929 |
-ROW |71051 |978 |29930 |
-ROW |71052 |978 |29931 |
-ROW |71053 |978 |29932 |
-ROW |71054 |978 |29933 |
-ROW |71055 |988 |29934 |
-ROW |71056 |987 |29935 |
-ROW |71057 |987 |29936 |
-ROW |71058 |987 |29937 |
-ROW |71059 |987 |29938 |
-ROW |71060 |994 |29939 |
-ROW |71061 |993 |29940 |
-ROW |71062 |993 |29941 |
-ROW |71063 |993 |29942 |
-ROW |71064 |993 |29943 |
-ROW |71065 |1030 |29944 |
-ROW |71066 |1029 |29945 |
-ROW |71067 |1029 |29946 |
-ROW |71068 |1029 |29947 |
-ROW |71069 |1029 |29948 |
-ROW |71070 |1043 |29949 |
-ROW |71071 |1042 |29950 |
-ROW |71072 |1042 |29951 |
-ROW |71073 |1042 |29952 |
-ROW |71074 |1042 |29953 |
-ROW |71075 |1055 |29954 |
-ROW |71076 |1054 |29955 |
-ROW |71077 |1054 |29956 |
-ROW |71078 |1054 |29957 |
-ROW |71079 |1054 |29958 |
-ROW |71080 |1060 |29959 |
-ROW |71081 |1059 |29960 |
-ROW |71082 |1059 |29961 |
-ROW |71083 |1059 |29962 |
-ROW |71084 |1059 |29963 |
-ROW |71085 |1070 |29964 |
-ROW |71086 |1069 |29965 |
-ROW |71087 |1069 |29966 |
-ROW |71088 |1069 |29967 |
-ROW |71089 |1069 |29968 |
-ROW |71090 |1079 |29969 |
-ROW |71091 |1078 |29970 |
-ROW |71092 |1078 |29971 |
-ROW |71093 |1078 |29972 |
-ROW |71094 |1078 |29973 |
-ROW |71095 |1095 |29974 |
-ROW |71096 |1094 |29975 |
-ROW |71097 |1094 |29976 |
-ROW |71098 |1094 |29977 |
-ROW |71099 |1094 |29978 |
-ROW |71100 |1102 |29979 |
-ROW |71101 |1101 |29980 |
-ROW |71102 |1101 |29981 |
-ROW |71103 |1101 |29982 |
-ROW |71104 |1101 |29983 |
-ROW |71105 |1127 |29984 |
-ROW |71106 |1126 |29985 |
-ROW |71107 |1126 |29986 |
-ROW |71108 |1126 |29987 |
-ROW |71109 |1126 |29988 |
-ROW |71110 |1136 |29989 |
-ROW |71111 |1135 |29990 |
-ROW |71112 |1135 |29991 |
-ROW |71113 |1135 |29992 |
-ROW |71114 |1135 |29993 |
-ROW |71115 |1270 |30049 |
-ROW |71116 |1270 |30050 |
-ROW |71117 |1270 |30051 |
-ROW |71118 |1270 |30052 |
-ROW |71119 |1270 |30053 |
-ROW |71120 |1270 |30054 |
-ROW |71121 |1271 |30055 |
-ROW |71122 |1271 |30056 |
-ROW |71123 |1283 |30142 |
-ROW |71124 |1286 |30143 |
-ROW |71125 |1289 |30144 |
-ROW |71126 |1292 |30145 |
-ROW |71127 |1295 |30146 |
-ROW |71128 |1284 |30157 |
-ROW |71129 |1284 |30158 |
-ROW |71130 |1284 |30159 |
-ROW |71131 |1287 |30163 |
-ROW |71132 |1287 |30164 |
-ROW |71133 |1287 |30165 |
-ROW |71134 |1290 |30169 |
-ROW |71135 |1290 |30170 |
-ROW |71136 |1290 |30171 |
-ROW |71137 |1293 |30175 |
-ROW |71138 |1293 |30176 |
-ROW |71139 |1293 |30177 |
-ROW |71140 |1296 |30181 |
-ROW |71141 |1296 |30182 |
-ROW |71142 |1296 |30183 |
-ROW |71143 |1221 |22231 |
-ROW |71144 |1221 |22232 |
-ROW |71145 |1221 |23318 |
-ROW |71146 |1222 |29544 |
-ROW |71147 |1223 |29545 |
-ROW |71148 |1223 |29546 |
-ROW |71149 |1224 |29547 |
-ROW |71150 |1225 |10020 |
-ROW |71151 |1225 |10059 |
-ROW |71152 |1226 |22833 |
-ROW |71153 |1226 |22834 |
-ROW |71154 |1228 |22873 |
-ROW |71155 |1228 |22874 |
-ROW |71156 |1230 |22913 |
-ROW |71157 |1230 |22914 |
-ROW |71158 |1232 |22953 |
-ROW |71159 |1232 |22954 |
-ROW |71160 |1234 |22993 |
-ROW |71161 |1234 |22994 |
-ROW |71162 |1236 |23033 |
-ROW |71163 |1236 |23034 |
-ROW |71164 |1238 |23160 |
-ROW |71165 |1238 |23161 |
-ROW |71166 |1225 |23319 |
-ROW |71167 |1226 |23320 |
-ROW |71168 |1228 |23321 |
-ROW |71169 |1230 |23322 |
-ROW |71170 |1232 |23323 |
-ROW |71171 |1234 |23324 |
-ROW |71172 |1236 |23325 |
-ROW |71173 |1238 |23326 |
-ROW |71174 |1161 |29548 |
-ROW |71175 |1227 |29549 |
-ROW |71176 |1229 |29550 |
-ROW |71177 |1231 |29551 |
-ROW |71178 |1233 |29552 |
-ROW |71179 |1235 |29553 |
-ROW |71180 |1237 |29554 |
-ROW |71181 |1219 |29555 |
-ROW |71182 |1241 |29558 |
-ROW |71183 |1242 |29559 |
-ROW |71184 |1241 |29560 |
-ROW |71185 |1269 |29995 |
-ROW |71186 |1192 |29996 |
-ROW |71187 |1269 |29997 |
-ROW |71188 |1240 |23287 |
-ROW |71189 |1240 |23288 |
-ROW |71190 |1240 |23327 |
-ROW |71191 |1171 |29557 |
-ROW |71192 |810 |27203 |
-ROW |71193 |807 |27207 |
-ROW |71194 |806 |27208 |
-ROW |71195 |810 |30086 |
-ROW |71196 |807 |30087 |
-ROW |71197 |807 |30088 |
-ROW |71198 |807 |30089 |
-ROW |71199 |808 |27212 |
-ROW |71200 |809 |27213 |
-ROW |71201 |810 |27214 |
-ROW |71202 |1279 |30091 |
-ROW |71203 |1279 |30092 |
-ROW |71204 |1068 |28323 |
-ROW |71205 |1068 |28324 |
-ROW |71206 |1062 |28325 |
-ROW |71207 |1062 |28326 |
-ROW |71208 |1064 |28327 |
-ROW |71209 |1064 |28328 |
-ROW |71210 |1066 |28329 |
-ROW |71211 |819 |27236 |
-ROW |71212 |819 |27237 |
-ROW |71213 |813 |27238 |
-ROW |71214 |814 |27240 |
-ROW |71215 |815 |30093 |
-ROW |71216 |816 |27246 |
-ROW |71217 |816 |27247 |
-ROW |71218 |817 |27248 |
-ROW |71219 |818 |27249 |
-ROW |71220 |818 |27250 |
-ROW |71221 |826 |27294 |
-ROW |71222 |831 |27295 |
-ROW |71223 |831 |27296 |
-ROW |71224 |835 |27297 |
-ROW |71225 |827 |30094 |
-ROW |71226 |836 |27299 |
-ROW |71227 |838 |27301 |
-ROW |71228 |837 |30095 |
-ROW |71229 |839 |30096 |
-ROW |71230 |829 |27312 |
-ROW |71231 |830 |27313 |
-ROW |71232 |828 |27314 |
-ROW |71233 |828 |27315 |
-ROW |71234 |833 |27316 |
-ROW |71235 |834 |27317 |
-ROW |71236 |832 |27318 |
-ROW |71237 |835 |27319 |
-ROW |71238 |835 |27320 |
-ROW |71239 |851 |27376 |
-ROW |71240 |852 |27378 |
-ROW |71241 |852 |27379 |
-ROW |71242 |852 |30097 |
-ROW |71243 |869 |27380 |
-ROW |71244 |870 |27382 |
-ROW |71245 |870 |27383 |
-ROW |71246 |858 |27385 |
-ROW |71247 |858 |27386 |
-ROW |71248 |1048 |28209 |
-ROW |71249 |1048 |28210 |
-ROW |71250 |858 |30098 |
-ROW |71251 |870 |30099 |
-ROW |71252 |1048 |30100 |
-ROW |71253 |848 |27415 |
-ROW |71254 |848 |27416 |
-ROW |71255 |849 |27417 |
-ROW |71256 |852 |27419 |
-ROW |71257 |853 |27420 |
-ROW |71258 |853 |27421 |
-ROW |71259 |854 |27422 |
-ROW |71260 |855 |27423 |
-ROW |71261 |1056 |28246 |
-ROW |71262 |848 |30101 |
-ROW |71263 |856 |27425 |
-ROW |71264 |856 |27426 |
-ROW |71265 |857 |27427 |
-ROW |71266 |858 |27428 |
-ROW |71267 |859 |27429 |
-ROW |71268 |859 |27430 |
-ROW |71269 |860 |27431 |
-ROW |71270 |861 |27432 |
-ROW |71271 |868 |27443 |
-ROW |71272 |868 |27444 |
-ROW |71273 |870 |27445 |
-ROW |71274 |871 |27446 |
-ROW |71275 |871 |27447 |
-ROW |71276 |872 |27448 |
-ROW |71277 |873 |27449 |
-ROW |71278 |1048 |28208 |
-ROW |71279 |1049 |28215 |
-ROW |71280 |1050 |28216 |
-ROW |71281 |1051 |28217 |
-ROW |71282 |1051 |28218 |
-ROW |71283 |1052 |28220 |
-ROW |71284 |1052 |28222 |
-ROW |71285 |1057 |28247 |
-ROW |71286 |856 |30102 |
-ROW |71287 |868 |30103 |
-ROW |71288 |1052 |30104 |
-ROW |71289 |877 |27478 |
-ROW |71290 |880 |27479 |
-ROW |71291 |881 |27480 |
-ROW |71292 |882 |27481 |
-ROW |71293 |882 |27482 |
-ROW |71294 |882 |27483 |
-ROW |71295 |882 |27484 |
-ROW |71296 |879 |27485 |
-ROW |71297 |878 |30105 |
-ROW |71298 |891 |27508 |
-ROW |71299 |891 |27509 |
-ROW |71300 |891 |27510 |
-ROW |71301 |886 |27511 |
-ROW |71302 |891 |30106 |
-ROW |71303 |888 |27517 |
-ROW |71304 |890 |27518 |
-ROW |71305 |889 |27519 |
-ROW |71306 |887 |30107 |
-ROW |71307 |900 |27543 |
-ROW |71308 |900 |27544 |
-ROW |71309 |900 |27545 |
-ROW |71310 |900 |27546 |
-ROW |71311 |895 |27547 |
-ROW |71312 |897 |27553 |
-ROW |71313 |899 |27554 |
-ROW |71314 |898 |27555 |
-ROW |71315 |896 |30108 |
-ROW |71316 |909 |27579 |
-ROW |71317 |909 |27580 |
-ROW |71318 |909 |27582 |
-ROW |71319 |909 |27583 |
-ROW |71320 |906 |27584 |
-ROW |71321 |906 |27585 |
-ROW |71322 |904 |27586 |
-ROW |71323 |909 |30109 |
-ROW |71324 |905 |27591 |
-ROW |71325 |907 |27593 |
-ROW |71326 |908 |27594 |
-ROW |71327 |908 |27595 |
-ROW |71328 |905 |30110 |
-ROW |71329 |905 |30111 |
-ROW |71330 |919 |27671 |
-ROW |71331 |921 |27672 |
-ROW |71332 |922 |27673 |
-ROW |71333 |923 |27674 |
-ROW |71334 |924 |27675 |
-ROW |71335 |924 |27676 |
-ROW |71336 |924 |27677 |
-ROW |71337 |924 |27678 |
-ROW |71338 |924 |27679 |
-ROW |71339 |920 |30112 |
-ROW |71340 |1036 |28141 |
-ROW |71341 |1036 |28142 |
-ROW |71342 |1031 |28143 |
-ROW |71343 |1033 |28150 |
-ROW |71344 |1032 |28153 |
-ROW |71345 |1034 |28154 |
-ROW |71346 |1035 |28155 |
-ROW |71347 |1033 |28156 |
-ROW |71348 |1036 |28157 |
-ROW |71349 |1036 |28158 |
-ROW |71350 |1032 |30113 |
-ROW |71351 |1032 |30114 |
-ROW |71352 |1032 |30115 |
-ROW |71353 |941 |27748 |
-ROW |71354 |941 |27749 |
-ROW |71355 |941 |27750 |
-ROW |71356 |939 |27751 |
-ROW |71357 |937 |27753 |
-ROW |71358 |941 |27754 |
-ROW |71359 |940 |27755 |
-ROW |71360 |938 |30116 |
-ROW |71361 |948 |27777 |
-ROW |71362 |948 |27778 |
-ROW |71363 |945 |27783 |
-ROW |71364 |945 |27784 |
-ROW |71365 |948 |27785 |
-ROW |71366 |946 |27786 |
-ROW |71367 |947 |27787 |
-ROW |71368 |957 |27812 |
-ROW |71369 |957 |27813 |
-ROW |71370 |951 |27814 |
-ROW |71371 |957 |30117 |
-ROW |71372 |954 |27821 |
-ROW |71373 |956 |27822 |
-ROW |71374 |955 |27823 |
-ROW |71375 |952 |28894 |
-ROW |71376 |953 |30118 |
-ROW |71377 |1044 |28200 |
-ROW |71378 |1044 |28201 |
-ROW |71379 |1045 |28202 |
-ROW |71380 |1045 |28203 |
-ROW |71381 |1047 |28204 |
-ROW |71382 |1047 |28205 |
-ROW |71383 |1046 |28206 |
-ROW |71384 |976 |27893 |
-ROW |71385 |976 |27894 |
-ROW |71386 |976 |27895 |
-ROW |71387 |974 |27897 |
-ROW |71388 |973 |27898 |
-ROW |71389 |973 |27900 |
-ROW |71390 |976 |30119 |
-ROW |71391 |973 |30120 |
-ROW |71392 |972 |27904 |
-ROW |71393 |974 |27905 |
-ROW |71394 |975 |27906 |
-ROW |71395 |975 |27907 |
-ROW |71396 |975 |27908 |
-ROW |71397 |985 |27930 |
-ROW |71398 |985 |27931 |
-ROW |71399 |981 |27935 |
-ROW |71400 |980 |27936 |
-ROW |71401 |985 |30121 |
-ROW |71402 |981 |30122 |
-ROW |71403 |981 |30123 |
-ROW |71404 |982 |27940 |
-ROW |71405 |982 |27941 |
-ROW |71406 |984 |27942 |
-ROW |71407 |983 |27943 |
-ROW |71408 |991 |27967 |
-ROW |71409 |991 |27968 |
-ROW |71410 |991 |27970 |
-ROW |71411 |991 |27971 |
-ROW |71412 |990 |27972 |
-ROW |71413 |990 |27973 |
-ROW |71414 |989 |27975 |
-ROW |71415 |1282 |30124 |
-ROW |71416 |991 |30125 |
-ROW |71417 |990 |30126 |
-ROW |71418 |1280 |30129 |
-ROW |71419 |1281 |30130 |
-ROW |71420 |997 |27997 |
-ROW |71421 |997 |27998 |
-ROW |71422 |997 |27999 |
-ROW |71423 |997 |28000 |
-ROW |71424 |995 |28003 |
-ROW |71425 |996 |30131 |
-ROW |71426 |1003 |28026 |
-ROW |71427 |1003 |28027 |
-ROW |71428 |1001 |28031 |
-ROW |71429 |1002 |30132 |
-ROW |71430 |1002 |30133 |
-ROW |71431 |1002 |30134 |
-ROW |71432 |1002 |30135 |
-ROW |71433 |1002 |30136 |
-ROW |71434 |1142 |29087 |
-ROW |71435 |1142 |29088 |
-ROW |71436 |1142 |29089 |
-ROW |71437 |1142 |29090 |
-ROW |71438 |1142 |29091 |
-ROW |71439 |1142 |29092 |
-ROW |71440 |1142 |29093 |
-ROW |71441 |1142 |29094 |
-ROW |71442 |1142 |29095 |
-ROW |71443 |1142 |29096 |
-ROW |71444 |1142 |29097 |
-ROW |71445 |1142 |29098 |
-ROW |71446 |1142 |29099 |
-ROW |71447 |1142 |29100 |
-ROW |71448 |1142 |29101 |
-ROW |71449 |1142 |29102 |
-ROW |71450 |1144 |29103 |
-ROW |71451 |1144 |29104 |
-ROW |71452 |1144 |29105 |
-ROW |71453 |1144 |29106 |
-ROW |71454 |1144 |29107 |
-ROW |71455 |1144 |29108 |
-ROW |71456 |1151 |29110 |
-ROW |71457 |1148 |29111 |
-ROW |71458 |1148 |29112 |
-ROW |71459 |1148 |29113 |
-ROW |71460 |1148 |29114 |
-ROW |71461 |1148 |29115 |
-ROW |71462 |1148 |29116 |
-ROW |71463 |1148 |29117 |
-ROW |71464 |1148 |29118 |
-ROW |71465 |1148 |29119 |
-ROW |71466 |1150 |29120 |
-ROW |71467 |1149 |29121 |
-ROW |71468 |1149 |29122 |
-ROW |71469 |1149 |29123 |
-ROW |71470 |1152 |29124 |
-ROW |71471 |1152 |29125 |
-ROW |71472 |1152 |29126 |
-ROW |71473 |1152 |29127 |
-ROW |71474 |1152 |29128 |
-ROW |71475 |1152 |29129 |
-ROW |71476 |1152 |29130 |
-ROW |71477 |1152 |29131 |
-ROW |71478 |1152 |29132 |
-ROW |71479 |1152 |29133 |
-ROW |71480 |1152 |29134 |
-ROW |71481 |1152 |29135 |
-ROW |71482 |1152 |29136 |
-ROW |71483 |1152 |29137 |
-ROW |71484 |1152 |29138 |
-ROW |71485 |1152 |29139 |
-ROW |71486 |1154 |29140 |
-ROW |71487 |1154 |29141 |
-ROW |71488 |1154 |29142 |
-ROW |71489 |1154 |29143 |
-ROW |71490 |1154 |29144 |
-ROW |71491 |1154 |29145 |
-ROW |71492 |1161 |29147 |
-ROW |71493 |1158 |29148 |
-ROW |71494 |1158 |29149 |
-ROW |71495 |1158 |29150 |
-ROW |71496 |1158 |29151 |
-ROW |71497 |1158 |29152 |
-ROW |71498 |1158 |29153 |
-ROW |71499 |1158 |29154 |
-ROW |71500 |1158 |29155 |
-ROW |71501 |1158 |29156 |
-ROW |71502 |1160 |29157 |
-ROW |71503 |1159 |29158 |
-ROW |71504 |1159 |29159 |
-ROW |71505 |1159 |29160 |
-ROW |71506 |1162 |29161 |
-ROW |71507 |1162 |29162 |
-ROW |71508 |1162 |29163 |
-ROW |71509 |1162 |29164 |
-ROW |71510 |1162 |29165 |
-ROW |71511 |1162 |29166 |
-ROW |71512 |1162 |29167 |
-ROW |71513 |1162 |29168 |
-ROW |71514 |1162 |29169 |
-ROW |71515 |1162 |29170 |
-ROW |71516 |1162 |29171 |
-ROW |71517 |1162 |29172 |
-ROW |71518 |1162 |29173 |
-ROW |71519 |1162 |29174 |
-ROW |71520 |1162 |29175 |
-ROW |71521 |1162 |29176 |
-ROW |71522 |1164 |29177 |
-ROW |71523 |1164 |29178 |
-ROW |71524 |1164 |29179 |
-ROW |71525 |1164 |29180 |
-ROW |71526 |1164 |29181 |
-ROW |71527 |1164 |29182 |
-ROW |71528 |1171 |29184 |
-ROW |71529 |1168 |29185 |
-ROW |71530 |1168 |29186 |
-ROW |71531 |1168 |29187 |
-ROW |71532 |1168 |29188 |
-ROW |71533 |1168 |29189 |
-ROW |71534 |1168 |29190 |
-ROW |71535 |1168 |29191 |
-ROW |71536 |1168 |29192 |
-ROW |71537 |1168 |29193 |
-ROW |71538 |1170 |29194 |
-ROW |71539 |1169 |29195 |
-ROW |71540 |1169 |29196 |
-ROW |71541 |1169 |29197 |
-ROW |71542 |1142 |29198 |
-ROW |71543 |1144 |31270 |
-ROW |71544 |1152 |29199 |
-ROW |71545 |1154 |31271 |
-ROW |71546 |1162 |29200 |
-ROW |71547 |1164 |31272 |
-ROW |71548 |1146 |31278 |
-ROW |71549 |1156 |31281 |
-ROW |71550 |1166 |31284 |
-ROW |71551 |1146 |31287 |
-ROW |71552 |1146 |31290 |
-ROW |71553 |1156 |31293 |
-ROW |71554 |1156 |31296 |
-ROW |71555 |1166 |31299 |
-ROW |71556 |1166 |31302 |
-ROW |71557 |1173 |29273 |
-ROW |71558 |1173 |29274 |
-ROW |71559 |1173 |29275 |
-ROW |71560 |1173 |29276 |
-ROW |71561 |1173 |29277 |
-ROW |71562 |1173 |29278 |
-ROW |71563 |1173 |29279 |
-ROW |71564 |1173 |29280 |
-ROW |71565 |1173 |29281 |
-ROW |71566 |1173 |29282 |
-ROW |71567 |1173 |29283 |
-ROW |71568 |1173 |29284 |
-ROW |71569 |1173 |29285 |
-ROW |71570 |1173 |29286 |
-ROW |71571 |1173 |29287 |
-ROW |71572 |1173 |29288 |
-ROW |71573 |1175 |29289 |
-ROW |71574 |1175 |29290 |
-ROW |71575 |1175 |29291 |
-ROW |71576 |1175 |29292 |
-ROW |71577 |1175 |29293 |
-ROW |71578 |1175 |29294 |
-ROW |71579 |1182 |29296 |
-ROW |71580 |1179 |29297 |
-ROW |71581 |1179 |29298 |
-ROW |71582 |1179 |29299 |
-ROW |71583 |1179 |29300 |
-ROW |71584 |1179 |29301 |
-ROW |71585 |1179 |29302 |
-ROW |71586 |1179 |29303 |
-ROW |71587 |1179 |29304 |
-ROW |71588 |1179 |29305 |
-ROW |71589 |1181 |29306 |
-ROW |71590 |1180 |29307 |
-ROW |71591 |1180 |29308 |
-ROW |71592 |1180 |29309 |
-ROW |71593 |1183 |29310 |
-ROW |71594 |1183 |29311 |
-ROW |71595 |1183 |29312 |
-ROW |71596 |1183 |29313 |
-ROW |71597 |1183 |29314 |
-ROW |71598 |1183 |29315 |
-ROW |71599 |1183 |29316 |
-ROW |71600 |1183 |29317 |
-ROW |71601 |1183 |29318 |
-ROW |71602 |1183 |29319 |
-ROW |71603 |1183 |29320 |
-ROW |71604 |1183 |29321 |
-ROW |71605 |1183 |29322 |
-ROW |71606 |1183 |29323 |
-ROW |71607 |1183 |29324 |
-ROW |71608 |1183 |29325 |
-ROW |71609 |1185 |29326 |
-ROW |71610 |1185 |29327 |
-ROW |71611 |1185 |29328 |
-ROW |71612 |1185 |29329 |
-ROW |71613 |1185 |29330 |
-ROW |71614 |1185 |29331 |
-ROW |71615 |1192 |29333 |
-ROW |71616 |1189 |29334 |
-ROW |71617 |1189 |29335 |
-ROW |71618 |1189 |29336 |
-ROW |71619 |1189 |29337 |
-ROW |71620 |1189 |29338 |
-ROW |71621 |1189 |29339 |
-ROW |71622 |1189 |29340 |
-ROW |71623 |1189 |29341 |
-ROW |71624 |1189 |29342 |
-ROW |71625 |1191 |29343 |
-ROW |71626 |1190 |29344 |
-ROW |71627 |1190 |29345 |
-ROW |71628 |1190 |29346 |
-ROW |71629 |1173 |29347 |
-ROW |71630 |1175 |31303 |
-ROW |71631 |1183 |29348 |
-ROW |71632 |1185 |31304 |
-ROW |71633 |1177 |31309 |
-ROW |71634 |1187 |31312 |
-ROW |71635 |1177 |31315 |
-ROW |71636 |1177 |31318 |
-ROW |71637 |1187 |31321 |
-ROW |71638 |1187 |31324 |
-ROW |71639 |1201 |29395 |
-ROW |71640 |1196 |29396 |
-ROW |71641 |1196 |29397 |
-ROW |71642 |1194 |29398 |
-ROW |71643 |1193 |29399 |
-ROW |71644 |1196 |29400 |
-ROW |71645 |1196 |29401 |
-ROW |71646 |1196 |29402 |
-ROW |71647 |1196 |29403 |
-ROW |71648 |1194 |29404 |
-ROW |71649 |1193 |29405 |
-ROW |71650 |1193 |29406 |
-ROW |71651 |1193 |29407 |
-ROW |71652 |1193 |29408 |
-ROW |71653 |1193 |29409 |
-ROW |71654 |1193 |29410 |
-ROW |71655 |1193 |29411 |
-ROW |71656 |1193 |29412 |
-ROW |71657 |1193 |29413 |
-ROW |71658 |1194 |29414 |
-ROW |71659 |1197 |29415 |
-ROW |71660 |1193 |29416 |
-ROW |71661 |1193 |29417 |
-ROW |71662 |1193 |29418 |
-ROW |71663 |1193 |29419 |
-ROW |71664 |1193 |29420 |
-ROW |71665 |1199 |29421 |
-ROW |71666 |1195 |29422 |
-ROW |71667 |1194 |29423 |
-ROW |71668 |1194 |29424 |
-ROW |71669 |1194 |29425 |
-ROW |71670 |1193 |29426 |
-ROW |71671 |1193 |29427 |
-ROW |71672 |1195 |29428 |
-ROW |71673 |1201 |29450 |
-ROW |71674 |1201 |29451 |
-ROW |71675 |1128 |28978 |
-ROW |71676 |1128 |28979 |
-ROW |71677 |1128 |28980 |
-ROW |71678 |1128 |28981 |
-ROW |71679 |1128 |28982 |
-ROW |71680 |1128 |28983 |
-ROW |71681 |1128 |28984 |
-ROW |71682 |1128 |28985 |
-ROW |71683 |1128 |28986 |
-ROW |71684 |1130 |28987 |
-ROW |71685 |1130 |28988 |
-ROW |71686 |1130 |28989 |
-ROW |71687 |1130 |28990 |
-ROW |71688 |1130 |28991 |
-ROW |71689 |1130 |28992 |
-ROW |71690 |1132 |28993 |
-ROW |71691 |1132 |28994 |
-ROW |71692 |1132 |28995 |
-ROW |71693 |1132 |28996 |
-ROW |71694 |1132 |28997 |
-ROW |71695 |1132 |28998 |
-ROW |71696 |1132 |28999 |
-ROW |71697 |1132 |29000 |
-ROW |71698 |1132 |29001 |
-ROW |71699 |1134 |29002 |
-ROW |71700 |1134 |29003 |
-ROW |71701 |1134 |29004 |
-ROW |71702 |1134 |29005 |
-ROW |71703 |1134 |29006 |
-ROW |71704 |1134 |29007 |
-ROW |71705 |1130 |29017 |
-ROW |71706 |1130 |29018 |
-ROW |71707 |1130 |29019 |
-ROW |71708 |1130 |29020 |
-ROW |71709 |1130 |29021 |
-ROW |71710 |1130 |29022 |
-ROW |71711 |1130 |29023 |
-ROW |71712 |1130 |29024 |
-ROW |71713 |1130 |29025 |
-ROW |71714 |1130 |29026 |
-ROW |71715 |1134 |29034 |
-ROW |71716 |1134 |29035 |
-ROW |71717 |1134 |29036 |
-ROW |71718 |1134 |29037 |
-ROW |71719 |1134 |29038 |
-ROW |71720 |1134 |29039 |
-ROW |71721 |1134 |29040 |
-ROW |71722 |1134 |29041 |
-ROW |71723 |1134 |29042 |
-ROW |71724 |1134 |29043 |
-ROW |71725 |1130 |29048 |
-ROW |71726 |1134 |29049 |
-ROW |71727 |1202 |29454 |
-ROW |71728 |1202 |29455 |
-ROW |71729 |1202 |29456 |
-ROW |71730 |1202 |29457 |
-ROW |71731 |1202 |29458 |
-ROW |71732 |1202 |29459 |
-ROW |71733 |1203 |29460 |
-ROW |71734 |1203 |29461 |
-ROW |71735 |1203 |29462 |
-ROW |71736 |1203 |29463 |
-ROW |71737 |1203 |29466 |
-ROW |71738 |1203 |29467 |
-ROW |71739 |1203 |29468 |
-ROW |71740 |1203 |29469 |
-ROW |71741 |1203 |29470 |
-ROW |71742 |1209 |29472 |
-ROW |71743 |1207 |29473 |
-ROW |71744 |1207 |29474 |
-ROW |71745 |1207 |29475 |
-ROW |71746 |1207 |29476 |
-ROW |71747 |1207 |29477 |
-ROW |71748 |1208 |29478 |
-ROW |71749 |1202 |30137 |
-ROW |71750 |1202 |31325 |
-ROW |71751 |1203 |31326 |
-ROW |71752 |1203 |31327 |
-ROW |71753 |1211 |31455 |
-ROW |71754 |1212 |29480 |
-ROW |71755 |1212 |29481 |
-ROW |71756 |1212 |29482 |
-ROW |71757 |1212 |29483 |
-ROW |71758 |1212 |29484 |
-ROW |71759 |1212 |29485 |
-ROW |71760 |1213 |29486 |
-ROW |71761 |1213 |29487 |
-ROW |71762 |1213 |29488 |
-ROW |71763 |1213 |29489 |
-ROW |71764 |1213 |29492 |
-ROW |71765 |1213 |29493 |
-ROW |71766 |1213 |29494 |
-ROW |71767 |1213 |29495 |
-ROW |71768 |1213 |29496 |
-ROW |71769 |1219 |29498 |
-ROW |71770 |1217 |29499 |
-ROW |71771 |1217 |29500 |
-ROW |71772 |1217 |29501 |
-ROW |71773 |1217 |29502 |
-ROW |71774 |1217 |29503 |
-ROW |71775 |1218 |29504 |
-ROW |71776 |1212 |30138 |
-ROW |71777 |1212 |31328 |
-ROW |71778 |1213 |31329 |
-ROW |71779 |1213 |31330 |
-ROW |71780 |1216 |31456 |
-ROW |71781 |1203 |31331 |
-ROW |71782 |1213 |31332 |
-ROW |71783 |1310 |30425 |
-ROW |71784 |1311 |30426 |
-ROW |71785 |1243 |29561 |
-ROW |71786 |1243 |29562 |
-ROW |71787 |1243 |29563 |
-ROW |71788 |1243 |29564 |
-ROW |71789 |1243 |29565 |
-ROW |71790 |1243 |29566 |
-ROW |71791 |1244 |29567 |
-ROW |71792 |1244 |29568 |
-ROW |71793 |1244 |29569 |
-ROW |71794 |1244 |29570 |
-ROW |71795 |1244 |29573 |
-ROW |71796 |1244 |29574 |
-ROW |71797 |1244 |29575 |
-ROW |71798 |1244 |29576 |
-ROW |71799 |1244 |29577 |
-ROW |71800 |1250 |29579 |
-ROW |71801 |1248 |29580 |
-ROW |71802 |1248 |29581 |
-ROW |71803 |1248 |29582 |
-ROW |71804 |1248 |29583 |
-ROW |71805 |1248 |29584 |
-ROW |71806 |1249 |29585 |
-ROW |71807 |1243 |30139 |
-ROW |71808 |1243 |31343 |
-ROW |71809 |1244 |31344 |
-ROW |71810 |1244 |31345 |
-ROW |71811 |1252 |31477 |
-ROW |71812 |1253 |29587 |
-ROW |71813 |1253 |29588 |
-ROW |71814 |1253 |29589 |
-ROW |71815 |1253 |29590 |
-ROW |71816 |1253 |29591 |
-ROW |71817 |1253 |29592 |
-ROW |71818 |1254 |29593 |
-ROW |71819 |1254 |29594 |
-ROW |71820 |1254 |29595 |
-ROW |71821 |1254 |29596 |
-ROW |71822 |1254 |29599 |
-ROW |71823 |1254 |29600 |
-ROW |71824 |1254 |29601 |
-ROW |71825 |1254 |29602 |
-ROW |71826 |1254 |29603 |
-ROW |71827 |1242 |29605 |
-ROW |71828 |1258 |29606 |
-ROW |71829 |1258 |29607 |
-ROW |71830 |1258 |29608 |
-ROW |71831 |1258 |29609 |
-ROW |71832 |1258 |29610 |
-ROW |71833 |1259 |29611 |
-ROW |71834 |1253 |30140 |
-ROW |71835 |1253 |31346 |
-ROW |71836 |1254 |31347 |
-ROW |71837 |1254 |31348 |
-ROW |71838 |1257 |31478 |
-ROW |71839 |1244 |31349 |
-ROW |71840 |1254 |31350 |
-ROW |71841 |1312 |30429 |
-ROW |71842 |1313 |30430 |
-ROW |71843 |1325 |30685 |
-ROW |71844 |1277 |30066 |
-ROW |71845 |1277 |30067 |
-ROW |71846 |1277 |30068 |
-ROW |71847 |1277 |30069 |
-ROW |71848 |1277 |30070 |
-ROW |71849 |1276 |30071 |
-ROW |71850 |1271 |30072 |
-ROW |71851 |1274 |30073 |
-ROW |71852 |1274 |30074 |
-ROW |71853 |1273 |30075 |
-ROW |71854 |1275 |30076 |
-ROW |71855 |1275 |30077 |
-ROW |71856 |1275 |30078 |
-ROW |71857 |1275 |30079 |
-ROW |71858 |1278 |30080 |
-ROW |71859 |1278 |30081 |
-ROW |71860 |1278 |30082 |
-ROW |71861 |1272 |30083 |
-ROW |71862 |1272 |30084 |
-ROW |71863 |1272 |30085 |
-ROW |71864 |1070 |28341 |
-ROW |71865 |1073 |28342 |
-ROW |71866 |1073 |28344 |
-ROW |71867 |1073 |28345 |
-ROW |71868 |1073 |30141 |
-ROW |71869 |1076 |28354 |
-ROW |71870 |1076 |28355 |
-ROW |71871 |1076 |28356 |
-ROW |71872 |1076 |28357 |
-ROW |71873 |1075 |28358 |
-ROW |71874 |1072 |28359 |
-ROW |71875 |1072 |28360 |
-ROW |71876 |1074 |28361 |
-ROW |71877 |1074 |28362 |
-ROW |71878 |1074 |28363 |
-ROW |71879 |1074 |28364 |
-ROW |71880 |1074 |28365 |
-ROW |71881 |1074 |28366 |
-ROW |71882 |1074 |28367 |
-ROW |71883 |1077 |28368 |
-ROW |71884 |1077 |28369 |
-ROW |71885 |1077 |28370 |
-ROW |71886 |1077 |28371 |
-ROW |71887 |1077 |28372 |
-ROW |71888 |1077 |28373 |
-ROW |71889 |1071 |28374 |
-ROW |71890 |1071 |28375 |
-ROW |71891 |1071 |28376 |
-ROW |71892 |1085 |28388 |
-ROW |71893 |1082 |28390 |
-ROW |71894 |1082 |28391 |
-ROW |71895 |1079 |29994 |
-ROW |71896 |1085 |28404 |
-ROW |71897 |1085 |28405 |
-ROW |71898 |1085 |28406 |
-ROW |71899 |1085 |28407 |
-ROW |71900 |1085 |28408 |
-ROW |71901 |1085 |28409 |
-ROW |71902 |1085 |28410 |
-ROW |71903 |1084 |28411 |
-ROW |71904 |1081 |28412 |
-ROW |71905 |1080 |28413 |
-ROW |71906 |1080 |28414 |
-ROW |71907 |1080 |28415 |
-ROW |71908 |1080 |28416 |
-ROW |71909 |1083 |28417 |
-ROW |71910 |1083 |28418 |
-ROW |71911 |1083 |28419 |
-ROW |71912 |1083 |28420 |
-ROW |71913 |1083 |28421 |
-ROW |71914 |1083 |28422 |
-ROW |71915 |1086 |28423 |
-ROW |71916 |1086 |28424 |
-ROW |71917 |1086 |28425 |
-ROW |71918 |1095 |28465 |
-ROW |71919 |1097 |28466 |
-ROW |71920 |1097 |28467 |
-ROW |71921 |1100 |28474 |
-ROW |71922 |1100 |28475 |
-ROW |71923 |1100 |28476 |
-ROW |71924 |1099 |28477 |
-ROW |71925 |1096 |28478 |
-ROW |71926 |1096 |28479 |
-ROW |71927 |1098 |28480 |
-ROW |71928 |1098 |28481 |
-ROW |71929 |1104 |28495 |
-ROW |71930 |1103 |28496 |
+ROW |71931 |1116 |28743 |
+ROW |71932 |1116 |28744 |
+ROW |71933 |1116 |28745 |
+ROW |71934 |1116 |28746 |
+ROW |71935 |1116 |28747 |
+ROW |71936 |1116 |28748 |
+ROW |71937 |1117 |30896 |
+ROW |71938 |1116 |30897 |
+ROW |71939 |1116 |30898 |
+ROW |71940 |1116 |30899 |
+ROW |71941 |1116 |30900 |
+ROW |71942 |1116 |30901 |
+ROW |71943 |1116 |30902 |
+ROW |71944 |1116 |30903 |
+ROW |71945 |1116 |30904 |
+ROW |71946 |1116 |30905 |
+ROW |71947 |1116 |30906 |
+ROW |71948 |1116 |30907 |
+ROW |71949 |1116 |30908 |
+ROW |71950 |1116 |30909 |
+ROW |71951 |1116 |30910 |
+ROW |71952 |1116 |30911 |
+ROW |71953 |1116 |30912 |
+ROW |71954 |1116 |30913 |
+ROW |71955 |1116 |30914 |
+ROW |71956 |1116 |30915 |
+ROW |71957 |1116 |30917 |
+ROW |71958 |1116 |30918 |
+ROW |71959 |1116 |30919 |
+ROW |71960 |1116 |30920 |
+ROW |71961 |1116 |30921 |
+ROW |71962 |1116 |30922 |
+ROW |71963 |1119 |28775 |
+ROW |71964 |1118 |28776 |
+ROW |71965 |1118 |28777 |
+ROW |71966 |1118 |28778 |
+ROW |71967 |1118 |28779 |
+ROW |71968 |1118 |28780 |
+ROW |71969 |1118 |28781 |
+ROW |71970 |1118 |28782 |
+ROW |71971 |1118 |28783 |
+ROW |71972 |1118 |28784 |
+ROW |71973 |1118 |28785 |
+ROW |71974 |1118 |28786 |
+ROW |71975 |1118 |28787 |
+ROW |71976 |1118 |28788 |
+ROW |71977 |1118 |28789 |
+ROW |71978 |1118 |28790 |
+ROW |71979 |1118 |28791 |
+ROW |71980 |1118 |28792 |
+ROW |71981 |1118 |28793 |
+ROW |71982 |1118 |28794 |
+ROW |71983 |1118 |28795 |
+ROW |71984 |1118 |28796 |
+ROW |71985 |1118 |28798 |
+ROW |71986 |1118 |28799 |
+ROW |71987 |1118 |28800 |
+ROW |71988 |1118 |28801 |
+ROW |71989 |1118 |28802 |
+ROW |71990 |1118 |28803 |
+ROW |71991 |1319 |30527 |
+ROW |71992 |1319 |30528 |
+ROW |71993 |1319 |30529 |
+ROW |71994 |1318 |30530 |
+ROW |71995 |1319 |30531 |
+ROW |71996 |1318 |30532 |
+ROW |71997 |1318 |30533 |
+ROW |71998 |1318 |30534 |
+ROW |71999 |1318 |30535 |
+ROW |72000 |1318 |30536 |
+ROW |72001 |1318 |30537 |
+ROW |72002 |1318 |30538 |
+ROW |72003 |1318 |30539 |
+ROW |72004 |1318 |30540 |
+ROW |72005 |1318 |30541 |
+ROW |72006 |1318 |30542 |
+ROW |72007 |1318 |30543 |
+ROW |72008 |1318 |30544 |
+ROW |72009 |1318 |30545 |
+ROW |72010 |1318 |30546 |
+ROW |72011 |1318 |30547 |
+ROW |72012 |1318 |30548 |
+ROW |72013 |1318 |30549 |
+ROW |72014 |1318 |30550 |
+ROW |72015 |1318 |30551 |
+ROW |72016 |1318 |30552 |
+ROW |72017 |1318 |30553 |
+ROW |72018 |1318 |30554 |
+ROW |72019 |1318 |30555 |
+ROW |72020 |1318 |30556 |
+ROW |72021 |1318 |30557 |
+ROW |72022 |1318 |30558 |
+ROW |72023 |1318 |30559 |
+ROW |72024 |1318 |30560 |
+ROW |72025 |1318 |30561 |
+ROW |72026 |1318 |30562 |
+ROW |72027 |1318 |30563 |
+ROW |72028 |1318 |30564 |
+ROW |72029 |1318 |30565 |
+ROW |72030 |1318 |30566 |
+ROW |72031 |1318 |30567 |
+ROW |72032 |1318 |30568 |
+ROW |72033 |1318 |30569 |
+ROW |72034 |1318 |30570 |
+ROW |72035 |1326 |30690 |
+ROW |72036 |1327 |30691 |
+ROW |72037 |1326 |30692 |
+ROW |72038 |1327 |30693 |
+ROW |72039 |1327 |30694 |
+ROW |72040 |1326 |30695 |
+ROW |72041 |1326 |30696 |
+ROW |72042 |1326 |30697 |
+ROW |72043 |1326 |30698 |
+ROW |72044 |1326 |30699 |
+ROW |72045 |1326 |30700 |
+ROW |72046 |1326 |30701 |
+ROW |72047 |1326 |30702 |
+ROW |72048 |1326 |30703 |
+ROW |72049 |1326 |30704 |
+ROW |72050 |1326 |30705 |
+ROW |72051 |1326 |30706 |
+ROW |72052 |1326 |30707 |
+ROW |72053 |1326 |30708 |
+ROW |72054 |1326 |30709 |
+ROW |72055 |1326 |30710 |
+ROW |72056 |1326 |30711 |
+ROW |72057 |1326 |30712 |
+ROW |72058 |1327 |30719 |
+ROW |72059 |1327 |30739 |
+ROW |72060 |1327 |30743 |
+ROW |72061 |1327 |30744 |
+ROW |72062 |1327 |30746 |
+ROW |72063 |1327 |30747 |
+ROW |72064 |1327 |30754 |
+ROW |72065 |1327 |30756 |
+ROW |72066 |1331 |30923 |
+ROW |72067 |1331 |30924 |
+ROW |72068 |1332 |30925 |
+ROW |72069 |1332 |30926 |
+ROW |72070 |1331 |30927 |
+ROW |72071 |1331 |30928 |
+ROW |72072 |1331 |30929 |
+ROW |72073 |1331 |30930 |
+ROW |72074 |1331 |30931 |
+ROW |72075 |1331 |30932 |
+ROW |72076 |1331 |30933 |
+ROW |72077 |1331 |30934 |
+ROW |72078 |1331 |30935 |
+ROW |72079 |1331 |30936 |
+ROW |72080 |1331 |30937 |
+ROW |72081 |1331 |30938 |
+ROW |72082 |1331 |30939 |
+ROW |72083 |1331 |30940 |
+ROW |72084 |1331 |30941 |
+ROW |72085 |1331 |30942 |
+ROW |72086 |1331 |30943 |
+ROW |72087 |1331 |30944 |
+ROW |72088 |1331 |30945 |
+ROW |72089 |1331 |30946 |
+ROW |72090 |1331 |30947 |
+ROW |72091 |1331 |30948 |
+ROW |72092 |1331 |30949 |
+ROW |72093 |1331 |30950 |
+ROW |72094 |1331 |30951 |
+ROW |72095 |1331 |30952 |
+ROW |72096 |1331 |30953 |
+ROW |72097 |1331 |30954 |
+ROW |72098 |1331 |30955 |
+ROW |72099 |1331 |30956 |
+ROW |72100 |1331 |30957 |
+ROW |72101 |1331 |30958 |
+ROW |72102 |1331 |30959 |
+ROW |72103 |1331 |30960 |
+ROW |72104 |1331 |30963 |
+ROW |72105 |1341 |31499 |
+ROW |72106 |1341 |31500 |
+ROW |72107 |1341 |31501 |
+ROW |72108 |1341 |31502 |
+ROW |72109 |1341 |31503 |
+ROW |72110 |1341 |31504 |
+ROW |72111 |1341 |31505 |
+ROW |72112 |1341 |31506 |
+ROW |72113 |1341 |31507 |
+ROW |72114 |1341 |31508 |
+ROW |72115 |1341 |31509 |
+ROW |72116 |1341 |31510 |
+ROW |72117 |1341 |31511 |
+ROW |72118 |1341 |31512 |
+ROW |72119 |1341 |31513 |
+ROW |72120 |1341 |31514 |
+ROW |72121 |1341 |31515 |
+ROW |72122 |1341 |31516 |
+ROW |72123 |1341 |31517 |
+ROW |72124 |1341 |31518 |
+ROW |72125 |1341 |31519 |
+ROW |72126 |1341 |31520 |
+ROW |72127 |1341 |31521 |
+ROW |72128 |1341 |31522 |
+ROW |72129 |1341 |31523 |
+ROW |72130 |1341 |31524 |
+ROW |72131 |1341 |31525 |
+ROW |72132 |1341 |31526 |
+ROW |72133 |1341 |31527 |
+ROW |72134 |1341 |31528 |
+ROW |72135 |1341 |31529 |
+ROW |72136 |1341 |31530 |
+ROW |72137 |1341 |31531 |
+ROW |72138 |1341 |31532 |
+ROW |72139 |1341 |31533 |
+ROW |72140 |1341 |31534 |
+ROW |72141 |1341 |31535 |
+ROW |72142 |1341 |31536 |
+ROW |72143 |1341 |31537 |
+ROW |72144 |1341 |31538 |
+ROW |72145 |1341 |31539 |
+ROW |72146 |1341 |31540 |
+ROW |72147 |1341 |31541 |
+ROW |72148 |1341 |31542 |
+ROW |72149 |1341 |31543 |
+ROW |72150 |1341 |31544 |
+ROW |72151 |1341 |31545 |
+ROW |72152 |1341 |31546 |
+ROW |72153 |1341 |31547 |
+ROW |72154 |1341 |31548 |
+ROW |72155 |1341 |31549 |
+ROW |72156 |1341 |31550 |
+ROW |72157 |1341 |31551 |
+ROW |72158 |1341 |31552 |
+ROW |72159 |1341 |31553 |
+ROW |72160 |1298 |30187 |
+ROW |72161 |1298 |30188 |
+ROW |72162 |1299 |30189 |
+ROW |72163 |1299 |30190 |
+ROW |72164 |1298 |30191 |
+ROW |72165 |1298 |30192 |
+ROW |72166 |1301 |30230 |
+ROW |72167 |1301 |30231 |
+ROW |72168 |1300 |30789 |
+ROW |72169 |1300 |30790 |
+ROW |72170 |1300 |30234 |
+ROW |72171 |1300 |30235 |
+ROW |72172 |1333 |30968 |
+ROW |72173 |1333 |30969 |
+ROW |72174 |1333 |30970 |
+ROW |72175 |1333 |30971 |
+ROW |72176 |1333 |30972 |
+ROW |72177 |1333 |30973 |
+ROW |72178 |1333 |30974 |
+ROW |72179 |1333 |30975 |
+ROW |72180 |1333 |30976 |
+ROW |72181 |1333 |30977 |
+ROW |72182 |1333 |30978 |
+ROW |72183 |1333 |30979 |
+ROW |72184 |1333 |30980 |
+ROW |72185 |1333 |30981 |
+ROW |72186 |1333 |30982 |
+ROW |72187 |1333 |30983 |
+ROW |72188 |1333 |30984 |
+ROW |72189 |1333 |30985 |
+ROW |72190 |1333 |30986 |
+ROW |72191 |1333 |30987 |
+ROW |72192 |1333 |30988 |
+ROW |72193 |1333 |30989 |
+ROW |72194 |1333 |30990 |
+ROW |72195 |1333 |30991 |
+ROW |72196 |1333 |30992 |
+ROW |72197 |1333 |30993 |
+ROW |72198 |1333 |30994 |
+ROW |72199 |1333 |30995 |
+ROW |72200 |1333 |30996 |
+ROW |72201 |1333 |30997 |
+ROW |72202 |1333 |30998 |
+ROW |72203 |1333 |30999 |
+ROW |72204 |1333 |31000 |
+ROW |72205 |1333 |31001 |
+ROW |72206 |1333 |31002 |
+ROW |72207 |1333 |31003 |
+ROW |72208 |1333 |31004 |
+ROW |72209 |1334 |31010 |
+ROW |72210 |1334 |31011 |
+ROW |72211 |1334 |31012 |
+ROW |72212 |1334 |31013 |
+ROW |72213 |1334 |31014 |
+ROW |72214 |1334 |31015 |
+ROW |72215 |1334 |31016 |
+ROW |72216 |1334 |31017 |
+ROW |72217 |1334 |31018 |
+ROW |72218 |1334 |31019 |
+ROW |72219 |1334 |31020 |
+ROW |72220 |1334 |31021 |
+ROW |72221 |1334 |31022 |
+ROW |72222 |1334 |31023 |
+ROW |72223 |1334 |31024 |
+ROW |72224 |1334 |31025 |
+ROW |72225 |1334 |31026 |
+ROW |72226 |1334 |31027 |
+ROW |72227 |1334 |31028 |
+ROW |72228 |1334 |31029 |
+ROW |72229 |1334 |31030 |
+ROW |72230 |1334 |31031 |
+ROW |72231 |1334 |31032 |
+ROW |72232 |1334 |31033 |
+ROW |72233 |1334 |31034 |
+ROW |72234 |1334 |31035 |
+ROW |72235 |1334 |31036 |
+ROW |72236 |1334 |31037 |
+ROW |72237 |1334 |31038 |
+ROW |72238 |1334 |31039 |
+ROW |72239 |1334 |31040 |
+ROW |72240 |1334 |31041 |
+ROW |72241 |1334 |31042 |
+ROW |72242 |1334 |31043 |
+ROW |72243 |1334 |31044 |
+ROW |72244 |1334 |31045 |
+ROW |72245 |1334 |31046 |
+ROW |72246 |1320 |30611 |
+ROW |72247 |1321 |30612 |
+ROW |72248 |1320 |30613 |
+ROW |72249 |1320 |30614 |
+ROW |72250 |1320 |30615 |
+ROW |72251 |1320 |30616 |
+ROW |72252 |1320 |30617 |
+ROW |72253 |1320 |30618 |
+ROW |72254 |1320 |30619 |
+ROW |72255 |1320 |30620 |
+ROW |72256 |1320 |30621 |
+ROW |72257 |1320 |30622 |
+ROW |72258 |1320 |30623 |
+ROW |72259 |1320 |30624 |
+ROW |72260 |1320 |30625 |
+ROW |72261 |1320 |30626 |
+ROW |72262 |1320 |30627 |
+ROW |72263 |1320 |30628 |
+ROW |72264 |1320 |30629 |
+ROW |72265 |1320 |30630 |
+ROW |72266 |1320 |30631 |
+ROW |72267 |1320 |30632 |
+ROW |72268 |1320 |30633 |
+ROW |72269 |1320 |30634 |
+ROW |72270 |1320 |30635 |
+ROW |72271 |1320 |30636 |
+ROW |72272 |1121 |28804 |
+ROW |72273 |1120 |28805 |
+ROW |72274 |1120 |28806 |
+ROW |72275 |1120 |28807 |
+ROW |72276 |1120 |28808 |
+ROW |72277 |1120 |28809 |
+ROW |72278 |1120 |28810 |
+ROW |72279 |1120 |28811 |
+ROW |72280 |1120 |28812 |
+ROW |72281 |1120 |28813 |
+ROW |72282 |1120 |28814 |
+ROW |72283 |1120 |28815 |
+ROW |72284 |1120 |28816 |
+ROW |72285 |1120 |28817 |
+ROW |72286 |1120 |28818 |
+ROW |72287 |1120 |28819 |
+ROW |72288 |1120 |28820 |
+ROW |72289 |1123 |28821 |
+ROW |72290 |1122 |28822 |
+ROW |72291 |1122 |28823 |
+ROW |72292 |1122 |28824 |
+ROW |72293 |1122 |28825 |
+ROW |72294 |1122 |28826 |
+ROW |72295 |1122 |28827 |
+ROW |72296 |1122 |28828 |
+ROW |72297 |1122 |28829 |
+ROW |72298 |1122 |28830 |
+ROW |72299 |1122 |28831 |
+ROW |72300 |1122 |28832 |
+ROW |72301 |1122 |28833 |
+ROW |72302 |1264 |29653 |
+ROW |72303 |1264 |29654 |
+ROW |72304 |1263 |29655 |
+ROW |72305 |1263 |29656 |
+ROW |72306 |1263 |29657 |
+ROW |72307 |1263 |29658 |
+ROW |72308 |1263 |29659 |
+ROW |72309 |1263 |29660 |
+ROW |72310 |1264 |29661 |
+ROW |72311 |1263 |29662 |
+ROW |72312 |1262 |29998 |
+ROW |72313 |1262 |29999 |
+ROW |72314 |1263 |29687 |
+ROW |72315 |1263 |29688 |
+ROW |72316 |1263 |29691 |
+ROW |72317 |1263 |29692 |
+ROW |72318 |1263 |29693 |
+ROW |72319 |1263 |29694 |
+ROW |72320 |1263 |29695 |
+ROW |72321 |1263 |29696 |
+ROW |72322 |1263 |29697 |
+ROW |72323 |1263 |29698 |
+ROW |72324 |1263 |29699 |
+ROW |72325 |1263 |29700 |
+ROW |72326 |1263 |29701 |
+ROW |72327 |1261 |30000 |
+ROW |72328 |1261 |30001 |
+ROW |72329 |1261 |30002 |
+ROW |72330 |1261 |30003 |
+ROW |72331 |1261 |30004 |
+ROW |72332 |1261 |30005 |
+ROW |72333 |1261 |30006 |
+ROW |72334 |1261 |30007 |
+ROW |72335 |1261 |30008 |
+ROW |72336 |1261 |30009 |
+ROW |72337 |1261 |30010 |
+ROW |72338 |1261 |30011 |
+ROW |72339 |1261 |30012 |
+ROW |72340 |1261 |30013 |
+ROW |72341 |1261 |30014 |
+ROW |72342 |1261 |30015 |
+ROW |72343 |1261 |30016 |
+ROW |72344 |1261 |30017 |
+ROW |72345 |1261 |30018 |
+ROW |72346 |1261 |30019 |
+ROW |72347 |1261 |30020 |
+ROW |72348 |1261 |30021 |
+ROW |72349 |1261 |30022 |
+ROW |72350 |1261 |30023 |
+ROW |72351 |1263 |30024 |
+ROW |72352 |1263 |30025 |
+ROW |72353 |1266 |29738 |
+ROW |72354 |1266 |29739 |
+ROW |72355 |1268 |29741 |
+ROW |72356 |1267 |29742 |
+ROW |72357 |1267 |29743 |
+ROW |72358 |1267 |29744 |
+ROW |72359 |1268 |29745 |
+ROW |72360 |1268 |30043 |
+ROW |72361 |1265 |29746 |
+ROW |72362 |1265 |29747 |
+ROW |72363 |1265 |29748 |
+ROW |72364 |1265 |29749 |
+ROW |72365 |1265 |29750 |
+ROW |72366 |1265 |29751 |
+ROW |72367 |1265 |29752 |
+ROW |72368 |1265 |29753 |
+ROW |72369 |1265 |29754 |
+ROW |72370 |1265 |29755 |
+ROW |72371 |1265 |29756 |
+ROW |72372 |1265 |29757 |
+ROW |72373 |1265 |29758 |
+ROW |72374 |1265 |29759 |
+ROW |72375 |1265 |29760 |
+ROW |72376 |1265 |29761 |
+ROW |72377 |1265 |29762 |
+ROW |72378 |1265 |29763 |
+ROW |72379 |1265 |29764 |
+ROW |72380 |1265 |29765 |
+ROW |72381 |1265 |29766 |
+ROW |72382 |1265 |29767 |
+ROW |72383 |1265 |29768 |
+ROW |72384 |1265 |29769 |
+ROW |72385 |1267 |29771 |
+ROW |72386 |1267 |29772 |
+ROW |72387 |1267 |29773 |
+ROW |72388 |1267 |29774 |
+ROW |72389 |1267 |29775 |
+ROW |72390 |1267 |29776 |
+ROW |72391 |1267 |29777 |
+ROW |72392 |1267 |29779 |
+ROW |72393 |1267 |29780 |
+ROW |72394 |1267 |29781 |
+ROW |72395 |1267 |29782 |
+ROW |72396 |1267 |29783 |
+ROW |72397 |1267 |29784 |
+ROW |72398 |1267 |30044 |
+ROW |72399 |1267 |30045 |
+ROW |72400 |1342 |31554 |
+ROW |72401 |1342 |31555 |
+ROW |72402 |1342 |31556 |
+ROW |72403 |1343 |31557 |
+ROW |72404 |1343 |31558 |
+ROW |72405 |1343 |31559 |
+ROW |72406 |1343 |31560 |
+ROW |72407 |1343 |31561 |
+ROW |72408 |1343 |31562 |
+ROW |72409 |1343 |31563 |
+ROW |72410 |1343 |31564 |
+ROW |72411 |1343 |31565 |
+ROW |72412 |1343 |31566 |
+ROW |72413 |1343 |31567 |
+ROW |72414 |1343 |31568 |
+ROW |72415 |1343 |31569 |
+ROW |72416 |1343 |31570 |
+ROW |72417 |1343 |31571 |
+ROW |72418 |1343 |31572 |
+ROW |72419 |1343 |31573 |
+ROW |72420 |1343 |31574 |
+ROW |72421 |1343 |31575 |
+ROW |72422 |1344 |31576 |
+ROW |72423 |1344 |31577 |
+ROW |72424 |1344 |31578 |
+ROW |72425 |1344 |31579 |
+ROW |72426 |1344 |31580 |
+ROW |72427 |1344 |31581 |
+ROW |72428 |1344 |31582 |
+ROW |72429 |1344 |31583 |
+ROW |72430 |1344 |31584 |
+ROW |72431 |1344 |31585 |
+ROW |72432 |1344 |31586 |
+ROW |72433 |1344 |31587 |
+ROW |72434 |1344 |31588 |
+ROW |72435 |1344 |31589 |
+ROW |72436 |1344 |31590 |
+ROW |72437 |1344 |31591 |
+ROW |72438 |1344 |31592 |
+ROW |72439 |1344 |31593 |
+ROW |72440 |1344 |31594 |
+ROW |72441 |1344 |31595 |
+ROW |72442 |1344 |31596 |
+ROW |72443 |1342 |31605 |
+ROW |72444 |1342 |31606 |
+ROW |72445 |1342 |31607 |
+ROW |72446 |1342 |31608 |
+ROW |72447 |1342 |31609 |
+ROW |72448 |1343 |31610 |
+ROW |72449 |1343 |31611 |
+ROW |72450 |1343 |31612 |
+ROW |72451 |1343 |31613 |
+ROW |72452 |1343 |31614 |
+ROW |72453 |1343 |31615 |
+ROW |72454 |1343 |31616 |
+ROW |72455 |1343 |31617 |
+ROW |72456 |1343 |31618 |
+ROW |72457 |1343 |31619 |
+ROW |72458 |1343 |31620 |
+ROW |72459 |1343 |31621 |
+ROW |72460 |1344 |31622 |
+ROW |72461 |1344 |31623 |
+ROW |72462 |1344 |31624 |
+ROW |72463 |1344 |31625 |
+ROW |72464 |1107 |28501 |
+ROW |72465 |1108 |28502 |
+ROW |72466 |1105 |28503 |
+ROW |72467 |1105 |28504 |
+ROW |72468 |1106 |28505 |
+ROW |72469 |1106 |28506 |
+ROW |72470 |1106 |28507 |
+ROW |72471 |1107 |28508 |
+ROW |72472 |1107 |28509 |
+ROW |72473 |1107 |28510 |
+ROW |72474 |1109 |28511 |
+ROW |72475 |1106 |28512 |
+ROW |72476 |1105 |28513 |
+ROW |72477 |1108 |28514 |
+ROW |72478 |1108 |28515 |
+ROW |72479 |1108 |28516 |
+ROW |72480 |1107 |28517 |
+ROW |72481 |1108 |28518 |
+ROW |72482 |1105 |28519 |
+ROW |72483 |1105 |28520 |
+ROW |72484 |1105 |28521 |
+ROW |72485 |1105 |28522 |
+ROW |72486 |1105 |28523 |
+ROW |72487 |1106 |28524 |
+ROW |72488 |1106 |28525 |
+ROW |72489 |1106 |28526 |
+ROW |72490 |1106 |28527 |
+ROW |72491 |1106 |28528 |
+ROW |72492 |1107 |28529 |
+ROW |72493 |1107 |28530 |
+ROW |72494 |1107 |28531 |
+ROW |72495 |1105 |28532 |
+ROW |72496 |446 |23644 |
+ROW |72497 |447 |23645 |
+ROW |72498 |448 |23646 |
+ROW |72499 |449 |23647 |
+ROW |72500 |450 |23648 |
+ROW |72501 |451 |23649 |
+ROW |72502 |452 |23650 |
+ROW |72503 |453 |23651 |
+ROW |72504 |1111 |28585 |
+ROW |72505 |1111 |28586 |
+ROW |72506 |1111 |28587 |
+ROW |72507 |1111 |28588 |
+ROW |72508 |1111 |28589 |
+ROW |72509 |1111 |28590 |
+ROW |72510 |1111 |28591 |
+ROW |72511 |1111 |28592 |
+ROW |72512 |1111 |28593 |
+ROW |72513 |1111 |28594 |
+ROW |72514 |1111 |28595 |
+ROW |72515 |1111 |28596 |
+ROW |72516 |1111 |28597 |
+ROW |72517 |1111 |28598 |
+ROW |72518 |1111 |28599 |
+ROW |72519 |1111 |28600 |
+ROW |72520 |1111 |28601 |
+ROW |72521 |1111 |28602 |
+ROW |72522 |1111 |28603 |
+ROW |72523 |1111 |28604 |
+ROW |72524 |1111 |28605 |
+ROW |72525 |1111 |28606 |
+ROW |72526 |1111 |28607 |
+ROW |72527 |1111 |28608 |
+ROW |72528 |1111 |28609 |
+ROW |72529 |1111 |28610 |
+ROW |72530 |1111 |28611 |
+ROW |72531 |1111 |28612 |
+ROW |72532 |1111 |28613 |
+ROW |72533 |1111 |28614 |
+ROW |72534 |1111 |28615 |
+ROW |72535 |1111 |28616 |
+ROW |72536 |1111 |31052 |
+ROW |72537 |1110 |28539 |
+ROW |72538 |1110 |28540 |
+ROW |72539 |1110 |28541 |
+ROW |72540 |1110 |28542 |
+ROW |72541 |1110 |28543 |
+ROW |72542 |1110 |28544 |
+ROW |72543 |1110 |28545 |
+ROW |72544 |1110 |28546 |
+ROW |72545 |1110 |28547 |
+ROW |72546 |1110 |28548 |
+ROW |72547 |1110 |28549 |
+ROW |72548 |1110 |28550 |
+ROW |72549 |1110 |28551 |
+ROW |72550 |1110 |28552 |
+ROW |72551 |1110 |28553 |
+ROW |72552 |1110 |28554 |
+ROW |72553 |1110 |28555 |
+ROW |72554 |1110 |28556 |
+ROW |72555 |1110 |28557 |
+ROW |72556 |1110 |28558 |
+ROW |72557 |1110 |28559 |
+ROW |72558 |1110 |28560 |
+ROW |72559 |1110 |28561 |
+ROW |72560 |1110 |28562 |
+ROW |72561 |1110 |28563 |
+ROW |72562 |1110 |28564 |
+ROW |72563 |1110 |28565 |
+ROW |72564 |1110 |28566 |
+ROW |72565 |1110 |28567 |
+ROW |72566 |1110 |28568 |
+ROW |72567 |1110 |28569 |
+ROW |72568 |1110 |28570 |
+ROW |72569 |1110 |28571 |
+ROW |72570 |1110 |28572 |
+ROW |72571 |1110 |28573 |
+ROW |72572 |1110 |28574 |
+ROW |72573 |1110 |28575 |
+ROW |72574 |1110 |28576 |
+ROW |72575 |1110 |28577 |
+ROW |72576 |1110 |28578 |
+ROW |72577 |1110 |28579 |
+ROW |72578 |1110 |28580 |
+ROW |72579 |1110 |28581 |
+ROW |72580 |1110 |28582 |
+ROW |72581 |1110 |28583 |
+ROW |72582 |1110 |28584 |
+ROW |72583 |1110 |29821 |
+ROW |72584 |1110 |31053 |
+ROW |72585 |454 |23652 |
+ROW |72586 |455 |23653 |
+ROW |72587 |456 |23654 |
+ROW |72588 |356 |10067 |
+ROW |72589 |356 |10068 |
+ROW |72590 |356 |10069 |
+ROW |72591 |356 |10070 |
+ROW |72592 |356 |10071 |
+ROW |72593 |356 |10072 |
+ROW |72594 |356 |23340 |
+ROW |72595 |356 |23341 |
+ROW |72596 |356 |23342 |
+ROW |72597 |356 |23343 |
+ROW |72598 |356 |23344 |
+ROW |72599 |356 |23345 |
+ROW |72600 |356 |23346 |
+ROW |72601 |356 |23347 |
+ROW |72602 |356 |23348 |
+ROW |72603 |356 |23349 |
+ROW |72604 |356 |23350 |
+ROW |72605 |356 |23351 |
+ROW |72606 |356 |23352 |
+ROW |72607 |356 |23353 |
+ROW |72608 |356 |23354 |
+ROW |72609 |356 |23355 |
+ROW |72610 |356 |23356 |
+ROW |72611 |356 |23357 |
+ROW |72612 |356 |23358 |
+ROW |72613 |356 |23359 |
+ROW |72614 |356 |23360 |
+ROW |72615 |356 |25368 |
+ROW |72616 |356 |25369 |
+ROW |72617 |356 |28250 |
+ROW |72618 |356 |28251 |
+ROW |72619 |356 |28617 |
+ROW |72620 |356 |28618 |
+ROW |72621 |356 |28619 |
+ROW |72622 |179 |10061 |
+ROW |72623 |179 |10062 |
+ROW |72624 |179 |10063 |
+ROW |72625 |179 |10064 |
+ROW |72626 |179 |10065 |
+ROW |72627 |179 |10066 |
+ROW |72628 |179 |22183 |
+ROW |72629 |179 |22185 |
+ROW |72630 |179 |22187 |
+ROW |72631 |179 |22189 |
+ROW |72632 |179 |22191 |
+ROW |72633 |179 |22196 |
+ROW |72634 |179 |22199 |
+ROW |72635 |179 |22219 |
+ROW |72636 |179 |22396 |
+ROW |72637 |179 |22399 |
+ROW |72638 |179 |22400 |
+ROW |72639 |179 |22401 |
+ROW |72640 |179 |22402 |
+ROW |72641 |179 |22404 |
+ROW |72642 |179 |22406 |
+ROW |72643 |179 |22408 |
+ROW |72644 |179 |22412 |
+ROW |72645 |179 |22414 |
+ROW |72646 |179 |22416 |
+ROW |72647 |179 |22418 |
+ROW |72648 |179 |22420 |
+ROW |72649 |179 |22422 |
+ROW |72650 |179 |22424 |
+ROW |72651 |179 |22426 |
+ROW |72652 |179 |22430 |
+ROW |72653 |179 |22689 |
+ROW |72654 |179 |23171 |
+ROW |72655 |179 |23251 |
+ROW |72656 |179 |23634 |
+ROW |72657 |179 |23661 |
+ROW |72658 |179 |23663 |
+ROW |72659 |179 |25366 |
+ROW |72660 |179 |25370 |
+ROW |72661 |179 |25665 |
+ROW |72662 |179 |25666 |
+ROW |72663 |179 |28248 |
+ROW |72664 |179 |28533 |
+ROW |72665 |179 |28535 |
+ROW |72666 |179 |28537 |
+ROW |72667 |179 |29822 |
+ROW |72668 |345 |10073 |
+ROW |72669 |345 |10074 |
+ROW |72670 |345 |10075 |
+ROW |72671 |345 |10076 |
+ROW |72672 |345 |10077 |
+ROW |72673 |345 |10078 |
+ROW |72674 |345 |23252 |
+ROW |72675 |345 |23253 |
+ROW |72676 |345 |23255 |
+ROW |72677 |345 |23256 |
+ROW |72678 |345 |23257 |
+ROW |72679 |345 |23258 |
+ROW |72680 |345 |23259 |
+ROW |72681 |345 |23260 |
+ROW |72682 |345 |23261 |
+ROW |72683 |345 |23262 |
+ROW |72684 |345 |23264 |
+ROW |72685 |345 |23265 |
+ROW |72686 |345 |23266 |
+ROW |72687 |345 |23267 |
+ROW |72688 |345 |23268 |
+ROW |72689 |345 |23269 |
+ROW |72690 |345 |23270 |
+ROW |72691 |345 |23271 |
+ROW |72692 |345 |23272 |
+ROW |72693 |345 |23273 |
+ROW |72694 |345 |23274 |
+ROW |72695 |345 |23275 |
+ROW |72696 |345 |23276 |
+ROW |72697 |345 |23277 |
+ROW |72698 |345 |23328 |
+ROW |72699 |345 |23620 |
+ROW |72700 |345 |23625 |
+ROW |72701 |345 |23628 |
+ROW |72702 |345 |23635 |
+ROW |72703 |345 |23662 |
+ROW |72704 |345 |23664 |
+ROW |72705 |345 |25367 |
+ROW |72706 |345 |25371 |
+ROW |72707 |345 |25667 |
+ROW |72708 |345 |25668 |
+ROW |72709 |345 |28249 |
+ROW |72710 |345 |28534 |
+ROW |72711 |345 |28536 |
+ROW |72712 |345 |28538 |
+ROW |72713 |345 |29823 |
+ROW |72714 |280 |22917 |
+ROW |72715 |280 |22918 |
+ROW |72716 |273 |22920 |
+ROW |72717 |279 |22920 |
+ROW |72718 |273 |22921 |
+ROW |72719 |279 |22921 |
+ROW |72720 |273 |22922 |
+ROW |72721 |279 |22922 |
+ROW |72722 |273 |22923 |
+ROW |72723 |279 |22923 |
+ROW |72724 |273 |22924 |
+ROW |72725 |279 |22924 |
+ROW |72726 |275 |22933 |
+ROW |72727 |278 |22933 |
+ROW |72728 |275 |22934 |
+ROW |72729 |278 |22934 |
+ROW |72730 |275 |22938 |
+ROW |72731 |278 |22938 |
+ROW |72732 |275 |22939 |
+ROW |72733 |278 |22939 |
+ROW |72734 |278 |22940 |
+ROW |72735 |281 |22940 |
+ROW |72736 |281 |22941 |
+ROW |72737 |276 |22942 |
+ROW |72738 |276 |22943 |
+ROW |72739 |273 |23108 |
+ROW |72740 |331 |23108 |
+ROW |72741 |279 |23108 |
+ROW |72742 |273 |23109 |
+ROW |72743 |331 |23109 |
+ROW |72744 |279 |23109 |
+ROW |72745 |273 |23110 |
+ROW |72746 |279 |23110 |
+ROW |72747 |273 |23111 |
+ROW |72748 |331 |23111 |
+ROW |72749 |279 |23111 |
+ROW |72750 |273 |23112 |
+ROW |72751 |331 |23112 |
+ROW |72752 |279 |23112 |
+ROW |72753 |273 |23113 |
+ROW |72754 |279 |23113 |
+ROW |72755 |273 |23114 |
+ROW |72756 |279 |23114 |
+ROW |72757 |273 |23115 |
+ROW |72758 |279 |23115 |
+ROW |72759 |274 |23116 |
+ROW |72760 |279 |23116 |
+ROW |72761 |274 |23117 |
+ROW |72762 |279 |23117 |
+ROW |72763 |273 |23118 |
+ROW |72764 |331 |23118 |
+ROW |72765 |273 |23119 |
+ROW |72766 |279 |23119 |
+ROW |72767 |273 |23120 |
+ROW |72768 |279 |23120 |
+ROW |72769 |273 |23121 |
+ROW |72770 |279 |23121 |
+ROW |72771 |276 |23122 |
+ROW |72772 |279 |23122 |
+ROW |72773 |273 |23123 |
+ROW |72774 |279 |23123 |
+ROW |72775 |276 |23124 |
+ROW |72776 |276 |23125 |
+ROW |72777 |276 |23126 |
+ROW |72778 |276 |23127 |
+ROW |72779 |276 |23128 |
+ROW |72780 |276 |23129 |
+ROW |72781 |276 |23130 |
+ROW |72782 |276 |23131 |
+ROW |72783 |277 |22945 |
+ROW |72784 |277 |22946 |
+ROW |72785 |274 |22948 |
+ROW |72786 |274 |22949 |
+ROW |72787 |274 |22950 |
+ROW |72788 |274 |22951 |
+ROW |72789 |274 |22952 |
+ROW |72790 |268 |22875 |
+ROW |72791 |268 |22876 |
+ROW |72792 |270 |22877 |
+ROW |72793 |270 |22878 |
+ROW |72794 |265 |22879 |
+ROW |72795 |268 |22879 |
+ROW |72796 |263 |22880 |
+ROW |72797 |269 |22880 |
+ROW |72798 |263 |22881 |
+ROW |72799 |269 |22881 |
+ROW |72800 |263 |22882 |
+ROW |72801 |269 |22882 |
+ROW |72802 |263 |22883 |
+ROW |72803 |269 |22883 |
+ROW |72804 |263 |22884 |
+ROW |72805 |269 |22884 |
+ROW |72806 |263 |22885 |
+ROW |72807 |269 |22885 |
+ROW |72808 |263 |22886 |
+ROW |72809 |269 |22886 |
+ROW |72810 |263 |22888 |
+ROW |72811 |269 |22888 |
+ROW |72812 |263 |22891 |
+ROW |72813 |269 |22891 |
+ROW |72814 |263 |22892 |
+ROW |72815 |269 |22892 |
+ROW |72816 |265 |22893 |
+ROW |72817 |268 |22893 |
+ROW |72818 |265 |22894 |
+ROW |72819 |268 |22894 |
+ROW |72820 |266 |22895 |
+ROW |72821 |266 |22896 |
+ROW |72822 |266 |22897 |
+ROW |72823 |265 |22898 |
+ROW |72824 |268 |22898 |
+ROW |72825 |265 |22899 |
+ROW |72826 |268 |22899 |
+ROW |72827 |268 |22900 |
+ROW |72828 |271 |22900 |
+ROW |72829 |271 |22901 |
+ROW |72830 |266 |22902 |
+ROW |72831 |266 |22903 |
+ROW |72832 |264 |22908 |
+ROW |72833 |264 |22909 |
+ROW |72834 |264 |22910 |
+ROW |72835 |264 |22911 |
+ROW |72836 |264 |22912 |
+ROW |72837 |267 |23073 |
+ROW |72838 |267 |23074 |
+ROW |72839 |283 |22961 |
+ROW |72840 |289 |22961 |
+ROW |72841 |283 |22962 |
+ROW |72842 |289 |22962 |
+ROW |72843 |283 |22963 |
+ROW |72844 |289 |22963 |
+ROW |72845 |283 |22965 |
+ROW |72846 |289 |22965 |
+ROW |72847 |283 |22968 |
+ROW |72848 |289 |22968 |
+ROW |72849 |283 |22971 |
+ROW |72850 |289 |22971 |
+ROW |72851 |283 |22972 |
+ROW |72852 |289 |22972 |
+ROW |72853 |285 |22973 |
+ROW |72854 |288 |22973 |
+ROW |72855 |285 |22974 |
+ROW |72856 |288 |22974 |
+ROW |72857 |285 |22978 |
+ROW |72858 |288 |22978 |
+ROW |72859 |288 |22980 |
+ROW |72860 |291 |22980 |
+ROW |72861 |291 |22981 |
+ROW |72862 |286 |22982 |
+ROW |72863 |286 |22983 |
+ROW |72864 |287 |22985 |
+ROW |72865 |287 |22986 |
+ROW |72866 |284 |22988 |
+ROW |72867 |284 |22989 |
+ROW |72868 |284 |22990 |
+ROW |72869 |284 |22991 |
+ROW |72870 |284 |22992 |
+ROW |72871 |308 |23035 |
+ROW |72872 |308 |23036 |
+ROW |72873 |305 |23039 |
+ROW |72874 |308 |23039 |
+ROW |72875 |303 |23041 |
+ROW |72876 |309 |23041 |
+ROW |72877 |303 |23042 |
+ROW |72878 |309 |23042 |
+ROW |72879 |303 |23043 |
+ROW |72880 |309 |23043 |
+ROW |72881 |305 |23053 |
+ROW |72882 |308 |23053 |
+ROW |72883 |305 |23054 |
+ROW |72884 |308 |23054 |
+ROW |72885 |305 |23058 |
+ROW |72886 |308 |23058 |
+ROW |72887 |305 |23059 |
+ROW |72888 |308 |23059 |
+ROW |72889 |308 |23060 |
+ROW |72890 |311 |23060 |
+ROW |72891 |311 |23061 |
+ROW |72892 |306 |23062 |
+ROW |72893 |306 |23063 |
+ROW |72894 |307 |23077 |
+ROW |72895 |307 |23078 |
+ROW |72896 |304 |23068 |
+ROW |72897 |304 |23069 |
+ROW |72898 |304 |23070 |
+ROW |72899 |304 |23071 |
+ROW |72900 |304 |23072 |
+ROW |72901 |258 |22835 |
+ROW |72902 |258 |22836 |
+ROW |72903 |260 |22837 |
+ROW |72904 |260 |22838 |
+ROW |72905 |255 |22839 |
+ROW |72906 |258 |22839 |
+ROW |72907 |253 |22840 |
+ROW |72908 |259 |22840 |
+ROW |72909 |253 |22841 |
+ROW |72910 |259 |22841 |
+ROW |72911 |253 |22842 |
+ROW |72912 |259 |22842 |
+ROW |72913 |253 |22843 |
+ROW |72914 |259 |22843 |
+ROW |72915 |253 |22844 |
+ROW |72916 |259 |22844 |
+ROW |72917 |253 |22845 |
+ROW |72918 |259 |22845 |
+ROW |72919 |253 |22846 |
+ROW |72920 |259 |22846 |
+ROW |72921 |253 |22848 |
+ROW |72922 |259 |22848 |
+ROW |72923 |253 |22851 |
+ROW |72924 |259 |22851 |
+ROW |72925 |253 |22852 |
+ROW |72926 |259 |22852 |
+ROW |72927 |255 |22853 |
+ROW |72928 |258 |22853 |
+ROW |72929 |255 |22854 |
+ROW |72930 |258 |22854 |
+ROW |72931 |256 |22855 |
+ROW |72932 |256 |22856 |
+ROW |72933 |256 |22857 |
+ROW |72934 |255 |22858 |
+ROW |72935 |258 |22858 |
+ROW |72936 |255 |22859 |
+ROW |72937 |258 |22859 |
+ROW |72938 |258 |22860 |
+ROW |72939 |261 |22860 |
+ROW |72940 |261 |22861 |
+ROW |72941 |256 |22862 |
+ROW |72942 |256 |22863 |
+ROW |72943 |254 |22868 |
+ROW |72944 |254 |22869 |
+ROW |72945 |254 |22870 |
+ROW |72946 |254 |22871 |
+ROW |72947 |254 |22872 |
+ROW |72948 |257 |23075 |
+ROW |72949 |257 |23076 |
+ROW |72950 |298 |22996 |
+ROW |72951 |300 |22997 |
+ROW |72952 |300 |22998 |
+ROW |72953 |295 |22999 |
+ROW |72954 |298 |22999 |
+ROW |72955 |293 |23000 |
+ROW |72956 |299 |23000 |
+ROW |72957 |293 |23001 |
+ROW |72958 |299 |23001 |
+ROW |72959 |293 |23002 |
+ROW |72960 |299 |23002 |
+ROW |72961 |293 |23003 |
+ROW |72962 |299 |23003 |
+ROW |72963 |293 |23004 |
+ROW |72964 |299 |23004 |
+ROW |72965 |293 |23005 |
+ROW |72966 |299 |23005 |
+ROW |72967 |293 |23007 |
+ROW |72968 |299 |23007 |
+ROW |72969 |293 |23011 |
+ROW |72970 |299 |23011 |
+ROW |72971 |293 |23012 |
+ROW |72972 |299 |23012 |
+ROW |72973 |295 |23013 |
+ROW |72974 |298 |23013 |
+ROW |72975 |295 |23014 |
+ROW |72976 |298 |23014 |
+ROW |72977 |296 |23015 |
+ROW |72978 |296 |23016 |
+ROW |72979 |296 |23017 |
+ROW |72980 |295 |23018 |
+ROW |72981 |298 |23018 |
+ROW |72982 |295 |23019 |
+ROW |72983 |298 |23019 |
+ROW |72984 |298 |23020 |
+ROW |72985 |301 |23020 |
+ROW |72986 |301 |23021 |
+ROW |72987 |296 |23022 |
+ROW |72988 |296 |23023 |
+ROW |72989 |297 |23025 |
+ROW |72990 |297 |23026 |
+ROW |72991 |294 |23028 |
+ROW |72992 |294 |23029 |
+ROW |72993 |294 |23030 |
+ROW |72994 |294 |23031 |
+ROW |72995 |294 |23032 |
+ROW |72996 |743 |26925 |
+ROW |72997 |743 |26926 |
+ROW |72998 |741 |26927 |
+ROW |72999 |742 |26928 |
+ROW |73000 |743 |26929 |
+ROW |73001 |743 |26930 |
+ROW |73002 |743 |26931 |
+ROW |73003 |743 |26932 |
+ROW |73004 |745 |26933 |
+ROW |73005 |746 |26934 |
+ROW |73006 |744 |26935 |
+ROW |73007 |744 |26936 |
+ROW |73008 |746 |26937 |
+ROW |73009 |746 |26938 |
+ROW |73010 |746 |26939 |
+ROW |73011 |746 |26940 |
+ROW |73012 |746 |26941 |
+ROW |73013 |746 |26942 |
+ROW |73014 |745 |26943 |
+ROW |73015 |1328 |30821 |
+ROW |73016 |1328 |30822 |
+ROW |73017 |1330 |30823 |
+ROW |73018 |1330 |30824 |
+ROW |73019 |1330 |30825 |
+ROW |73020 |1330 |30826 |
+ROW |73021 |1328 |30827 |
+ROW |73022 |1330 |30828 |
+ROW |73023 |1330 |30829 |
+ROW |73024 |1330 |30830 |
+ROW |73025 |1328 |31054 |
+ROW |73026 |1328 |30831 |
+ROW |73027 |1328 |30832 |
+ROW |73028 |1328 |30833 |
+ROW |73029 |1328 |30834 |
+ROW |73030 |1328 |30835 |
+ROW |73031 |1329 |30836 |
+ROW |73032 |1328 |30837 |
+ROW |73033 |1328 |30838 |
+ROW |73034 |1328 |30839 |
+ROW |73035 |1329 |30840 |
+ROW |73036 |1328 |30841 |
+ROW |73037 |1329 |30842 |
+ROW |73038 |1329 |30843 |
+ROW |73039 |1329 |30844 |
+ROW |73040 |1329 |30845 |
+ROW |73041 |1328 |30846 |
+ROW |73042 |1328 |30847 |
+ROW |73043 |1328 |30848 |
+ROW |73044 |1328 |30849 |
+ROW |73045 |1328 |30850 |
+ROW |73046 |1328 |30851 |
+ROW |73047 |1328 |30852 |
+ROW |73048 |1328 |30853 |
+ROW |73049 |1328 |30854 |
+ROW |73050 |1328 |30855 |
+ROW |73051 |1328 |30856 |
+ROW |73052 |1328 |30857 |
+ROW |73053 |1328 |30858 |
+ROW |73054 |1328 |30859 |
+ROW |73055 |1328 |30860 |
+ROW |73056 |1328 |30861 |
+ROW |73057 |1328 |30862 |
+ROW |73058 |1328 |30863 |
+ROW |73059 |1328 |30864 |
+ROW |73060 |1328 |30865 |
+ROW |73061 |1328 |30866 |
+ROW |73062 |1328 |30867 |
+ROW |73063 |1328 |30868 |
+ROW |73064 |1328 |30869 |
+ROW |73065 |1328 |30870 |
+ROW |73066 |1328 |30871 |
+ROW |73067 |1328 |30872 |
+ROW |73068 |1329 |30873 |
+ROW |73069 |1335 |31626 |
+ROW |73070 |1335 |31627 |
+ROW |73071 |1335 |31628 |
+ROW |73072 |1336 |31055 |
+ROW |73073 |1335 |31056 |
+ROW |73074 |1335 |31057 |
+ROW |73075 |1335 |31058 |
+ROW |73076 |1336 |31059 |
+ROW |73077 |1335 |31060 |
+ROW |73078 |1335 |31061 |
+ROW |73079 |1335 |31062 |
+ROW |73080 |1335 |31063 |
+ROW |73081 |1335 |31064 |
+ROW |73082 |1335 |31065 |
+ROW |73083 |1335 |31066 |
+ROW |73084 |1335 |31067 |
+ROW |73085 |1335 |31068 |
+ROW |73086 |1335 |31069 |
+ROW |73087 |1335 |31070 |
+ROW |73088 |1335 |31071 |
+ROW |73089 |1335 |31072 |
+ROW |73090 |1335 |31073 |
+ROW |73091 |1335 |31074 |
+ROW |73092 |1335 |31075 |
+ROW |73093 |1335 |31076 |
+ROW |73094 |1335 |31077 |
+ROW |73095 |1335 |31078 |
+ROW |73096 |1335 |31079 |
+ROW |73097 |1335 |31080 |
+ROW |73098 |1335 |31081 |
+ROW |73099 |1335 |31082 |
+ROW |73100 |1335 |31083 |
+ROW |73101 |1335 |31084 |
+ROW |73102 |1335 |31085 |
+ROW |73103 |1335 |31086 |
+ROW |73104 |1335 |31087 |
+ROW |73105 |1335 |31088 |
+ROW |73106 |1335 |31089 |
+ROW |73107 |1335 |31090 |
+ROW |73108 |1336 |31091 |
+ROW |73109 |1335 |31092 |
+ROW |73110 |1336 |31093 |
+ROW |73111 |1336 |31094 |
+ROW |73112 |1335 |31095 |
+ROW |73113 |1335 |31096 |
+ROW |73114 |1335 |31097 |
+ROW |73115 |1335 |31098 |
+ROW |73116 |1335 |31099 |
+ROW |73117 |1335 |31100 |
+ROW |73118 |1335 |31101 |
+ROW |73119 |1335 |31102 |
+ROW |73120 |1335 |31103 |
+ROW |73121 |1335 |31104 |
+ROW |73122 |1335 |31105 |
+ROW |73123 |1335 |31106 |
+ROW |73124 |1335 |31107 |
+ROW |73125 |1335 |31108 |
+ROW |73126 |1335 |31109 |
+ROW |73127 |1335 |31110 |
+ROW |73128 |1335 |31111 |
+ROW |73129 |1335 |31112 |
+ROW |73130 |1335 |31113 |
+ROW |73131 |1335 |31114 |
+ROW |73132 |1335 |31115 |
+ROW |73133 |1335 |31116 |
+ROW |73134 |1335 |31117 |
+ROW |73135 |1335 |31118 |
+ROW |73136 |1335 |31119 |
+ROW |73137 |1335 |31120 |
+ROW |73138 |1335 |31121 |
+ROW |73139 |1336 |31128 |
+ROW |73140 |1336 |31129 |
+ROW |73141 |1336 |31130 |
+ROW |73142 |1336 |31131 |
+ROW |73143 |1336 |31132 |
+ROW |73144 |1314 |30431 |
+ROW |73145 |1314 |30432 |
+ROW |73146 |1315 |30433 |
+ROW |73147 |1314 |30434 |
+ROW |73148 |1314 |30435 |
+ROW |73149 |1315 |30436 |
+ROW |73150 |1314 |30437 |
+ROW |73151 |1314 |30438 |
+ROW |73152 |1314 |30439 |
+ROW |73153 |1314 |30440 |
+ROW |73154 |1314 |30441 |
+ROW |73155 |1314 |30442 |
+ROW |73156 |1315 |30443 |
+ROW |73157 |1314 |30444 |
+ROW |73158 |1314 |30445 |
+ROW |73159 |1314 |30446 |
+ROW |73160 |1314 |30447 |
+ROW |73161 |1314 |30449 |
+ROW |73162 |1314 |30450 |
+ROW |73163 |1314 |30451 |
+ROW |73164 |1314 |30452 |
+ROW |73165 |1314 |30453 |
+ROW |73166 |1314 |30454 |
+ROW |73167 |1314 |30455 |
+ROW |73168 |1314 |30456 |
+ROW |73169 |1314 |30457 |
+ROW |73170 |1314 |30458 |
+ROW |73171 |1314 |30459 |
+ROW |73172 |1314 |30460 |
+ROW |73173 |1314 |30461 |
+ROW |73174 |1314 |30462 |
+ROW |73175 |1314 |30463 |
+ROW |73176 |1314 |30464 |
+ROW |73177 |1314 |30465 |
+ROW |73178 |1314 |30466 |
+ROW |73179 |1314 |30470 |
+ROW |73180 |1314 |30471 |
+ROW |73181 |1314 |31168 |
+ROW |73182 |1314 |31169 |
+ROW |73183 |1314 |31170 |
+ROW |73184 |1314 |31171 |
+ROW |73185 |1314 |30474 |
+ROW |73186 |1315 |30475 |
+ROW |73187 |1314 |30476 |
+ROW |73188 |1314 |30477 |
+ROW |73189 |1314 |30478 |
+ROW |73190 |1322 |30637 |
+ROW |73191 |1322 |30638 |
+ROW |73192 |1323 |30639 |
+ROW |73193 |1322 |30640 |
+ROW |73194 |1322 |30641 |
+ROW |73195 |1323 |30642 |
+ROW |73196 |1322 |30643 |
+ROW |73197 |1322 |30644 |
+ROW |73198 |1322 |30645 |
+ROW |73199 |1322 |30646 |
+ROW |73200 |1322 |30647 |
+ROW |73201 |1322 |30648 |
+ROW |73202 |1323 |30649 |
+ROW |73203 |1322 |30650 |
+ROW |73204 |1322 |30651 |
+ROW |73205 |1322 |30652 |
+ROW |73206 |1322 |30653 |
+ROW |73207 |1322 |30655 |
+ROW |73208 |1322 |30656 |
+ROW |73209 |1322 |30657 |
+ROW |73210 |1322 |30658 |
+ROW |73211 |1322 |30659 |
+ROW |73212 |1322 |30660 |
+ROW |73213 |1322 |30661 |
+ROW |73214 |1322 |30662 |
+ROW |73215 |1322 |30663 |
+ROW |73216 |1322 |30664 |
+ROW |73217 |1322 |30665 |
+ROW |73218 |1322 |30666 |
+ROW |73219 |1322 |30667 |
+ROW |73220 |1322 |30668 |
+ROW |73221 |1322 |30669 |
+ROW |73222 |1322 |30670 |
+ROW |73223 |1322 |30671 |
+ROW |73224 |1322 |30672 |
+ROW |73225 |1322 |30676 |
+ROW |73226 |1322 |30677 |
+ROW |73227 |1322 |31172 |
+ROW |73228 |1322 |31173 |
+ROW |73229 |1322 |31174 |
+ROW |73230 |1322 |31175 |
+ROW |73231 |1322 |30680 |
+ROW |73232 |1323 |30681 |
+ROW |73233 |1322 |30682 |
+ROW |73234 |1322 |30683 |
+ROW |73235 |1322 |30684 |
+ROW |73236 |1317 |30479 |
+ROW |73237 |1316 |30480 |
+ROW |73238 |1316 |30481 |
+ROW |73239 |1316 |30482 |
+ROW |73240 |1316 |30483 |
+ROW |73241 |1316 |30484 |
+ROW |73242 |1317 |30485 |
+ROW |73243 |1316 |30486 |
+ROW |73244 |1317 |30487 |
+ROW |73245 |1316 |30488 |
+ROW |73246 |1316 |30489 |
+ROW |73247 |1316 |30490 |
+ROW |73248 |1316 |30491 |
+ROW |73249 |1316 |30492 |
+ROW |73250 |1316 |30493 |
+ROW |73251 |1316 |30494 |
+ROW |73252 |1316 |30495 |
+ROW |73253 |1316 |30496 |
+ROW |73254 |1316 |30497 |
+ROW |73255 |1316 |30499 |
+ROW |73256 |1316 |30500 |
+ROW |73257 |1316 |30503 |
+ROW |73258 |1316 |30504 |
+ROW |73259 |1316 |30505 |
+ROW |73260 |1316 |30506 |
+ROW |73261 |1316 |30507 |
+ROW |73262 |1316 |30508 |
+ROW |73263 |1316 |30509 |
+ROW |73264 |1316 |30510 |
+ROW |73265 |1316 |30512 |
+ROW |73266 |1316 |30513 |
+ROW |73267 |1316 |30514 |
+ROW |73268 |1316 |30515 |
+ROW |73269 |1316 |30516 |
+ROW |73270 |1316 |30517 |
+ROW |73271 |1316 |30518 |
+ROW |73272 |1316 |30519 |
+ROW |73273 |1316 |31176 |
+ROW |73274 |1316 |31177 |
+ROW |73275 |1316 |31178 |
+ROW |73276 |1316 |31179 |
+ROW |73277 |1316 |30522 |
+ROW |73278 |1317 |30523 |
+ROW |73279 |1316 |30524 |
+ROW |73280 |1316 |30525 |
+ROW |73281 |1316 |30526 |
+ROW |73282 |1345 |31629 |
+ROW |73283 |1345 |31630 |
+ROW |73284 |1346 |31631 |
+ROW |73285 |1345 |31632 |
+ROW |73286 |1346 |31633 |
+ROW |73287 |1346 |31634 |
+ROW |73288 |1346 |31635 |
+ROW |73289 |1346 |31636 |
+ROW |73290 |1346 |31637 |
+ROW |73291 |1346 |31638 |
+ROW |73292 |1346 |31639 |
+ROW |73293 |1345 |31640 |
+ROW |73294 |1345 |31641 |
+ROW |73295 |1346 |31642 |
+ROW |73296 |1346 |31643 |
+ROW |73297 |1346 |31644 |
+ROW |73298 |1346 |31645 |
+ROW |73299 |1345 |31646 |
+ROW |73300 |1345 |31647 |
+ROW |73301 |1345 |31648 |
+ROW |73302 |1345 |31649 |
+ROW |73303 |1345 |31650 |
+ROW |73304 |1345 |31651 |
+ROW |73305 |1345 |31652 |
+ROW |73306 |1345 |31653 |
+ROW |73307 |1345 |31654 |
+ROW |73308 |1345 |31655 |
+ROW |73309 |1345 |31656 |
+ROW |73310 |1345 |31657 |
+ROW |73311 |1345 |31658 |
+ROW |73312 |1345 |31659 |
+ROW |73313 |1345 |31660 |
+ROW |73314 |1345 |31661 |
+ROW |73315 |1345 |31662 |
+ROW |73316 |1345 |31663 |
+ROW |73317 |1345 |31664 |
+ROW |73318 |1345 |31665 |
+ROW |73319 |1345 |31666 |
+ROW |73320 |1345 |31667 |
+ROW |73321 |1345 |31668 |
+ROW |73322 |1345 |31669 |
+ROW |73323 |1345 |31670 |
+ROW |73324 |1345 |31671 |
+ROW |73325 |1345 |31672 |
+ROW |73326 |1345 |31673 |
+ROW |73327 |1345 |31674 |
+ROW |73328 |1345 |31675 |
+ROW |73329 |1345 |31676 |
+ROW |73330 |1345 |31677 |
+ROW |73331 |1345 |31678 |
+ROW |73332 |1345 |31679 |
+ROW |73333 |1345 |31680 |
+ROW |73334 |1345 |31681 |
+ROW |73335 |1345 |31682 |
+ROW |73336 |1345 |31683 |
+ROW |73337 |1345 |31684 |
+ROW |73338 |1345 |31685 |
+ROW |73339 |1345 |31686 |
+ROW |73340 |1345 |31687 |
+ROW |73341 |1345 |31688 |
+ROW |73342 |1345 |31689 |
+ROW |73343 |1345 |31690 |
+ROW |73344 |1345 |31691 |
+ROW |73345 |1345 |31692 |
+ROW |73346 |1345 |31693 |
+ROW |73347 |1345 |31694 |
+ROW |73348 |1345 |31695 |
+ROW |73349 |1345 |31696 |
+ROW |73350 |1345 |31697 |
+ROW |73351 |1345 |31698 |
+ROW |73352 |1345 |31699 |
+ROW |73353 |1345 |31700 |
+ROW |73354 |1345 |31701 |
+ROW |73355 |1345 |31702 |
+ROW |73356 |1345 |31703 |
+ROW |73357 |1345 |31704 |
+ROW |73358 |1345 |31705 |
+ROW |73359 |1340 |31727 |
+ROW |73360 |1340 |31728 |
+ROW |73361 |1339 |31729 |
+ROW |73362 |1339 |31730 |
+ROW |73363 |1339 |31731 |
+ROW |73364 |1339 |31732 |
+ROW |73365 |1339 |31733 |
+ROW |73366 |1339 |31734 |
+ROW |73367 |1339 |31735 |
+ROW |73368 |1339 |31736 |
+ROW |73369 |1339 |31737 |
+ROW |73370 |1339 |31738 |
+ROW |73371 |1339 |31739 |
+ROW |73372 |1339 |31740 |
+ROW |73373 |1339 |31741 |
+ROW |73374 |1339 |31742 |
+ROW |73375 |1339 |31743 |
+ROW |73376 |1339 |31744 |
+ROW |73377 |1339 |31745 |
+ROW |73378 |1339 |31746 |
+ROW |73379 |1339 |31747 |
+ROW |73380 |1339 |31748 |
+ROW |73381 |1339 |31749 |
+ROW |73382 |1339 |31750 |
+ROW |73383 |1339 |31751 |
+ROW |73384 |1339 |31752 |
+ROW |73385 |1339 |31753 |
+ROW |73386 |1339 |31754 |
+ROW |73387 |1339 |31755 |
+ROW |73388 |1339 |31756 |
+ROW |73389 |1339 |31757 |
+ROW |73390 |1339 |31758 |
+ROW |73391 |1339 |31759 |
+ROW |73392 |1339 |31760 |
+ROW |73393 |1339 |31761 |
+ROW |73394 |1339 |31762 |
+ROW |73395 |1339 |31763 |
+ROW |73396 |1339 |31764 |
+ROW |73397 |1339 |31765 |
+ROW |73398 |1339 |31766 |
+ROW |73399 |1339 |31767 |
+ROW |73400 |1339 |31768 |
+ROW |73401 |1339 |31769 |
+ROW |73402 |1339 |31770 |
+ROW |73403 |1339 |31771 |
+ROW |73404 |1339 |31772 |
+ROW |73405 |1339 |31773 |
+ROW |73406 |1339 |31774 |
+ROW |73407 |1339 |31775 |
+ROW |73408 |1339 |31776 |
+ROW |73409 |1339 |31777 |
+ROW |73410 |1339 |31778 |
+ROW |73411 |1339 |31779 |
+ROW |73412 |1339 |31780 |
+ROW |73413 |1339 |31781 |
+ROW |73414 |1339 |31782 |
+ROW |73415 |1339 |31783 |
+ROW |73416 |1339 |31784 |
+ROW |73417 |1339 |31785 |
+ROW |73418 |1340 |31361 |
+ROW |73419 |1340 |31362 |
+ROW |73420 |1340 |31363 |
+ROW |73421 |1339 |31364 |
+ROW |73422 |1339 |31365 |
+ROW |73423 |1340 |31367 |
+ROW |73424 |1340 |31368 |
+ROW |73425 |1340 |31369 |
+ROW |73426 |1339 |31370 |
+ROW |73427 |1339 |31398 |
+ROW |73428 |1339 |31407 |
+ROW |73429 |1339 |31425 |
+ROW |73430 |1339 |31426 |
+ROW |73431 |1339 |31427 |
+ROW |73432 |1339 |31428 |
+ROW |73433 |1115 |28671 |
+ROW |73434 |1115 |28672 |
+ROW |73435 |1114 |28673 |
+ROW |73436 |1114 |28674 |
+ROW |73437 |1115 |28675 |
+ROW |73438 |1114 |28676 |
+ROW |73439 |1114 |28677 |
+ROW |73440 |1114 |28678 |
+ROW |73441 |1114 |28679 |
+ROW |73442 |1114 |28680 |
+ROW |73443 |1114 |28681 |
+ROW |73444 |1115 |28682 |
+ROW |73445 |1115 |28683 |
+ROW |73446 |1114 |28684 |
+ROW |73447 |1114 |28685 |
+ROW |73448 |1115 |28686 |
+ROW |73449 |1115 |28687 |
+ROW |73450 |1114 |28688 |
+ROW |73451 |1114 |28689 |
+ROW |73452 |1114 |28690 |
+ROW |73453 |1114 |28691 |
+ROW |73454 |1114 |28692 |
+ROW |73455 |1114 |28693 |
+ROW |73456 |1114 |28694 |
+ROW |73457 |1114 |28695 |
+ROW |73458 |1114 |28696 |
+ROW |73459 |1114 |28697 |
+ROW |73460 |1114 |28698 |
+ROW |73461 |1114 |28699 |
+ROW |73462 |1114 |28700 |
+ROW |73463 |1114 |28701 |
+ROW |73464 |1114 |28702 |
+ROW |73465 |1114 |28703 |
+ROW |73466 |1114 |28704 |
+ROW |73467 |1114 |28705 |
+ROW |73468 |1114 |28706 |
+ROW |73469 |1114 |28707 |
+ROW |73470 |1114 |28708 |
+ROW |73471 |1114 |28709 |
+ROW |73472 |1114 |28710 |
+ROW |73473 |1115 |28713 |
+ROW |73474 |1115 |28714 |
+ROW |73475 |1338 |31180 |
+ROW |73476 |1337 |31181 |
+ROW |73477 |1338 |31182 |
+ROW |73478 |1338 |31183 |
+ROW |73479 |1337 |31184 |
+ROW |73480 |1338 |31185 |
+ROW |73481 |1338 |31186 |
+ROW |73482 |1337 |31187 |
+ROW |73483 |1337 |31188 |
+ROW |73484 |1337 |31189 |
+ROW |73485 |1337 |31190 |
+ROW |73486 |1337 |31191 |
+ROW |73487 |1337 |31192 |
+ROW |73488 |1337 |31193 |
+ROW |73489 |1337 |31194 |
+ROW |73490 |1338 |31195 |
+ROW |73491 |1338 |31196 |
+ROW |73492 |1337 |31197 |
+ROW |73493 |1337 |31199 |
+ROW |73494 |1337 |31200 |
+ROW |73495 |1337 |31201 |
+ROW |73496 |1337 |31202 |
+ROW |73497 |1337 |31203 |
+ROW |73498 |1337 |31204 |
+ROW |73499 |1337 |31205 |
+ROW |73500 |1337 |31206 |
+ROW |73501 |1337 |31207 |
+ROW |73502 |1337 |31208 |
+ROW |73503 |1337 |31209 |
+ROW |73504 |1337 |31210 |
+ROW |73505 |1337 |31211 |
+ROW |73506 |1337 |31212 |
+ROW |73507 |1337 |31213 |
+ROW |73508 |1337 |31214 |
+ROW |73509 |1337 |31215 |
+ROW |73510 |1337 |31216 |
+ROW |73511 |1337 |31217 |
+ROW |73512 |1337 |31218 |
+ROW |73513 |1337 |31219 |
+ROW |73514 |1337 |31220 |
+ROW |73515 |1337 |31221 |
+ROW |73516 |1337 |31222 |
+ROW |73517 |1337 |31223 |
+ROW |73518 |1337 |31224 |
+ROW |73519 |1337 |31225 |
+ROW |73520 |1337 |31226 |
+ROW |73521 |1337 |31227 |
+ROW |73522 |1337 |31228 |
+ROW |73523 |1337 |31229 |
+ROW |73524 |1337 |31230 |
+ROW |73525 |1337 |31231 |
+ROW |73526 |1337 |31232 |
+ROW |73527 |1337 |31233 |
+ROW |73528 |1337 |31234 |
+ROW |73529 |1337 |31235 |
+ROW |73530 |1337 |31236 |
+ROW |73531 |1337 |31237 |
+ROW |73532 |1337 |31238 |
+ROW |73533 |1337 |31239 |
+ROW |73534 |1302 |30273 |
+ROW |73535 |1302 |30274 |
+ROW |73536 |1303 |30275 |
+ROW |73537 |1303 |30276 |
+ROW |73538 |1302 |30277 |
+ROW |73539 |1302 |30278 |
+ROW |73540 |1302 |30279 |
+ROW |73541 |1302 |30280 |
+ROW |73542 |1302 |30281 |
+ROW |73543 |1302 |30282 |
+ROW |73544 |1302 |30283 |
+ROW |73545 |1302 |30284 |
+ROW |73546 |1302 |30285 |
+ROW |73547 |1302 |30286 |
+ROW |73548 |1302 |30287 |
+ROW |73549 |1302 |30288 |
+ROW |73550 |1302 |30289 |
+ROW |73551 |1302 |30290 |
+ROW |73552 |1302 |30291 |
+ROW |73553 |1302 |30292 |
+ROW |73554 |1302 |30293 |
+ROW |73555 |1302 |30294 |
+ROW |73556 |1302 |30295 |
+ROW |73557 |1302 |30296 |
+ROW |73558 |1302 |30297 |
+ROW |73559 |1302 |30298 |
+ROW |73560 |1302 |30299 |
+ROW |73561 |1302 |30300 |
+ROW |73562 |1302 |30301 |
+ROW |73563 |1302 |30302 |
+ROW |73564 |1302 |30303 |
+ROW |73565 |1302 |30304 |
+ROW |73566 |1302 |30305 |
+ROW |73567 |1302 |30306 |
+ROW |73568 |1302 |30307 |
+ROW |73569 |1302 |30308 |
+ROW |73570 |1302 |30309 |
+ROW |73571 |1302 |30310 |
+ROW |73572 |1302 |30311 |
+ROW |73573 |1302 |30312 |
+ROW |73574 |1302 |30313 |
+ROW |73575 |1302 |30314 |
+ROW |73576 |1302 |30315 |
+ROW |73577 |1302 |30316 |
+ROW |73578 |1302 |30317 |
+ROW |73579 |1302 |30318 |
+ROW |73580 |1302 |30319 |
+ROW |73581 |1302 |30320 |
+ROW |73582 |1302 |30321 |
+ROW |73583 |1302 |30322 |
+ROW |73584 |1302 |30323 |
+ROW |73585 |1302 |30324 |
+ROW |73586 |1302 |30325 |
+ROW |73587 |1302 |30326 |
+ROW |73588 |1302 |30327 |
+ROW |73589 |1302 |30328 |
+ROW |73590 |1302 |30329 |
+ROW |73591 |1302 |30330 |
+ROW |73592 |1302 |30331 |
+ROW |73593 |1302 |30332 |
+ROW |73594 |1302 |30333 |
+ROW |73595 |1302 |30334 |
+ROW |73596 |1302 |30335 |
+ROW |73597 |1302 |30336 |
+ROW |73598 |1302 |30344 |
+ROW |73599 |1302 |30345 |
+ROW |73600 |1302 |30346 |
+ROW |73601 |1302 |30347 |
+ROW |73602 |1302 |30351 |
+ROW |73603 |1302 |30352 |
+ROW |73604 |1302 |30353 |
+ROW |73605 |1302 |30354 |
+ROW |73606 |1302 |30355 |
+ROW |73607 |1302 |30356 |
+ROW |73608 |1302 |30357 |
+ROW |73609 |1302 |30358 |
+ROW |73610 |1302 |30359 |
+ROW |73611 |1302 |30360 |
+ROW |73612 |1302 |30361 |
+ROW |73613 |1302 |30362 |
+ROW |73614 |1302 |30363 |
+ROW |73615 |1302 |30364 |
+ROW |73616 |1302 |30365 |
+ROW |73617 |1302 |30366 |
+ROW |73618 |1302 |30367 |
+ROW |73619 |1302 |30368 |
+ROW |73620 |1302 |30369 |
+ROW |73621 |1302 |30370 |
+ROW |73622 |1302 |30371 |
+ROW |73623 |1302 |30372 |
+ROW |73624 |1302 |30373 |
+ROW |73625 |1302 |30374 |
+ROW |73626 |1302 |30375 |
+ROW |73627 |1302 |30376 |
+ROW |73628 |1302 |30377 |
+ROW |73629 |1302 |30378 |
+ROW |73630 |1302 |30379 |
+ROW |73631 |1302 |30380 |
+ROW |73632 |1302 |30381 |
+ROW |73633 |1302 |30382 |
+ROW |73634 |1302 |30383 |
+ROW |73635 |1302 |30384 |
+ROW |73636 |1302 |30385 |
+ROW |73637 |1302 |30386 |
+ROW |73638 |1302 |30387 |
+ROW |73639 |1302 |30388 |
+ROW |73640 |1302 |30389 |
+ROW |73641 |1302 |30390 |
+ROW |73642 |1302 |30391 |
+ROW |73643 |1302 |30392 |
+ROW |73644 |1302 |30393 |
+ROW |73645 |1302 |30394 |
+ROW |73646 |1302 |30395 |
+ROW |73647 |1302 |30397 |
+ROW |73648 |1302 |30398 |
+ROW |73649 |1302 |30399 |
+ROW |73650 |1302 |30400 |
+ROW |73651 |1302 |30401 |
+ROW |73652 |1302 |30402 |
+ROW |73653 |1302 |30403 |
+ROW |73654 |1302 |30404 |
+ROW |73655 |780 |27065 |
+ROW |73656 |780 |27066 |
+ROW |73657 |780 |27067 |
+ROW |73658 |799 |27149 |
+ROW |73659 |799 |27150 |
+ROW |73660 |799 |27151 |
+ROW |73661 |805 |27192 |
+ROW |73662 |805 |27193 |
+ROW |73663 |805 |27194 |
+ROW |73664 |813 |27225 |
+ROW |73665 |813 |27226 |
+ROW |73666 |813 |27227 |
+ROW |73667 |822 |27261 |
+ROW |73668 |822 |27262 |
+ROW |73669 |822 |27263 |
+ROW |73670 |825 |27282 |
+ROW |73671 |825 |27283 |
+ROW |73672 |825 |27284 |
+ROW |73673 |842 |27333 |
+ROW |73674 |842 |27334 |
+ROW |73675 |842 |27335 |
+ROW |73676 |847 |27365 |
+ROW |73677 |847 |27366 |
+ROW |73678 |847 |27367 |
+ROW |73679 |876 |27462 |
+ROW |73680 |876 |27463 |
+ROW |73681 |876 |27464 |
+ROW |73682 |885 |27496 |
+ROW |73683 |885 |27497 |
+ROW |73684 |885 |27498 |
+ROW |73685 |894 |27532 |
+ROW |73686 |894 |27533 |
+ROW |73687 |894 |27534 |
+ROW |73688 |903 |27568 |
+ROW |73689 |903 |27569 |
+ROW |73690 |903 |27570 |
+ROW |73691 |915 |27631 |
+ROW |73692 |915 |27632 |
+ROW |73693 |915 |27633 |
+ROW |73694 |918 |27654 |
+ROW |73695 |918 |27655 |
+ROW |73696 |918 |27656 |
+ROW |73697 |936 |27734 |
+ROW |73698 |936 |27735 |
+ROW |73699 |936 |27736 |
+ROW |73700 |944 |27766 |
+ROW |73701 |944 |27767 |
+ROW |73702 |944 |27768 |
+ROW |73703 |951 |27800 |
+ROW |73704 |951 |27801 |
+ROW |73705 |951 |27802 |
+ROW |73706 |971 |27882 |
+ROW |73707 |971 |27883 |
+ROW |73708 |971 |27884 |
+ROW |73709 |979 |27919 |
+ROW |73710 |979 |27920 |
+ROW |73711 |979 |27921 |
+ROW |73712 |988 |27956 |
+ROW |73713 |988 |27957 |
+ROW |73714 |988 |27958 |
+ROW |73715 |994 |27986 |
+ROW |73716 |994 |27987 |
+ROW |73717 |994 |27988 |
+ROW |73718 |1000 |28015 |
+ROW |73719 |1000 |28016 |
+ROW |73720 |1000 |28017 |
+ROW |73721 |1030 |28130 |
+ROW |73722 |1030 |28131 |
+ROW |73723 |1030 |28132 |
+ROW |73724 |1043 |28185 |
+ROW |73725 |1043 |28186 |
+ROW |73726 |1043 |28187 |
+ROW |73727 |1055 |28233 |
+ROW |73728 |1055 |28234 |
+ROW |73729 |1055 |28235 |
+ROW |73730 |1060 |28282 |
+ROW |73731 |1060 |28283 |
+ROW |73732 |1060 |28284 |
+ROW |73733 |1070 |28330 |
+ROW |73734 |1070 |28331 |
+ROW |73735 |1070 |28332 |
+ROW |73736 |1079 |28377 |
+ROW |73737 |1079 |28378 |
+ROW |73738 |1079 |28379 |
+ROW |73739 |1095 |28454 |
+ROW |73740 |1095 |28455 |
+ROW |73741 |1095 |28456 |
+ROW |73742 |1102 |28482 |
+ROW |73743 |1102 |28483 |
+ROW |73744 |1102 |28484 |
+ROW |73745 |1127 |28957 |
+ROW |73746 |1127 |28958 |
+ROW |73747 |1127 |28959 |
+ROW |73748 |1136 |29050 |
+ROW |73749 |1136 |29051 |
+ROW |73750 |1136 |29052 |
+ROW |73751 |1271 |30046 |
+ROW |73752 |1271 |30047 |
+ROW |73753 |1271 |30048 |
+ROW |73754 |800 |27152 |
+ROW |73755 |799 |27154 |
+ROW |73756 |800 |27157 |
+ROW |73757 |799 |29844 |
+ROW |73758 |800 |29845 |
+ROW |73759 |800 |29846 |
+ROW |73760 |800 |29847 |
+ROW |73761 |800 |29848 |
+ROW |73762 |804 |27195 |
+ROW |73763 |804 |27199 |
+ROW |73764 |805 |27202 |
+ROW |73765 |812 |27228 |
+ROW |73766 |812 |27232 |
+ROW |73767 |813 |27235 |
+ROW |73768 |821 |27264 |
+ROW |73769 |821 |27268 |
+ROW |73770 |822 |27271 |
+ROW |73771 |824 |27285 |
+ROW |73772 |824 |27289 |
+ROW |73773 |825 |27292 |
+ROW |73774 |841 |27336 |
+ROW |73775 |841 |27340 |
+ROW |73776 |842 |27343 |
+ROW |73777 |846 |27368 |
+ROW |73778 |846 |27372 |
+ROW |73779 |847 |27375 |
+ROW |73780 |875 |27465 |
+ROW |73781 |875 |27469 |
+ROW |73782 |876 |27472 |
+ROW |73783 |884 |27499 |
+ROW |73784 |884 |27503 |
+ROW |73785 |885 |27506 |
+ROW |73786 |893 |27535 |
+ROW |73787 |893 |27539 |
+ROW |73788 |894 |27542 |
+ROW |73789 |902 |27571 |
+ROW |73790 |902 |27575 |
+ROW |73791 |903 |27578 |
+ROW |73792 |914 |27634 |
+ROW |73793 |914 |27638 |
+ROW |73794 |915 |27641 |
+ROW |73795 |917 |27657 |
+ROW |73796 |917 |27661 |
+ROW |73797 |918 |27664 |
+ROW |73798 |935 |27737 |
+ROW |73799 |935 |27741 |
+ROW |73800 |936 |27744 |
+ROW |73801 |943 |27769 |
+ROW |73802 |943 |27773 |
+ROW |73803 |944 |27776 |
+ROW |73804 |950 |27803 |
+ROW |73805 |950 |27807 |
+ROW |73806 |951 |27810 |
+ROW |73807 |970 |27885 |
+ROW |73808 |970 |27889 |
+ROW |73809 |971 |27892 |
+ROW |73810 |978 |27922 |
+ROW |73811 |978 |27926 |
+ROW |73812 |979 |27929 |
+ROW |73813 |987 |27959 |
+ROW |73814 |987 |27963 |
+ROW |73815 |988 |27966 |
+ROW |73816 |993 |27989 |
+ROW |73817 |993 |27993 |
+ROW |73818 |994 |27996 |
+ROW |73819 |999 |28018 |
+ROW |73820 |999 |28022 |
+ROW |73821 |1000 |28025 |
+ROW |73822 |1029 |28133 |
+ROW |73823 |1029 |28137 |
+ROW |73824 |1030 |28140 |
+ROW |73825 |1042 |28188 |
+ROW |73826 |1042 |28192 |
+ROW |73827 |1043 |28195 |
+ROW |73828 |1054 |28236 |
+ROW |73829 |1054 |28240 |
+ROW |73830 |1055 |28243 |
+ROW |73831 |1059 |28285 |
+ROW |73832 |1059 |28289 |
+ROW |73833 |1060 |28292 |
+ROW |73834 |1069 |28333 |
+ROW |73835 |1069 |28337 |
+ROW |73836 |1070 |28340 |
+ROW |73837 |1078 |28380 |
+ROW |73838 |1078 |28384 |
+ROW |73839 |1079 |28387 |
+ROW |73840 |1094 |28457 |
+ROW |73841 |1094 |28461 |
+ROW |73842 |1095 |28464 |
+ROW |73843 |1101 |28485 |
+ROW |73844 |1101 |28489 |
+ROW |73845 |1102 |28492 |
+ROW |73846 |1126 |28960 |
+ROW |73847 |1126 |28964 |
+ROW |73848 |1127 |28967 |
+ROW |73849 |1135 |29053 |
+ROW |73850 |1135 |29057 |
+ROW |73851 |1136 |29060 |
+ROW |73852 |1000 |29834 |
+ROW |73853 |999 |29835 |
+ROW |73854 |999 |29836 |
+ROW |73855 |999 |29837 |
+ROW |73856 |999 |29838 |
+ROW |73857 |805 |29849 |
+ROW |73858 |804 |29850 |
+ROW |73859 |804 |29851 |
+ROW |73860 |804 |29852 |
+ROW |73861 |804 |29853 |
+ROW |73862 |813 |29854 |
+ROW |73863 |812 |29855 |
+ROW |73864 |812 |29856 |
+ROW |73865 |812 |29857 |
+ROW |73866 |812 |29858 |
+ROW |73867 |822 |29859 |
+ROW |73868 |821 |29860 |
+ROW |73869 |821 |29861 |
+ROW |73870 |821 |29862 |
+ROW |73871 |821 |29863 |
+ROW |73872 |825 |29864 |
+ROW |73873 |824 |29865 |
+ROW |73874 |824 |29866 |
+ROW |73875 |824 |29867 |
+ROW |73876 |824 |29868 |
+ROW |73877 |842 |29869 |
+ROW |73878 |841 |29870 |
+ROW |73879 |841 |29871 |
+ROW |73880 |841 |29872 |
+ROW |73881 |841 |29873 |
+ROW |73882 |847 |29874 |
+ROW |73883 |846 |29875 |
+ROW |73884 |846 |29876 |
+ROW |73885 |846 |29877 |
+ROW |73886 |846 |29878 |
+ROW |73887 |876 |29879 |
+ROW |73888 |875 |29880 |
+ROW |73889 |875 |29881 |
+ROW |73890 |875 |29882 |
+ROW |73891 |875 |29883 |
+ROW |73892 |885 |29884 |
+ROW |73893 |884 |29885 |
+ROW |73894 |884 |29886 |
+ROW |73895 |884 |29887 |
+ROW |73896 |884 |29888 |
+ROW |73897 |894 |29889 |
+ROW |73898 |893 |29890 |
+ROW |73899 |893 |29891 |
+ROW |73900 |893 |29892 |
+ROW |73901 |893 |29893 |
+ROW |73902 |903 |29894 |
+ROW |73903 |902 |29895 |
+ROW |73904 |902 |29896 |
+ROW |73905 |902 |29897 |
+ROW |73906 |902 |29898 |
+ROW |73907 |915 |29899 |
+ROW |73908 |914 |29900 |
+ROW |73909 |914 |29901 |
+ROW |73910 |914 |29902 |
+ROW |73911 |914 |29903 |
+ROW |73912 |918 |29904 |
+ROW |73913 |917 |29905 |
+ROW |73914 |917 |29906 |
+ROW |73915 |917 |29907 |
+ROW |73916 |917 |29908 |
+ROW |73917 |936 |29909 |
+ROW |73918 |935 |29910 |
+ROW |73919 |935 |29911 |
+ROW |73920 |935 |29912 |
+ROW |73921 |935 |29913 |
+ROW |73922 |944 |29914 |
+ROW |73923 |943 |29915 |
+ROW |73924 |943 |29916 |
+ROW |73925 |943 |29917 |
+ROW |73926 |943 |29918 |
+ROW |73927 |951 |29919 |
+ROW |73928 |950 |29920 |
+ROW |73929 |950 |29921 |
+ROW |73930 |950 |29922 |
+ROW |73931 |950 |29923 |
+ROW |73932 |971 |29924 |
+ROW |73933 |970 |29925 |
+ROW |73934 |970 |29926 |
+ROW |73935 |970 |29927 |
+ROW |73936 |970 |29928 |
+ROW |73937 |979 |29929 |
+ROW |73938 |978 |29930 |
+ROW |73939 |978 |29931 |
+ROW |73940 |978 |29932 |
+ROW |73941 |978 |29933 |
+ROW |73942 |988 |29934 |
+ROW |73943 |987 |29935 |
+ROW |73944 |987 |29936 |
+ROW |73945 |987 |29937 |
+ROW |73946 |987 |29938 |
+ROW |73947 |994 |29939 |
+ROW |73948 |993 |29940 |
+ROW |73949 |993 |29941 |
+ROW |73950 |993 |29942 |
+ROW |73951 |993 |29943 |
+ROW |73952 |1030 |29944 |
+ROW |73953 |1029 |29945 |
+ROW |73954 |1029 |29946 |
+ROW |73955 |1029 |29947 |
+ROW |73956 |1029 |29948 |
+ROW |73957 |1043 |29949 |
+ROW |73958 |1042 |29950 |
+ROW |73959 |1042 |29951 |
+ROW |73960 |1042 |29952 |
+ROW |73961 |1042 |29953 |
+ROW |73962 |1055 |29954 |
+ROW |73963 |1054 |29955 |
+ROW |73964 |1054 |29956 |
+ROW |73965 |1054 |29957 |
+ROW |73966 |1054 |29958 |
+ROW |73967 |1060 |29959 |
+ROW |73968 |1059 |29960 |
+ROW |73969 |1059 |29961 |
+ROW |73970 |1059 |29962 |
+ROW |73971 |1059 |29963 |
+ROW |73972 |1070 |29964 |
+ROW |73973 |1069 |29965 |
+ROW |73974 |1069 |29966 |
+ROW |73975 |1069 |29967 |
+ROW |73976 |1069 |29968 |
+ROW |73977 |1079 |29969 |
+ROW |73978 |1078 |29970 |
+ROW |73979 |1078 |29971 |
+ROW |73980 |1078 |29972 |
+ROW |73981 |1078 |29973 |
+ROW |73982 |1095 |29974 |
+ROW |73983 |1094 |29975 |
+ROW |73984 |1094 |29976 |
+ROW |73985 |1094 |29977 |
+ROW |73986 |1094 |29978 |
+ROW |73987 |1102 |29979 |
+ROW |73988 |1101 |29980 |
+ROW |73989 |1101 |29981 |
+ROW |73990 |1101 |29982 |
+ROW |73991 |1101 |29983 |
+ROW |73992 |1127 |29984 |
+ROW |73993 |1126 |29985 |
+ROW |73994 |1126 |29986 |
+ROW |73995 |1126 |29987 |
+ROW |73996 |1126 |29988 |
+ROW |73997 |1136 |29989 |
+ROW |73998 |1135 |29990 |
+ROW |73999 |1135 |29991 |
+ROW |74000 |1135 |29992 |
+ROW |74001 |1135 |29993 |
+ROW |74002 |1270 |30049 |
+ROW |74003 |1270 |30050 |
+ROW |74004 |1270 |30051 |
+ROW |74005 |1270 |30052 |
+ROW |74006 |1270 |30053 |
+ROW |74007 |1270 |30054 |
+ROW |74008 |1271 |30055 |
+ROW |74009 |1271 |30056 |
+ROW |74010 |1283 |30142 |
+ROW |74011 |1286 |30143 |
+ROW |74012 |1289 |30144 |
+ROW |74013 |1292 |30145 |
+ROW |74014 |1295 |30146 |
+ROW |74015 |1284 |30157 |
+ROW |74016 |1284 |30158 |
+ROW |74017 |1284 |30159 |
+ROW |74018 |1287 |30163 |
+ROW |74019 |1287 |30164 |
+ROW |74020 |1287 |30165 |
+ROW |74021 |1290 |30169 |
+ROW |74022 |1290 |30170 |
+ROW |74023 |1290 |30171 |
+ROW |74024 |1293 |30175 |
+ROW |74025 |1293 |30176 |
+ROW |74026 |1293 |30177 |
+ROW |74027 |1296 |30181 |
+ROW |74028 |1296 |30182 |
+ROW |74029 |1296 |30183 |
+ROW |74030 |1221 |22231 |
+ROW |74031 |1221 |22232 |
+ROW |74032 |1221 |23318 |
+ROW |74033 |1222 |29544 |
+ROW |74034 |1223 |29545 |
+ROW |74035 |1223 |29546 |
+ROW |74036 |1224 |29547 |
+ROW |74037 |1225 |10020 |
+ROW |74038 |1225 |10059 |
+ROW |74039 |1226 |22833 |
+ROW |74040 |1226 |22834 |
+ROW |74041 |1228 |22873 |
+ROW |74042 |1228 |22874 |
+ROW |74043 |1230 |22913 |
+ROW |74044 |1230 |22914 |
+ROW |74045 |1232 |22953 |
+ROW |74046 |1232 |22954 |
+ROW |74047 |1234 |22993 |
+ROW |74048 |1234 |22994 |
+ROW |74049 |1236 |23033 |
+ROW |74050 |1236 |23034 |
+ROW |74051 |1238 |23160 |
+ROW |74052 |1238 |23161 |
+ROW |74053 |1225 |23319 |
+ROW |74054 |1226 |23320 |
+ROW |74055 |1228 |23321 |
+ROW |74056 |1230 |23322 |
+ROW |74057 |1232 |23323 |
+ROW |74058 |1234 |23324 |
+ROW |74059 |1236 |23325 |
+ROW |74060 |1238 |23326 |
+ROW |74061 |1161 |29548 |
+ROW |74062 |1227 |29549 |
+ROW |74063 |1229 |29550 |
+ROW |74064 |1231 |29551 |
+ROW |74065 |1233 |29552 |
+ROW |74066 |1235 |29553 |
+ROW |74067 |1237 |29554 |
+ROW |74068 |1219 |29555 |
+ROW |74069 |1241 |29558 |
+ROW |74070 |1242 |29559 |
+ROW |74071 |1241 |29560 |
+ROW |74072 |1269 |29995 |
+ROW |74073 |1192 |29996 |
+ROW |74074 |1269 |29997 |
+ROW |74075 |1240 |23287 |
+ROW |74076 |1240 |23288 |
+ROW |74077 |1240 |23327 |
+ROW |74078 |1171 |29557 |
+ROW |74079 |810 |27203 |
+ROW |74080 |807 |27207 |
+ROW |74081 |806 |27208 |
+ROW |74082 |810 |30086 |
+ROW |74083 |807 |30087 |
+ROW |74084 |807 |30088 |
+ROW |74085 |807 |30089 |
+ROW |74086 |808 |27212 |
+ROW |74087 |809 |27213 |
+ROW |74088 |810 |27214 |
+ROW |74089 |1279 |30091 |
+ROW |74090 |1279 |30092 |
+ROW |74091 |1068 |28323 |
+ROW |74092 |1068 |28324 |
+ROW |74093 |1062 |28325 |
+ROW |74094 |1062 |28326 |
+ROW |74095 |1064 |28327 |
+ROW |74096 |1064 |28328 |
+ROW |74097 |1066 |28329 |
+ROW |74098 |819 |27236 |
+ROW |74099 |819 |27237 |
+ROW |74100 |813 |27238 |
+ROW |74101 |814 |27240 |
+ROW |74102 |815 |30093 |
+ROW |74103 |816 |27246 |
+ROW |74104 |816 |27247 |
+ROW |74105 |817 |27248 |
+ROW |74106 |818 |27249 |
+ROW |74107 |818 |27250 |
+ROW |74108 |826 |27294 |
+ROW |74109 |831 |27295 |
+ROW |74110 |831 |27296 |
+ROW |74111 |835 |27297 |
+ROW |74112 |827 |30094 |
+ROW |74113 |836 |27299 |
+ROW |74114 |838 |27301 |
+ROW |74115 |837 |30095 |
+ROW |74116 |839 |30096 |
+ROW |74117 |829 |27312 |
+ROW |74118 |830 |27313 |
+ROW |74119 |828 |27314 |
+ROW |74120 |828 |27315 |
+ROW |74121 |833 |27316 |
+ROW |74122 |834 |27317 |
+ROW |74123 |832 |27318 |
+ROW |74124 |835 |27319 |
+ROW |74125 |835 |27320 |
+ROW |74126 |851 |27376 |
+ROW |74127 |852 |27378 |
+ROW |74128 |852 |27379 |
+ROW |74129 |852 |30097 |
+ROW |74130 |869 |27380 |
+ROW |74131 |870 |27382 |
+ROW |74132 |870 |27383 |
+ROW |74133 |858 |27385 |
+ROW |74134 |858 |27386 |
+ROW |74135 |1048 |28209 |
+ROW |74136 |1048 |28210 |
+ROW |74137 |858 |30098 |
+ROW |74138 |870 |30099 |
+ROW |74139 |1048 |30100 |
+ROW |74140 |848 |27415 |
+ROW |74141 |848 |27416 |
+ROW |74142 |849 |27417 |
+ROW |74143 |852 |27419 |
+ROW |74144 |853 |27420 |
+ROW |74145 |853 |27421 |
+ROW |74146 |854 |27422 |
+ROW |74147 |855 |27423 |
+ROW |74148 |1056 |28246 |
+ROW |74149 |848 |30101 |
+ROW |74150 |856 |27425 |
+ROW |74151 |856 |27426 |
+ROW |74152 |857 |27427 |
+ROW |74153 |858 |27428 |
+ROW |74154 |859 |27429 |
+ROW |74155 |859 |27430 |
+ROW |74156 |860 |27431 |
+ROW |74157 |861 |27432 |
+ROW |74158 |868 |27443 |
+ROW |74159 |868 |27444 |
+ROW |74160 |870 |27445 |
+ROW |74161 |871 |27446 |
+ROW |74162 |871 |27447 |
+ROW |74163 |872 |27448 |
+ROW |74164 |873 |27449 |
+ROW |74165 |1048 |28208 |
+ROW |74166 |1049 |28215 |
+ROW |74167 |1050 |28216 |
+ROW |74168 |1051 |28217 |
+ROW |74169 |1051 |28218 |
+ROW |74170 |1052 |28220 |
+ROW |74171 |1052 |28222 |
+ROW |74172 |1057 |28247 |
+ROW |74173 |856 |30102 |
+ROW |74174 |868 |30103 |
+ROW |74175 |1052 |30104 |
+ROW |74176 |877 |27478 |
+ROW |74177 |880 |27479 |
+ROW |74178 |881 |27480 |
+ROW |74179 |882 |27481 |
+ROW |74180 |882 |27482 |
+ROW |74181 |882 |27483 |
+ROW |74182 |882 |27484 |
+ROW |74183 |879 |27485 |
+ROW |74184 |878 |30105 |
+ROW |74185 |891 |27508 |
+ROW |74186 |891 |27509 |
+ROW |74187 |891 |27510 |
+ROW |74188 |886 |27511 |
+ROW |74189 |891 |30106 |
+ROW |74190 |888 |27517 |
+ROW |74191 |890 |27518 |
+ROW |74192 |889 |27519 |
+ROW |74193 |887 |30107 |
+ROW |74194 |900 |27543 |
+ROW |74195 |900 |27544 |
+ROW |74196 |900 |27545 |
+ROW |74197 |900 |27546 |
+ROW |74198 |895 |27547 |
+ROW |74199 |897 |27553 |
+ROW |74200 |899 |27554 |
+ROW |74201 |898 |27555 |
+ROW |74202 |896 |30108 |
+ROW |74203 |909 |27579 |
+ROW |74204 |909 |27580 |
+ROW |74205 |909 |27582 |
+ROW |74206 |909 |27583 |
+ROW |74207 |906 |27584 |
+ROW |74208 |906 |27585 |
+ROW |74209 |904 |27586 |
+ROW |74210 |909 |30109 |
+ROW |74211 |905 |27591 |
+ROW |74212 |907 |27593 |
+ROW |74213 |908 |27594 |
+ROW |74214 |908 |27595 |
+ROW |74215 |905 |30110 |
+ROW |74216 |905 |30111 |
+ROW |74217 |919 |27671 |
+ROW |74218 |921 |27672 |
+ROW |74219 |922 |27673 |
+ROW |74220 |923 |27674 |
+ROW |74221 |924 |27675 |
+ROW |74222 |924 |27676 |
+ROW |74223 |924 |27677 |
+ROW |74224 |924 |27678 |
+ROW |74225 |924 |27679 |
+ROW |74226 |920 |30112 |
+ROW |74227 |1036 |28141 |
+ROW |74228 |1036 |28142 |
+ROW |74229 |1031 |28143 |
+ROW |74230 |1033 |28150 |
+ROW |74231 |1032 |28153 |
+ROW |74232 |1034 |28154 |
+ROW |74233 |1035 |28155 |
+ROW |74234 |1033 |28156 |
+ROW |74235 |1036 |28157 |
+ROW |74236 |1036 |28158 |
+ROW |74237 |1032 |30113 |
+ROW |74238 |1032 |30114 |
+ROW |74239 |1032 |30115 |
+ROW |74240 |941 |27748 |
+ROW |74241 |941 |27749 |
+ROW |74242 |941 |27750 |
+ROW |74243 |939 |27751 |
+ROW |74244 |937 |27753 |
+ROW |74245 |941 |27754 |
+ROW |74246 |940 |27755 |
+ROW |74247 |938 |30116 |
+ROW |74248 |948 |27777 |
+ROW |74249 |948 |27778 |
+ROW |74250 |945 |27783 |
+ROW |74251 |945 |27784 |
+ROW |74252 |948 |27785 |
+ROW |74253 |946 |27786 |
+ROW |74254 |947 |27787 |
+ROW |74255 |957 |27812 |
+ROW |74256 |957 |27813 |
+ROW |74257 |951 |27814 |
+ROW |74258 |957 |30117 |
+ROW |74259 |954 |27821 |
+ROW |74260 |956 |27822 |
+ROW |74261 |955 |27823 |
+ROW |74262 |952 |28894 |
+ROW |74263 |953 |30118 |
+ROW |74264 |1044 |28200 |
+ROW |74265 |1044 |28201 |
+ROW |74266 |1045 |28202 |
+ROW |74267 |1045 |28203 |
+ROW |74268 |1047 |28204 |
+ROW |74269 |1047 |28205 |
+ROW |74270 |1046 |28206 |
+ROW |74271 |976 |27893 |
+ROW |74272 |976 |27894 |
+ROW |74273 |976 |27895 |
+ROW |74274 |973 |27898 |
+ROW |74275 |973 |27900 |
+ROW |74276 |976 |30119 |
+ROW |74277 |973 |30120 |
+ROW |74278 |974 |31790 |
+ROW |74279 |972 |27904 |
+ROW |74280 |974 |27905 |
+ROW |74281 |975 |27906 |
+ROW |74282 |975 |27907 |
+ROW |74283 |975 |27908 |
+ROW |74284 |985 |27930 |
+ROW |74285 |985 |27931 |
+ROW |74286 |981 |27935 |
+ROW |74287 |980 |27936 |
+ROW |74288 |985 |30121 |
+ROW |74289 |981 |30122 |
+ROW |74290 |981 |30123 |
+ROW |74291 |982 |27940 |
+ROW |74292 |982 |27941 |
+ROW |74293 |984 |27942 |
+ROW |74294 |983 |27943 |
+ROW |74295 |991 |27967 |
+ROW |74296 |991 |27968 |
+ROW |74297 |991 |27970 |
+ROW |74298 |991 |27971 |
+ROW |74299 |990 |27972 |
+ROW |74300 |990 |27973 |
+ROW |74301 |989 |27975 |
+ROW |74302 |1282 |30124 |
+ROW |74303 |991 |30125 |
+ROW |74304 |990 |30126 |
+ROW |74305 |1280 |30129 |
+ROW |74306 |1281 |30130 |
+ROW |74307 |997 |27997 |
+ROW |74308 |997 |27998 |
+ROW |74309 |997 |27999 |
+ROW |74310 |997 |28000 |
+ROW |74311 |995 |28003 |
+ROW |74312 |996 |30131 |
+ROW |74313 |1003 |28026 |
+ROW |74314 |1003 |28027 |
+ROW |74315 |1001 |28031 |
+ROW |74316 |1002 |30132 |
+ROW |74317 |1002 |30133 |
+ROW |74318 |1002 |30134 |
+ROW |74319 |1002 |30135 |
+ROW |74320 |1002 |30136 |
+ROW |74321 |1142 |29087 |
+ROW |74322 |1142 |29088 |
+ROW |74323 |1142 |29089 |
+ROW |74324 |1142 |29090 |
+ROW |74325 |1142 |29091 |
+ROW |74326 |1142 |29092 |
+ROW |74327 |1142 |29093 |
+ROW |74328 |1142 |29094 |
+ROW |74329 |1142 |29095 |
+ROW |74330 |1142 |29096 |
+ROW |74331 |1142 |29097 |
+ROW |74332 |1142 |29098 |
+ROW |74333 |1142 |29099 |
+ROW |74334 |1142 |29100 |
+ROW |74335 |1142 |29101 |
+ROW |74336 |1142 |29102 |
+ROW |74337 |1144 |29103 |
+ROW |74338 |1144 |29104 |
+ROW |74339 |1144 |29105 |
+ROW |74340 |1144 |29106 |
+ROW |74341 |1144 |29107 |
+ROW |74342 |1144 |29108 |
+ROW |74343 |1151 |29110 |
+ROW |74344 |1148 |29111 |
+ROW |74345 |1148 |29112 |
+ROW |74346 |1148 |29113 |
+ROW |74347 |1148 |29114 |
+ROW |74348 |1148 |29115 |
+ROW |74349 |1148 |29116 |
+ROW |74350 |1148 |29117 |
+ROW |74351 |1148 |29118 |
+ROW |74352 |1148 |29119 |
+ROW |74353 |1150 |29120 |
+ROW |74354 |1149 |29121 |
+ROW |74355 |1149 |29122 |
+ROW |74356 |1149 |29123 |
+ROW |74357 |1152 |29124 |
+ROW |74358 |1152 |29125 |
+ROW |74359 |1152 |29126 |
+ROW |74360 |1152 |29127 |
+ROW |74361 |1152 |29128 |
+ROW |74362 |1152 |29129 |
+ROW |74363 |1152 |29130 |
+ROW |74364 |1152 |29131 |
+ROW |74365 |1152 |29132 |
+ROW |74366 |1152 |29133 |
+ROW |74367 |1152 |29134 |
+ROW |74368 |1152 |29135 |
+ROW |74369 |1152 |29136 |
+ROW |74370 |1152 |29137 |
+ROW |74371 |1152 |29138 |
+ROW |74372 |1152 |29139 |
+ROW |74373 |1154 |29140 |
+ROW |74374 |1154 |29141 |
+ROW |74375 |1154 |29142 |
+ROW |74376 |1154 |29143 |
+ROW |74377 |1154 |29144 |
+ROW |74378 |1154 |29145 |
+ROW |74379 |1161 |29147 |
+ROW |74380 |1158 |29148 |
+ROW |74381 |1158 |29149 |
+ROW |74382 |1158 |29150 |
+ROW |74383 |1158 |29151 |
+ROW |74384 |1158 |29152 |
+ROW |74385 |1158 |29153 |
+ROW |74386 |1158 |29154 |
+ROW |74387 |1158 |29155 |
+ROW |74388 |1158 |29156 |
+ROW |74389 |1160 |29157 |
+ROW |74390 |1159 |29158 |
+ROW |74391 |1159 |29159 |
+ROW |74392 |1159 |29160 |
+ROW |74393 |1162 |29161 |
+ROW |74394 |1162 |29162 |
+ROW |74395 |1162 |29163 |
+ROW |74396 |1162 |29164 |
+ROW |74397 |1162 |29165 |
+ROW |74398 |1162 |29166 |
+ROW |74399 |1162 |29167 |
+ROW |74400 |1162 |29168 |
+ROW |74401 |1162 |29169 |
+ROW |74402 |1162 |29170 |
+ROW |74403 |1162 |29171 |
+ROW |74404 |1162 |29172 |
+ROW |74405 |1162 |29173 |
+ROW |74406 |1162 |29174 |
+ROW |74407 |1162 |29175 |
+ROW |74408 |1162 |29176 |
+ROW |74409 |1164 |29177 |
+ROW |74410 |1164 |29178 |
+ROW |74411 |1164 |29179 |
+ROW |74412 |1164 |29180 |
+ROW |74413 |1164 |29181 |
+ROW |74414 |1164 |29182 |
+ROW |74415 |1171 |29184 |
+ROW |74416 |1168 |29185 |
+ROW |74417 |1168 |29186 |
+ROW |74418 |1168 |29187 |
+ROW |74419 |1168 |29188 |
+ROW |74420 |1168 |29189 |
+ROW |74421 |1168 |29190 |
+ROW |74422 |1168 |29191 |
+ROW |74423 |1168 |29192 |
+ROW |74424 |1168 |29193 |
+ROW |74425 |1170 |29194 |
+ROW |74426 |1169 |29195 |
+ROW |74427 |1169 |29196 |
+ROW |74428 |1169 |29197 |
+ROW |74429 |1142 |29198 |
+ROW |74430 |1144 |31270 |
+ROW |74431 |1152 |29199 |
+ROW |74432 |1154 |31271 |
+ROW |74433 |1162 |29200 |
+ROW |74434 |1164 |31272 |
+ROW |74435 |1146 |31278 |
+ROW |74436 |1156 |31281 |
+ROW |74437 |1166 |31284 |
+ROW |74438 |1146 |31287 |
+ROW |74439 |1146 |31290 |
+ROW |74440 |1156 |31293 |
+ROW |74441 |1156 |31296 |
+ROW |74442 |1166 |31299 |
+ROW |74443 |1166 |31302 |
+ROW |74444 |1173 |29273 |
+ROW |74445 |1173 |29274 |
+ROW |74446 |1173 |29275 |
+ROW |74447 |1173 |29276 |
+ROW |74448 |1173 |29277 |
+ROW |74449 |1173 |29278 |
+ROW |74450 |1173 |29279 |
+ROW |74451 |1173 |29280 |
+ROW |74452 |1173 |29281 |
+ROW |74453 |1173 |29282 |
+ROW |74454 |1173 |29283 |
+ROW |74455 |1173 |29284 |
+ROW |74456 |1173 |29285 |
+ROW |74457 |1173 |29286 |
+ROW |74458 |1173 |29287 |
+ROW |74459 |1173 |29288 |
+ROW |74460 |1175 |29289 |
+ROW |74461 |1175 |29290 |
+ROW |74462 |1175 |29291 |
+ROW |74463 |1175 |29292 |
+ROW |74464 |1175 |29293 |
+ROW |74465 |1175 |29294 |
+ROW |74466 |1182 |29296 |
+ROW |74467 |1179 |29297 |
+ROW |74468 |1179 |29298 |
+ROW |74469 |1179 |29299 |
+ROW |74470 |1179 |29300 |
+ROW |74471 |1179 |29301 |
+ROW |74472 |1179 |29302 |
+ROW |74473 |1179 |29303 |
+ROW |74474 |1179 |29304 |
+ROW |74475 |1179 |29305 |
+ROW |74476 |1181 |29306 |
+ROW |74477 |1180 |29307 |
+ROW |74478 |1180 |29308 |
+ROW |74479 |1180 |29309 |
+ROW |74480 |1183 |29310 |
+ROW |74481 |1183 |29311 |
+ROW |74482 |1183 |29312 |
+ROW |74483 |1183 |29313 |
+ROW |74484 |1183 |29314 |
+ROW |74485 |1183 |29315 |
+ROW |74486 |1183 |29316 |
+ROW |74487 |1183 |29317 |
+ROW |74488 |1183 |29318 |
+ROW |74489 |1183 |29319 |
+ROW |74490 |1183 |29320 |
+ROW |74491 |1183 |29321 |
+ROW |74492 |1183 |29322 |
+ROW |74493 |1183 |29323 |
+ROW |74494 |1183 |29324 |
+ROW |74495 |1183 |29325 |
+ROW |74496 |1185 |29326 |
+ROW |74497 |1185 |29327 |
+ROW |74498 |1185 |29328 |
+ROW |74499 |1185 |29329 |
+ROW |74500 |1185 |29330 |
+ROW |74501 |1185 |29331 |
+ROW |74502 |1192 |29333 |
+ROW |74503 |1189 |29334 |
+ROW |74504 |1189 |29335 |
+ROW |74505 |1189 |29336 |
+ROW |74506 |1189 |29337 |
+ROW |74507 |1189 |29338 |
+ROW |74508 |1189 |29339 |
+ROW |74509 |1189 |29340 |
+ROW |74510 |1189 |29341 |
+ROW |74511 |1189 |29342 |
+ROW |74512 |1191 |29343 |
+ROW |74513 |1190 |29344 |
+ROW |74514 |1190 |29345 |
+ROW |74515 |1190 |29346 |
+ROW |74516 |1173 |29347 |
+ROW |74517 |1175 |31303 |
+ROW |74518 |1183 |29348 |
+ROW |74519 |1185 |31304 |
+ROW |74520 |1177 |31309 |
+ROW |74521 |1187 |31312 |
+ROW |74522 |1177 |31315 |
+ROW |74523 |1177 |31318 |
+ROW |74524 |1187 |31321 |
+ROW |74525 |1187 |31324 |
+ROW |74526 |1201 |29395 |
+ROW |74527 |1196 |29396 |
+ROW |74528 |1196 |29397 |
+ROW |74529 |1194 |29398 |
+ROW |74530 |1193 |29399 |
+ROW |74531 |1196 |29400 |
+ROW |74532 |1196 |29401 |
+ROW |74533 |1196 |29402 |
+ROW |74534 |1196 |29403 |
+ROW |74535 |1194 |29404 |
+ROW |74536 |1193 |29405 |
+ROW |74537 |1193 |29406 |
+ROW |74538 |1193 |29407 |
+ROW |74539 |1193 |29408 |
+ROW |74540 |1193 |29409 |
+ROW |74541 |1193 |29410 |
+ROW |74542 |1193 |29411 |
+ROW |74543 |1193 |29412 |
+ROW |74544 |1193 |29413 |
+ROW |74545 |1194 |29414 |
+ROW |74546 |1197 |29415 |
+ROW |74547 |1193 |29416 |
+ROW |74548 |1193 |29417 |
+ROW |74549 |1193 |29418 |
+ROW |74550 |1193 |29419 |
+ROW |74551 |1193 |29420 |
+ROW |74552 |1199 |29421 |
+ROW |74553 |1195 |29422 |
+ROW |74554 |1194 |29423 |
+ROW |74555 |1194 |29424 |
+ROW |74556 |1194 |29425 |
+ROW |74557 |1193 |29426 |
+ROW |74558 |1193 |29427 |
+ROW |74559 |1195 |29428 |
+ROW |74560 |1201 |29450 |
+ROW |74561 |1201 |29451 |
+ROW |74562 |1128 |28978 |
+ROW |74563 |1128 |28979 |
+ROW |74564 |1128 |28980 |
+ROW |74565 |1128 |28981 |
+ROW |74566 |1128 |28982 |
+ROW |74567 |1128 |28983 |
+ROW |74568 |1128 |28984 |
+ROW |74569 |1128 |28985 |
+ROW |74570 |1128 |28986 |
+ROW |74571 |1130 |28987 |
+ROW |74572 |1130 |28988 |
+ROW |74573 |1130 |28989 |
+ROW |74574 |1130 |28990 |
+ROW |74575 |1130 |28991 |
+ROW |74576 |1130 |28992 |
+ROW |74577 |1132 |28993 |
+ROW |74578 |1132 |28994 |
+ROW |74579 |1132 |28995 |
+ROW |74580 |1132 |28996 |
+ROW |74581 |1132 |28997 |
+ROW |74582 |1132 |28998 |
+ROW |74583 |1132 |28999 |
+ROW |74584 |1132 |29000 |
+ROW |74585 |1132 |29001 |
+ROW |74586 |1134 |29002 |
+ROW |74587 |1134 |29003 |
+ROW |74588 |1134 |29004 |
+ROW |74589 |1134 |29005 |
+ROW |74590 |1134 |29006 |
+ROW |74591 |1134 |29007 |
+ROW |74592 |1130 |29017 |
+ROW |74593 |1130 |29018 |
+ROW |74594 |1130 |29019 |
+ROW |74595 |1130 |29020 |
+ROW |74596 |1130 |29021 |
+ROW |74597 |1130 |29022 |
+ROW |74598 |1130 |29023 |
+ROW |74599 |1130 |29024 |
+ROW |74600 |1130 |29025 |
+ROW |74601 |1130 |29026 |
+ROW |74602 |1134 |29034 |
+ROW |74603 |1134 |29035 |
+ROW |74604 |1134 |29036 |
+ROW |74605 |1134 |29037 |
+ROW |74606 |1134 |29038 |
+ROW |74607 |1134 |29039 |
+ROW |74608 |1134 |29040 |
+ROW |74609 |1134 |29041 |
+ROW |74610 |1134 |29042 |
+ROW |74611 |1134 |29043 |
+ROW |74612 |1130 |29048 |
+ROW |74613 |1134 |29049 |
+ROW |74614 |1202 |29454 |
+ROW |74615 |1202 |29455 |
+ROW |74616 |1202 |29456 |
+ROW |74617 |1202 |29457 |
+ROW |74618 |1202 |29458 |
+ROW |74619 |1202 |29459 |
+ROW |74620 |1203 |29460 |
+ROW |74621 |1203 |29461 |
+ROW |74622 |1203 |29462 |
+ROW |74623 |1203 |29463 |
+ROW |74624 |1203 |29466 |
+ROW |74625 |1203 |29467 |
+ROW |74626 |1203 |29468 |
+ROW |74627 |1203 |29469 |
+ROW |74628 |1203 |29470 |
+ROW |74629 |1209 |29472 |
+ROW |74630 |1207 |29473 |
+ROW |74631 |1207 |29474 |
+ROW |74632 |1207 |29475 |
+ROW |74633 |1207 |29476 |
+ROW |74634 |1207 |29477 |
+ROW |74635 |1208 |29478 |
+ROW |74636 |1202 |30137 |
+ROW |74637 |1202 |31325 |
+ROW |74638 |1203 |31326 |
+ROW |74639 |1203 |31327 |
+ROW |74640 |1211 |31455 |
+ROW |74641 |1212 |29480 |
+ROW |74642 |1212 |29481 |
+ROW |74643 |1212 |29482 |
+ROW |74644 |1212 |29483 |
+ROW |74645 |1212 |29484 |
+ROW |74646 |1212 |29485 |
+ROW |74647 |1213 |29486 |
+ROW |74648 |1213 |29487 |
+ROW |74649 |1213 |29488 |
+ROW |74650 |1213 |29489 |
+ROW |74651 |1213 |29492 |
+ROW |74652 |1213 |29493 |
+ROW |74653 |1213 |29494 |
+ROW |74654 |1213 |29495 |
+ROW |74655 |1213 |29496 |
+ROW |74656 |1219 |29498 |
+ROW |74657 |1217 |29499 |
+ROW |74658 |1217 |29500 |
+ROW |74659 |1217 |29501 |
+ROW |74660 |1217 |29502 |
+ROW |74661 |1217 |29503 |
+ROW |74662 |1218 |29504 |
+ROW |74663 |1212 |30138 |
+ROW |74664 |1212 |31328 |
+ROW |74665 |1213 |31329 |
+ROW |74666 |1213 |31330 |
+ROW |74667 |1216 |31456 |
+ROW |74668 |1203 |31331 |
+ROW |74669 |1213 |31332 |
+ROW |74670 |1310 |30425 |
+ROW |74671 |1311 |30426 |
+ROW |74672 |1243 |29561 |
+ROW |74673 |1243 |29562 |
+ROW |74674 |1243 |29563 |
+ROW |74675 |1243 |29564 |
+ROW |74676 |1243 |29565 |
+ROW |74677 |1243 |29566 |
+ROW |74678 |1244 |29567 |
+ROW |74679 |1244 |29568 |
+ROW |74680 |1244 |29569 |
+ROW |74681 |1244 |29570 |
+ROW |74682 |1244 |29573 |
+ROW |74683 |1244 |29574 |
+ROW |74684 |1244 |29575 |
+ROW |74685 |1244 |29576 |
+ROW |74686 |1244 |29577 |
+ROW |74687 |1250 |29579 |
+ROW |74688 |1248 |29580 |
+ROW |74689 |1248 |29581 |
+ROW |74690 |1248 |29582 |
+ROW |74691 |1248 |29583 |
+ROW |74692 |1248 |29584 |
+ROW |74693 |1249 |29585 |
+ROW |74694 |1243 |30139 |
+ROW |74695 |1243 |31343 |
+ROW |74696 |1244 |31344 |
+ROW |74697 |1244 |31345 |
+ROW |74698 |1252 |31477 |
+ROW |74699 |1253 |29587 |
+ROW |74700 |1253 |29588 |
+ROW |74701 |1253 |29589 |
+ROW |74702 |1253 |29590 |
+ROW |74703 |1253 |29591 |
+ROW |74704 |1253 |29592 |
+ROW |74705 |1254 |29593 |
+ROW |74706 |1254 |29594 |
+ROW |74707 |1254 |29595 |
+ROW |74708 |1254 |29596 |
+ROW |74709 |1254 |29599 |
+ROW |74710 |1254 |29600 |
+ROW |74711 |1254 |29601 |
+ROW |74712 |1254 |29602 |
+ROW |74713 |1254 |29603 |
+ROW |74714 |1242 |29605 |
+ROW |74715 |1258 |29606 |
+ROW |74716 |1258 |29607 |
+ROW |74717 |1258 |29608 |
+ROW |74718 |1258 |29609 |
+ROW |74719 |1258 |29610 |
+ROW |74720 |1259 |29611 |
+ROW |74721 |1253 |30140 |
+ROW |74722 |1253 |31346 |
+ROW |74723 |1254 |31347 |
+ROW |74724 |1254 |31348 |
+ROW |74725 |1257 |31478 |
+ROW |74726 |1244 |31349 |
+ROW |74727 |1254 |31350 |
+ROW |74728 |1312 |30429 |
+ROW |74729 |1313 |30430 |
+ROW |74730 |1325 |30685 |
+ROW |74731 |1277 |30066 |
+ROW |74732 |1277 |30067 |
+ROW |74733 |1277 |30068 |
+ROW |74734 |1277 |30069 |
+ROW |74735 |1277 |30070 |
+ROW |74736 |1276 |30071 |
+ROW |74737 |1271 |30072 |
+ROW |74738 |1274 |30073 |
+ROW |74739 |1274 |30074 |
+ROW |74740 |1273 |30075 |
+ROW |74741 |1275 |30076 |
+ROW |74742 |1275 |30077 |
+ROW |74743 |1275 |30078 |
+ROW |74744 |1275 |30079 |
+ROW |74745 |1278 |30080 |
+ROW |74746 |1278 |30081 |
+ROW |74747 |1278 |30082 |
+ROW |74748 |1272 |30083 |
+ROW |74749 |1272 |30084 |
+ROW |74750 |1272 |30085 |
+ROW |74751 |1070 |28341 |
+ROW |74752 |1073 |28342 |
+ROW |74753 |1073 |28344 |
+ROW |74754 |1073 |28345 |
+ROW |74755 |1073 |30141 |
+ROW |74756 |1076 |28354 |
+ROW |74757 |1076 |28355 |
+ROW |74758 |1076 |28356 |
+ROW |74759 |1076 |28357 |
+ROW |74760 |1075 |28358 |
+ROW |74761 |1072 |28359 |
+ROW |74762 |1072 |28360 |
+ROW |74763 |1074 |28361 |
+ROW |74764 |1074 |28362 |
+ROW |74765 |1074 |28363 |
+ROW |74766 |1074 |28364 |
+ROW |74767 |1074 |28365 |
+ROW |74768 |1074 |28366 |
+ROW |74769 |1074 |28367 |
+ROW |74770 |1077 |28368 |
+ROW |74771 |1077 |28369 |
+ROW |74772 |1077 |28370 |
+ROW |74773 |1077 |28371 |
+ROW |74774 |1077 |28372 |
+ROW |74775 |1077 |28373 |
+ROW |74776 |1071 |28374 |
+ROW |74777 |1071 |28375 |
+ROW |74778 |1071 |28376 |
+ROW |74779 |1085 |28388 |
+ROW |74780 |1082 |28390 |
+ROW |74781 |1082 |28391 |
+ROW |74782 |1079 |29994 |
+ROW |74783 |1085 |28404 |
+ROW |74784 |1085 |28405 |
+ROW |74785 |1085 |28406 |
+ROW |74786 |1085 |28407 |
+ROW |74787 |1085 |28408 |
+ROW |74788 |1085 |28409 |
+ROW |74789 |1085 |28410 |
+ROW |74790 |1084 |28411 |
+ROW |74791 |1081 |28412 |
+ROW |74792 |1080 |28413 |
+ROW |74793 |1080 |28414 |
+ROW |74794 |1080 |28415 |
+ROW |74795 |1080 |28416 |
+ROW |74796 |1083 |28417 |
+ROW |74797 |1083 |28418 |
+ROW |74798 |1083 |28419 |
+ROW |74799 |1083 |28420 |
+ROW |74800 |1083 |28421 |
+ROW |74801 |1083 |28422 |
+ROW |74802 |1086 |28423 |
+ROW |74803 |1086 |28424 |
+ROW |74804 |1086 |28425 |
+ROW |74805 |1095 |28465 |
+ROW |74806 |1097 |28466 |
+ROW |74807 |1097 |28467 |
+ROW |74808 |1100 |28474 |
+ROW |74809 |1100 |28475 |
+ROW |74810 |1100 |28476 |
+ROW |74811 |1099 |28477 |
+ROW |74812 |1096 |28478 |
+ROW |74813 |1096 |28479 |
+ROW |74814 |1098 |28480 |
+ROW |74815 |1098 |28481 |
+ROW |74816 |1104 |28495 |
+ROW |74817 |1103 |28496 |
TABLE |mappings
FIELDS|mappingid|valuemapid|value|newvalue |
@@ -16982,23 +17279,6 @@ ROW |189 |23073 |23540 |
ROW |190 |23074 |23540 |
ROW |191 |23075 |23329 |
ROW |192 |23076 |23329 |
-ROW |746 |26994 |26987 |
-ROW |747 |26995 |26990 |
-ROW |748 |26996 |26990 |
-ROW |749 |26997 |26990 |
-ROW |750 |26998 |26990 |
-ROW |751 |26999 |26991 |
-ROW |752 |27000 |26991 |
-ROW |753 |27001 |26991 |
-ROW |754 |27002 |26991 |
-ROW |755 |27003 |26992 |
-ROW |756 |27004 |26992 |
-ROW |757 |27005 |26992 |
-ROW |758 |27006 |26992 |
-ROW |759 |27007 |26993 |
-ROW |760 |27008 |26993 |
-ROW |761 |27009 |26993 |
-ROW |762 |27010 |26993 |
ROW |776 |27032 |27031 |
ROW |812 |27079 |27078 |
ROW |813 |27080 |27078 |
@@ -17423,10 +17703,6 @@ ROW |1441 |28480 |28473 |
ROW |1442 |28481 |28473 |
ROW |1443 |28495 |28493 |
ROW |1444 |28496 |28494 |
-ROW |1445 |28621 |28620 |
-ROW |1446 |28622 |28620 |
-ROW |1447 |28623 |28620 |
-ROW |1448 |28624 |28620 |
ROW |1454 |28712 |28711 |
ROW |1455 |28713 |28711 |
ROW |1456 |28714 |28711 |
@@ -18225,7 +18501,6 @@ ROW |2392 |31449 |31437 |
ROW |2393 |31450 |31438 |
ROW |2394 |31451 |31438 |
ROW |2395 |31452 |31438 |
-ROW |2396 |31453 |31438 |
ROW |2397 |31454 |31438 |
ROW |2398 |31459 |31457 |
ROW |2399 |31460 |31457 |
@@ -18263,11 +18538,59 @@ ROW |2430 |31495 |31479 |
ROW |2431 |31496 |31480 |
ROW |2432 |31497 |31480 |
ROW |2433 |31498 |31480 |
+ROW |2434 |31605 |31597 |
+ROW |2435 |31606 |31598 |
+ROW |2436 |31607 |31598 |
+ROW |2437 |31608 |31598 |
+ROW |2438 |31609 |31598 |
+ROW |2439 |31610 |31601 |
+ROW |2440 |31611 |31601 |
+ROW |2441 |31612 |31601 |
+ROW |2442 |31613 |31601 |
+ROW |2443 |31614 |31602 |
+ROW |2444 |31615 |31602 |
+ROW |2445 |31616 |31602 |
+ROW |2446 |31617 |31602 |
+ROW |2447 |31618 |31603 |
+ROW |2448 |31619 |31603 |
+ROW |2449 |31620 |31603 |
+ROW |2450 |31621 |31603 |
+ROW |2451 |31622 |31604 |
+ROW |2452 |31623 |31604 |
+ROW |2453 |31624 |31604 |
+ROW |2454 |31625 |31604 |
+ROW |2455 |31711 |31706 |
+ROW |2456 |31712 |31706 |
+ROW |2457 |31713 |31706 |
+ROW |2458 |31714 |31707 |
+ROW |2459 |31715 |31707 |
+ROW |2460 |31716 |31707 |
+ROW |2461 |31717 |31707 |
+ROW |2462 |31718 |31708 |
+ROW |2463 |31719 |31708 |
+ROW |2464 |31720 |31708 |
+ROW |2465 |31721 |31709 |
+ROW |2466 |31722 |31710 |
+ROW |2467 |31723 |31710 |
+ROW |2468 |31724 |31710 |
+ROW |2469 |31725 |31710 |
+ROW |2470 |31726 |31710 |
+ROW |2471 |31786 |31438 |
+ROW |2472 |31790 |31787 |
+ROW |2473 |31791 |31788 |
+ROW |2474 |31792 |31788 |
+ROW |2475 |31793 |31788 |
+ROW |2476 |31794 |31788 |
+ROW |2477 |31795 |31788 |
+ROW |2478 |31796 |31789 |
+ROW |2479 |31797 |31789 |
+ROW |2480 |31798 |31789 |
+ROW |2481 |31799 |31789 |
TABLE |host_discovery
FIELDS|hostid|parent_hostid|parent_itemid|
-ROW |10176 |NULL |26988 |
-ROW |10177 |NULL |26989 |
+ROW |10331 |NULL |31599 |
+ROW |10332 |NULL |31600 |
TABLE |application_template
FIELDS|application_templateid|applicationid|templateid|
@@ -19175,6 +19498,15 @@ ROW |1080 |31480 |8 |{#IFDESCR} |{$NET.IF.IFDESCR.
ROW |1081 |31480 |9 |{#IFDESCR} |{$NET.IF.IFDESCR.NOT_MATCHES} |
ROW |1082 |31480 |8 |{#IFALIAS} |{$NET.IF.IFALIAS.MATCHES} |
ROW |1083 |31480 |9 |{#IFALIAS} |{$NET.IF.IFALIAS.NOT_MATCHES} |
+ROW |1084 |31707 |8 |{#DBNAME} |{$ORACLE.DBNAME.MATCHES} |
+ROW |1085 |31707 |9 |{#DBNAME} |{$ORACLE.DBNAME.NOT_MATCHES} |
+ROW |1086 |31709 |8 |{#DBNAME} |{$ORACLE.DBNAME.MATCHES} |
+ROW |1087 |31709 |9 |{#DBNAME} |{$ORACLE.DBNAME.NOT_MATCHES} |
+ROW |1088 |31710 |8 |{#TABLESPACE} |{$ORACLE.TABLESPACE.NAME.MATCHES} |
+ROW |1089 |31710 |9 |{#TABLESPACE} |{$ORACLE.TABLESPACE.NAME.NOT_MATCHES} |
+ROW |1090 |31788 |8 |{#IFTYPE} |^71$ |
+ROW |1091 |31788 |8 |{#IFADMINSTATUS} |^1$ |
+ROW |1092 |31789 |8 |{#IFTYPE} |^1$ |
TABLE |item_rtdata
FIELDS|itemid|
@@ -19306,10 +19638,17 @@ ROW |136 |31351 |NULL |Disk {#DEVNAME}
ROW |138 |31434 |NULL |Oracle Archivelog |
ROW |139 |31435 |NULL |Oracle ASM |
ROW |140 |31436 |NULL |Oracle {#TYPE} |
-ROW |141 |31437 |NULL |Oracle {#TYPE} |
ROW |142 |31438 |NULL |Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
ROW |143 |31457 |NULL |Interface {#IFNAME}({#IFALIAS}) |
ROW |145 |31479 |NULL |Interface {#IFNAME}({#IFALIAS}) |
+ROW |147 |31706 |NULL |Oracle Archivelog |
+ROW |148 |31707 |NULL |Oracle {#TYPE} |
+ROW |149 |31708 |NULL |Oracle ASM |
+ROW |150 |31709 |NULL |Oracle PDB |
+ROW |151 |31710 |NULL |Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
+ROW |152 |31437 |NULL |Oracle PDB |
+ROW |153 |31788 |NULL |Interface {#IFNAME}({#IFALIAS}) |
+ROW |154 |31789 |NULL |Interface {#IFNAME}({#IFALIAS}) |
ROW |16 |29349 |NULL |Filesystem {#FSNAME} |
ROW |18 |29351 |NULL |Interface {#IFNAME} |
ROW |2 |28711 |NULL |PostgreSQL: DB {#DBNAME} |
@@ -20236,11 +20575,9 @@ ROW |968 |140 |31445 |
ROW |969 |140 |31446 |
ROW |970 |140 |31447 |
ROW |971 |140 |31448 |
-ROW |972 |141 |31449 |
ROW |973 |142 |31450 |
ROW |974 |142 |31451 |
ROW |975 |142 |31452 |
-ROW |976 |142 |31453 |
ROW |977 |142 |31454 |
ROW |978 |143 |31459 |
ROW |979 |143 |31460 |
@@ -20278,6 +20615,33 @@ ROW |1010 |145 |31495 |
ROW |1011 |146 |31496 |
ROW |1012 |146 |31497 |
ROW |1013 |146 |31498 |
+ROW |1014 |147 |31711 |
+ROW |1015 |147 |31712 |
+ROW |1016 |147 |31713 |
+ROW |1017 |148 |31714 |
+ROW |1018 |148 |31715 |
+ROW |1019 |148 |31716 |
+ROW |1020 |148 |31717 |
+ROW |1021 |149 |31718 |
+ROW |1022 |149 |31719 |
+ROW |1023 |149 |31720 |
+ROW |1024 |150 |31721 |
+ROW |1025 |151 |31722 |
+ROW |1026 |151 |31723 |
+ROW |1027 |151 |31724 |
+ROW |1028 |151 |31725 |
+ROW |1029 |151 |31726 |
+ROW |1030 |142 |31786 |
+ROW |1031 |152 |31449 |
+ROW |1032 |153 |31791 |
+ROW |1033 |153 |31792 |
+ROW |1034 |153 |31793 |
+ROW |1035 |153 |31794 |
+ROW |1036 |153 |31795 |
+ROW |1037 |154 |31796 |
+ROW |1038 |154 |31797 |
+ROW |1039 |154 |31798 |
+ROW |1040 |154 |31799 |
TABLE |item_preproc
FIELDS|item_preprocid|itemid|step|type|params |error_handler|error_handler_params |
@@ -20352,3254 +20716,3388 @@ ROW |23367 |28953 |1 |11 |/resultset/row/field[@name='Slave_IO_Runn
ROW |23368 |28953 |2 |20 |1h |0 | |
ROW |23369 |28954 |1 |11 |/resultset/row/field[@name='Slave_SQL_Running']/text() |0 | |
ROW |23370 |28954 |2 |20 |1h |0 | |
-ROW |47051 |28743 |1 |20 |10m |0 | |
-ROW |47052 |30896 |1 |21 |// Convert Apache status to JSON&bsn;var lines = value.split('\n');&bsn;var output = {},&bsn; workers = {&bsn; '_': 0, 'S': 0, 'R': 0, 'W': 0,&bsn; 'K': 0, 'D': 0, 'C': 0, 'L': 0,&bsn; 'G': 0, 'I': 0, '.': 0&bsn; };&bsn;&bsn;// Get all "Key: Value" pairs as an object&bsn;for (var i = 0; i < lines.length; i++) {&bsn; var line = lines[i].match(/([A-z0-9 ]+): (.*)/);&bsn;&bsn; if (line !== null) {&bsn; output[line[1]] = isNaN(line[2]) ? line[2] : Number(line[2]);&bsn; }&bsn;}&bsn;&bsn;// Multiversion metrics&bsn;output.ServerUptimeSeconds = output.ServerUptimeSeconds &pipe;&pipe; output.Uptime;&bsn;output.ServerVersion = output.Server &pipe;&pipe; output.ServerVersion;&bsn;&bsn;// Parse "Scoreboard" to get worker count.&bsn;if (typeof output.Scoreboard === 'string') {&bsn; for (var i = 0; i < output.Scoreboard.length; i++) {&bsn; var char = output.Scoreboard[i];&bsn;&bsn; workers[char]++;&bsn; }&bsn;}&bsn;&bsn;// Add worker data to the output&bsn;output.Workers = {&bsn; waiting: workers['_'], starting: workers['S'], reading: workers['R'],&bsn; sending: workers['W'], keepalive: workers['K'], dnslookup: workers['D'],&bsn; closing: workers['C'], logging: workers['L'], finishing: workers['G'],&bsn; cleanup: workers['I'], slot: workers['.']&bsn;};&bsn;&bsn;// Return JSON string&bsn;return JSON.stringify(output);|0 | |
-ROW |47053 |30897 |1 |12 |$.Workers.reading |0 | |
-ROW |47054 |30898 |1 |12 |$.Workers.waiting |0 | |
-ROW |47055 |30899 |1 |12 |$.Workers.starting |0 | |
-ROW |47056 |30900 |1 |12 |$.Workers.slot |0 | |
-ROW |47057 |30901 |1 |12 |$.Workers.sending |0 | |
-ROW |47058 |30902 |1 |12 |$["Total kBytes"] |0 | |
-ROW |47059 |30902 |2 |1 |1024 |0 | |
-ROW |47060 |30903 |1 |12 |$["Total kBytes"] |0 | |
-ROW |47061 |30903 |2 |1 |1024 |0 | |
-ROW |47062 |30903 |3 |10 | |0 | |
-ROW |47063 |30904 |1 |12 |$.Workers.keepalive |0 | |
-ROW |47064 |30905 |1 |12 |$.Workers.finishing |0 | |
-ROW |47065 |30906 |1 |12 |$.Workers.dnslookup |0 | |
-ROW |47066 |30907 |1 |12 |$.Workers.closing |0 | |
-ROW |47067 |30908 |1 |12 |$.Workers.cleanup |0 | |
-ROW |47068 |30909 |1 |12 |$.IdleWorkers |0 | |
-ROW |47069 |30910 |1 |12 |$.BusyWorkers |0 | |
-ROW |47070 |30911 |1 |12 |$.ServerVersion |0 | |
-ROW |47071 |30911 |2 |20 |1d |0 | |
-ROW |47072 |30912 |1 |12 |$.ServerUptimeSeconds |0 | |
-ROW |47073 |30913 |1 |12 |$["Total Accesses"] |0 | |
-ROW |47074 |30913 |2 |10 | |0 | |
-ROW |47075 |30914 |1 |12 |$["Total Accesses"] |0 | |
-ROW |47076 |30915 |1 |12 |$.Workers.logging |0 | |
-ROW |47077 |30916 |1 |12 |$.ServerMPM |0 | |
-ROW |47078 |30916 |2 |21 |return JSON.stringify(value === 'event' ? [{'{#SINGLETON}': ''}] : []); |0 | |
-ROW |47079 |30917 |1 |12 |$.BytesPerReq |0 | |
-ROW |47080 |30918 |1 |12 |$.ConnsAsyncClosing |0 | |
-ROW |47081 |30919 |1 |12 |$.ConnsAsyncKeepAlive |0 | |
-ROW |47082 |30920 |1 |12 |$.ConnsAsyncWriting |0 | |
-ROW |47083 |30921 |1 |12 |$.ConnsTotal |0 | |
-ROW |47084 |30922 |1 |12 |$.Processes |0 | |
-ROW |47085 |28775 |1 |21 |// Convert Apache status to JSON&bsn;var lines = value.split('\n');&bsn;var output = {},&bsn; workers = {&bsn; '_': 0, 'S': 0, 'R': 0, 'W': 0,&bsn; 'K': 0, 'D': 0, 'C': 0, 'L': 0,&bsn; 'G': 0, 'I': 0, '.': 0&bsn; };&bsn;&bsn;// Get all "Key: Value" pairs as an object&bsn;for (var i = 0; i < lines.length; i++) {&bsn; var line = lines[i].match(/([A-z0-9 ]+): (.*)/);&bsn;&bsn; if (line !== null) {&bsn; output[line[1]] = isNaN(line[2]) ? line[2] : Number(line[2]);&bsn; }&bsn;}&bsn;&bsn;// Multiversion metrics&bsn;output.ServerUptimeSeconds = output.ServerUptimeSeconds &pipe;&pipe; output.Uptime;&bsn;output.ServerVersion = output.Server &pipe;&pipe; output.ServerVersion;&bsn;&bsn;// Parse "Scoreboard" to get worker count.&bsn;if (typeof output.Scoreboard === 'string') {&bsn; for (var i = 0; i < output.Scoreboard.length; i++) {&bsn; var char = output.Scoreboard[i];&bsn;&bsn; workers[char]++;&bsn; }&bsn;}&bsn;&bsn;// Add worker data to the output&bsn;output.Workers = {&bsn; waiting: workers['_'], starting: workers['S'], reading: workers['R'],&bsn; sending: workers['W'], keepalive: workers['K'], dnslookup: workers['D'],&bsn; closing: workers['C'], logging: workers['L'], finishing: workers['G'],&bsn; cleanup: workers['I'], slot: workers['.']&bsn;};&bsn;&bsn;// Return JSON string&bsn;return JSON.stringify(output);|0 | |
-ROW |47086 |28776 |1 |20 |10m |0 | |
-ROW |47087 |28778 |1 |12 |$.Workers.starting |0 | |
-ROW |47088 |28779 |1 |12 |$.Workers.slot |0 | |
-ROW |47089 |28780 |1 |12 |$.Workers.sending |0 | |
-ROW |47090 |28781 |1 |12 |$.Workers.reading |0 | |
-ROW |47091 |28782 |1 |12 |$.Workers.logging |0 | |
-ROW |47092 |28783 |1 |12 |$.Workers.keepalive |0 | |
-ROW |47093 |28784 |1 |12 |$.Workers.cleanup |0 | |
-ROW |47094 |28785 |1 |12 |$.Workers.finishing |0 | |
-ROW |47095 |28786 |1 |12 |$.Workers.closing |0 | |
-ROW |47096 |28787 |1 |12 |$.Workers.dnslookup |0 | |
-ROW |47097 |28788 |1 |12 |$.IdleWorkers |0 | |
-ROW |47098 |28789 |1 |12 |$.BusyWorkers |0 | |
-ROW |47099 |28790 |1 |12 |$.ServerVersion |0 | |
-ROW |47100 |28790 |2 |20 |1d |0 | |
-ROW |47101 |28791 |1 |12 |$.ServerUptimeSeconds |0 | |
-ROW |47102 |28792 |1 |12 |$["Total Accesses"] |0 | |
-ROW |47103 |28793 |1 |12 |$["Total Accesses"] |0 | |
-ROW |47104 |28793 |2 |10 | |0 | |
-ROW |47105 |28794 |1 |12 |$["Total kBytes"] |0 | |
-ROW |47106 |28794 |2 |1 |1024 |0 | |
-ROW |47107 |28794 |3 |10 | |0 | |
-ROW |47108 |28795 |1 |12 |$["Total kBytes"] |0 | |
-ROW |47109 |28795 |2 |1 |1024 |0 | |
-ROW |47110 |28796 |1 |12 |$.Workers.waiting |0 | |
-ROW |47111 |28797 |1 |12 |$.ServerMPM |0 | |
-ROW |47112 |28797 |2 |21 |return JSON.stringify(value === 'event' ? [{'{#SINGLETON}': ''}] : []); |0 | |
-ROW |47113 |28798 |1 |12 |$.ConnsAsyncClosing |0 | |
-ROW |47114 |28799 |1 |12 |$.ConnsAsyncKeepAlive |0 | |
-ROW |47115 |28800 |1 |12 |$.ConnsAsyncWriting |0 | |
-ROW |47116 |28801 |1 |12 |$.ConnsTotal |0 | |
-ROW |47117 |28802 |1 |12 |$.BytesPerReq |0 | |
-ROW |47118 |28803 |1 |12 |$.Processes |0 | |
-ROW |47119 |30530 |1 |20 |10m |0 | |
-ROW |47120 |30532 |1 |12 |$.Architecture |0 | |
-ROW |47121 |30532 |2 |20 |1d |0 | |
-ROW |47122 |30533 |1 |12 |$.LiveRestoreEnabled |0 | |
-ROW |47123 |30533 |2 |6 | |0 | |
-ROW |47124 |30533 |3 |20 |1d |0 | |
-ROW |47125 |30534 |1 |12 |$.LoggingDriver |0 | |
-ROW |47126 |30534 |2 |20 |1d |0 | |
-ROW |47127 |30535 |1 |12 |$.MemoryLimit |0 | |
-ROW |47128 |30535 |2 |6 | |0 | |
-ROW |47129 |30535 |3 |20 |1d |0 | |
-ROW |47130 |30536 |1 |12 |$.MemTotal |0 | |
-ROW |47131 |30537 |1 |12 |$.Name |0 | |
-ROW |47132 |30538 |1 |12 |$.NCPU |0 | |
-ROW |47133 |30539 |1 |12 |$.NFd |0 | |
-ROW |47134 |30540 |1 |12 |$.NEventsListener |0 | |
-ROW |47135 |30541 |1 |12 |$.KernelVersion |0 | |
-ROW |47136 |30541 |2 |20 |1d |0 | |
-ROW |47137 |30542 |1 |12 |$.OomKillDisable |0 | |
-ROW |47138 |30542 |2 |6 | |0 | |
-ROW |47139 |30542 |3 |20 |1d |0 | |
-ROW |47140 |30543 |1 |12 |$.OperatingSystem |0 | |
-ROW |47141 |30543 |2 |20 |1d |0 | |
-ROW |47142 |30544 |1 |12 |$.OSType |0 | |
-ROW |47143 |30544 |2 |20 |1d |0 | |
-ROW |47144 |30545 |1 |12 |$.PidsLimit |0 | |
-ROW |47145 |30545 |2 |6 | |0 | |
-ROW |47146 |30545 |3 |20 |1d |0 | |
-ROW |47147 |30546 |1 |12 |$.DockerRootDir |0 | |
-ROW |47148 |30546 |2 |20 |1d |0 | |
-ROW |47149 |30547 |1 |12 |$.ServerVersion |0 | |
-ROW |47150 |30547 |2 |20 |1d |0 | |
-ROW |47151 |30548 |1 |12 |$.SwapLimit |0 | |
-ROW |47152 |30548 |2 |6 | |0 | |
-ROW |47153 |30548 |3 |20 |1d |0 | |
-ROW |47154 |30549 |1 |12 |$.LayersSize |0 | |
-ROW |47155 |30550 |1 |12 |$.IPv4Forwarding |0 | |
-ROW |47156 |30550 |2 |6 | |0 | |
-ROW |47157 |30550 |3 |20 |1d |0 | |
-ROW |47158 |30551 |1 |12 |$.KernelMemory |0 | |
-ROW |47159 |30551 |2 |6 | |0 | |
-ROW |47160 |30551 |3 |20 |1d |0 | |
-ROW |47161 |30552 |1 |12 |$.CPUSet |0 | |
-ROW |47162 |30552 |2 |6 | |0 | |
-ROW |47163 |30552 |3 |20 |1d |0 | |
-ROW |47164 |30553 |1 |12 |$.Containers[*].SizeRw.sum() |0 | |
-ROW |47165 |30554 |1 |12 |$.ContainersPaused |0 | |
-ROW |47166 |30555 |1 |12 |$.ContainersRunning |0 | |
-ROW |47167 |30556 |1 |12 |$.ContainersStopped |0 | |
-ROW |47168 |30557 |1 |12 |$.Containers |0 | |
-ROW |47169 |30558 |1 |12 |$.CpuCfsPeriod |0 | |
-ROW |47170 |30558 |2 |6 | |0 | |
-ROW |47171 |30558 |3 |20 |1d |0 | |
-ROW |47172 |30559 |1 |12 |$.CpuCfsQuota |0 | |
-ROW |47173 |30559 |2 |6 | |0 | |
-ROW |47174 |30559 |3 |20 |1d |0 | |
-ROW |47175 |30560 |1 |12 |$.CPUShares |0 | |
-ROW |47176 |30560 |2 |6 | |0 | |
-ROW |47177 |30560 |3 |20 |1d |0 | |
-ROW |47178 |30561 |1 |12 |$.KernelMemoryTCP |0 | |
-ROW |47179 |30561 |2 |6 | |0 | |
-ROW |47180 |30561 |3 |20 |1d |0 | |
-ROW |47181 |30562 |1 |12 |$.Debug |0 | |
-ROW |47182 |30562 |2 |6 | |0 | |
-ROW |47183 |30562 |3 |20 |1d |0 | |
-ROW |47184 |30563 |1 |12 |$.DefaultRuntime |0 | |
-ROW |47185 |30563 |2 |20 |1d |0 | |
-ROW |47186 |30564 |1 |12 |$.Driver |0 | |
-ROW |47187 |30564 |2 |20 |1d |0 | |
-ROW |47188 |30565 |1 |12 |$.NGoroutines |0 | |
-ROW |47189 |30566 |1 |12 |$.Images[*].Size.sum() |0 | |
-ROW |47190 |30567 |1 |12 |$.length() |0 | |
-ROW |47191 |30568 |1 |12 |$.Images |0 | |
-ROW |47192 |30569 |1 |12 |$.CgroupDriver |0 | |
-ROW |47193 |30569 |2 |20 |1d |0 | |
-ROW |47194 |30570 |1 |12 |$.Volumes[*].UsageData.Size.sum() |0 | |
-ROW |47195 |30575 |1 |12 |$.cpu_stats.online_cpus |0 | |
-ROW |47196 |30576 |1 |12 |$.memory_stats.commitbytes |0 | |
-ROW |47197 |30577 |1 |12 |$.memory_stats.commitpeakbytes |0 | |
-ROW |47198 |30578 |1 |12 |$.memory_stats.max_usage |0 | |
-ROW |47199 |30579 |1 |12 |$.memory_stats.privateworkingset |0 | |
-ROW |47200 |30580 |1 |12 |$.memory_stats.usage |0 | |
-ROW |47201 |30581 |1 |12 |$.Created |0 | |
-ROW |47202 |30581 |2 |20 |1d |0 | |
-ROW |47203 |30582 |1 |12 |$.cpu_stats.cpu_usage.total_usage |0 | |
-ROW |47204 |30582 |2 |10 | |0 | |
-ROW |47205 |30582 |3 |1 |1.0E-9 |0 | |
-ROW |47206 |30583 |1 |12 |$.networks[*].rx_bytes.sum() |2 |0 |
-ROW |47207 |30583 |2 |10 | |0 | |
-ROW |47208 |30584 |1 |12 |$.networks[*].rx_dropped.sum() |2 |0 |
-ROW |47209 |30584 |2 |10 | |0 | |
-ROW |47210 |30585 |1 |12 |$.networks[*].rx_errors.sum() |2 |0 |
-ROW |47211 |30585 |2 |10 | |0 | |
-ROW |47212 |30586 |1 |12 |$.networks[*].rx_packets.sum() |2 |0 |
-ROW |47213 |30586 |2 |10 | |0 | |
-ROW |47214 |30587 |1 |12 |$.networks[*].tx_bytes.sum() |2 |0 |
-ROW |47215 |30587 |2 |10 | |0 | |
-ROW |47216 |30588 |1 |12 |$.networks[*].tx_dropped.sum() |2 |0 |
-ROW |47217 |30588 |2 |10 | |0 | |
-ROW |47218 |30589 |1 |12 |$.networks[*].tx_errors.sum() |2 |0 |
-ROW |47219 |30589 |2 |10 | |0 | |
-ROW |47220 |30590 |1 |12 |$.cpu_stats.cpu_usage.usage_in_usermode |0 | |
-ROW |47221 |30590 |2 |10 | |0 | |
-ROW |47222 |30590 |3 |1 |1.0E-9 |0 | |
-ROW |47223 |30591 |1 |12 |$.cpu_stats.throttling_data.periods |0 | |
-ROW |47224 |30592 |1 |12 |$.State.FinishedAt |0 | |
-ROW |47225 |30592 |2 |20 |1d |0 | |
-ROW |47226 |30593 |1 |12 |$.State.OOMKilled |0 | |
-ROW |47227 |30593 |2 |6 | |0 | |
-ROW |47228 |30594 |1 |12 |$[?(@.Names[0] == "{#NAME}")].Image.first() |0 | |
-ROW |47229 |30594 |2 |20 |1d |0 | |
-ROW |47230 |30595 |1 |12 |$.RestartCount |0 | |
-ROW |47231 |30596 |1 |12 |$.State.StartedAt |0 | |
-ROW |47232 |30596 |2 |20 |1d |0 | |
-ROW |47233 |30597 |1 |12 |$.State.Dead |0 | |
-ROW |47234 |30597 |2 |6 | |0 | |
-ROW |47235 |30598 |1 |12 |$.State.Error |0 | |
-ROW |47236 |30598 |2 |20 |1d |0 | |
-ROW |47237 |30599 |1 |12 |$.State.ExitCode |0 | |
-ROW |47238 |30599 |2 |20 |1d |0 | |
-ROW |47239 |30600 |1 |12 |$.State.Paused |0 | |
-ROW |47240 |30600 |2 |6 | |0 | |
-ROW |47241 |30601 |1 |12 |$.cpu_stats.throttling_data.throttled_time |0 | |
-ROW |47242 |30601 |2 |1 |1.0E-9 |0 | |
-ROW |47243 |30602 |1 |12 |$.State.Pid |0 | |
-ROW |47244 |30602 |2 |20 |1d |0 | |
-ROW |47245 |30603 |1 |12 |$.State.Restarting |0 | |
-ROW |47246 |30603 |2 |6 | |0 | |
-ROW |47247 |30604 |1 |12 |$.State.Running |0 | |
-ROW |47248 |30604 |2 |6 | |0 | |
-ROW |47249 |30605 |1 |12 |$.State.Status |0 | |
-ROW |47250 |30605 |2 |20 |1h |0 | |
-ROW |47251 |30606 |1 |12 |$.cpu_stats.cpu_usage.usage_in_kernelmode |0 | |
-ROW |47252 |30606 |2 |10 | |0 | |
-ROW |47253 |30606 |3 |1 |1.0E-9 |0 | |
-ROW |47254 |30607 |1 |12 |$.cpu_stats.throttling_data.throttled_periods |0 | |
-ROW |47255 |30608 |1 |12 |$.networks[*].tx_packets.sum() |2 |0 |
-ROW |47256 |30608 |2 |10 | |0 | |
-ROW |47257 |30609 |1 |12 |$[?(@.Id == "{#ID}")].Created.first() |0 | |
-ROW |47258 |30609 |2 |20 |1d |0 | |
-ROW |47259 |30610 |1 |12 |$[?(@.Id == "{#ID}")].Size.first() |0 | |
-ROW |47260 |30690 |1 |20 |10m |0 | |
-ROW |47261 |30695 |1 |12 |$.indices.docs.count |0 | |
-ROW |47262 |30695 |2 |20 |1h |0 | |
-ROW |47263 |30696 |1 |12 |$.nodes.jvm.max_uptime_in_millis |0 | |
-ROW |47264 |30696 |2 |1 |0.001 |0 | |
-ROW |47265 |30697 |1 |12 |$.nodes.fs.total_in_bytes |0 | |
-ROW |47266 |30697 |2 |20 |1h |0 | |
-ROW |47267 |30698 |1 |12 |$.nodes.fs.available_in_bytes |0 | |
-ROW |47268 |30698 |2 |20 |1h |0 | |
-ROW |47269 |30699 |1 |12 |$.nodes.count.master |0 | |
-ROW |47270 |30699 |2 |20 |1h |0 | |
-ROW |47271 |30700 |1 |12 |$.nodes.count.ingest |0 | |
-ROW |47272 |30700 |2 |20 |1h |0 | |
-ROW |47273 |30701 |1 |12 |$.nodes.count.data |0 | |
-ROW |47274 |30701 |2 |20 |1h |0 | |
-ROW |47275 |30702 |1 |12 |$.delayed_unassigned_shards |0 | |
-ROW |47276 |30703 |1 |12 |$.indices.count |0 | |
-ROW |47277 |30703 |2 |20 |1h |0 | |
-ROW |47278 |30704 |1 |12 |$.task_max_waiting_in_queue_millis |0 | |
-ROW |47279 |30704 |2 |1 |0.001 |0 | |
-ROW |47280 |30705 |1 |12 |$.status |0 | |
-ROW |47281 |30705 |2 |21 |var state = ['green', 'yellow', 'red'];&bsn;&bsn;return state.indexOf(value.trim()) === -1 ? 255 : state.indexOf(value.trim());&bsn; |0 | |
-ROW |47282 |30705 |3 |20 |1h |0 | |
-ROW |47283 |30706 |1 |12 |$.relocating_shards |0 | |
-ROW |47284 |30707 |1 |12 |$.number_of_pending_tasks |0 | |
-ROW |47285 |30708 |1 |12 |$.number_of_nodes |0 | |
-ROW |47286 |30708 |2 |20 |1h |0 | |
-ROW |47287 |30709 |1 |12 |$.number_of_data_nodes |0 | |
-ROW |47288 |30709 |2 |20 |1h |0 | |
-ROW |47289 |30710 |1 |12 |$.initializing_shards |0 | |
-ROW |47290 |30711 |1 |12 |$.active_shards_percent_as_number |0 | |
-ROW |47291 |30711 |2 |21 |return (100 - value) |0 | |
-ROW |47292 |30712 |1 |12 |$.unassigned_shards |0 | |
-ROW |47293 |30713 |1 |12 |$.nodes.[*] |0 | |
-ROW |47294 |30713 |2 |20 |1d |0 | |
-ROW |47295 |30718 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.refresh.active.first() |0 | |
-ROW |47296 |30719 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.query_total.first() |0 | |
-ROW |47297 |30719 |2 |20 |1h |0 | |
-ROW |47298 |30720 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.query_total.first() |0 | |
-ROW |47299 |30720 |2 |10 | |0 | |
-ROW |47300 |30721 |1 |12 |$..[?(@.name=='{#ES.NODE}')].jvm.mem.heap_committed_in_bytes.first() |0 | |
-ROW |47301 |30721 |2 |20 |1h |0 | |
-ROW |47302 |30722 |1 |12 |$..[?(@.name=='{#ES.NODE}')].jvm.mem.heap_max_in_bytes.first() |0 | |
-ROW |47303 |30722 |2 |20 |1d |0 | |
-ROW |47304 |30723 |1 |12 |$..[?(@.name=='{#ES.NODE}')].jvm.mem.heap_used_in_bytes.first() |0 | |
-ROW |47305 |30723 |2 |20 |1h |0 | |
-ROW |47306 |30724 |1 |12 |$..[?(@.name=='{#ES.NODE}')].jvm.mem.heap_used_percent.first() |0 | |
-ROW |47307 |30724 |2 |20 |1h |0 | |
-ROW |47308 |30725 |1 |12 |$..[?(@.name=='{#ES.NODE}')].jvm.uptime_in_millis.first() |0 | |
-ROW |47309 |30725 |2 |1 |0.001 |0 | |
-ROW |47310 |30726 |1 |12 |$..[?(@.name=='{#ES.NODE}')].fs.total.available_in_bytes.first() |0 | |
-ROW |47311 |30726 |2 |20 |1h |0 | |
-ROW |47312 |30727 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.refresh.completed.first() |0 | |
-ROW |47313 |30727 |2 |10 | |0 | |
-ROW |47314 |30728 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.query_time_in_millis.first() |0 | |
-ROW |47315 |30728 |2 |1 |0.001 |0 | |
-ROW |47316 |30728 |3 |9 | |0 | |
-ROW |47317 |30729 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.refresh.rejected.first() |0 | |
-ROW |47318 |30729 |2 |10 | |0 | |
-ROW |47319 |30730 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.search.active.first() |0 | |
-ROW |47320 |30731 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.search.completed.first() |0 | |
-ROW |47321 |30731 |2 |10 | |0 | |
-ROW |47322 |30732 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.search.queue.first() |0 | |
-ROW |47323 |30733 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.search.rejected.first() |0 | |
-ROW |47324 |30733 |2 |10 | |0 | |
-ROW |47325 |30734 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.write.active.first() |0 | |
-ROW |47326 |30735 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.write.completed.first() |0 | |
-ROW |47327 |30735 |2 |10 | |0 | |
-ROW |47328 |30736 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.write.queue.first() |0 | |
-ROW |47329 |30737 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.refresh.queue.first() |0 | |
-ROW |47330 |30738 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.query_current.first() |0 | |
-ROW |47331 |30739 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.query_time_in_millis.first() |0 | |
-ROW |47332 |30739 |2 |20 |1h |0 | |
-ROW |47333 |30740 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.indexing.throttle_time_in_millis.first() |0 | |
-ROW |47334 |30740 |2 |1 |0.001 |0 | |
-ROW |47335 |30740 |3 |9 | |0 | |
-ROW |47336 |30741 |1 |12 |$..[?(@.name=='{#ES.NODE}')].http.current_open.first() |0 | |
-ROW |47337 |30741 |2 |20 |1h |0 | |
-ROW |47338 |30742 |1 |12 |$..[?(@.name=='{#ES.NODE}')].http.total_opened.first() |0 | |
-ROW |47339 |30742 |2 |10 | |0 | |
-ROW |47340 |30743 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.flush.total_time_in_millis.first() |0 | |
-ROW |47341 |30743 |2 |20 |1h |0 | |
-ROW |47342 |30744 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.flush.total.first() |0 | |
-ROW |47343 |30744 |2 |20 |1h |0 | |
-ROW |47344 |30745 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.indexing.index_current.first() |0 | |
-ROW |47345 |30745 |2 |20 |1h |0 | |
-ROW |47346 |30746 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.indexing.index_time_in_millis.first() |0 | |
-ROW |47347 |30746 |2 |20 |1h |0 | |
-ROW |47348 |30747 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.indexing.index_total.first() |0 | |
-ROW |47349 |30747 |2 |20 |1h |0 | |
-ROW |47350 |30748 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.merges.total_throttled_time_in_millis.first() |0 | |
-ROW |47351 |30748 |2 |1 |0.001 |0 | |
-ROW |47352 |30748 |3 |9 | |0 | |
-ROW |47353 |30749 |1 |12 |$..[?(@.name=='{#ES.NODE}')].fs.total.total_in_bytes.first() |0 | |
-ROW |47354 |30749 |2 |20 |1d |0 | |
-ROW |47355 |30750 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.recovery.throttle_time_in_millis.first() |0 | |
-ROW |47356 |30750 |2 |1 |0.001 |0 | |
-ROW |47357 |30750 |3 |9 | |0 | |
-ROW |47358 |30751 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.refresh.total.first() |0 | |
-ROW |47359 |30751 |2 |10 | |0 | |
-ROW |47360 |30752 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.refresh.total_time_in_millis.first() |0 | |
-ROW |47361 |30752 |2 |1 |0.001 |0 | |
-ROW |47362 |30752 |3 |9 | |0 | |
-ROW |47363 |30753 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.fetch_current.first() |0 | |
-ROW |47364 |30754 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.fetch_time_in_millis.first() |0 | |
-ROW |47365 |30754 |2 |20 |1h |0 | |
-ROW |47366 |30755 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.fetch_time_in_millis.first() |0 | |
-ROW |47367 |30755 |2 |1 |0.001 |0 | |
-ROW |47368 |30755 |3 |9 | |0 | |
-ROW |47369 |30756 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.fetch_total.first() |0 | |
-ROW |47370 |30756 |2 |20 |1h |0 | |
-ROW |47371 |30757 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.fetch_total.first() |0 | |
-ROW |47372 |30757 |2 |10 | |0 | |
-ROW |47373 |30758 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.write.rejected.first() |0 | |
-ROW |47374 |30758 |2 |10 | |0 | |
-ROW |47375 |30923 |1 |20 |10m |0 | |
-ROW |47376 |30924 |1 |12 |$.health |0 | |
-ROW |47377 |30924 |2 |6 | |2 |0 |
-ROW |47378 |30924 |3 |20 |10m |0 | |
-ROW |47379 |30927 |1 |22 |process_open_fds&bsn; |0 | |
-ROW |47380 |30928 |1 |22 |etcd_server_proposals_applied_total&bsn; |0 | |
-ROW |47381 |30928 |2 |10 | |0 | |
-ROW |47382 |30929 |1 |22 |etcd_server_proposals_committed_total&bsn; |0 | |
-ROW |47383 |30929 |2 |10 | |0 | |
-ROW |47384 |30930 |1 |22 |etcd_server_proposals_failed_total&bsn; |0 | |
-ROW |47385 |30930 |2 |10 | |0 | |
-ROW |47386 |30931 |1 |22 |etcd_server_proposals_pending&bsn; |0 | |
-ROW |47387 |30932 |1 |22 |etcd_debugging_mvcc_put_total&bsn; |0 | |
-ROW |47388 |30932 |2 |10 | |0 | |
-ROW |47389 |30933 |1 |22 |etcd_debugging_mvcc_range_total&bsn; |0 | |
-ROW |47390 |30933 |2 |10 | |0 | |
-ROW |47391 |30934 |1 |23 |etcd_debugging_store_reads_total |0 | |
-ROW |47392 |30934 |2 |21 |//calculates total reads&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0); |0 | |
-ROW |47393 |30934 |3 |10 | |0 | |
-ROW |47394 |30935 |1 |22 |etcd_network_client_grpc_received_bytes_total&bsn; |0 | |
-ROW |47395 |30935 |2 |10 | |0 | |
-ROW |47396 |30936 |1 |22 |process_resident_memory_bytes&bsn; |0 | |
-ROW |47397 |30937 |1 |12 |$.etcdserver |0 | |
-ROW |47398 |30937 |2 |20 |1d |0 | |
-ROW |47399 |30938 |1 |22 |etcd_debugging_mvcc_range_total&bsn; |0 | |
-ROW |47400 |30938 |2 |10 | |0 | |
-ROW |47401 |30939 |1 |22 |process_start_time_seconds&bsn; |0 | |
-ROW |47402 |30939 |2 |21 |//use boottime to calculate uptime&bsn;return (Math.floor(Date.now()/1000)-Number(value)); |0 | |
-ROW |47403 |30940 |1 |22 |process_virtual_memory_bytes&bsn; |0 | |
-ROW |47404 |30941 |1 |23 |etcd_debugging_store_writes_total |0 | |
-ROW |47405 |30941 |2 |21 |var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0); |0 | |
-ROW |47406 |30941 |3 |10 | |0 | |
-ROW |47407 |30942 |1 |22 |etcd_network_client_grpc_sent_bytes_total&bsn; |0 | |
-ROW |47408 |30942 |2 |10 | |0 | |
-ROW |47409 |30943 |1 |12 |$.etcdcluster |0 | |
-ROW |47410 |30943 |2 |20 |1d |0 | |
-ROW |47411 |30944 |1 |22 |process_max_fds&bsn; |0 | |
-ROW |47412 |30945 |1 |22 |etcd_server_has_leader&bsn; |0 | |
-ROW |47413 |30945 |2 |20 |10m |0 | |
-ROW |47414 |30946 |1 |22 |etcd_debugging_mvcc_db_total_size_in_bytes&bsn; |0 | |
-ROW |47415 |30947 |1 |22 |etcd_debugging_mvcc_delete_total&bsn; |0 | |
-ROW |47416 |30947 |2 |10 | |0 | |
-ROW |47417 |30948 |1 |22 |etcd_debugging_mvcc_pending_events_total&bsn; |0 | |
-ROW |47418 |30949 |1 |23 |grpc_server_msg_received_total |0 | |
-ROW |47419 |30949 |2 |21 |var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0); |0 | |
-ROW |47420 |30949 |3 |10 | |0 | |
-ROW |47421 |30950 |1 |23 |grpc_server_msg_sent_total |0 | |
-ROW |47422 |30950 |2 |21 |var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0); |0 | |
-ROW |47423 |30950 |3 |10 | |0 | |
-ROW |47424 |30951 |1 |23 |grpc_server_started_total |0 | |
-ROW |47425 |30951 |2 |21 |var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0); |0 | |
-ROW |47426 |30951 |3 |10 | |0 | |
-ROW |47427 |30952 |1 |23 |etcd_http_failed_total{code=~"4.+"} |0 | |
-ROW |47428 |30952 |2 |21 |var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0); |0 | |
-ROW |47429 |30952 |3 |10 | |0 | |
-ROW |47430 |30953 |1 |22 |process_cpu_seconds_total&bsn; |0 | |
-ROW |47431 |30953 |2 |10 | |0 | |
-ROW |47432 |30954 |1 |23 |etcd_http_failed_total{code=~"5.+"} |0 | |
-ROW |47433 |30954 |2 |21 |var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0); |0 | |
-ROW |47434 |30954 |3 |10 | |0 | |
-ROW |47435 |30955 |1 |23 |etcd_http_received_total |0 | |
-ROW |47436 |30955 |2 |21 |var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0); |0 | |
-ROW |47437 |30955 |3 |10 | |0 | |
-ROW |47438 |30956 |1 |22 |etcd_server_is_leader&bsn; |2 |0 |
-ROW |47439 |30956 |2 |20 |10m |0 | |
-ROW |47440 |30957 |1 |22 |etcd_debugging_mvcc_db_compaction_keys_total&bsn; |2 |0 |
-ROW |47441 |30957 |2 |10 | |0 | |
-ROW |47442 |30958 |1 |22 |etcd_debugging_store_expires_total&bsn; |0 | |
-ROW |47443 |30958 |2 |10 | |0 | |
-ROW |47444 |30959 |1 |22 |etcd_debugging_mvcc_keys_total&bsn; |0 | |
-ROW |47445 |30960 |1 |22 |etcd_server_leader_changes_seen_total&bsn; |0 | |
-ROW |47446 |30961 |1 |23 |grpc_server_handled_total |0 | |
-ROW |47447 |30961 |2 |21 |var data = JSON.parse(value),&bsn; lookup = {},&bsn; result =[];&bsn;for (var item, i = 0; item = data[i++];) {&bsn; var code = item.labels.grpc_code;&bsn; if (!(code in lookup)) {&bsn; lookup[code] = 1;&bsn; result.push({ "{#GRPC.CODE}": code});&bsn;}&bsn;}&bsn;return JSON.stringify(result); |0 | |
-ROW |47448 |30961 |3 |20 |1h |0 | |
-ROW |47449 |30962 |1 |23 |etcd_network_peer_sent_bytes_total |0 | |
-ROW |47450 |30963 |1 |23 |grpc_server_handled_total{grpc_method="{#GRPC.CODE}"} |0 | |
-ROW |47451 |30963 |2 |21 |var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0); |0 | |
-ROW |47452 |30963 |3 |10 | |0 | |
-ROW |47453 |30964 |1 |22 |etcd_network_peer_received_bytes_total{From="{#ETCD.PEER}"}&bsn; |2 |0 |
-ROW |47454 |30964 |2 |10 | |0 | |
-ROW |47455 |30965 |1 |22 |etcd_network_peer_sent_bytes_total{To="{#ETCD.PEER}"}&bsn; |2 |0 |
-ROW |47456 |30965 |2 |10 | |0 | |
-ROW |47457 |30966 |1 |22 |etcd_network_peer_received_failures_total{To="{#ETCD.PEER}"}&bsn; |2 |0 |
-ROW |47458 |30966 |2 |10 | |0 | |
-ROW |47459 |30967 |1 |22 |etcd_network_peer_sent_failures_total{To="{#ETCD.PEER}"}&bsn; |2 |0 |
-ROW |47460 |30967 |2 |10 | |0 | |
-ROW |47461 |30188 |1 |20 |10m |0 | |
-ROW |47462 |30189 |1 |5 |# ([\s\S]*)&bsn;\1 |0 | |
-ROW |47463 |30189 |2 |24 |&bsn;&bsn;1 |0 | |
-ROW |47464 |30191 |1 |21 |try {&bsn; var t = value.match(/(\d+)d (\d+)h(\d+)m(\d+)s/);&bsn; return t[1] * 86400 + t[2] * 3600 + t[3] * 60 + t[4] * 1;&bsn;}&bsn;catch (error) {&bsn; throw "HAProxy uptime is not found : " + error;&bsn;} |0 | |
-ROW |47465 |30192 |1 |5 |HAProxy version ([^,]*),&bsn;\1 |3 |HAProxy version is not found |
-ROW |47466 |30192 |2 |20 |1d |0 | |
-ROW |47467 |30197 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
-ROW |47468 |30197 |2 |10 | |0 | |
-ROW |47469 |30198 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
-ROW |47470 |30198 |2 |10 | |0 | |
-ROW |47471 |30199 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
-ROW |47472 |30199 |2 |10 | |0 | |
-ROW |47473 |30200 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
-ROW |47474 |30201 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
-ROW |47475 |30201 |2 |1 |0.001 |0 | |
-ROW |47476 |30202 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
-ROW |47477 |30202 |2 |1 |0.001 |0 | |
-ROW |47478 |30203 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
-ROW |47479 |30203 |2 |6 | |0 | |
-ROW |47480 |30203 |3 |20 |10m |0 | |
-ROW |47481 |30204 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
-ROW |47482 |30204 |2 |10 | |0 | |
-ROW |47483 |30205 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
-ROW |47484 |30205 |2 |10 | |0 | |
-ROW |47485 |30206 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bin.first() |0 | |
-ROW |47486 |30206 |2 |1 |8 |0 | |
-ROW |47487 |30206 |3 |10 | |0 | |
-ROW |47488 |30207 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bout.first() |0 | |
-ROW |47489 |30207 |2 |1 |8 |0 | |
-ROW |47490 |30207 |3 |10 | |0 | |
-ROW |47491 |30208 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dreq.first() |0 | |
-ROW |47492 |30208 |2 |10 | |0 | |
-ROW |47493 |30209 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].ereq.first() |0 | |
-ROW |47494 |30209 |2 |10 | |0 | |
-ROW |47495 |30210 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_1xx.first() |0 | |
-ROW |47496 |30210 |2 |10 | |0 | |
-ROW |47497 |30211 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_2xx.first() |0 | |
-ROW |47498 |30211 |2 |10 | |0 | |
-ROW |47499 |30212 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_3xx.first() |0 | |
-ROW |47500 |30212 |2 |10 | |0 | |
-ROW |47501 |30213 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_4xx.first() |0 | |
-ROW |47502 |30213 |2 |10 | |0 | |
-ROW |47503 |30214 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_5xx.first() |0 | |
-ROW |47504 |30214 |2 |10 | |0 | |
-ROW |47505 |30215 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rate.first() |0 | |
-ROW |47506 |30216 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].req_rate.first() |0 | |
-ROW |47507 |30217 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].scur.first() |0 | |
-ROW |47508 |30218 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].slim.first() |0 | |
-ROW |47509 |30218 |2 |20 |1h |0 | |
-ROW |47510 |30219 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
-ROW |47511 |30219 |2 |10 | |0 | |
-ROW |47512 |30220 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
-ROW |47513 |30220 |2 |10 | |0 | |
-ROW |47514 |30221 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
-ROW |47515 |30221 |2 |10 | |0 | |
-ROW |47516 |30222 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_4xx.first() |0 | |
-ROW |47517 |30222 |2 |10 | |0 | |
-ROW |47518 |30223 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_5xx.first() |0 | |
-ROW |47519 |30223 |2 |10 | |0 | |
-ROW |47520 |30224 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
-ROW |47521 |30225 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
-ROW |47522 |30225 |2 |1 |0.001 |0 | |
-ROW |47523 |30226 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
-ROW |47524 |30226 |2 |1 |0.001 |0 | |
-ROW |47525 |30227 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
-ROW |47526 |30227 |2 |6 | |0 | |
-ROW |47527 |30227 |3 |20 |10m |0 | |
-ROW |47528 |30228 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
-ROW |47529 |30228 |2 |10 | |0 | |
-ROW |47530 |30229 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
-ROW |47531 |30229 |2 |10 | |0 | |
-ROW |47532 |30763 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
-ROW |47533 |30763 |2 |10 | |0 | |
-ROW |47534 |30764 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
-ROW |47535 |30764 |2 |10 | |0 | |
-ROW |47536 |30765 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
-ROW |47537 |30765 |2 |10 | |0 | |
-ROW |47538 |30766 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
-ROW |47539 |30767 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
-ROW |47540 |30767 |2 |1 |0.001 |0 | |
-ROW |47541 |30768 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
-ROW |47542 |30768 |2 |1 |0.001 |0 | |
-ROW |47543 |30769 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
-ROW |47544 |30769 |2 |6 | |0 | |
-ROW |47545 |30769 |3 |20 |10m |0 | |
-ROW |47546 |30770 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
-ROW |47547 |30770 |2 |10 | |0 | |
-ROW |47548 |30771 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
-ROW |47549 |30771 |2 |10 | |0 | |
-ROW |47550 |30772 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bin.first() |0 | |
-ROW |47551 |30772 |2 |1 |8 |0 | |
-ROW |47552 |30772 |3 |10 | |0 | |
-ROW |47553 |30773 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bout.first() |0 | |
-ROW |47554 |30773 |2 |1 |8 |0 | |
-ROW |47555 |30773 |3 |10 | |0 | |
-ROW |47556 |30774 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dreq.first() |0 | |
-ROW |47557 |30774 |2 |10 | |0 | |
-ROW |47558 |30775 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].ereq.first() |0 | |
-ROW |47559 |30775 |2 |10 | |0 | |
-ROW |47560 |30776 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rate.first() |0 | |
-ROW |47561 |30777 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].req_rate.first() |0 | |
-ROW |47562 |30778 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].scur.first() |0 | |
-ROW |47563 |30779 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].slim.first() |0 | |
-ROW |47564 |30779 |2 |20 |1h |0 | |
-ROW |47565 |30780 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
-ROW |47566 |30780 |2 |10 | |0 | |
-ROW |47567 |30781 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
-ROW |47568 |30781 |2 |10 | |0 | |
-ROW |47569 |30782 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
-ROW |47570 |30782 |2 |10 | |0 | |
-ROW |47571 |30783 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
-ROW |47572 |30784 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
-ROW |47573 |30784 |2 |1 |0.001 |0 | |
-ROW |47574 |30785 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
-ROW |47575 |30785 |2 |1 |0.001 |0 | |
-ROW |47576 |30786 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
-ROW |47577 |30786 |2 |6 | |0 | |
-ROW |47578 |30786 |3 |20 |10m |0 | |
-ROW |47579 |30787 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
-ROW |47580 |30787 |2 |10 | |0 | |
-ROW |47581 |30788 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
-ROW |47582 |30788 |2 |10 | |0 | |
-ROW |47583 |30230 |1 |5 |# ([\s\S]*)\n&bsn;\1 |0 | |
-ROW |47584 |30230 |2 |24 |&bsn;&bsn;1 |0 | |
-ROW |47585 |30790 |1 |20 |10m |0 | |
-ROW |47586 |30234 |1 |21 |try {&bsn; var t = value.match(/(\d+)d (\d+)h(\d+)m(\d+)s/);&bsn; return t[1] * 86400 + t[2] * 3600 + t[3] * 60 + t[4] * 1;&bsn;}&bsn;catch (error) {&bsn; throw "HAProxy uptime is not found : " + error;&bsn;} |0 | |
-ROW |47587 |30235 |1 |5 |HAProxy version ([^,]*),&bsn;\1 |3 |HAProxy version is not found |
-ROW |47588 |30235 |2 |20 |1d |0 | |
-ROW |47589 |30240 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
-ROW |47590 |30240 |2 |10 | |0 | |
-ROW |47591 |30241 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
-ROW |47592 |30241 |2 |10 | |0 | |
-ROW |47593 |30242 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
-ROW |47594 |30242 |2 |10 | |0 | |
-ROW |47595 |30243 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
-ROW |47596 |30244 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
-ROW |47597 |30244 |2 |1 |0.001 |0 | |
-ROW |47598 |30245 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
-ROW |47599 |30245 |2 |1 |0.001 |0 | |
-ROW |47600 |30246 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
-ROW |47601 |30246 |2 |6 | |0 | |
-ROW |47602 |30246 |3 |20 |10m |0 | |
-ROW |47603 |30247 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
-ROW |47604 |30247 |2 |10 | |0 | |
-ROW |47605 |30248 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
-ROW |47606 |30248 |2 |10 | |0 | |
-ROW |47607 |30249 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bin.first() |0 | |
-ROW |47608 |30249 |2 |1 |8 |0 | |
-ROW |47609 |30249 |3 |10 | |0 | |
-ROW |47610 |30250 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bout.first() |0 | |
-ROW |47611 |30250 |2 |1 |8 |0 | |
-ROW |47612 |30250 |3 |10 | |0 | |
-ROW |47613 |30251 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dreq.first() |0 | |
-ROW |47614 |30251 |2 |10 | |0 | |
-ROW |47615 |30252 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].ereq.first() |0 | |
-ROW |47616 |30252 |2 |10 | |0 | |
-ROW |47617 |30253 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_1xx.first() |0 | |
-ROW |47618 |30253 |2 |10 | |0 | |
-ROW |47619 |30254 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_2xx.first() |0 | |
-ROW |47620 |30254 |2 |10 | |0 | |
-ROW |47621 |30255 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_3xx.first() |0 | |
-ROW |47622 |30255 |2 |10 | |0 | |
-ROW |47623 |30256 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_4xx.first() |0 | |
-ROW |47624 |30256 |2 |10 | |0 | |
-ROW |47625 |30257 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_5xx.first() |0 | |
-ROW |47626 |30257 |2 |10 | |0 | |
-ROW |47627 |30258 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rate.first() |0 | |
-ROW |47628 |30259 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].req_rate.first() |0 | |
-ROW |47629 |30260 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].scur.first() |0 | |
-ROW |47630 |30261 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].slim.first() |0 | |
-ROW |47631 |30261 |2 |20 |1h |0 | |
-ROW |47632 |30262 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
-ROW |47633 |30262 |2 |10 | |0 | |
-ROW |47634 |30263 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
-ROW |47635 |30263 |2 |10 | |0 | |
-ROW |47636 |30264 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
-ROW |47637 |30264 |2 |10 | |0 | |
-ROW |47638 |30265 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_4xx.first() |0 | |
-ROW |47639 |30265 |2 |10 | |0 | |
-ROW |47640 |30266 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_5xx.first() |0 | |
-ROW |47641 |30266 |2 |10 | |0 | |
-ROW |47642 |30267 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
-ROW |47643 |30268 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
-ROW |47644 |30268 |2 |1 |0.001 |0 | |
-ROW |47645 |30269 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
-ROW |47646 |30269 |2 |1 |0.001 |0 | |
-ROW |47647 |30270 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
-ROW |47648 |30270 |2 |6 | |0 | |
-ROW |47649 |30270 |3 |20 |10m |0 | |
-ROW |47650 |30271 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
-ROW |47651 |30271 |2 |10 | |0 | |
-ROW |47652 |30272 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
-ROW |47653 |30272 |2 |10 | |0 | |
-ROW |47654 |30795 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
-ROW |47655 |30795 |2 |10 | |0 | |
-ROW |47656 |30796 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
-ROW |47657 |30796 |2 |10 | |0 | |
-ROW |47658 |30797 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
-ROW |47659 |30797 |2 |10 | |0 | |
-ROW |47660 |30798 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
-ROW |47661 |30799 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
-ROW |47662 |30799 |2 |1 |0.001 |0 | |
-ROW |47663 |30800 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
-ROW |47664 |30800 |2 |1 |0.001 |0 | |
-ROW |47665 |30801 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
-ROW |47666 |30801 |2 |6 | |0 | |
-ROW |47667 |30801 |3 |20 |10m |0 | |
-ROW |47668 |30802 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
-ROW |47669 |30802 |2 |10 | |0 | |
-ROW |47670 |30803 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
-ROW |47671 |30803 |2 |10 | |0 | |
-ROW |47672 |30804 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bin.first() |0 | |
-ROW |47673 |30804 |2 |1 |8 |0 | |
-ROW |47674 |30804 |3 |10 | |0 | |
-ROW |47675 |30805 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bout.first() |0 | |
-ROW |47676 |30805 |2 |1 |8 |0 | |
-ROW |47677 |30805 |3 |10 | |0 | |
-ROW |47678 |30806 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dreq.first() |0 | |
-ROW |47679 |30806 |2 |10 | |0 | |
-ROW |47680 |30807 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].ereq.first() |0 | |
-ROW |47681 |30807 |2 |10 | |0 | |
-ROW |47682 |30808 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rate.first() |0 | |
-ROW |47683 |30809 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].req_rate.first() |0 | |
-ROW |47684 |30810 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].scur.first() |0 | |
-ROW |47685 |30811 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].slim.first() |0 | |
-ROW |47686 |30811 |2 |20 |1h |0 | |
-ROW |47687 |30812 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
-ROW |47688 |30812 |2 |10 | |0 | |
-ROW |47689 |30813 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
-ROW |47690 |30813 |2 |10 | |0 | |
-ROW |47691 |30814 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
-ROW |47692 |30814 |2 |10 | |0 | |
-ROW |47693 |30815 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
-ROW |47694 |30816 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
-ROW |47695 |30816 |2 |1 |0.001 |0 | |
-ROW |47696 |30817 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
-ROW |47697 |30817 |2 |1 |0.001 |0 | |
-ROW |47698 |30818 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
-ROW |47699 |30818 |2 |6 | |0 | |
-ROW |47700 |30818 |3 |20 |10m |0 | |
-ROW |47701 |30819 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
-ROW |47702 |30819 |2 |10 | |0 | |
-ROW |47703 |30820 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
-ROW |47704 |30820 |2 |10 | |0 | |
-ROW |47705 |30968 |1 |20 |10m |0 | |
-ROW |47706 |30969 |1 |20 |10m |0 | |
-ROW |47707 |30970 |1 |20 |10m |0 | |
-ROW |47708 |30971 |1 |20 |10m |0 | |
-ROW |47709 |30972 |1 |20 |10m |0 | |
-ROW |47710 |30973 |1 |20 |10m |0 | |
-ROW |47711 |30974 |1 |20 |10m |0 | |
-ROW |47712 |30976 |1 |20 |10m |0 | |
-ROW |47713 |30977 |1 |20 |10m |0 | |
-ROW |47714 |30978 |1 |20 |10m |0 | |
-ROW |47715 |30979 |1 |20 |10m |0 | |
-ROW |47716 |30980 |1 |20 |10m |0 | |
-ROW |47717 |30981 |1 |20 |10m |0 | |
-ROW |47718 |30982 |1 |20 |10m |0 | |
-ROW |47719 |30983 |1 |20 |10m |0 | |
-ROW |47720 |30984 |1 |20 |10m |0 | |
-ROW |47721 |30985 |1 |20 |10m |0 | |
-ROW |47722 |30986 |1 |20 |10m |0 | |
-ROW |47723 |30992 |1 |20 |10m |0 | |
-ROW |47724 |30993 |1 |20 |10m |0 | |
-ROW |47725 |30994 |1 |20 |10m |0 | |
-ROW |47726 |30995 |1 |20 |10m |0 | |
-ROW |47727 |30997 |1 |20 |10m |0 | |
-ROW |47728 |30998 |1 |20 |10m |0 | |
-ROW |47729 |30999 |1 |20 |10m |0 | |
-ROW |47730 |31000 |1 |20 |10m |0 | |
-ROW |47731 |31001 |1 |20 |10m |0 | |
-ROW |47732 |31002 |1 |20 |10m |0 | |
-ROW |47733 |31003 |1 |20 |10m |0 | |
-ROW |47734 |31004 |1 |20 |10m |0 | |
-ROW |47735 |31006 |1 |20 |10m |0 | |
-ROW |47736 |31008 |1 |20 |10m |0 | |
-ROW |47737 |31009 |1 |20 |10m |0 | |
-ROW |47738 |31010 |1 |20 |10m |0 | |
-ROW |47739 |31011 |1 |20 |10m |0 | |
-ROW |47740 |31012 |1 |20 |10m |0 | |
-ROW |47741 |31013 |1 |20 |10m |0 | |
-ROW |47742 |31014 |1 |20 |10m |0 | |
-ROW |47743 |31015 |1 |20 |10m |0 | |
-ROW |47744 |31016 |1 |20 |10m |0 | |
-ROW |47745 |31018 |1 |20 |10m |0 | |
-ROW |47746 |31019 |1 |20 |10m |0 | |
-ROW |47747 |31020 |1 |20 |10m |0 | |
-ROW |47748 |31021 |1 |20 |10m |0 | |
-ROW |47749 |31022 |1 |20 |10m |0 | |
-ROW |47750 |31023 |1 |20 |10m |0 | |
-ROW |47751 |31024 |1 |20 |10m |0 | |
-ROW |47752 |31025 |1 |20 |10m |0 | |
-ROW |47753 |31026 |1 |20 |10m |0 | |
-ROW |47754 |31027 |1 |20 |10m |0 | |
-ROW |47755 |31028 |1 |20 |10m |0 | |
-ROW |47756 |31034 |1 |20 |10m |0 | |
-ROW |47757 |31035 |1 |20 |10m |0 | |
-ROW |47758 |31036 |1 |20 |10m |0 | |
-ROW |47759 |31037 |1 |20 |10m |0 | |
-ROW |47760 |31039 |1 |20 |10m |0 | |
-ROW |47761 |31040 |1 |20 |10m |0 | |
-ROW |47762 |31041 |1 |20 |10m |0 | |
-ROW |47763 |31042 |1 |20 |10m |0 | |
-ROW |47764 |31043 |1 |20 |10m |0 | |
-ROW |47765 |31044 |1 |20 |10m |0 | |
-ROW |47766 |31045 |1 |20 |10m |0 | |
-ROW |47767 |31046 |1 |20 |10m |0 | |
-ROW |47768 |31048 |1 |20 |10m |0 | |
-ROW |47769 |31050 |1 |20 |10m |0 | |
-ROW |47770 |31051 |1 |20 |10m |0 | |
-ROW |47771 |30611 |1 |20 |10m |0 | |
-ROW |47772 |30613 |1 |12 |$.cmd_flush |0 | |
-ROW |47773 |30613 |2 |10 | |0 | |
-ROW |47774 |30614 |1 |12 |$.bytes |0 | |
-ROW |47775 |30615 |1 |12 |$.uptime |0 | |
-ROW |47776 |30616 |1 |12 |$.total_items |0 | |
-ROW |47777 |30616 |2 |10 | |0 | |
-ROW |47778 |30617 |1 |12 |$.threads |0 | |
-ROW |47779 |30618 |1 |12 |$.get_misses |0 | |
-ROW |47780 |30618 |2 |10 | |0 | |
-ROW |47781 |30619 |1 |12 |$.get_hits |0 | |
-ROW |47782 |30619 |2 |10 | |0 | |
-ROW |47783 |30620 |1 |12 |$.evictions |0 | |
-ROW |47784 |30620 |2 |10 | |0 | |
-ROW |47785 |30621 |1 |12 |$.curr_items |0 | |
-ROW |47786 |30622 |1 |12 |$.bytes_written |0 | |
-ROW |47787 |30622 |2 |10 | |0 | |
-ROW |47788 |30623 |1 |12 |$.bytes_read |0 | |
-ROW |47789 |30623 |2 |10 | |0 | |
-ROW |47790 |30624 |1 |12 |$.pid |0 | |
-ROW |47791 |30624 |2 |20 |1d |0 | |
-ROW |47792 |30625 |1 |12 |$.cmd_get |0 | |
-ROW |47793 |30625 |2 |10 | |0 | |
-ROW |47794 |30626 |1 |12 |$.rusage_user |0 | |
-ROW |47795 |30627 |1 |12 |$.rusage_system |0 | |
-ROW |47796 |30628 |1 |12 |$.conn_yields |0 | |
-ROW |47797 |30628 |2 |10 | |0 | |
-ROW |47798 |30629 |1 |12 |$.connection_structures |0 | |
-ROW |47799 |30630 |1 |12 |$.total_connections |0 | |
-ROW |47800 |30630 |2 |10 | |0 | |
-ROW |47801 |30631 |1 |12 |$.listen_disabled_num |0 | |
-ROW |47802 |30631 |2 |10 | |0 | |
-ROW |47803 |30632 |1 |12 |$.max_connections |0 | |
-ROW |47804 |30632 |2 |20 |30m |0 | |
-ROW |47805 |30633 |1 |12 |$.curr_connections |0 | |
-ROW |47806 |30634 |1 |12 |$.limit_maxbytes |0 | |
-ROW |47807 |30634 |2 |20 |30m |0 | |
-ROW |47808 |30635 |1 |12 |$.cmd_set |0 | |
-ROW |47809 |30635 |2 |10 | |0 | |
-ROW |47810 |30636 |1 |12 |$.version |0 | |
-ROW |47811 |30636 |2 |20 |1d |0 | |
-ROW |47812 |28810 |1 |20 |10m |0 | |
-ROW |47813 |28811 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\3 |0 | |
-ROW |47814 |28812 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\2 |0 | |
-ROW |47815 |28813 |1 |5 |Active connections: ([0-9]+)&bsn;\1 |0 | |
-ROW |47816 |28814 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\1 |0 | |
-ROW |47817 |28815 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\2 |0 | |
-ROW |47818 |28815 |2 |10 | |0 | |
-ROW |47819 |28816 |1 |21 |var a = value.match(/server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)/)&bsn;if (a) {&bsn; return a[1]-a[2]&bsn;} |0 | |
-ROW |47820 |28816 |2 |10 | |0 | |
-ROW |47821 |28817 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\1 |0 | |
-ROW |47822 |28817 |2 |10 | |0 | |
-ROW |47823 |28818 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\3 |0 | |
-ROW |47824 |28818 |2 |10 | |0 | |
-ROW |47825 |28819 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\3 |0 | |
-ROW |47826 |28820 |1 |5 |Server: nginx\/(.+(?<!\r))&bsn;\1 |0 | |
-ROW |47827 |28820 |2 |20 |1d |0 | |
-ROW |47828 |28822 |1 |20 |10m |0 | |
-ROW |47829 |28824 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\3 |0 | |
-ROW |47830 |28825 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\3 |0 | |
-ROW |47831 |28825 |2 |10 | |0 | |
-ROW |47832 |28826 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\1 |0 | |
-ROW |47833 |28826 |2 |10 | |0 | |
-ROW |47834 |28827 |1 |21 |var a = value.match(/server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)/)&bsn;if (a) {&bsn; return a[1]-a[2]&bsn;} |0 | |
-ROW |47835 |28827 |2 |10 | |0 | |
-ROW |47836 |28828 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\2 |0 | |
-ROW |47837 |28828 |2 |10 | |0 | |
-ROW |47838 |28829 |1 |5 |Active connections: ([0-9]+)&bsn;\1 |0 | |
-ROW |47839 |28830 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\1 |0 | |
-ROW |47840 |28831 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\3 |0 | |
-ROW |47841 |28832 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\2 |0 | |
-ROW |47842 |28833 |1 |5 |Server: nginx\/(.+(?<!\r))&bsn;\1 |0 | |
-ROW |47843 |28833 |2 |20 |1d |0 | |
-ROW |47844 |29653 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
-ROW |47845 |29654 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
-ROW |47846 |29655 |1 |20 |10m |0 | |
-ROW |47847 |29661 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
-ROW |47848 |29662 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
-ROW |47849 |29662 |2 |12 |$.status |0 | |
-ROW |47850 |29662 |3 |6 | |2 |0 |
-ROW |47851 |29998 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
-ROW |47852 |29999 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
-ROW |47853 |29687 |1 |12 |$.mem_used |0 | |
-ROW |47854 |29688 |1 |12 |$.disk_free_alarm |0 | |
-ROW |47855 |29688 |2 |6 | |0 | |
-ROW |47856 |29691 |1 |12 |$.fd_used |0 | |
-ROW |47857 |29692 |1 |12 |$.uptime |0 | |
-ROW |47858 |29692 |2 |1 |0.001 |0 | |
-ROW |47859 |29693 |1 |12 |$.mem_alarm |0 | |
-ROW |47860 |29693 |2 |6 | |0 | |
-ROW |47861 |29694 |1 |12 |$.mem_limit |0 | |
-ROW |47862 |29695 |1 |12 |$.running |0 | |
-ROW |47863 |29695 |2 |6 | |0 | |
-ROW |47864 |29696 |1 |12 |$.partitions |0 | |
-ROW |47865 |29696 |2 |21 |return JSON.parse(value).length; |0 | |
-ROW |47866 |29697 |1 |12 |$.sockets_total |0 | |
-ROW |47867 |29698 |1 |12 |$.disk_free |0 | |
-ROW |47868 |29699 |1 |12 |$.run_queue |0 | |
-ROW |47869 |29700 |1 |12 |$.disk_free_limit |0 | |
-ROW |47870 |29701 |1 |12 |$.sockets_used |0 | |
-ROW |47871 |30000 |1 |12 |$.message_stats.redeliver |2 |0 |
-ROW |47872 |30001 |1 |12 |$.message_stats.return_unroutable_details.rate |2 |0 |
-ROW |47873 |30002 |1 |12 |$.message_stats.return_unroutable |2 |0 |
-ROW |47874 |30003 |1 |12 |$.message_stats.publish_out_details.rate |2 |0 |
-ROW |47875 |30004 |1 |12 |$.message_stats.publish_out |2 |0 |
-ROW |47876 |30005 |1 |12 |$.message_stats.publish_in_details.rate |2 |0 |
-ROW |47877 |30006 |1 |12 |$.message_stats.publish_in |2 |0 |
-ROW |47878 |30007 |1 |12 |$.message_stats.publish_details.rate |2 |0 |
-ROW |47879 |30008 |1 |12 |$.message_stats.publish |2 |0 |
-ROW |47880 |30009 |1 |12 |$.message_stats.deliver_get_details.rate |2 |0 |
-ROW |47881 |30010 |1 |12 |$.message_stats.deliver_get |2 |0 |
-ROW |47882 |30011 |1 |12 |$.message_stats.confirm_details.rate |2 |0 |
-ROW |47883 |30012 |1 |12 |$.message_stats.confirm |2 |0 |
-ROW |47884 |30013 |1 |12 |$.message_stats.ack_details.rate |2 |0 |
-ROW |47885 |30014 |1 |12 |$.message_stats.ack |2 |0 |
-ROW |47886 |30015 |1 |12 |$.queue_totals.messages_unacknowledged |0 | |
-ROW |47887 |30016 |1 |12 |$.queue_totals.messages_ready |0 | |
-ROW |47888 |30017 |1 |12 |$.queue_totals.messages |0 | |
-ROW |47889 |30018 |1 |12 |$.object_totals.exchanges |0 | |
-ROW |47890 |30019 |1 |12 |$.object_totals.consumers |0 | |
-ROW |47891 |30020 |1 |12 |$.object_totals.queues |0 | |
-ROW |47892 |30021 |1 |12 |$.object_totals.channels |0 | |
-ROW |47893 |30022 |1 |12 |$.object_totals.connections |0 | |
-ROW |47894 |30023 |1 |12 |$.message_stats.redeliver_details.rate |2 |0 |
-ROW |47895 |30024 |1 |12 |$.management_version |0 | |
-ROW |47896 |30024 |2 |20 |1d |0 | |
-ROW |47897 |30025 |1 |12 |$.rabbitmq_version |0 | |
-ROW |47898 |30025 |2 |20 |1d |0 | |
-ROW |47899 |29720 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages.first() |0 | |
-ROW |47900 |29721 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver.first() |2 |0 |
-ROW |47901 |29722 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver.first() |2 |0 |
-ROW |47902 |29723 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish_details.rate.first() |2 |0 |
-ROW |47903 |29724 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish.first() |2 |0 |
-ROW |47904 |29725 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get_details.rate.first() |2 |0 |
-ROW |47905 |29726 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get.first() |2 |0 |
-ROW |47906 |29727 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_details.rate.first() |2 |0 |
-ROW |47907 |29728 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack_details.rate.first() |2 |0 |
-ROW |47908 |29729 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_details.rate.first() |0 | |
-ROW |47909 |29730 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack.first() |2 |0 |
-ROW |47910 |29731 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged_details.rate.first() |0 | |
-ROW |47911 |29732 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged.first() |0 | |
-ROW |47912 |29733 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready_details.rate.first() |0 | |
-ROW |47913 |29734 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready.first() |0 | |
-ROW |47914 |29735 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].memory.first() |0 | |
-ROW |47915 |29736 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].consumers.first() |0 | |
-ROW |47916 |29737 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver_details.rate.first() |2 |0 |
-ROW |47917 |30027 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack.first() |2 |0 |
-ROW |47918 |30028 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack_details.rate.first() |2 |0 |
-ROW |47919 |30029 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm.first() |2 |0 |
-ROW |47920 |30030 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm_details.rate.first() |2 |0 |
-ROW |47921 |30031 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get.first() |2 |0 |
-ROW |47922 |30032 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get_details.rate.first() |2 |0 |
-ROW |47923 |30033 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish.first() |2 |0 |
-ROW |47924 |30034 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_details.rate.first() |2 |0 |
-ROW |47925 |30035 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in.first() |2 |0 |
-ROW |47926 |30036 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in_details.rate.first() |2 |0 |
-ROW |47927 |30037 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out.first() |2 |0 |
-ROW |47928 |30038 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out_details.rate.first() |2 |0 |
-ROW |47929 |30039 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable.first() |2 |0 |
-ROW |47930 |30040 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable_details.rate.first() |2 |0 |
-ROW |47931 |30041 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver.first() |2 |0 |
-ROW |47932 |30042 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver_details.rate.first() |2 |0 |
-ROW |47933 |29742 |1 |20 |10m |0 | |
-ROW |47934 |29744 |1 |12 |$.status |0 | |
-ROW |47935 |29744 |2 |6 | |2 |0 |
-ROW |47936 |29746 |1 |12 |$.message_stats.redeliver |2 |0 |
-ROW |47937 |29747 |1 |12 |$.message_stats.return_unroutable_details.rate |2 |0 |
-ROW |47938 |29748 |1 |12 |$.message_stats.return_unroutable |2 |0 |
-ROW |47939 |29749 |1 |12 |$.message_stats.publish_out_details.rate |2 |0 |
-ROW |47940 |29750 |1 |12 |$.message_stats.publish_out |2 |0 |
-ROW |47941 |29751 |1 |12 |$.message_stats.publish_in_details.rate |2 |0 |
-ROW |47942 |29752 |1 |12 |$.message_stats.publish_in |2 |0 |
-ROW |47943 |29753 |1 |12 |$.message_stats.publish_details.rate |2 |0 |
-ROW |47944 |29754 |1 |12 |$.message_stats.publish |2 |0 |
-ROW |47945 |29755 |1 |12 |$.message_stats.deliver_get_details.rate |2 |0 |
-ROW |47946 |29756 |1 |12 |$.message_stats.deliver_get |2 |0 |
-ROW |47947 |29757 |1 |12 |$.message_stats.confirm_details.rate |2 |0 |
-ROW |47948 |29758 |1 |12 |$.message_stats.confirm |2 |0 |
-ROW |47949 |29759 |1 |12 |$.message_stats.ack_details.rate |2 |0 |
-ROW |47950 |29760 |1 |12 |$.message_stats.ack |2 |0 |
-ROW |47951 |29761 |1 |12 |$.queue_totals.messages_unacknowledged |0 | |
-ROW |47952 |29762 |1 |12 |$.queue_totals.messages_ready |0 | |
-ROW |47953 |29763 |1 |12 |$.queue_totals.messages |0 | |
-ROW |47954 |29764 |1 |12 |$.object_totals.exchanges |0 | |
-ROW |47955 |29765 |1 |12 |$.object_totals.consumers |0 | |
-ROW |47956 |29766 |1 |12 |$.object_totals.queues |0 | |
-ROW |47957 |29767 |1 |12 |$.object_totals.channels |0 | |
-ROW |47958 |29768 |1 |12 |$.object_totals.connections |0 | |
-ROW |47959 |29769 |1 |12 |$.message_stats.redeliver_details.rate |2 |0 |
-ROW |47960 |29771 |1 |12 |$.partitions |0 | |
-ROW |47961 |29771 |2 |21 |return JSON.parse(value).length; |0 | |
-ROW |47962 |29772 |1 |12 |$.uptime |0 | |
-ROW |47963 |29772 |2 |1 |0.001 |0 | |
-ROW |47964 |29773 |1 |12 |$.disk_free_alarm |0 | |
-ROW |47965 |29773 |2 |6 | |0 | |
-ROW |47966 |29774 |1 |12 |$.mem_alarm |0 | |
-ROW |47967 |29774 |2 |6 | |0 | |
-ROW |47968 |29775 |1 |12 |$.running |0 | |
-ROW |47969 |29775 |2 |6 | |0 | |
-ROW |47970 |29776 |1 |12 |$.sockets_used |0 | |
-ROW |47971 |29777 |1 |12 |$.sockets_total |0 | |
-ROW |47972 |29779 |1 |12 |$.run_queue |0 | |
-ROW |47973 |29780 |1 |12 |$.mem_used |0 | |
-ROW |47974 |29781 |1 |12 |$.disk_free_limit |0 | |
-ROW |47975 |29782 |1 |12 |$.disk_free |0 | |
-ROW |47976 |29783 |1 |12 |$.fd_used |0 | |
-ROW |47977 |29784 |1 |12 |$.mem_limit |0 | |
-ROW |47978 |30044 |1 |12 |$.management_version |0 | |
-ROW |47979 |30044 |2 |20 |1d |0 | |
-ROW |47980 |30045 |1 |12 |$.rabbitmq_version |0 | |
-ROW |47981 |30045 |2 |20 |1d |0 | |
-ROW |47982 |29787 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack.first() |2 |0 |
-ROW |47983 |29788 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack_details.rate.first() |2 |0 |
-ROW |47984 |29789 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm.first() |2 |0 |
-ROW |47985 |29790 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm_details.rate.first() |2 |0 |
-ROW |47986 |29791 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get.first() |2 |0 |
-ROW |47987 |29792 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get_details.rate.first() |2 |0 |
-ROW |47988 |29793 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish.first() |2 |0 |
-ROW |47989 |29794 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_details.rate.first() |2 |0 |
-ROW |47990 |29795 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in.first() |2 |0 |
-ROW |47991 |29796 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in_details.rate.first() |2 |0 |
-ROW |47992 |29797 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out.first() |2 |0 |
-ROW |47993 |29798 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out_details.rate.first() |2 |0 |
-ROW |47994 |29799 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable.first() |2 |0 |
-ROW |47995 |29800 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable_details.rate.first() |2 |0 |
-ROW |47996 |29801 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver.first() |2 |0 |
-ROW |47997 |29802 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver_details.rate.first() |2 |0 |
-ROW |47998 |29803 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages.first() |0 | |
-ROW |47999 |29804 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver.first() |2 |0 |
-ROW |48000 |29805 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver.first() |2 |0 |
-ROW |48001 |29806 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish_details.rate.first() |2 |0 |
-ROW |48002 |29807 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish.first() |2 |0 |
-ROW |48003 |29808 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get_details.rate.first() |2 |0 |
-ROW |48004 |29809 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get.first() |2 |0 |
-ROW |48005 |29810 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_details.rate.first() |2 |0 |
-ROW |48006 |29811 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack_details.rate.first() |2 |0 |
-ROW |48007 |29812 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_details.rate.first() |0 | |
-ROW |48008 |29813 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack.first() |2 |0 |
-ROW |48009 |29814 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged_details.rate.first() |0 | |
-ROW |48010 |29815 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged.first() |0 | |
-ROW |48011 |29816 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready_details.rate.first() |0 | |
-ROW |48012 |29817 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready.first() |0 | |
-ROW |48013 |29818 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].memory.first() |0 | |
-ROW |48014 |29819 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].consumers.first() |0 | |
-ROW |48015 |29820 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver_details.rate.first() |2 |0 |
-ROW |48016 |28501 |1 |10 | |0 | |
-ROW |48017 |28514 |1 |10 | |0 | |
-ROW |48018 |28517 |1 |10 | |0 | |
-ROW |48019 |28519 |1 |10 | |0 | |
-ROW |48020 |28520 |1 |1 |0.001 |0 | |
-ROW |48021 |28521 |1 |10 | |0 | |
-ROW |48022 |28522 |1 |10 | |0 | |
-ROW |48023 |28523 |1 |10 | |0 | |
-ROW |48024 |28524 |1 |10 | |0 | |
-ROW |48025 |28525 |1 |1 |0.001 |0 | |
-ROW |48026 |28526 |1 |10 | |0 | |
-ROW |48027 |28527 |1 |10 | |0 | |
-ROW |48028 |28528 |1 |10 | |0 | |
-ROW |48029 |28529 |1 |10 | |0 | |
-ROW |48030 |28530 |1 |1 |0.001 |0 | |
-ROW |48031 |28531 |1 |10 | |0 | |
-ROW |48032 |26876 |1 |1 |0.001 |0 | |
-ROW |48033 |26881 |1 |1 |100 |0 | |
-ROW |48034 |26884 |1 |10 | |0 | |
-ROW |48035 |26885 |1 |1 |0.001 |0 | |
-ROW |48036 |26886 |1 |1 |0.001 |0 | |
-ROW |48037 |26887 |1 |10 | |0 | |
-ROW |48038 |26888 |1 |1 |0.001 |0 | |
-ROW |48039 |26889 |1 |10 | |0 | |
-ROW |48040 |26890 |1 |1 |0.001 |0 | |
-ROW |48041 |26894 |1 |1 |0.001 |0 | |
-ROW |48042 |26895 |1 |10 | |0 | |
-ROW |48043 |26896 |1 |10 | |0 | |
-ROW |48044 |26897 |1 |1 |0.001 |0 | |
-ROW |48045 |26905 |1 |1 |0.001 |0 | |
-ROW |48046 |26906 |1 |10 | |0 | |
-ROW |48047 |28586 |1 |12 |$.queue |0 | |
-ROW |48048 |28587 |1 |12 |$.queue |0 | |
-ROW |48049 |28588 |1 |12 |$.data.process['vmware collector'].busy.avg |0 | |
-ROW |48050 |28589 |1 |12 |$.data.wcache.values.uint |0 | |
-ROW |48051 |28589 |2 |10 | |0 | |
-ROW |48052 |28590 |1 |12 |$.data.wcache.values.text |0 | |
-ROW |48053 |28590 |2 |10 | |0 | |
-ROW |48054 |28591 |1 |12 |$.data.wcache.values.str |0 | |
-ROW |48055 |28591 |2 |10 | |0 | |
-ROW |48056 |28592 |1 |12 |$.data.wcache.values['not supported'] |0 | |
-ROW |48057 |28592 |2 |10 | |0 | |
-ROW |48058 |28593 |1 |12 |$.data.wcache.values.log |0 | |
-ROW |48059 |28593 |2 |10 | |0 | |
-ROW |48060 |28594 |1 |12 |$.data.wcache.values.float |0 | |
-ROW |48061 |28594 |2 |10 | |0 | |
-ROW |48062 |28595 |1 |12 |$.data.wcache.values.all |0 | |
-ROW |48063 |28595 |2 |10 | |0 | |
-ROW |48064 |28596 |1 |12 |$.data.wcache.index.pused |0 | |
-ROW |48065 |28597 |1 |12 |$.data.wcache.history.pused |0 | |
-ROW |48066 |28598 |1 |12 |$.data.vmware.pused |0 | |
-ROW |48067 |28599 |1 |12 |$.data.rcache.pused |0 | |
-ROW |48068 |28600 |1 |12 |$.data.process['configuration syncer'].busy.avg |0 | |
-ROW |48069 |28601 |1 |12 |$.data.process['data sender'].busy.avg |0 | |
-ROW |48070 |28602 |1 |12 |$.data.process.trapper.busy.avg |0 | |
-ROW |48071 |28603 |1 |12 |$.data.process['task manager'].busy.avg |0 | |
-ROW |48072 |28604 |1 |12 |$.data.process['snmp trapper'].busy.avg |0 | |
-ROW |48073 |28605 |1 |12 |$.data.process['self-monitoring'].busy.avg |0 | |
-ROW |48074 |28606 |1 |12 |$.data.process.poller.busy.avg |0 | |
-ROW |48075 |28607 |1 |12 |$.data.process['java poller'].busy.avg |0 | |
-ROW |48076 |28608 |1 |12 |$.data.process['ipmi poller'].busy.avg |0 | |
-ROW |48077 |28609 |1 |12 |$.data.process['ipmi manager'].busy.avg |0 | |
-ROW |48078 |28610 |1 |12 |$.data.process['icmp pinger'].busy.avg |0 | |
-ROW |48079 |28611 |1 |12 |$.data.process['http poller'].busy.avg |0 | |
-ROW |48080 |28612 |1 |12 |$.data.process.housekeeper.busy.avg |0 | |
-ROW |48081 |28613 |1 |12 |$.data.process['history syncer'].busy.avg |0 | |
-ROW |48082 |28614 |1 |12 |$.data.process['heartbeat sender'].busy.avg |0 | |
-ROW |48083 |28615 |1 |12 |$.data.process.discoverer.busy.avg |0 | |
-ROW |48084 |28616 |1 |12 |$.data.process['unreachable poller'].busy.avg |0 | |
-ROW |48085 |31052 |1 |12 |$.data.version |0 | |
-ROW |48086 |31052 |2 |20 |1d |0 | |
-ROW |48087 |28540 |1 |12 |$.queue |0 | |
-ROW |48088 |28541 |1 |12 |$.queue |0 | |
-ROW |48089 |28542 |1 |12 |$.data.wcache.index.pused |0 | |
-ROW |48090 |28543 |1 |12 |$.data.rcache.pused |0 | |
-ROW |48091 |28544 |1 |12 |$.data.vcache.buffer.pused |0 | |
-ROW |48092 |28545 |1 |12 |$.data.vcache.cache.hits |0 | |
-ROW |48093 |28545 |2 |10 | |0 | |
-ROW |48094 |28546 |1 |12 |$.data.vcache.cache.misses |0 | |
-ROW |48095 |28546 |2 |10 | |0 | |
-ROW |48096 |28547 |1 |12 |$.data.vcache.cache.mode |0 | |
-ROW |48097 |28548 |1 |12 |$.data.vmware.pused |0 | |
-ROW |48098 |28549 |1 |12 |$.data.wcache.history.pused |0 | |
-ROW |48099 |28550 |1 |12 |$.data.wcache.values.all |0 | |
-ROW |48100 |28550 |2 |10 | |0 | |
-ROW |48101 |28551 |1 |12 |$.data.wcache.trend.pused |0 | |
-ROW |48102 |28552 |1 |12 |$.data.process['unreachable poller'].busy.avg |0 | |
-ROW |48103 |28553 |1 |12 |$.data.wcache.values.float |0 | |
-ROW |48104 |28553 |2 |10 | |0 | |
-ROW |48105 |28554 |1 |12 |$.data.wcache.values.log |0 | |
-ROW |48106 |28554 |2 |10 | |0 | |
-ROW |48107 |28555 |1 |12 |$.data.wcache.values['not supported'] |0 | |
-ROW |48108 |28555 |2 |10 | |0 | |
-ROW |48109 |28556 |1 |12 |$.data.wcache.values.str |0 | |
-ROW |48110 |28556 |2 |10 | |0 | |
-ROW |48111 |28557 |1 |12 |$.data.wcache.values.text |0 | |
-ROW |48112 |28557 |2 |10 | |0 | |
-ROW |48113 |28558 |1 |12 |$.data.wcache.values.uint |0 | |
-ROW |48114 |28558 |2 |10 | |0 | |
-ROW |48115 |28559 |1 |12 |$.data.process['vmware collector'].busy.avg |0 | |
-ROW |48116 |28560 |1 |12 |$.data.preprocessing_queue |0 | |
-ROW |48117 |28561 |1 |12 |$.data.process.alerter.busy.avg |0 | |
-ROW |48118 |28562 |1 |12 |$.data.process['ipmi manager'].busy.avg |0 | |
-ROW |48119 |28563 |1 |12 |$.data.process['alert manager'].busy.avg |0 | |
-ROW |48120 |28564 |1 |12 |$.data.process['configuration syncer'].busy.avg |0 | |
-ROW |48121 |28565 |1 |12 |$.data.process.discoverer.busy.avg |0 | |
-ROW |48122 |28566 |1 |12 |$.data.process.escalator.busy.avg |0 | |
-ROW |48123 |28567 |1 |12 |$.data.process['history syncer'].busy.avg |0 | |
-ROW |48124 |28568 |1 |12 |$.data.process.housekeeper.busy.avg |0 | |
-ROW |48125 |28569 |1 |12 |$.data.process['http poller'].busy.avg |0 | |
-ROW |48126 |28570 |1 |12 |$.data.process['icmp pinger'].busy.avg |0 | |
-ROW |48127 |28571 |1 |12 |$.data.process['ipmi poller'].busy.avg |0 | |
-ROW |48128 |28572 |1 |12 |$.data.process.timer.busy.avg |0 | |
-ROW |48129 |28573 |1 |12 |$.data.process['java poller'].busy.avg |0 | |
-ROW |48130 |28574 |1 |12 |$.data.process.poller.busy.avg |0 | |
-ROW |48131 |28575 |1 |12 |$.data.process['preprocessing manager'].busy.avg |0 | |
-ROW |48132 |28576 |1 |12 |$.data.process['preprocessing worker'].busy.avg |0 | |
-ROW |48133 |28577 |1 |12 |$.data.process['proxy poller'].busy.avg |0 | |
-ROW |48134 |28578 |1 |12 |$.data.process['self-monitoring'].busy.avg |0 | |
-ROW |48135 |28579 |1 |12 |$.data.process['snmp trapper'].busy.avg |0 | |
-ROW |48136 |28580 |1 |12 |$.data.process['task manager'].busy.avg |0 | |
-ROW |48137 |28581 |1 |12 |$.data.process.trapper.busy.avg |0 | |
-ROW |48138 |28582 |1 |12 |$.data.process['lld manager'].busy.avg |0 | |
-ROW |48139 |28583 |1 |12 |$.data.process['lld worker'].busy.avg |0 | |
-ROW |48140 |28584 |1 |12 |$.data.lld_queue |0 | |
-ROW |48141 |29821 |1 |12 |$.data.process['alert syncer'].busy.avg |0 | |
-ROW |48142 |31053 |1 |12 |$.data.version |0 | |
-ROW |48143 |31053 |2 |20 |1d |0 | |
-ROW |48144 |10067 |1 |10 | |0 | |
-ROW |48145 |10068 |1 |10 | |0 | |
-ROW |48146 |10069 |1 |10 | |0 | |
-ROW |48147 |10070 |1 |10 | |0 | |
-ROW |48148 |10071 |1 |10 | |0 | |
-ROW |48149 |10072 |1 |10 | |0 | |
-ROW |48150 |23340 |1 |10 | |0 | |
-ROW |48151 |10061 |1 |10 | |0 | |
-ROW |48152 |10062 |1 |10 | |0 | |
-ROW |48153 |10063 |1 |10 | |0 | |
-ROW |48154 |10064 |1 |10 | |0 | |
-ROW |48155 |10065 |1 |10 | |0 | |
-ROW |48156 |10066 |1 |10 | |0 | |
-ROW |48157 |22187 |1 |10 | |0 | |
-ROW |48158 |22196 |1 |10 | |0 | |
-ROW |48159 |22199 |1 |10 | |0 | |
-ROW |48160 |10073 |1 |10 | |0 | |
-ROW |48161 |10074 |1 |10 | |0 | |
-ROW |48162 |10075 |1 |10 | |0 | |
-ROW |48163 |10076 |1 |10 | |0 | |
-ROW |48164 |10077 |1 |10 | |0 | |
-ROW |48165 |10078 |1 |10 | |0 | |
-ROW |48166 |23277 |1 |10 | |0 | |
-ROW |48167 |23625 |1 |10 | |0 | |
-ROW |48168 |23628 |1 |10 | |0 | |
-ROW |48169 |22920 |1 |10 | |0 | |
-ROW |48170 |22924 |1 |10 | |0 | |
-ROW |48171 |22945 |1 |10 | |0 | |
-ROW |48172 |22945 |2 |1 |8 |0 | |
-ROW |48173 |22946 |1 |10 | |0 | |
-ROW |48174 |22946 |2 |1 |8 |0 | |
-ROW |48175 |22880 |1 |10 | |0 | |
-ROW |48176 |22884 |1 |10 | |0 | |
-ROW |48177 |23073 |1 |10 | |0 | |
-ROW |48178 |23073 |2 |1 |8 |0 | |
-ROW |48179 |23074 |1 |10 | |0 | |
-ROW |48180 |23074 |2 |1 |8 |0 | |
-ROW |48181 |22985 |1 |10 | |0 | |
-ROW |48182 |22985 |2 |1 |8 |0 | |
-ROW |48183 |22986 |1 |10 | |0 | |
-ROW |48184 |22986 |2 |1 |8 |0 | |
-ROW |48185 |23077 |1 |10 | |0 | |
-ROW |48186 |23077 |2 |1 |8 |0 | |
-ROW |48187 |23078 |1 |10 | |0 | |
-ROW |48188 |23078 |2 |1 |8 |0 | |
-ROW |48189 |22840 |1 |10 | |0 | |
-ROW |48190 |22844 |1 |10 | |0 | |
-ROW |48191 |23075 |1 |10 | |0 | |
-ROW |48192 |23075 |2 |1 |8 |0 | |
-ROW |48193 |23076 |1 |10 | |0 | |
-ROW |48194 |23076 |2 |1 |8 |0 | |
-ROW |48195 |23000 |1 |10 | |0 | |
-ROW |48196 |23004 |1 |10 | |0 | |
-ROW |48197 |23025 |1 |10 | |0 | |
-ROW |48198 |23025 |2 |1 |8 |0 | |
-ROW |48199 |23026 |1 |10 | |0 | |
-ROW |48200 |23026 |2 |1 |8 |0 | |
-ROW |48201 |30821 |1 |5 |Ok\.&bsn;1 |2 |0 |
-ROW |48202 |30821 |2 |20 |10m |0 | |
-ROW |48203 |30822 |1 |20 |1d |0 | |
-ROW |48204 |30823 |1 |12 |$.data |0 | |
-ROW |48205 |30824 |1 |12 |$.data |0 | |
-ROW |48206 |30825 |1 |12 |$.data |0 | |
-ROW |48207 |30826 |1 |12 |$.data |0 | |
-ROW |48208 |30828 |1 |12 |$.data |0 | |
-ROW |48209 |30829 |1 |12 |$.data |0 | |
-ROW |48210 |30829 |2 |20 |1h |0 | |
-ROW |48211 |30830 |1 |12 |$.data |0 | |
-ROW |48212 |31054 |1 |20 |10m |0 | |
-ROW |48213 |30831 |1 |12 |$[?(@.metric == "Write")].value.first() |0 | |
-ROW |48214 |30832 |1 |12 |$[?(@.metric == "ReplicasSumQueueSize")].value.first() |0 | |
-ROW |48215 |30833 |1 |12 |$[?(@.data.event == "Query")].value.first() |2 |0 |
-ROW |48216 |30833 |2 |10 | |0 | |
-ROW |48217 |30834 |1 |12 |$[?(@.metric == "Read")].value.first() |0 | |
-ROW |48218 |30835 |1 |12 |$[?(@.event == "ReadCompressedBytes")].value.first() |2 |0 |
-ROW |48219 |30835 |2 |10 | |0 | |
-ROW |48220 |30836 |1 |12 |$[?(@.event == "ZooKeeperWaitMicroseconds")].value.first() |2 |0 |
-ROW |48221 |30836 |2 |1 |0.000001 |0 | |
-ROW |48222 |30836 |3 |10 | |0 | |
-ROW |48223 |30837 |1 |12 |$[?(@.metric == "ReplicasMaxAbsoluteDelay")].value.first() |0 | |
-ROW |48224 |30838 |1 |12 |$[?(@.metric == "ReadonlyReplica")].value.first() |0 | |
-ROW |48225 |30839 |1 |12 |$[?(@.metric == "Revision")].value.first() |0 | |
-ROW |48226 |30840 |1 |12 |$[?(@.event == "ZooKeeperOtherExceptions")].value.first() |2 |0 |
-ROW |48227 |30840 |2 |10 | |0 | |
-ROW |48228 |30841 |1 |12 |$[?(@.event == "SelectQuery")].value.first() |2 |0 |
-ROW |48229 |30841 |2 |10 | |0 | |
-ROW |48230 |30842 |1 |12 |$[?(@.event == "ZooKeeperUserExceptions")].value.first() |2 |0 |
-ROW |48231 |30842 |2 |10 | |0 | |
-ROW |48232 |30843 |1 |12 |$[?(@.metric == "ZooKeeperSession")].value.first() |0 | |
-ROW |48233 |30844 |1 |12 |$[?(@.metric == "ZooKeeperRequest")].value.first() |0 | |
-ROW |48234 |30845 |1 |12 |$[?(@.event == "ZooKeeperHardwareExceptions")].value.first() |2 |0 |
-ROW |48235 |30845 |2 |10 | |0 | |
-ROW |48236 |30846 |1 |12 |$[?(@.metric == "Uptime")].value.first() |0 | |
-ROW |48237 |30847 |1 |12 |$[?(@.metric == "Query")].value.first() |0 | |
-ROW |48238 |30848 |1 |12 |$[?(@.metric == "DistributedSend")].value.first() |0 | |
-ROW |48239 |30849 |1 |12 |$[?(@.metric == "HTTPConnection")].value.first() |0 | |
-ROW |48240 |30850 |1 |12 |$[?(@.metric == "jemalloc.allocated")].value.first() |0 | |
-ROW |48241 |30851 |1 |12 |$[?(@.metric == "InterserverConnection")].value.first() |0 | |
-ROW |48242 |30852 |1 |12 |$[?(@.metric == "MySQLConnection")].value.first() |2 |0 |
-ROW |48243 |30853 |1 |12 |$[?(@.metric == "TCPConnection")].value.first() |0 | |
-ROW |48244 |30854 |1 |12 |$[?(@.metric == "DistributedFilesToInsert")].value.first() |0 | |
-ROW |48245 |30855 |1 |12 |$[?(@.metric == "DistributedConnectionFailAtAll")].value.first() |2 |0 |
-ROW |48246 |30855 |2 |10 | |0 | |
-ROW |48247 |30856 |1 |12 |$[?(@.metric == "DistributedConnectionFailTry")].value.first() |2 |0 |
-ROW |48248 |30856 |2 |10 | |0 | |
-ROW |48249 |30857 |1 |12 |$[?(@.event == "InsertQuery")].value.first() |2 |0 |
-ROW |48250 |30857 |2 |10 | |0 | |
-ROW |48251 |30858 |1 |12 |$[?(@.metric == "DelayedInserts")].value.first() |0 | |
-ROW |48252 |30859 |1 |12 |$[?(@.event == "InsertedBytes")].value.first() |2 |0 |
-ROW |48253 |30859 |2 |10 | |0 | |
-ROW |48254 |30860 |1 |12 |$[?(@.event == "InsertedRows")].value.first() |2 |0 |
-ROW |48255 |30860 |2 |10 | |0 | |
-ROW |48256 |30861 |1 |12 |$[?(@.metric == "jemalloc.mapped")].value.first() |0 | |
-ROW |48257 |30862 |1 |12 |$[?(@.event == "NetworkErrors")].value.first() |2 |0 |
-ROW |48258 |30862 |2 |10 | |0 | |
-ROW |48259 |30863 |1 |12 |$[?(@.metric == "jemalloc.resident")].value.first() |0 | |
-ROW |48260 |30864 |1 |12 |$[?(@.metric == "MaxPartCountForPartition")].value.first() |0 | |
-ROW |48261 |30865 |1 |12 |$[?(@.metric == "MemoryTracking")].value.first() |0 | |
-ROW |48262 |30866 |1 |12 |$[?(@.metric == "MemoryTrackingInBackgroundProcessingPool")].value.first() |0 | |
-ROW |48263 |30867 |1 |12 |$[?(@.metric == "MemoryTrackingInBackgroundMoveProcessingPool")].value.first() |2 |0 |
-ROW |48264 |30868 |1 |12 |$[?(@.metric == "MemoryTrackingForMerges")].value.first() |0 | |
-ROW |48265 |30869 |1 |12 |$[?(@.metric == "MemoryTrackingInBackgroundSchedulePool")].value.first() |0 | |
-ROW |48266 |30870 |1 |12 |$[?(@.event == "MergedUncompressedBytes")].value.first() |2 |0 |
-ROW |48267 |30870 |2 |10 | |0 | |
-ROW |48268 |30871 |1 |12 |$[?(@.event == "MergedRows")].value.first() |2 |0 |
-ROW |48269 |30871 |2 |10 | |0 | |
-ROW |48270 |30872 |1 |12 |$[?(@.metric == "Merge")].value.first() |0 | |
-ROW |48271 |30873 |1 |12 |$[?(@.metric == "ZooKeeperWatch")].value.first() |0 | |
-ROW |48272 |30877 |1 |12 |$[?(@.name == "{#NAME}")].bytes_allocated.first() |0 | |
-ROW |48273 |30878 |1 |12 |$[?(@.name == "{#NAME}")].element_count.first() |0 | |
-ROW |48274 |30879 |1 |12 |$[?(@.name == "{#NAME}")].bytes_allocated.first() |0 | |
-ROW |48275 |30879 |2 |1 |100 |0 | |
-ROW |48276 |30880 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].active_replicas.first() |0 | |
-ROW |48277 |30881 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].future_parts.first() |0 | |
-ROW |48278 |30882 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].inserts_in_queue.first() |0 | |
-ROW |48279 |30883 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].is_readonly.first() |0 | |
-ROW |48280 |30884 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].is_session_expired.first() |0 | |
-ROW |48281 |30885 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].replica_lag.first() |0 | |
-ROW |48282 |30886 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].log_max_index.first() |0 | |
-ROW |48283 |30887 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].log_pointer.first() |0 | |
-ROW |48284 |30888 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].merges_in_queue.first() |0 | |
-ROW |48285 |30889 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].parts_to_check.first() |0 | |
-ROW |48286 |30890 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].queue_size.first() |0 | |
-ROW |48287 |30891 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].total_replicas.first() |0 | |
-ROW |48288 |30892 |1 |12 |$[?(@.database == "{#DB}")].bytes.sum() |0 | |
-ROW |48289 |30893 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].bytes.first() |0 | |
-ROW |48290 |30894 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].parts.first() |0 | |
-ROW |48291 |30895 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].rows.first() |0 | |
-ROW |48292 |31057 |1 |20 |10m |0 | |
-ROW |48293 |31059 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Latches' && @.counter_name=='Average Latch Wait Time Base')].cntr_value.first() |0 | |
-ROW |48294 |31060 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Access Methods' && @.counter_name=='Table Lock Escalations/sec')].cntr_value.first() |0 | |
-ROW |48295 |31060 |2 |10 | |0 | |
-ROW |48296 |31061 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Memory Manager' && @.counter_name=='Memory Grants Pending')].cntr_value.first() |0 | |
-ROW |48297 |31062 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Locks' && @.counter_name=='Number of Deadlocks/sec' && @.instance_name=='_Total')].cntr_value.first() |0 | |
-ROW |48298 |31062 |2 |10 | |0 | |
-ROW |48299 |31063 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:SQL Errors' && @.counter_name=='Errors/sec' && @.instance_name=='DB Offline Errors')].cntr_value.first() |0 | |
-ROW |48300 |31063 |2 |10 | |0 | |
-ROW |48301 |31064 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Buffer Manager' && @.counter_name=='Page life expectancy')].cntr_value.first() |0 | |
-ROW |48302 |31065 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Buffer Manager' && @.counter_name=='Page lookups/sec')].cntr_value.first() |0 | |
-ROW |48303 |31065 |2 |10 | |0 | |
-ROW |48304 |31066 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Buffer Manager' && @.counter_name=='Page reads/sec')].cntr_value.first() |0 | |
-ROW |48305 |31066 |2 |10 | |0 | |
-ROW |48306 |31067 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Access Methods' && @.counter_name=='Page Splits/sec')].cntr_value.first() |0 | |
-ROW |48307 |31067 |2 |10 | |0 | |
-ROW |48308 |31068 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Buffer Manager' && @.counter_name=='Page writes/sec')].cntr_value.first() |0 | |
-ROW |48309 |31068 |2 |10 | |0 | |
-ROW |48310 |31069 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:General Statistics' && @.counter_name=='Processes blocked')].cntr_value.first() |0 | |
-ROW |48311 |31070 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Buffer Manager' && @.counter_name=='Readahead pages/sec')].cntr_value.first() |0 | |
-ROW |48312 |31070 |2 |10 | |0 | |
-ROW |48313 |31071 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:SQL Statistics' && @.counter_name=='Safe Auto-Params/sec')].cntr_value.first() |0 | |
-ROW |48314 |31071 |2 |10 | |0 | |
-ROW |48315 |31072 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:SQL Statistics' && @.counter_name=='SQL Compilations/sec')].cntr_value.first() |0 | |
-ROW |48316 |31072 |2 |10 | |0 | |
-ROW |48317 |31073 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:SQL Statistics' && @.counter_name=='SQL Re-Compilations/sec')].cntr_value.first() |0 | |
-ROW |48318 |31073 |2 |10 | |0 | |
-ROW |48319 |31074 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Buffer Manager' && @.counter_name=='Target pages')].cntr_value.first() |0 | |
-ROW |48320 |31075 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Memory Manager' && @.counter_name=='Maximum Workspace Memory (KB)')].cntr_value.first() |0 | |
-ROW |48321 |31075 |2 |1 |1024 |0 | |
-ROW |48322 |31076 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Memory Manager' && @.counter_name=='Target Server Memory (KB)')].cntr_value.first() |0 | |
-ROW |48323 |31076 |2 |1 |1024 |0 | |
-ROW |48324 |31077 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Latches' && @.counter_name=='Total Latch Wait Time (ms)')].cntr_value.first() |0 | |
-ROW |48325 |31077 |2 |10 | |0 | |
-ROW |48326 |31078 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Memory Manager' && @.counter_name=='Total Server Memory (KB)')].cntr_value.first() |0 | |
-ROW |48327 |31078 |2 |1 |1024 |0 | |
-ROW |48328 |31079 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Transactions' && @.counter_name=='Transactions')].cntr_value.first() |0 | |
-ROW |48329 |31080 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Transactions/sec' && @.instance_name=='_Total')].cntr_value.first() |0 | |
-ROW |48330 |31080 |2 |10 | |0 | |
-ROW |48331 |31081 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:SQL Statistics' && @.counter_name=='Unsafe Auto-Params/sec')].cntr_value.first() |0 | |
-ROW |48332 |31081 |2 |10 | |0 | |
-ROW |48333 |31082 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}' && @.counter_name=='Uptime')].cntr_value.first() |0 | |
-ROW |48334 |31083 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:General Statistics' && @.counter_name=='User Connections')].cntr_value.first() |0 | |
-ROW |48335 |31084 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:SQL Errors' && @.counter_name=='Errors/sec' && @.instance_name=='User Errors')].cntr_value.first() |0 | |
-ROW |48336 |31084 |2 |10 | |0 | |
-ROW |48337 |31085 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}' && @.counter_name=='Version')].instance_name.first() |0 | |
-ROW |48338 |31085 |2 |20 |1d |0 | |
-ROW |48339 |31086 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Access Methods' && @.counter_name=='Workfiles Created/sec')].cntr_value.first() |0 | |
-ROW |48340 |31086 |2 |10 | |0 | |
-ROW |48341 |31087 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Access Methods' && @.counter_name=='Worktables Created/sec')].cntr_value.first() |0 | |
-ROW |48342 |31087 |2 |10 | |0 | |
-ROW |48343 |31088 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Access Methods' && @.counter_name=='WorktablesFromCacheRatio')].cntr_value.first() |0 | |
-ROW |48344 |31089 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Memory Manager' && @.counter_name=='Memory Grants Outstanding')].cntr_value.first() |0 | |
-ROW |48345 |31090 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:General Statistics' && @.counter_name=='Logouts/sec')].cntr_value.first() |0 | |
-ROW |48346 |31090 |2 |10 | |0 | |
-ROW |48347 |31091 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Latches' && @.counter_name=='Average Latch Wait Time (ms)')].cntr_value.first() |0 | |
-ROW |48348 |31092 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Access Methods' && @.counter_name=='Forwarded Records/sec')].cntr_value.first() |0 | |
-ROW |48349 |31092 |2 |10 | |0 | |
-ROW |48350 |31093 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Locks' && @.counter_name=='Average Wait Time Base' && @.instance_name=='_Total')].cntr_value.first() |0 | |
-ROW |48351 |31094 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Locks' && @.counter_name=='Average Wait Time (ms)' && @.instance_name=='_Total')].cntr_value.first() |0 | |
-ROW |48352 |31095 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:SQL Statistics' && @.counter_name=='Batch Requests/sec')].cntr_value.first() |0 | |
-ROW |48353 |31095 |2 |10 | |0 | |
-ROW |48354 |31096 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Buffer Manager' && @.counter_name=='BufferCacheHitRatio')].cntr_value.first() |0 | |
-ROW |48355 |31097 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Plan Cache' && @.counter_name=='CacheHitRatio' && @.instance_name=='_Total')].cntr_value.first() |0 | |
-ROW |48356 |31098 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Plan Cache' && @.counter_name=='Cache Object Counts' && @.instance_name=='_Total')].cntr_value.first() |0 | |
-ROW |48357 |31099 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Plan Cache' && @.counter_name=='Cache Objects in use' && @.instance_name=='_Total')].cntr_value.first() |0 | |
-ROW |48358 |31100 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Plan Cache' && @.counter_name=='Cache Pages' && @.instance_name=='_Total')].cntr_value.first() |0 | |
-ROW |48359 |31101 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Buffer Manager' && @.counter_name=='Checkpoint pages/sec')].cntr_value.first() |0 | |
-ROW |48360 |31101 |2 |10 | |0 | |
-ROW |48361 |31102 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Data File(s) Size (KB)' && @.instance_name=='_Total')].cntr_value.first() |0 | |
-ROW |48362 |31102 |2 |1 |1024 |0 | |
-ROW |48363 |31103 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Buffer Manager' && @.counter_name=='Database pages')].cntr_value.first() |0 | |
-ROW |48364 |31104 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:SQL Errors' && @.counter_name=='Errors/sec' && @.instance_name=='_Total')].cntr_value.first() |0 | |
-ROW |48365 |31104 |2 |10 | |0 | |
-ROW |48366 |31105 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:SQL Statistics' && @.counter_name=='Failed Auto-Params/sec')].cntr_value.first() |0 | |
-ROW |48367 |31105 |2 |10 | |0 | |
-ROW |48368 |31106 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Buffer Manager' && @.counter_name=='Free list stalls/sec')].cntr_value.first() |0 | |
-ROW |48369 |31106 |2 |10 | |0 | |
-ROW |48370 |31107 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:General Statistics' && @.counter_name=='Logins/sec')].cntr_value.first() |0 | |
-ROW |48371 |31107 |2 |10 | |0 | |
-ROW |48372 |31108 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Access Methods' && @.counter_name=='Full Scans/sec')].cntr_value.first() |0 | |
-ROW |48373 |31108 |2 |10 | |0 | |
-ROW |48374 |31109 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Memory Manager' && @.counter_name=='Granted Workspace Memory (KB)')].cntr_value.first() |0 | |
-ROW |48375 |31109 |2 |1 |1024 |0 | |
-ROW |48376 |31110 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Access Methods' && @.counter_name=='Index Searches/sec')].cntr_value.first() |0 | |
-ROW |48377 |31110 |2 |10 | |0 | |
-ROW |48378 |31111 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:SQL Errors' && @.counter_name=='Errors/sec' && @.instance_name=='Info Errors')].cntr_value.first() |0 | |
-ROW |48379 |31111 |2 |10 | |0 | |
-ROW |48380 |31112 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:SQL Errors' && @.counter_name=='Errors/sec' && @.instance_name=='Kill Connection Errors')].cntr_value.first() |0 | |
-ROW |48381 |31112 |2 |10 | |0 | |
-ROW |48382 |31113 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Latches' && @.counter_name=='Latch Waits/sec')].cntr_value.first() |0 | |
-ROW |48383 |31113 |2 |10 | |0 | |
-ROW |48384 |31114 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Buffer Manager' && @.counter_name=='Lazy writes/sec')].cntr_value.first() |0 | |
-ROW |48385 |31114 |2 |10 | |0 | |
-ROW |48386 |31115 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Locks' && @.counter_name=='Lock Requests/sec' && @.instance_name=='_Total')].cntr_value.first() |0 | |
-ROW |48387 |31115 |2 |10 | |0 | |
-ROW |48388 |31116 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Locks' && @.counter_name=='Lock Timeouts/sec' && @.instance_name=='_Total')].cntr_value.first() |0 | |
-ROW |48389 |31116 |2 |10 | |0 | |
-ROW |48390 |31117 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Locks' && @.counter_name=='Lock Wait Time (ms)' && @.instance_name=='_Total')].cntr_value.first() |0 | |
-ROW |48391 |31117 |2 |10 | |0 | |
-ROW |48392 |31118 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Locks' && @.counter_name=='Lock Waits/sec' && @.instance_name=='_Total')].cntr_value.first() |0 | |
-ROW |48393 |31118 |2 |10 | |0 | |
-ROW |48394 |31119 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Log File(s) Size (KB)' && @.instance_name=='_Total')].cntr_value.first() |0 | |
-ROW |48395 |31119 |2 |1 |1024 |0 | |
-ROW |48396 |31120 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:SQL Statistics' && @.counter_name=='Auto-Param Attempts/sec')].cntr_value.first() |0 | |
-ROW |48397 |31120 |2 |10 | |0 | |
-ROW |48398 |31121 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Log File(s) Used Size (KB)' && @.instance_name=='_Total')].cntr_value.first() |0 | |
-ROW |48399 |31121 |2 |1 |1024 |0 | |
-ROW |48400 |31122 |1 |20 |1d |0 | |
-ROW |48401 |31123 |1 |20 |1d |0 | |
-ROW |48402 |31124 |1 |20 |1d |0 | |
-ROW |48403 |31125 |1 |20 |1d |0 | |
-ROW |48404 |31126 |1 |20 |1d |0 | |
-ROW |48405 |31127 |1 |20 |1d |0 | |
-ROW |48406 |31133 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}')].primary_recovery_health.first() |0 | |
-ROW |48407 |31133 |2 |20 |1h |0 | |
-ROW |48408 |31134 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}')].primary_replica.first() |0 | |
-ROW |48409 |31134 |2 |19 | |0 | |
-ROW |48410 |31135 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}')].secondary_recovery_health.first() |0 | |
-ROW |48411 |31135 |2 |20 |1h |0 | |
-ROW |48412 |31136 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}')].synchronization_health.first() |0 | |
-ROW |48413 |31136 |2 |20 |1h |0 | |
-ROW |48414 |31137 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Active Transactions' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
-ROW |48415 |31138 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Data File(s) Size (KB)' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
-ROW |48416 |31138 |2 |1 |1024 |0 | |
-ROW |48417 |31139 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Log Bytes Flushed/sec' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
-ROW |48418 |31139 |2 |10 | |0 | |
-ROW |48419 |31140 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Log File(s) Size (KB)' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
-ROW |48420 |31140 |2 |1 |1024 |0 | |
-ROW |48421 |31141 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Log File(s) Used Size (KB)' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
-ROW |48422 |31141 |2 |1 |1024 |0 | |
-ROW |48423 |31142 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Log Flush Wait Time' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
-ROW |48424 |31142 |2 |10 | |0 | |
-ROW |48425 |31143 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Log Flush Waits/sec' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
-ROW |48426 |31143 |2 |10 | |0 | |
-ROW |48427 |31144 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Log Flushes/sec' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
-ROW |48428 |31144 |2 |10 | |0 | |
-ROW |48429 |31145 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Log Growths' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
-ROW |48430 |31146 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Log Shrinks' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
-ROW |48431 |31147 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Log Truncations' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
-ROW |48432 |31148 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Percent Log Used' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
-ROW |48433 |31149 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='State' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
-ROW |48434 |31149 |2 |20 |15m |0 | |
-ROW |48435 |31150 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Transactions/sec' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
-ROW |48436 |31150 |2 |10 | |0 | |
-ROW |48437 |31151 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}' && @.dbname=='{#DBNAME}')].is_suspended.first() |0 | |
-ROW |48438 |31151 |2 |20 |1h |0 | |
-ROW |48439 |31152 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}' && @.dbname=='{#DBNAME}')].database_state.first() |0 | |
-ROW |48440 |31152 |2 |20 |1h |0 | |
-ROW |48441 |31153 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}' && @.dbname=='{#DBNAME}')].synchronization_health.first() |0 | |
-ROW |48442 |31153 |2 |20 |1h |0 | |
-ROW |48443 |31154 |1 |12 |$[?(@.dbname=='{#DBNAME}')].mirroring_role_sequence.first() |0 | |
-ROW |48444 |31154 |2 |9 | |0 | |
-ROW |48445 |31155 |1 |12 |$[?(@.dbname=='{#DBNAME}')].mirroring_role.first() |0 | |
-ROW |48446 |31155 |2 |20 |1h |0 | |
-ROW |48447 |31156 |1 |12 |$[?(@.dbname=='{#DBNAME}')].mirroring_safety_level.first() |0 | |
-ROW |48448 |31156 |2 |20 |1h |0 | |
-ROW |48449 |31157 |1 |12 |$[?(@.dbname=='{#DBNAME}')].mirroring_state.first() |0 | |
-ROW |48450 |31157 |2 |20 |1h |0 | |
-ROW |48451 |31158 |1 |12 |$[?(@.dbname=='{#DBNAME}')].mirroring_witness_state.first() |0 | |
-ROW |48452 |31158 |2 |20 |1h |0 | |
-ROW |48453 |31159 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}' && @.dbname=='{#DBNAME}')].log_send_queue_size.first() |0 | |
-ROW |48454 |31159 |2 |1 |1024 |0 | |
-ROW |48455 |31159 |3 |20 |1h |0 | |
-ROW |48456 |31160 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}' && @.dbname=='{#DBNAME}')].redo_queue_size.first() |0 | |
-ROW |48457 |31160 |2 |1 |1024 |0 | |
-ROW |48458 |31160 |3 |20 |1h |0 | |
-ROW |48459 |31161 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}')].connected_state.first() |0 | |
-ROW |48460 |31161 |2 |20 |1h |0 | |
-ROW |48461 |31162 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}')].is_local.first() |0 | |
-ROW |48462 |31162 |2 |20 |1h |0 | |
-ROW |48463 |31163 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}')].join_state.first() |0 | |
-ROW |48464 |31163 |2 |20 |1h |0 | |
-ROW |48465 |31164 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}')].operational_state.first() |0 | |
-ROW |48466 |31164 |2 |20 |1h |0 | |
-ROW |48467 |31165 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}')].recovery_health.first() |0 | |
-ROW |48468 |31165 |2 |20 |1h |0 | |
-ROW |48469 |31166 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}')].role.first() |0 | |
-ROW |48470 |31166 |2 |20 |1h |0 | |
-ROW |48471 |31167 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}')].synchronization_health.first() |0 | |
-ROW |48472 |31167 |2 |20 |1h |0 | |
-ROW |48473 |30431 |1 |5 |(Server version)\s+(.+)&bsn;\2 |0 | |
-ROW |48474 |30431 |2 |20 |1d |0 | |
-ROW |48475 |30432 |1 |21 |return value.indexOf('is alive') !== -1 ? 1 : 0; |0 | |
-ROW |48476 |30432 |2 |20 |10m |0 | |
-ROW |48477 |30436 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_reads']/field[@name='Value']/text() |0 | |
-ROW |48478 |30437 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_reads']/field[@name='Value']/text() |0 | |
-ROW |48479 |30437 |2 |10 | |0 | |
-ROW |48480 |30438 |1 |11 |/resultset/row[field/text()='Innodb_row_lock_time']/field[@name='Value']/text() |0 | |
-ROW |48481 |30438 |2 |1 |0.001 |0 | |
-ROW |48482 |30438 |3 |20 |1h |0 | |
-ROW |48483 |30439 |1 |11 |/resultset/row[field/text()='Innodb_row_lock_time_max']/field[@name='Value']/text() |0 | |
-ROW |48484 |30439 |2 |1 |0.001 |0 | |
-ROW |48485 |30439 |3 |20 |1h |0 | |
-ROW |48486 |30440 |1 |11 |/resultset/row[field/text()='Innodb_row_lock_waits']/field[@name='Value']/text() |0 | |
-ROW |48487 |30441 |1 |11 |/resultset/row[field/text()='Max_used_connections']/field[@name='Value']/text() |0 | |
-ROW |48488 |30441 |2 |20 |1h |0 | |
-ROW |48489 |30442 |1 |11 |/resultset/row[field/text()='Queries']/field[@name='Value']/text() |0 | |
-ROW |48490 |30442 |2 |10 | |0 | |
-ROW |48491 |30443 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_read_requests']/field[@name='Value']/text() |0 | |
-ROW |48492 |30444 |1 |11 |/resultset/row[field/text()='Questions']/field[@name='Value']/text() |0 | |
-ROW |48493 |30444 |2 |10 | |0 | |
-ROW |48494 |30445 |1 |11 |/resultset/row[field/text()='Slow_queries']/field[@name='Value']/text() |0 | |
-ROW |48495 |30445 |2 |10 | |0 | |
-ROW |48496 |30446 |1 |11 |/resultset/row[field/text()='Threads_cached']/field[@name='Value']/text() |0 | |
-ROW |48497 |30447 |1 |11 |/resultset/row[field/text()='Threads_connected']/field[@name='Value']/text() |0 | |
-ROW |48498 |30449 |1 |11 |/resultset/row[field/text()='Threads_running']/field[@name='Value']/text() |0 | |
-ROW |48499 |30450 |1 |11 |/resultset/row[field/text()='Uptime']/field[@name='Value']/text() |0 | |
-ROW |48500 |30451 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_read_requests']/field[@name='Value']/text() |0 | |
-ROW |48501 |30451 |2 |10 | |0 | |
-ROW |48502 |30452 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_pages_total']/field[@name='Value']/text() |0 | |
-ROW |48503 |30452 |2 |20 |1h |0 | |
-ROW |48504 |30453 |1 |11 |/resultset/row[field/text()='Bytes_received']/field[@name='Value']/text() |0 | |
-ROW |48505 |30453 |2 |10 | |0 | |
-ROW |48506 |30454 |1 |11 |/resultset/row[field/text()='Connection_errors_max_connections']/field[@name='Value']/text() |0 | |
-ROW |48507 |30454 |2 |10 | |0 | |
-ROW |48508 |30455 |1 |11 |/resultset/row[field/text()='Bytes_sent']/field[@name='Value']/text() |0 | |
-ROW |48509 |30455 |2 |10 | |0 | |
-ROW |48510 |30456 |1 |11 |/resultset/row[field/text()='Com_delete']/field[@name='Value']/text() |0 | |
-ROW |48511 |30456 |2 |10 | |0 | |
-ROW |48512 |30457 |1 |11 |/resultset/row[field/text()='Com_insert']/field[@name='Value']/text() |0 | |
-ROW |48513 |30457 |2 |10 | |0 | |
-ROW |48514 |30458 |1 |11 |/resultset/row[field/text()='Com_select']/field[@name='Value']/text() |0 | |
-ROW |48515 |30458 |2 |10 | |0 | |
-ROW |48516 |30459 |1 |11 |/resultset/row[field/text()='Com_update']/field[@name='Value']/text() |0 | |
-ROW |48517 |30459 |2 |10 | |0 | |
-ROW |48518 |30460 |1 |11 |/resultset/row[field/text()='Connection_errors_accept']/field[@name='Value']/text() |0 | |
-ROW |48519 |30460 |2 |10 | |0 | |
-ROW |48520 |30461 |1 |11 |/resultset/row[field/text()='Connection_errors_internal']/field[@name='Value']/text() |0 | |
-ROW |48521 |30461 |2 |10 | |0 | |
-ROW |48522 |30462 |1 |11 |/resultset/row[field/text()='Connection_errors_peer_address']/field[@name='Value']/text() |0 | |
-ROW |48523 |30462 |2 |10 | |0 | |
-ROW |48524 |30463 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_pages_free']/field[@name='Value']/text() |0 | |
-ROW |48525 |30464 |1 |11 |/resultset/row[field/text()='Connection_errors_select']/field[@name='Value']/text() |0 | |
-ROW |48526 |30464 |2 |10 | |0 | |
-ROW |48527 |30465 |1 |11 |/resultset/row[field/text()='Connection_errors_tcpwrap']/field[@name='Value']/text() |0 | |
-ROW |48528 |30465 |2 |10 | |0 | |
-ROW |48529 |30466 |1 |11 |/resultset/row[field/text()='Connections']/field[@name='Value']/text() |0 | |
-ROW |48530 |30466 |2 |10 | |0 | |
-ROW |48531 |30470 |1 |11 |/resultset/row[field/text()='Aborted_connects']/field[@name='Value']/text() |0 | |
-ROW |48532 |30470 |2 |10 | |0 | |
-ROW |48533 |30471 |1 |11 |/resultset/row[field/text()='Aborted_clients']/field[@name='Value']/text() |0 | |
-ROW |48534 |30471 |2 |10 | |0 | |
-ROW |48535 |31168 |1 |11 |/resultset/row[field/text()='Threads_created']/field[@name='Value']/text() |0 | |
-ROW |48536 |31168 |2 |10 | |0 | |
-ROW |48537 |31169 |1 |11 |/resultset/row[field/text()='Created_tmp_disk_tables']/field[@name='Value']/text() |0 | |
-ROW |48538 |31169 |2 |10 | |0 | |
-ROW |48539 |31170 |1 |11 |/resultset/row[field/text()='Created_tmp_files']/field[@name='Value']/text() |0 | |
-ROW |48540 |31170 |2 |10 | |0 | |
-ROW |48541 |31171 |1 |11 |/resultset/row[field/text()='Created_tmp_tables']/field[@name='Value']/text() |0 | |
-ROW |48542 |31171 |2 |10 | |0 | |
-ROW |48543 |30472 |1 |21 |return JSON.stringify(value.split("\n").map(function (name) {&bsn; return ({"{#DBNAME}": name});&bsn;})); |0 | |
-ROW |48544 |30472 |2 |20 |1d |0 | |
-ROW |48545 |30473 |1 |21 |var matches = value.match(/Master_Host.*>(.*)<.*/);&bsn;if (matches) {&bsn; return JSON.stringify([{"{#MASTERHOST}": matches[1]}]);&bsn;}&bsn;&bsn;return '[]'; |0 | |
-ROW |48546 |30473 |2 |20 |1d |0 | |
-ROW |48547 |30474 |1 |20 |1h |0 | |
-ROW |48548 |30476 |1 |11 |/resultset/row/field[@name='Seconds_Behind_Master']/text() |0 | |
-ROW |48549 |30476 |2 |20 |1h |0 | |
-ROW |48550 |30476 |3 |15 |null |3 |Replication is not performed. |
-ROW |48551 |30477 |1 |11 |/resultset/row/field[@name='Slave_IO_Running']/text() |0 | |
-ROW |48552 |30477 |2 |20 |1h |0 | |
-ROW |48553 |30478 |1 |11 |/resultset/row/field[@name='Slave_SQL_Running']/text() |0 | |
-ROW |48554 |30478 |2 |20 |1h |0 | |
-ROW |48555 |30637 |1 |20 |1d |0 | |
-ROW |48556 |30638 |1 |20 |10m |0 | |
-ROW |48557 |30642 |1 |12 |$.Innodb_buffer_pool_reads |0 | |
-ROW |48558 |30643 |1 |12 |$.Innodb_buffer_pool_reads |0 | |
-ROW |48559 |30643 |2 |10 | |0 | |
-ROW |48560 |30644 |1 |12 |$.Innodb_row_lock_time |0 | |
-ROW |48561 |30644 |2 |1 |0.001 |0 | |
-ROW |48562 |30644 |3 |20 |1h |0 | |
-ROW |48563 |30645 |1 |12 |$.Innodb_row_lock_time_max |0 | |
-ROW |48564 |30645 |2 |1 |0.001 |0 | |
-ROW |48565 |30645 |3 |20 |1h |0 | |
-ROW |48566 |30646 |1 |12 |$.Innodb_row_lock_waits |0 | |
-ROW |48567 |30647 |1 |12 |$.Max_used_connections |0 | |
-ROW |48568 |30647 |2 |20 |1h |0 | |
-ROW |48569 |30648 |1 |12 |$.Queries |0 | |
-ROW |48570 |30648 |2 |10 | |0 | |
-ROW |48571 |30649 |1 |12 |$.Innodb_buffer_pool_read_requests |0 | |
-ROW |48572 |30650 |1 |12 |$.Questions |0 | |
-ROW |48573 |30650 |2 |10 | |0 | |
-ROW |48574 |30651 |1 |12 |$.Slow_queries |0 | |
-ROW |48575 |30651 |2 |10 | |0 | |
-ROW |48576 |30652 |1 |12 |$.Threads_cached |0 | |
-ROW |48577 |30653 |1 |12 |$.Threads_connected |0 | |
-ROW |48578 |30655 |1 |12 |$.Threads_running |0 | |
-ROW |48579 |30656 |1 |12 |$.Uptime |0 | |
-ROW |48580 |30657 |1 |12 |$.Innodb_buffer_pool_read_requests |0 | |
-ROW |48581 |30657 |2 |10 | |0 | |
-ROW |48582 |30658 |1 |12 |$.Innodb_buffer_pool_pages_total |0 | |
-ROW |48583 |30658 |2 |20 |1h |0 | |
-ROW |48584 |30659 |1 |12 |$.Bytes_received |0 | |
-ROW |48585 |30659 |2 |10 | |0 | |
-ROW |48586 |30660 |1 |12 |$.Connection_errors_max_connections |0 | |
-ROW |48587 |30660 |2 |10 | |0 | |
-ROW |48588 |30661 |1 |12 |$.Bytes_sent |0 | |
-ROW |48589 |30661 |2 |10 | |0 | |
-ROW |48590 |30662 |1 |12 |$.Com_delete |0 | |
-ROW |48591 |30662 |2 |10 | |0 | |
-ROW |48592 |30663 |1 |12 |$.Com_insert |0 | |
-ROW |48593 |30663 |2 |10 | |0 | |
-ROW |48594 |30664 |1 |12 |$.Com_select |0 | |
-ROW |48595 |30664 |2 |10 | |0 | |
-ROW |48596 |30665 |1 |12 |$.Com_update |0 | |
-ROW |48597 |30665 |2 |10 | |0 | |
-ROW |48598 |30666 |1 |12 |$.Connection_errors_accept |0 | |
-ROW |48599 |30666 |2 |10 | |0 | |
-ROW |48600 |30667 |1 |12 |$.Connection_errors_internal |0 | |
-ROW |48601 |30667 |2 |10 | |0 | |
-ROW |48602 |30668 |1 |12 |$.Connection_errors_peer_address |0 | |
-ROW |48603 |30668 |2 |10 | |0 | |
-ROW |48604 |30669 |1 |12 |$.Innodb_buffer_pool_pages_free |0 | |
-ROW |48605 |30670 |1 |12 |$.Connection_errors_select |0 | |
-ROW |48606 |30670 |2 |10 | |0 | |
-ROW |48607 |30671 |1 |12 |$.Connection_errors_tcpwrap |0 | |
-ROW |48608 |30671 |2 |10 | |0 | |
-ROW |48609 |30672 |1 |12 |$.Connections |0 | |
-ROW |48610 |30672 |2 |10 | |0 | |
-ROW |48611 |30676 |1 |12 |$.Aborted_connects |0 | |
-ROW |48612 |30676 |2 |10 | |0 | |
-ROW |48613 |30677 |1 |12 |$.Aborted_clients |0 | |
-ROW |48614 |30677 |2 |10 | |0 | |
-ROW |48615 |31172 |1 |12 |$.Threads_created |0 | |
-ROW |48616 |31172 |2 |10 | |0 | |
-ROW |48617 |31173 |1 |12 |$.Created_tmp_disk_tables |0 | |
-ROW |48618 |31173 |2 |10 | |0 | |
-ROW |48619 |31174 |1 |12 |$.Created_tmp_files |0 | |
-ROW |48620 |31174 |2 |10 | |0 | |
-ROW |48621 |31175 |1 |12 |$.Created_tmp_tables |0 | |
-ROW |48622 |31175 |2 |10 | |0 | |
-ROW |48623 |30678 |1 |20 |1d |0 | |
-ROW |48624 |30679 |1 |20 |1d |0 | |
-ROW |48625 |30680 |1 |20 |1h |0 | |
-ROW |48626 |30682 |1 |12 |$.Seconds_Behind_Master |0 | |
-ROW |48627 |30682 |2 |14 |\d+ |3 |Replication is not performed. |
-ROW |48628 |30682 |3 |20 |1h |0 | |
-ROW |48629 |30683 |1 |12 |$.Slave_IO_Running |0 | |
-ROW |48630 |30683 |2 |20 |1h |0 | |
-ROW |48631 |30684 |1 |12 |$.Slave_SQL_Running |0 | |
-ROW |48632 |30684 |2 |20 |1h |0 | |
-ROW |48633 |30480 |1 |20 |1d |0 | |
-ROW |48634 |30481 |1 |20 |10m |0 | |
-ROW |48635 |30484 |1 |12 |$[?(@.Variable_name=='Innodb_row_lock_waits')].Value.first() |0 | |
-ROW |48636 |30485 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_read_requests')].Value.first() |0 | |
-ROW |48637 |30486 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_read_requests')].Value.first() |0 | |
-ROW |48638 |30486 |2 |10 | |0 | |
-ROW |48639 |30487 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_reads')].Value.first() |0 | |
-ROW |48640 |30488 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_reads')].Value.first() |0 | |
-ROW |48641 |30488 |2 |10 | |0 | |
-ROW |48642 |30489 |1 |12 |$[?(@.Variable_name=='Innodb_row_lock_time')].Value.first() |0 | |
-ROW |48643 |30489 |2 |1 |0.001 |0 | |
-ROW |48644 |30489 |3 |20 |1h |0 | |
-ROW |48645 |30490 |1 |12 |$[?(@.Variable_name=='Innodb_row_lock_time_max')].Value.first() |0 | |
-ROW |48646 |30490 |2 |1 |0.001 |0 | |
-ROW |48647 |30490 |3 |20 |1h |0 | |
-ROW |48648 |30491 |1 |12 |$[?(@.Variable_name=='Queries')].Value.first() |0 | |
-ROW |48649 |30491 |2 |10 | |0 | |
-ROW |48650 |30492 |1 |12 |$[?(@.Variable_name=='Max_used_connections')].Value.first() |0 | |
-ROW |48651 |30492 |2 |20 |1h |0 | |
-ROW |48652 |30493 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_pages_free')].Value.first() |0 | |
-ROW |48653 |30494 |1 |12 |$[?(@.Variable_name=='Questions')].Value.first() |0 | |
-ROW |48654 |30494 |2 |10 | |0 | |
-ROW |48655 |30495 |1 |12 |$[?(@.Variable_name=='Slow_queries')].Value.first() |0 | |
-ROW |48656 |30495 |2 |10 | |0 | |
-ROW |48657 |30496 |1 |12 |$[?(@.Variable_name=='Threads_cached')].Value.first() |0 | |
-ROW |48658 |30497 |1 |12 |$[?(@.Variable_name=='Threads_connected')].Value.first() |0 | |
-ROW |48659 |30499 |1 |12 |$[?(@.Variable_name=='Threads_running')].Value.first() |0 | |
-ROW |48660 |30500 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_pages_total')].Value.first() |0 | |
-ROW |48661 |30500 |2 |20 |1h |0 | |
-ROW |48662 |30503 |1 |12 |$[?(@.Variable_name=='Com_select')].Value.first() |0 | |
-ROW |48663 |30503 |2 |10 | |0 | |
-ROW |48664 |30504 |1 |12 |$[?(@.Variable_name=='Aborted_clients')].Value.first() |0 | |
-ROW |48665 |30504 |2 |10 | |0 | |
-ROW |48666 |30505 |1 |12 |$[?(@.Variable_name=='Aborted_connects')].Value.first() |0 | |
-ROW |48667 |30505 |2 |10 | |0 | |
-ROW |48668 |30506 |1 |12 |$[?(@.Variable_name=='Bytes_received')].Value.first() |0 | |
-ROW |48669 |30506 |2 |10 | |0 | |
-ROW |48670 |30507 |1 |12 |$[?(@.Variable_name=='Bytes_sent')].Value.first() |0 | |
-ROW |48671 |30507 |2 |10 | |0 | |
-ROW |48672 |30508 |1 |12 |$[?(@.Variable_name=='Com_delete')].Value.first() |0 | |
-ROW |48673 |30508 |2 |10 | |0 | |
-ROW |48674 |30509 |1 |12 |$[?(@.Variable_name=='Com_insert')].Value.first() |0 | |
-ROW |48675 |30509 |2 |10 | |0 | |
-ROW |48676 |30510 |1 |12 |$[?(@.Variable_name=='Com_update')].Value.first() |0 | |
-ROW |48677 |30510 |2 |10 | |0 | |
-ROW |48678 |30512 |1 |12 |$[?(@.Variable_name=='Connection_errors_accept')].Value.first() |0 | |
-ROW |48679 |30512 |2 |10 | |0 | |
-ROW |48680 |30513 |1 |12 |$[?(@.Variable_name=='Connection_errors_internal')].Value.first() |0 | |
-ROW |48681 |30513 |2 |10 | |0 | |
-ROW |48682 |30514 |1 |12 |$[?(@.Variable_name=='Connection_errors_max_connections')].Value.first() |0 | |
-ROW |48683 |30514 |2 |10 | |0 | |
-ROW |48684 |30515 |1 |12 |$[?(@.Variable_name=='Connection_errors_peer_address')].Value.first() |0 | |
-ROW |48685 |30515 |2 |10 | |0 | |
-ROW |48686 |30516 |1 |12 |$[?(@.Variable_name=='Connection_errors_select')].Value.first() |0 | |
-ROW |48687 |30516 |2 |10 | |0 | |
-ROW |48688 |30517 |1 |12 |$[?(@.Variable_name=='Connection_errors_tcpwrap')].Value.first() |0 | |
-ROW |48689 |30517 |2 |10 | |0 | |
-ROW |48690 |30518 |1 |12 |$[?(@.Variable_name=='Connections')].Value.first() |0 | |
-ROW |48691 |30518 |2 |10 | |0 | |
-ROW |48692 |30519 |1 |12 |$[?(@.Variable_name=='Uptime')].Value.first() |0 | |
-ROW |48693 |31176 |1 |12 |$[?(@.Variable_name=='Threads_created')].Value.first() |0 | |
-ROW |48694 |31176 |2 |10 | |0 | |
-ROW |48695 |31177 |1 |12 |$[?(@.Variable_name=='Created_tmp_disk_tables')].Value.first() |0 | |
-ROW |48696 |31177 |2 |10 | |0 | |
-ROW |48697 |31178 |1 |12 |$[?(@.Variable_name=='Created_tmp_tables')].Value.first() |0 | |
-ROW |48698 |31178 |2 |10 | |0 | |
-ROW |48699 |31179 |1 |12 |$[?(@.Variable_name=='Created_tmp_files')].Value.first() |0 | |
-ROW |48700 |31179 |2 |10 | |0 | |
-ROW |48701 |30520 |1 |20 |1d |0 | |
-ROW |48702 |30521 |1 |20 |1d |0 | |
-ROW |48703 |30522 |1 |20 |1h |0 | |
-ROW |48704 |30524 |1 |12 |$.[?(@.Master_Host=='{#MASTER_HOST}')]['Seconds_Behind_Master'].first() |0 | |
-ROW |48705 |30524 |2 |14 |\d+ |3 |Replication is not performed. |
-ROW |48706 |30524 |3 |20 |1h |0 | |
-ROW |48707 |30525 |1 |12 |$.[?(@.Master_Host=='{#MASTER_HOST}')]['Slave_IO_Running'].first() |0 | |
-ROW |48708 |30525 |2 |20 |1h |0 | |
-ROW |48709 |30526 |1 |12 |$.[?(@.Master_Host=='{#MASTER_HOST}')]['Slave_SQL_Running'].first() |0 | |
-ROW |48710 |30526 |2 |20 |1h |0 | |
-ROW |48711 |31364 |1 |20 |10m |0 | |
-ROW |48712 |31365 |1 |20 |10m |0 | |
-ROW |48713 |31370 |1 |12 |$..VERSION.first() |0 | |
-ROW |48714 |31370 |2 |20 |1d |0 | |
-ROW |48715 |31371 |1 |12 |$[?(@.METRIC=='SESSION::Lock rate')].VALUE.first() |0 | |
-ROW |48716 |31372 |1 |12 |$[?(@.METRIC=='SYS::Physical Writes Per Sec')].VALUE.first() |0 | |
-ROW |48717 |31373 |1 |12 |$[?(@.METRIC=='PROC::Procnum')].VALUE.first() |0 | |
-ROW |48718 |31374 |1 |12 |$[?(@.METRIC=='SYSPARAM::Processes')].VALUE.first() |0 | |
-ROW |48719 |31375 |1 |12 |$[?(@.METRIC=='REDO::Available')].VALUE.first() |0 | |
-ROW |48720 |31376 |1 |12 |$[?(@.METRIC=='SYS::Rows Per Sort')].VALUE.first() |0 | |
-ROW |48721 |31377 |1 |12 |$[?(@.METRIC=='SYS::SQL Service Response Time')].VALUE.first() |0 | |
-ROW |48722 |31377 |2 |1 |0.01 |0 | |
-ROW |48723 |31378 |1 |12 |$[?(@.METRIC=='SESSION::Active Background')].VALUE.first() |2 |0 |
-ROW |48724 |31379 |1 |12 |$[?(@.METRIC=='SESSION::Active User')].VALUE.first() |2 |0 |
-ROW |48725 |31380 |1 |12 |$[?(@.METRIC=='SESSION::Concurrency rate')].VALUE.first() |0 | |
-ROW |48726 |31381 |1 |12 |$[?(@.METRIC=='SESSION::Total')].VALUE.first() |0 | |
-ROW |48727 |31382 |1 |12 |$[?(@.METRIC=='SESSION::Inactive User')].VALUE.first() |2 |0 |
-ROW |48728 |31383 |1 |12 |$[?(@.METRIC=='SYSPARAM::Sessions')].VALUE.first() |0 | |
-ROW |48729 |31384 |1 |12 |$[?(@.METRIC=='SESSION::Long time locked')].VALUE.first() |0 | |
-ROW |48730 |31385 |1 |12 |$[?(@.METRIC=='SYS::User Rollbacks Per Sec')].VALUE.first() |0 | |
-ROW |48731 |31386 |1 |12 |$[?(@.METRIC=='SGA::Buffer_Cache')].VALUE.first() |2 |0 |
-ROW |48732 |31387 |1 |12 |$[?(@.METRIC=='SYS::Physical Write Bytes Per Sec')].VALUE.first() |0 | |
-ROW |48733 |31388 |1 |12 |$[?(@.METRIC=='SGA::Java Pool')].VALUE.first() |2 |0 |
-ROW |48734 |31389 |1 |12 |$[?(@.METRIC=='SGA::Large Pool')].VALUE.first() |2 |0 |
-ROW |48735 |31390 |1 |12 |$[?(@.METRIC=='SGA::Log_Buffer')].VALUE.first() |2 |0 |
-ROW |48736 |31391 |1 |12 |$[?(@.METRIC=='SGA::Shared Pool')].VALUE.first() |2 |0 |
-ROW |48737 |31392 |1 |12 |$[?(@.METRIC=='SYS::Shared Pool Free %')].VALUE.first() |0 | |
-ROW |48738 |31393 |1 |12 |$[?(@.METRIC=='SYS::Total Sorts Per User Call')].VALUE.first() |0 | |
-ROW |48739 |31394 |1 |12 |$[?(@.METRIC=='SYS::Temp Space Used')].VALUE.first() |0 | |
-ROW |48740 |31395 |1 |12 |$[?(@.METRIC=='PGA::Total Pga Allocated')].VALUE.first() |0 | |
-ROW |48741 |31396 |1 |12 |$[?(@.METRIC=='PGA::Total Freeable Pga Memory')].VALUE.first() |0 | |
-ROW |48742 |31397 |1 |12 |$[?(@.METRIC=='PGA::Total Pga Inuse')].VALUE.first() |0 | |
-ROW |48743 |31398 |1 |12 |$..UPTIME.first() |0 | |
-ROW |48744 |31399 |1 |12 |$[?(@.METRIC=='USER::Expire password')].VALUE.first() |0 | |
-ROW |48745 |31400 |1 |12 |$[?(@.METRIC=='SGA::Fixed_Sga')].VALUE.first() |2 |0 |
-ROW |48746 |31401 |1 |12 |$[?(@.METRIC=='SYS::Physical Read Bytes Per Sec')].VALUE.first() |0 | |
-ROW |48747 |31402 |1 |12 |$[?(@.METRIC=='SYS::Physical Reads Per Sec')].VALUE.first() |0 | |
-ROW |48748 |31403 |1 |12 |$[?(@.METRIC=='SYS::Enqueue Timeouts Per Sec')].VALUE.first() |0 | |
-ROW |48749 |31404 |1 |12 |$[?(@.METRIC=='SYS::Active Parallel Sessions')].VALUE.first() |0 | |
-ROW |48750 |31405 |1 |12 |$[?(@.METRIC=='SYS::Active Serial Sessions')].VALUE.first() |0 | |
-ROW |48751 |31406 |1 |12 |$[?(@.METRIC=='SYS::Average Active Sessions')].VALUE.first() |0 | |
-ROW |48752 |31407 |1 |12 |$..ARCHIVER.first() |0 | |
-ROW |48753 |31408 |1 |12 |$[?(@.METRIC=='SYS::Buffer Cache Hit Ratio')].VALUE.first() |0 | |
-ROW |48754 |31409 |1 |12 |$[?(@.METRIC=='SYS::Global Cache Blocks Corrupted')].VALUE.first() |0 | |
-ROW |48755 |31410 |1 |12 |$[?(@.METRIC=='SYS::Global Cache Blocks Lost')].VALUE.first() |0 | |
-ROW |48756 |31411 |1 |12 |$[?(@.METRIC=='SYS::Cursor Cache Hit Ratio')].VALUE.first() |0 | |
-ROW |48757 |31412 |1 |12 |$[?(@.METRIC=='SYS::Database CPU Time Ratio')].VALUE.first() |0 | |
-ROW |48758 |31413 |1 |12 |$[?(@.METRIC=='SYS::Database Wait Time Ratio')].VALUE.first() |0 | |
-ROW |48759 |31414 |1 |12 |$[?(@.METRIC=='DATAFILE::Count')].VALUE.first() |0 | |
-ROW |48760 |31415 |1 |12 |$[?(@.METRIC=='SYSPARAM::Db_Files')].VALUE.first() |0 | |
-ROW |48761 |31416 |1 |12 |$[?(@.METRIC=='SYS::Disk Sort Per Sec')].VALUE.first() |0 | |
-ROW |48762 |31417 |1 |12 |$[?(@.METRIC=='FRA::Number Of Files')].VALUE.first() |2 |0 |
-ROW |48763 |31418 |1 |12 |$[?(@.METRIC=='PGA::Aggregate Pga Target Parameter')].VALUE.first() |0 | |
-ROW |48764 |31419 |1 |12 |$[?(@.METRIC=='FRA::Restore Point')].VALUE.first() |0 | |
-ROW |48765 |31420 |1 |12 |$[?(@.METRIC=='FRA::Space Limit')].VALUE.first() |2 |0 |
-ROW |48766 |31421 |1 |12 |$[?(@.METRIC=='FRA::Space Reclaimable')].VALUE.first() |2 |0 |
-ROW |48767 |31422 |1 |12 |$[?(@.METRIC=='FRA::Space Used')].VALUE.first() |2 |0 |
-ROW |48768 |31423 |1 |12 |$[?(@.METRIC=='FRA::Usable Pct')].VALUE.first() |2 |0 |
-ROW |48769 |31424 |1 |12 |$[?(@.METRIC=='SYS::GC CR Block Received Per Second')].VALUE.first() |0 | |
-ROW |48770 |31425 |1 |12 |$..HOST_NAME.first() |0 | |
-ROW |48771 |31426 |1 |12 |$..INSTANCE_NAME.first() |0 | |
-ROW |48772 |31427 |1 |12 |$..STATUS.first() |0 | |
-ROW |48773 |31428 |1 |12 |$..INSTANCE_ROLE.first() |0 | |
-ROW |48774 |31429 |1 |12 |$[?(@.METRIC=='SYS::Library Cache Hit Ratio')].VALUE.first() |0 | |
-ROW |48775 |31430 |1 |12 |$[?(@.METRIC=='SYS::Logons Per Sec')].VALUE.first() |0 | |
-ROW |48776 |31431 |1 |12 |$[?(@.METRIC=='SYS::Long Table Scans Per Sec')].VALUE.first() |0 | |
-ROW |48777 |31432 |1 |12 |$[?(@.METRIC=='PGA::Global Memory Bound')].VALUE.first() |0 | |
-ROW |48778 |31433 |1 |12 |$[?(@.METRIC=='SYS::Memory Sorts Ratio')].VALUE.first() |0 | |
-ROW |48779 |31439 |1 |12 |$[?(@.DEST_NAME=='{#DEST_NAME}')].ERROR.first() |0 | |
-ROW |48780 |31440 |1 |12 |$[?(@.DEST_NAME=='{#DEST_NAME}')].LOG_SEQUENCE.first() |0 | |
-ROW |48781 |31441 |1 |12 |$[?(@.DEST_NAME=='{#DEST_NAME}')].STATUS.first() |0 | |
-ROW |48782 |31442 |1 |12 |$[?(@.DG_NAME=='{#DG_NAME}')].FREE_SIZE_BYTE.first() |0 | |
-ROW |48783 |31443 |1 |12 |$[?(@.DG_NAME=='{#DG_NAME}')].SIZE_BYTE.first() |0 | |
-ROW |48784 |31444 |1 |12 |$[?(@.DG_NAME=='{#DG_NAME}')].USED_PERCENT.first() |0 | |
-ROW |48785 |31445 |1 |12 |$[?(@.DBNAME=='{#DBNAME}')].FORCE_LOGGING.first() |0 | |
-ROW |48786 |31445 |2 |20 |15m |0 | |
-ROW |48787 |31446 |1 |12 |$[?(@.DBNAME=='{#DBNAME}')].LOG_MODE.first() |0 | |
-ROW |48788 |31446 |2 |20 |15m |0 | |
-ROW |48789 |31447 |1 |12 |$[?(@.DBNAME=='{#DBNAME}')].OPEN_MODE.first() |0 | |
-ROW |48790 |31447 |2 |20 |15m |0 | |
-ROW |48791 |31448 |1 |12 |$[?(@.DBNAME=='{#DBNAME}')].ROLE.first() |0 | |
-ROW |48792 |31448 |2 |20 |15m |0 | |
-ROW |48793 |31449 |1 |12 |$[?(@.DBNAME=='{#DBNAME}')].OPEN_MODE.first() |0 | |
-ROW |48794 |31449 |2 |20 |15m |0 | |
-ROW |48795 |31450 |1 |12 |$[?(@.TABLESPACE=='{#TABLESPACE}')].FREE_BYTES.first() |0 | |
-ROW |48796 |31451 |1 |12 |$[?(@.TABLESPACE=='{#TABLESPACE}')].MAX_BYTES.first() |0 | |
-ROW |48797 |31452 |1 |12 |$[?(@.TABLESPACE=='{#TABLESPACE}')].STATUS.first() |0 | |
-ROW |48798 |31453 |1 |12 |$[?(@.TABLESPACE=='{#TABLESPACE}')].USED_BYTES.first() |0 | |
-ROW |48799 |31454 |1 |12 |$[?(@.TABLESPACE=='{#TABLESPACE}')].USED_PCT.first() |0 | |
-ROW |48800 |28673 |1 |5 |Time:\s(\d+\.\d+)\sms&bsn;\1 |0 | |
-ROW |48801 |28674 |1 |21 |return value.search(/accepting connections/)>0 ? 1 : 0 |0 | |
-ROW |48802 |28674 |2 |20 |1h |0 | |
-ROW |48803 |28680 |1 |20 |1h |0 | |
-ROW |48804 |28685 |1 |20 |1d |0 | |
-ROW |48805 |28688 |1 |12 |$.idle |0 | |
-ROW |48806 |28689 |1 |12 |$.active |0 | |
-ROW |48807 |28690 |1 |12 |$.prepared |0 | |
-ROW |48808 |28691 |1 |12 |$.waiting |0 | |
-ROW |48809 |28692 |1 |12 |$.count |0 | |
-ROW |48810 |28693 |1 |12 |$.buffers_alloc |0 | |
-ROW |48811 |28693 |2 |10 | |0 | |
-ROW |48812 |28694 |1 |12 |$.buffers_backend |0 | |
-ROW |48813 |28694 |2 |10 | |0 | |
-ROW |48814 |28695 |1 |12 |$.checkpoint_write_time |0 | |
-ROW |48815 |28695 |2 |1 |0.001 |0 | |
-ROW |48816 |28695 |3 |10 | |0 | |
-ROW |48817 |28696 |1 |12 |$.buffers_backend_fsync |0 | |
-ROW |48818 |28696 |2 |10 | |0 | |
-ROW |48819 |28697 |1 |12 |$.buffers_checkpoint |0 | |
-ROW |48820 |28697 |2 |10 | |0 | |
-ROW |48821 |28698 |1 |12 |$.buffers_clean |0 | |
-ROW |48822 |28698 |2 |10 | |0 | |
-ROW |48823 |28699 |1 |12 |$.checkpoints_req |0 | |
-ROW |48824 |28699 |2 |10 | |0 | |
-ROW |48825 |28700 |1 |12 |$.checkpoints_timed |0 | |
-ROW |48826 |28700 |2 |10 | |0 | |
-ROW |48827 |28701 |1 |12 |$.checkpoint_write_time |0 | |
-ROW |48828 |28701 |2 |1 |0.001 |0 | |
-ROW |48829 |28701 |3 |10 | |0 | |
-ROW |48830 |28702 |1 |12 |$.maxwritten_clean |0 | |
-ROW |48831 |28702 |2 |10 | |0 | |
-ROW |48832 |28703 |1 |12 |$.waiting |0 | |
-ROW |48833 |28704 |1 |12 |$.active |0 | |
-ROW |48834 |28705 |1 |12 |$.idle |0 | |
-ROW |48835 |28706 |1 |12 |$.idle_in_transaction |0 | |
-ROW |48836 |28707 |1 |12 |$.prepared |0 | |
-ROW |48837 |28708 |1 |12 |$.total |0 | |
-ROW |48838 |28709 |1 |12 |$.total_pct |0 | |
-ROW |48839 |28710 |1 |12 |$.write |0 | |
-ROW |48840 |28710 |2 |10 | |0 | |
-ROW |48841 |28715 |1 |12 |$['{#DBNAME}'].conflicts |0 | |
-ROW |48842 |28715 |2 |10 | |0 | |
-ROW |48843 |28716 |1 |12 |$['{#DBNAME}'].total |0 | |
-ROW |48844 |28717 |1 |12 |$.seq |0 | |
-ROW |48845 |28717 |2 |10 | |0 | |
-ROW |48846 |28718 |1 |12 |$.idx |0 | |
-ROW |48847 |28718 |2 |10 | |0 | |
-ROW |48848 |28719 |1 |12 |$['{#DBNAME}'].tx_time_sum |0 | |
-ROW |48849 |28720 |1 |12 |$['{#DBNAME}'].tx_time_max |0 | |
-ROW |48850 |28721 |1 |12 |$['{#DBNAME}'].tx_slow_count |0 | |
-ROW |48851 |28722 |1 |12 |$['{#DBNAME}'].query_time_sum |0 | |
-ROW |48852 |28723 |1 |12 |$['{#DBNAME}'].query_time_max |0 | |
-ROW |48853 |28724 |1 |12 |$['{#DBNAME}'].query_slow_count |0 | |
-ROW |48854 |28725 |1 |12 |$['{#DBNAME}'].mro_time_sum |0 | |
-ROW |48855 |28726 |1 |12 |$['{#DBNAME}'].mro_time_max |0 | |
-ROW |48856 |28727 |1 |12 |$['{#DBNAME}'].mro_slow_count |0 | |
-ROW |48857 |28728 |1 |12 |$['{#DBNAME}'].blks_read |0 | |
-ROW |48858 |28728 |2 |10 | |0 | |
-ROW |48859 |28729 |1 |12 |$['{#DBNAME}'].deadlocks |0 | |
-ROW |48860 |28729 |2 |10 | |0 | |
-ROW |48861 |28730 |1 |12 |$['{#DBNAME}'].blks_hit |0 | |
-ROW |48862 |28730 |2 |10 | |0 | |
-ROW |48863 |28731 |1 |12 |$.prc_before_av |0 | |
-ROW |48864 |28732 |1 |12 |$['{#DBNAME}'].xact_rollback |0 | |
-ROW |48865 |28732 |2 |10 | |0 | |
-ROW |48866 |28733 |1 |12 |$['{#DBNAME}'].xact_commit |0 | |
-ROW |48867 |28733 |2 |10 | |0 | |
-ROW |48868 |28734 |1 |12 |$['{#DBNAME}'].tup_updated |0 | |
-ROW |48869 |28734 |2 |10 | |0 | |
-ROW |48870 |28735 |1 |12 |$['{#DBNAME}'].tup_returned |0 | |
-ROW |48871 |28735 |2 |10 | |0 | |
-ROW |48872 |28736 |1 |12 |$['{#DBNAME}'].tup_inserted |0 | |
-ROW |48873 |28736 |2 |10 | |0 | |
-ROW |48874 |28737 |1 |12 |$['{#DBNAME}'].tup_fetched |0 | |
-ROW |48875 |28737 |2 |10 | |0 | |
-ROW |48876 |28738 |1 |12 |$['{#DBNAME}'].tup_deleted |0 | |
-ROW |48877 |28738 |2 |10 | |0 | |
-ROW |48878 |28739 |1 |12 |$['{#DBNAME}'].temp_files |0 | |
-ROW |48879 |28739 |2 |10 | |0 | |
-ROW |48880 |28740 |1 |12 |$['{#DBNAME}'].temp_bytes |0 | |
-ROW |48881 |28740 |2 |10 | |0 | |
-ROW |48882 |28741 |1 |12 |$.prc_before_stop |0 | |
-ROW |48883 |31188 |1 |20 |1h |0 | |
-ROW |48884 |31197 |1 |12 |$.tup_fetched |0 | |
-ROW |48885 |31197 |2 |10 | |0 | |
-ROW |48886 |31198 |1 |12 |$.numbackends |0 | |
-ROW |48887 |31199 |1 |12 |$.deadlocks |0 | |
-ROW |48888 |31199 |2 |10 | |0 | |
-ROW |48889 |31200 |1 |12 |$.temp_bytes |0 | |
-ROW |48890 |31200 |2 |10 | |0 | |
-ROW |48891 |31201 |1 |12 |$.temp_files |0 | |
-ROW |48892 |31201 |2 |10 | |0 | |
-ROW |48893 |31202 |1 |12 |$.tup_deleted |0 | |
-ROW |48894 |31202 |2 |10 | |0 | |
-ROW |48895 |31203 |1 |12 |$.archived_count |0 | |
-ROW |48896 |31204 |1 |12 |$.tup_inserted |0 | |
-ROW |48897 |31204 |2 |10 | |0 | |
-ROW |48898 |31205 |1 |12 |$.tup_returned |0 | |
-ROW |48899 |31205 |2 |10 | |0 | |
-ROW |48900 |31206 |1 |12 |$.tup_updated |0 | |
-ROW |48901 |31206 |2 |10 | |0 | |
-ROW |48902 |31207 |1 |12 |$.xact_commit |0 | |
-ROW |48903 |31207 |2 |10 | |0 | |
-ROW |48904 |31208 |1 |12 |$.xact_rollback |0 | |
-ROW |48905 |31208 |2 |10 | |0 | |
-ROW |48906 |31209 |1 |12 |$.checksum_failures |0 | |
-ROW |48907 |31209 |2 |14 |^\d*$ |0 | |
-ROW |48908 |31209 |3 |10 | |2 |ZBX_NOTSUPPORTED: Checksum failures metric is supported only in PostgreSQL 12 or higher.|
-ROW |48909 |31210 |1 |12 |$.write |0 | |
-ROW |48910 |31211 |1 |12 |$.conflicts |0 | |
-ROW |48911 |31211 |2 |10 | |0 | |
-ROW |48912 |31212 |1 |12 |$.blk_read_time |0 | |
-ROW |48913 |31212 |2 |1 |0.001 |0 | |
-ROW |48914 |31213 |1 |12 |$.blks_read |0 | |
-ROW |48915 |31213 |2 |10 | |0 | |
-ROW |48916 |31214 |1 |12 |$.sync_time |0 | |
-ROW |48917 |31214 |2 |1 |0.001 |0 | |
-ROW |48918 |31214 |3 |10 | |0 | |
-ROW |48919 |31215 |1 |12 |$.failed_count |0 | |
-ROW |48920 |31216 |1 |12 |$.size_files |0 | |
-ROW |48921 |31217 |1 |12 |$.buffers_alloc |0 | |
-ROW |48922 |31217 |2 |10 | |0 | |
-ROW |48923 |31218 |1 |12 |$.buffers_backend_fsync |0 | |
-ROW |48924 |31218 |2 |10 | |0 | |
-ROW |48925 |31219 |1 |12 |$.buffers_backend |0 | |
-ROW |48926 |31219 |2 |10 | |0 | |
-ROW |48927 |31220 |1 |12 |$.buffers_checkpoint |0 | |
-ROW |48928 |31220 |2 |10 | |0 | |
-ROW |48929 |31221 |1 |12 |$.buffers_clean |0 | |
-ROW |48930 |31221 |2 |10 | |0 | |
-ROW |48931 |31222 |1 |12 |$.checkpoint_write_time |0 | |
-ROW |48932 |31222 |2 |1 |0.001 |0 | |
-ROW |48933 |31222 |3 |10 | |0 | |
-ROW |48934 |31223 |1 |12 |$.checkpoints_req |0 | |
-ROW |48935 |31223 |2 |10 | |0 | |
-ROW |48936 |31224 |1 |12 |$.checkpoints_timed |0 | |
-ROW |48937 |31224 |2 |10 | |0 | |
-ROW |48938 |31225 |1 |12 |$.maxwritten_clean |0 | |
-ROW |48939 |31225 |2 |10 | |0 | |
-ROW |48940 |31226 |1 |12 |$.active |0 | |
-ROW |48941 |31227 |1 |12 |$.blks_hit |0 | |
-ROW |48942 |31227 |2 |10 | |0 | |
-ROW |48943 |31228 |1 |12 |$.disabled |0 | |
-ROW |48944 |31229 |1 |12 |$.idle_in_transaction |0 | |
-ROW |48945 |31230 |1 |12 |$.idle |0 | |
-ROW |48946 |31231 |1 |12 |$.idle_in_transaction |0 | |
-ROW |48947 |31232 |1 |12 |$.idle_in_transaction_aborted |0 | |
-ROW |48948 |31233 |1 |12 |$.prepared |0 | |
-ROW |48949 |31234 |1 |12 |$.total |0 | |
-ROW |48950 |31235 |1 |12 |$.total_pct |0 | |
-ROW |48951 |31236 |1 |12 |$.waiting |0 | |
-ROW |48952 |31237 |1 |12 |$.blk_read_time |0 | |
-ROW |48953 |31237 |2 |1 |0.001 |0 | |
-ROW |48954 |31238 |1 |12 |$.count_files |0 | |
-ROW |48955 |31239 |1 |12 |$.write |0 | |
-ROW |48956 |31239 |2 |10 | |0 | |
-ROW |48957 |31244 |1 |12 |$['{#DBNAME}'].tup_returned |0 | |
-ROW |48958 |31244 |2 |10 | |0 | |
-ROW |48959 |31245 |1 |12 |$['{#DBNAME}'].shareupdateexclusive |0 | |
-ROW |48960 |31246 |1 |12 |$['{#DBNAME}'].sharerowexclusive |0 | |
-ROW |48961 |31247 |1 |12 |$['{#DBNAME}'].share |0 | |
-ROW |48962 |31248 |1 |12 |$['{#DBNAME}'].rowshare |0 | |
-ROW |48963 |31249 |1 |12 |$['{#DBNAME}'].rowexclusive |0 | |
-ROW |48964 |31250 |1 |12 |$['{#DBNAME}'].exclusive |0 | |
-ROW |48965 |31251 |1 |12 |$['{#DBNAME}'].accessshare |0 | |
-ROW |48966 |31252 |1 |12 |$['{#DBNAME}'].accessexclusive |0 | |
-ROW |48967 |31253 |1 |12 |$['{#DBNAME}'].xact_rollback |0 | |
-ROW |48968 |31253 |2 |10 | |0 | |
-ROW |48969 |31254 |1 |12 |$['{#DBNAME}'].xact_commit |0 | |
-ROW |48970 |31254 |2 |10 | |0 | |
-ROW |48971 |31255 |1 |12 |$['{#DBNAME}'].tup_updated |0 | |
-ROW |48972 |31255 |2 |10 | |0 | |
-ROW |48973 |31256 |1 |12 |$['{#DBNAME}'].tup_fetched |0 | |
-ROW |48974 |31256 |2 |10 | |0 | |
-ROW |48975 |31257 |1 |12 |$['{#DBNAME}'].tup_inserted |0 | |
-ROW |48976 |31257 |2 |10 | |0 | |
-ROW |48977 |31258 |1 |12 |$['{#DBNAME}'].tup_deleted |0 | |
-ROW |48978 |31258 |2 |10 | |0 | |
-ROW |48979 |31259 |1 |12 |$['{#DBNAME}'].temp_files |0 | |
-ROW |48980 |31259 |2 |10 | |0 | |
-ROW |48981 |31260 |1 |12 |$['{#DBNAME}'].temp_bytes |0 | |
-ROW |48982 |31260 |2 |10 | |0 | |
-ROW |48983 |31261 |1 |12 |$['{#DBNAME}'].numbackends |0 | |
-ROW |48984 |31262 |1 |12 |$['{#DBNAME}'].deadlocks |0 | |
-ROW |48985 |31262 |2 |10 | |0 | |
-ROW |48986 |31263 |1 |12 |$['{#DBNAME}'].conflicts |0 | |
-ROW |48987 |31263 |2 |10 | |0 | |
-ROW |48988 |31264 |1 |12 |$['{#DBNAME}'].checksum_failures |0 | |
-ROW |48989 |31264 |2 |14 |^\d*$ |0 | |
-ROW |48990 |31264 |3 |10 | |2 |ZBX_NOTSUPPORTED: Checksum failures metric is supported only in PostgreSQL 12 or higher.|
-ROW |48991 |31265 |1 |12 |$['{#DBNAME}'].blks_read |0 | |
-ROW |48992 |31265 |2 |10 | |0 | |
-ROW |48993 |31266 |1 |12 |$['{#DBNAME}'].blks_hit |0 | |
-ROW |48994 |31266 |2 |10 | |0 | |
-ROW |48995 |31267 |1 |12 |$['{#DBNAME}'].blk_write_time |0 | |
-ROW |48996 |31267 |2 |1 |0.001 |0 | |
-ROW |48997 |31267 |3 |10 | |0 | |
-ROW |48998 |31268 |1 |12 |$['{#DBNAME}'].blk_read_time |0 | |
-ROW |48999 |31268 |2 |1 |0.001 |0 | |
-ROW |49000 |31268 |3 |10 | |0 | |
-ROW |49001 |31269 |1 |12 |$['{#DBNAME}'].total |0 | |
-ROW |49002 |30273 |1 |20 |10m |0 | |
-ROW |49003 |30274 |1 |10 | |0 | |
-ROW |49004 |30275 |1 |20 |1h |0 | |
-ROW |49005 |30277 |1 |12 |$.Clients.blocked_clients |0 | |
-ROW |49006 |30278 |1 |12 |$.Server.tcp_port |0 | |
-ROW |49007 |30278 |2 |20 |1d |0 | |
-ROW |49008 |30279 |1 |12 |$.Stats.expired_keys |0 | |
-ROW |49009 |30280 |1 |12 |$.Stats.evicted_keys |0 | |
-ROW |49010 |30281 |1 |12 |$.Server.uptime_in_seconds |0 | |
-ROW |49011 |30282 |1 |12 |$.Server.redis_mode |0 | |
-ROW |49012 |30282 |2 |20 |1d |0 | |
-ROW |49013 |30283 |1 |12 |$.Server.redis_version |0 | |
-ROW |49014 |30283 |2 |20 |1d |0 | |
-ROW |49015 |30284 |1 |12 |$.Stats.instantaneous_ops_per_sec |0 | |
-ROW |49016 |30285 |1 |12 |$.Server.process_id |0 | |
-ROW |49017 |30285 |2 |20 |1d |0 | |
-ROW |49018 |30286 |1 |12 |$.Replication.role |0 | |
-ROW |49019 |30286 |2 |20 |1d |0 | |
-ROW |49020 |30287 |1 |12 |$.Replication.repl_backlog_size |0 | |
-ROW |49021 |30288 |1 |12 |$.Replication.repl_backlog_histlen |0 | |
-ROW |49022 |30289 |1 |12 |$.Stats.instantaneous_input_kbps |0 | |
-ROW |49023 |30289 |2 |1 |1024 |0 | |
-ROW |49024 |30290 |1 |12 |$.Stats.keyspace_hits |0 | |
-ROW |49025 |30291 |1 |12 |$.Stats.instantaneous_output_kbps |0 | |
-ROW |49026 |30291 |2 |1 |1024 |0 | |
-ROW |49027 |30292 |1 |12 |$.Replication.repl_backlog_active |0 | |
-ROW |49028 |30293 |1 |12 |$.Stats.keyspace_misses |0 | |
-ROW |49029 |30294 |1 |12 |$.Stats.latest_fork_usec |0 | |
-ROW |49030 |30294 |2 |1 |1.0E-5 |0 | |
-ROW |49031 |30295 |1 |12 |$.Stats.migrate_cached_sockets |0 | |
-ROW |49032 |30296 |1 |12 |$.Stats.pubsub_channels |0 | |
-ROW |49033 |30297 |1 |12 |$.Stats.pubsub_patterns |0 | |
-ROW |49034 |30298 |1 |12 |$.Stats.rejected_connections |0 | |
-ROW |49035 |30299 |1 |12 |$.Stats.sync_full |0 | |
-ROW |49036 |30300 |1 |12 |$.Stats.sync_partial_err |0 | |
-ROW |49037 |30301 |1 |12 |$.Stats.sync_partial_ok |0 | |
-ROW |49038 |30302 |1 |12 |$.Stats.total_commands_processed |0 | |
-ROW |49039 |30303 |1 |12 |$.Stats.total_connections_received |0 | |
-ROW |49040 |30304 |1 |12 |$.Stats.total_net_input_bytes |0 | |
-ROW |49041 |30305 |1 |12 |$.Replication.repl_backlog_first_byte_offset |0 | |
-ROW |49042 |30306 |1 |12 |$.Replication.connected_slaves |0 | |
-ROW |49043 |30307 |1 |12 |$.Replication.master_repl_offset |0 | |
-ROW |49044 |30308 |1 |12 |$.Memory.used_memory_rss |0 | |
-ROW |49045 |30309 |1 |21 |var clients = JSON.parse(value).Clients&bsn;return clients.client_recent_max_input_buffer &pipe;&pipe; clients.client_biggest_input_buf |0 | |
-ROW |49046 |30310 |1 |21 |var clients = JSON.parse(value).Clients&bsn;return clients.client_recent_max_output_buffer &pipe;&pipe; clients.client_longest_output_list |0 | |
-ROW |49047 |30311 |1 |12 |$.Cluster.cluster_enabled |0 | |
-ROW |49048 |30312 |1 |12 |$.maxclients |0 | |
-ROW |49049 |30312 |2 |20 |30m |0 | |
-ROW |49050 |30313 |1 |12 |$.CPU.used_cpu_sys |0 | |
-ROW |49051 |30314 |1 |12 |$.CPU.used_cpu_sys_children |0 | |
-ROW |49052 |30315 |1 |12 |$.CPU.used_cpu_user |0 | |
-ROW |49053 |30316 |1 |12 |$.CPU.used_cpu_user_children |0 | |
-ROW |49054 |30317 |1 |12 |$.Memory.mem_fragmentation_ratio |0 | |
-ROW |49055 |30318 |1 |12 |$.Memory.used_memory |0 | |
-ROW |49056 |30319 |1 |12 |$.Memory.used_memory_lua |0 | |
-ROW |49057 |30320 |1 |12 |$.Memory.used_memory_peak |0 | |
-ROW |49058 |30321 |1 |12 |$.Persistence.aof_current_rewrite_time_sec |0 | |
-ROW |49059 |30322 |1 |12 |$.Clients.connected_clients |0 | |
-ROW |49060 |30323 |1 |12 |$.Persistence.aof_enabled |0 | |
-ROW |49061 |30324 |1 |12 |$.Persistence.aof_last_bgrewrite_status |0 | |
-ROW |49062 |30324 |2 |6 | |0 | |
-ROW |49063 |30325 |1 |12 |$.Persistence.aof_last_rewrite_time_sec |0 | |
-ROW |49064 |30326 |1 |12 |$.Persistence.aof_last_write_status |0 | |
-ROW |49065 |30326 |2 |6 | |0 | |
-ROW |49066 |30327 |1 |12 |$.Persistence.aof_rewrite_in_progress |0 | |
-ROW |49067 |30328 |1 |12 |$.Persistence.aof_rewrite_scheduled |0 | |
-ROW |49068 |30329 |1 |12 |$.Persistence.loading |0 | |
-ROW |49069 |30330 |1 |12 |$.Persistence.rdb_bgsave_in_progress |0 | |
-ROW |49070 |30331 |1 |12 |$.Persistence.rdb_changes_since_last_save |0 | |
-ROW |49071 |30332 |1 |12 |$.Persistence.rdb_current_bgsave_time_sec |0 | |
-ROW |49072 |30333 |1 |12 |$.Persistence.rdb_last_bgsave_status |0 | |
-ROW |49073 |30333 |2 |6 | |0 | |
-ROW |49074 |30334 |1 |12 |$.Persistence.rdb_last_bgsave_time_sec |0 | |
-ROW |49075 |30335 |1 |12 |$.Persistence.rdb_last_save_time |0 | |
-ROW |49076 |30336 |1 |12 |$.Stats.total_net_output_bytes |0 | |
-ROW |49077 |30337 |1 |21 |return JSON.stringify(value > 0 ? [{'{#SINGLETON}': ''}] : []); |0 | |
-ROW |49078 |30338 |1 |21 |return JSON.stringify(Object.keys(JSON.parse(value).Keyspace)&bsn; .map(function (v){return {"{#DB}": v}})); |0 | |
-ROW |49079 |30339 |1 |12 |$.Server.redis_version |0 | |
-ROW |49080 |30339 |2 |21 |return JSON.stringify(parseInt(value.split('.')[0]) >= 4 ? [{'{#SINGLETON}': ''}] : []); |0 | |
-ROW |49081 |30340 |1 |12 |$.Server.redis_version |0 | |
-ROW |49082 |30340 |2 |21 |return JSON.stringify(parseInt(value.split('.')[0]) >= 5 ? [{'{#SINGLETON}': ''}] : []); |0 | |
-ROW |49083 |30341 |1 |21 |return JSON.stringify(JSON.parse(value).Persistence.aof_enabled === '1'&bsn; ? [{'{#SINGLETON}': ''}]&bsn; : []); |0 | |
-ROW |49084 |30342 |1 |21 |var repl = JSON.parse(value).Replication;&bsn;return JSON.stringify(Object.keys(repl)&bsn; .filter(function (v) {return v.match(/slave\d+/)})&bsn; .map(function (v){&bsn; return {"{#SLAVE_IP}": repl[v].ip, "{#SLAVE_PORT}": repl[v].port}&bsn; })); |0 | |
-ROW |49085 |30343 |1 |21 |return JSON.stringify(JSON.parse(value).Replication.role === 'slave'&bsn; ? [{'{#SINGLETON}': ''}]&bsn; : []); |0 | |
-ROW |49086 |30348 |1 |12 |$.Keyspace["{#DB}"].avg_ttl |0 | |
-ROW |49087 |30348 |2 |1 |0.001 |0 | |
-ROW |49088 |30349 |1 |12 |$.Keyspace["{#DB}"].expires |0 | |
-ROW |49089 |30350 |1 |12 |$.Keyspace["{#DB}"].keys |0 | |
-ROW |49090 |30351 |1 |12 |$.Memory.active_defrag_running |0 | |
-ROW |49091 |30352 |1 |12 |$.Persistence.rdb_last_cow_size |0 | |
-ROW |49092 |30353 |1 |12 |$.Stats.expired_time_cap_reached_count |0 | |
-ROW |49093 |30354 |1 |12 |$.Stats.expired_stale_perc |0 | |
-ROW |49094 |30355 |1 |12 |$.Stats.active_defrag_misses |0 | |
-ROW |49095 |30356 |1 |12 |$.Stats.active_defrag_key_misses |0 | |
-ROW |49096 |30357 |1 |12 |$.Stats.active_defrag_key_hits |0 | |
-ROW |49097 |30358 |1 |12 |$.Stats.active_defrag_hits |0 | |
-ROW |49098 |30359 |1 |12 |$.Server.executable |0 | |
-ROW |49099 |30359 |2 |20 |1d |0 | |
-ROW |49100 |30360 |1 |12 |$.Replication.second_repl_offset |0 | |
-ROW |49101 |30361 |1 |12 |$.Persistence.aof_last_cow_size |0 | |
-ROW |49102 |30362 |1 |12 |$.Memory.lazyfree_pending_objects |0 | |
-ROW |49103 |30363 |1 |12 |$.Memory.used_memory_startup |0 | |
-ROW |49104 |30364 |1 |12 |$.Memory.used_memory_peak_perc |0 | |
-ROW |49105 |30364 |2 |5 |(.+)%&bsn;\1 |0 | |
-ROW |49106 |30365 |1 |12 |$.Memory.used_memory_overhead |0 | |
-ROW |49107 |30366 |1 |12 |$.Memory.used_memory_dataset |0 | |
-ROW |49108 |30367 |1 |12 |$.Memory.used_memory_dataset_perc |0 | |
-ROW |49109 |30367 |2 |5 |(.+)%&bsn;\1 |0 | |
-ROW |49110 |30368 |1 |12 |$.Memory.total_system_memory |0 | |
-ROW |49111 |30369 |1 |12 |$.Memory.maxmemory |0 | |
-ROW |49112 |30370 |1 |12 |$.Memory.maxmemory_policy |0 | |
-ROW |49113 |30370 |2 |20 |1d |0 | |
-ROW |49114 |30371 |1 |12 |$.Stats.slave_expires_tracked_keys |0 | |
-ROW |49115 |30372 |1 |12 |$.Memory.allocator_active |0 | |
-ROW |49116 |30373 |1 |12 |$.Memory.mem_clients_normal |0 | |
-ROW |49117 |30374 |1 |12 |$.Memory.rss_overhead_ratio |0 | |
-ROW |49118 |30375 |1 |12 |$.Memory.rss_overhead_bytes |0 | |
-ROW |49119 |30376 |1 |12 |$.Memory.mem_replication_backlog |0 | |
-ROW |49120 |30377 |1 |12 |$.Memory.number_of_cached_scripts |0 | |
-ROW |49121 |30378 |1 |12 |$.Memory.mem_not_counted_for_evict |0 | |
-ROW |49122 |30379 |1 |12 |$.Memory.mem_clients_slaves |0 | |
-ROW |49123 |30380 |1 |12 |$.Memory.mem_aof_buffer |0 | |
-ROW |49124 |30381 |1 |12 |$.Memory.allocator_allocated |0 | |
-ROW |49125 |30382 |1 |12 |$.Memory.mem_fragmentation_bytes |0 | |
-ROW |49126 |30383 |1 |12 |$.Memory.allocator_rss_ratio |0 | |
-ROW |49127 |30384 |1 |12 |$.Memory.allocator_rss_bytes |0 | |
-ROW |49128 |30385 |1 |12 |$.Memory.allocator_resident |0 | |
-ROW |49129 |30386 |1 |12 |$.Memory.allocator_frag_ratio |0 | |
-ROW |49130 |30387 |1 |12 |$.Memory.allocator_frag_bytes |0 | |
-ROW |49131 |30388 |1 |12 |$.Memory.used_memory_scripts |0 | |
-ROW |49132 |30389 |1 |12 |$.Persistence.aof_base_size |0 | |
-ROW |49133 |30390 |1 |12 |$.Persistence.aof_buffer_length |0 | |
-ROW |49134 |30391 |1 |12 |$.Persistence.aof_current_size |0 | |
-ROW |49135 |30392 |1 |12 |$.Persistence.aof_delayed_fsync |0 | |
-ROW |49136 |30393 |1 |12 |$.Persistence.aof_pending_bio_fsync |0 | |
-ROW |49137 |30394 |1 |12 |$.Persistence.aof_pending_rewrite |0 | |
-ROW |49138 |30395 |1 |12 |$.Persistence.aof_rewrite_buffer_length |0 | |
-ROW |49139 |30396 |1 |21 |var repl = JSON.parse(value).Replication;&bsn;var res = Object.keys(repl)&bsn; .filter(function (v) {return v.match(/slave\d+/)})&bsn; .filter(function (v) {return (repl[v].ip === "{#SLAVE_IP}" && repl[v].port === "{#SLAVE_PORT}")})&bsn; .map(function (v) {return repl[v].offset})[0];&bsn;&bsn;if (res === undefined) {&bsn; throw 'Slave {#SLAVE_IP}:{#SLAVE_PORT} is no longer available.';&bsn;}&bsn;&bsn;return res; |0 | |
-ROW |49140 |30397 |1 |12 |$.Replication.master_host |0 | |
-ROW |49141 |30397 |2 |20 |1d |0 | |
-ROW |49142 |30398 |1 |12 |$.Replication.master_last_io_seconds_ago |0 | |
-ROW |49143 |30399 |1 |12 |$.Replication.master_link_status |0 | |
-ROW |49144 |30399 |2 |6 | |0 | |
-ROW |49145 |30400 |1 |12 |$.Replication.master_port |0 | |
-ROW |49146 |30400 |2 |20 |1d |0 | |
-ROW |49147 |30401 |1 |12 |$.Replication.master_sync_in_progress |0 | |
-ROW |49148 |30402 |1 |12 |$.Replication.slave_priority |0 | |
-ROW |49149 |30403 |1 |12 |$.Replication.slave_read_only |0 | |
-ROW |49150 |30403 |2 |20 |1d |0 | |
-ROW |49151 |30404 |1 |12 |$.Replication.slave_repl_offset |0 | |
-ROW |49152 |27152 |1 |20 |1h |0 | |
-ROW |49153 |29844 |1 |1 |0.01 |0 | |
-ROW |49154 |29845 |1 |20 |1h |0 | |
-ROW |49155 |29846 |1 |20 |1d |0 | |
-ROW |49156 |29847 |1 |20 |1h |0 | |
-ROW |49157 |29848 |1 |20 |1d |0 | |
-ROW |49158 |27199 |1 |20 |1h |0 | |
-ROW |49159 |27232 |1 |20 |1h |0 | |
-ROW |49160 |27268 |1 |20 |1h |0 | |
-ROW |49161 |27289 |1 |20 |1h |0 | |
-ROW |49162 |27340 |1 |20 |1h |0 | |
-ROW |49163 |27372 |1 |20 |1h |0 | |
-ROW |49164 |27469 |1 |20 |1h |0 | |
-ROW |49165 |27503 |1 |20 |1h |0 | |
-ROW |49166 |27539 |1 |20 |1h |0 | |
-ROW |49167 |27575 |1 |20 |1h |0 | |
-ROW |49168 |27638 |1 |20 |1h |0 | |
-ROW |49169 |27661 |1 |20 |1h |0 | |
-ROW |49170 |27741 |1 |20 |1h |0 | |
-ROW |49171 |27773 |1 |20 |1h |0 | |
-ROW |49172 |27807 |1 |20 |1h |0 | |
-ROW |49173 |27889 |1 |20 |1h |0 | |
-ROW |49174 |27926 |1 |20 |1h |0 | |
-ROW |49175 |27963 |1 |20 |1h |0 | |
-ROW |49176 |27993 |1 |20 |1h |0 | |
-ROW |49177 |28022 |1 |20 |1h |0 | |
-ROW |49178 |28137 |1 |20 |1h |0 | |
-ROW |49179 |28192 |1 |20 |1h |0 | |
-ROW |49180 |28240 |1 |20 |1h |0 | |
-ROW |49181 |28289 |1 |20 |1h |0 | |
-ROW |49182 |28337 |1 |20 |1h |0 | |
-ROW |49183 |28384 |1 |20 |1h |0 | |
-ROW |49184 |28461 |1 |20 |1h |0 | |
-ROW |49185 |28489 |1 |20 |1h |0 | |
-ROW |49186 |28964 |1 |20 |1h |0 | |
-ROW |49187 |29057 |1 |20 |1h |0 | |
-ROW |49188 |29834 |1 |1 |0.01 |0 | |
-ROW |49189 |29835 |1 |20 |1h |0 | |
-ROW |49190 |29836 |1 |20 |1d |0 | |
-ROW |49191 |29837 |1 |20 |1h |0 | |
-ROW |49192 |29838 |1 |20 |1d |0 | |
-ROW |49193 |29849 |1 |1 |0.01 |0 | |
-ROW |49194 |29850 |1 |20 |1h |0 | |
-ROW |49195 |29851 |1 |20 |1d |0 | |
-ROW |49196 |29852 |1 |20 |1h |0 | |
-ROW |49197 |29853 |1 |20 |1d |0 | |
-ROW |49198 |29854 |1 |1 |0.01 |0 | |
-ROW |49199 |29855 |1 |20 |1h |0 | |
-ROW |49200 |29856 |1 |20 |1d |0 | |
-ROW |49201 |29857 |1 |20 |1h |0 | |
-ROW |49202 |29858 |1 |20 |1d |0 | |
-ROW |49203 |29859 |1 |1 |0.01 |0 | |
-ROW |49204 |29860 |1 |20 |1h |0 | |
-ROW |49205 |29861 |1 |20 |1d |0 | |
-ROW |49206 |29862 |1 |20 |1h |0 | |
-ROW |49207 |29863 |1 |20 |1d |0 | |
-ROW |49208 |29864 |1 |1 |0.01 |0 | |
-ROW |49209 |29865 |1 |20 |1h |0 | |
-ROW |49210 |29866 |1 |20 |1d |0 | |
-ROW |49211 |29867 |1 |20 |1h |0 | |
-ROW |49212 |29868 |1 |20 |1d |0 | |
-ROW |49213 |29869 |1 |1 |0.01 |0 | |
-ROW |49214 |29870 |1 |20 |1h |0 | |
-ROW |49215 |29871 |1 |20 |1d |0 | |
-ROW |49216 |29872 |1 |20 |1h |0 | |
-ROW |49217 |29873 |1 |20 |1d |0 | |
-ROW |49218 |29874 |1 |1 |0.01 |0 | |
-ROW |49219 |29875 |1 |20 |1h |0 | |
-ROW |49220 |29876 |1 |20 |1d |0 | |
-ROW |49221 |29877 |1 |20 |1h |0 | |
-ROW |49222 |29878 |1 |20 |1d |0 | |
-ROW |49223 |29879 |1 |1 |0.01 |0 | |
-ROW |49224 |29880 |1 |20 |1h |0 | |
-ROW |49225 |29881 |1 |20 |1d |0 | |
-ROW |49226 |29882 |1 |20 |1h |0 | |
-ROW |49227 |29883 |1 |20 |1d |0 | |
-ROW |49228 |29884 |1 |1 |0.01 |0 | |
-ROW |49229 |29885 |1 |20 |1h |0 | |
-ROW |49230 |29886 |1 |20 |1d |0 | |
-ROW |49231 |29887 |1 |20 |1h |0 | |
-ROW |49232 |29888 |1 |20 |1d |0 | |
-ROW |49233 |29889 |1 |1 |0.01 |0 | |
-ROW |49234 |29890 |1 |20 |1h |0 | |
-ROW |49235 |29891 |1 |20 |1d |0 | |
-ROW |49236 |29892 |1 |20 |1h |0 | |
-ROW |49237 |29893 |1 |20 |1d |0 | |
-ROW |49238 |29894 |1 |1 |0.01 |0 | |
-ROW |49239 |29895 |1 |20 |1h |0 | |
-ROW |49240 |29896 |1 |20 |1d |0 | |
-ROW |49241 |29897 |1 |20 |1h |0 | |
-ROW |49242 |29898 |1 |20 |1d |0 | |
-ROW |49243 |29899 |1 |1 |0.01 |0 | |
-ROW |49244 |29900 |1 |20 |1h |0 | |
-ROW |49245 |29901 |1 |20 |1d |0 | |
-ROW |49246 |29902 |1 |20 |1h |0 | |
-ROW |49247 |29903 |1 |20 |1d |0 | |
-ROW |49248 |29904 |1 |1 |0.01 |0 | |
-ROW |49249 |29905 |1 |20 |1h |0 | |
-ROW |49250 |29906 |1 |20 |1d |0 | |
-ROW |49251 |29907 |1 |20 |1h |0 | |
-ROW |49252 |29908 |1 |20 |1d |0 | |
-ROW |49253 |29909 |1 |1 |0.01 |0 | |
-ROW |49254 |29910 |1 |20 |1h |0 | |
-ROW |49255 |29911 |1 |20 |1d |0 | |
-ROW |49256 |29912 |1 |20 |1h |0 | |
-ROW |49257 |29913 |1 |20 |1d |0 | |
-ROW |49258 |29914 |1 |1 |0.01 |0 | |
-ROW |49259 |29915 |1 |20 |1h |0 | |
-ROW |49260 |29916 |1 |20 |1d |0 | |
-ROW |49261 |29917 |1 |20 |1h |0 | |
-ROW |49262 |29918 |1 |20 |1d |0 | |
-ROW |49263 |29919 |1 |1 |0.01 |0 | |
-ROW |49264 |29920 |1 |20 |1h |0 | |
-ROW |49265 |29921 |1 |20 |1d |0 | |
-ROW |49266 |29922 |1 |20 |1h |0 | |
-ROW |49267 |29923 |1 |20 |1d |0 | |
-ROW |49268 |29924 |1 |1 |0.01 |0 | |
-ROW |49269 |29925 |1 |20 |1h |0 | |
-ROW |49270 |29926 |1 |20 |1d |0 | |
-ROW |49271 |29927 |1 |20 |1h |0 | |
-ROW |49272 |29928 |1 |20 |1d |0 | |
-ROW |49273 |29929 |1 |1 |0.01 |0 | |
-ROW |49274 |29930 |1 |20 |1h |0 | |
-ROW |49275 |29931 |1 |20 |1d |0 | |
-ROW |49276 |29932 |1 |20 |1h |0 | |
-ROW |49277 |29933 |1 |20 |1d |0 | |
-ROW |49278 |29934 |1 |1 |0.01 |0 | |
-ROW |49279 |29935 |1 |20 |1h |0 | |
-ROW |49280 |29936 |1 |20 |1d |0 | |
-ROW |49281 |29937 |1 |20 |1h |0 | |
-ROW |49282 |29938 |1 |20 |1d |0 | |
-ROW |49283 |29939 |1 |1 |0.01 |0 | |
-ROW |49284 |29940 |1 |20 |1h |0 | |
-ROW |49285 |29941 |1 |20 |1d |0 | |
-ROW |49286 |29942 |1 |20 |1h |0 | |
-ROW |49287 |29943 |1 |20 |1d |0 | |
-ROW |49288 |29944 |1 |1 |0.01 |0 | |
-ROW |49289 |29945 |1 |20 |1h |0 | |
-ROW |49290 |29946 |1 |20 |1d |0 | |
-ROW |49291 |29947 |1 |20 |1h |0 | |
-ROW |49292 |29948 |1 |20 |1d |0 | |
-ROW |49293 |29949 |1 |1 |0.01 |0 | |
-ROW |49294 |29950 |1 |20 |1h |0 | |
-ROW |49295 |29951 |1 |20 |1d |0 | |
-ROW |49296 |29952 |1 |20 |1h |0 | |
-ROW |49297 |29953 |1 |20 |1d |0 | |
-ROW |49298 |29954 |1 |1 |0.01 |0 | |
-ROW |49299 |29955 |1 |20 |1h |0 | |
-ROW |49300 |29956 |1 |20 |1d |0 | |
-ROW |49301 |29957 |1 |20 |1h |0 | |
-ROW |49302 |29958 |1 |20 |1d |0 | |
-ROW |49303 |29959 |1 |1 |0.01 |0 | |
-ROW |49304 |29960 |1 |20 |1h |0 | |
-ROW |49305 |29961 |1 |20 |1d |0 | |
-ROW |49306 |29962 |1 |20 |1h |0 | |
-ROW |49307 |29963 |1 |20 |1d |0 | |
-ROW |49308 |29964 |1 |1 |0.01 |0 | |
-ROW |49309 |29965 |1 |20 |1h |0 | |
-ROW |49310 |29966 |1 |20 |1d |0 | |
-ROW |49311 |29967 |1 |20 |1h |0 | |
-ROW |49312 |29968 |1 |20 |1d |0 | |
-ROW |49313 |29969 |1 |1 |0.01 |0 | |
-ROW |49314 |29970 |1 |20 |1h |0 | |
-ROW |49315 |29971 |1 |20 |1d |0 | |
-ROW |49316 |29972 |1 |20 |1h |0 | |
-ROW |49317 |29973 |1 |20 |1d |0 | |
-ROW |49318 |29974 |1 |1 |0.01 |0 | |
-ROW |49319 |29975 |1 |20 |1h |0 | |
-ROW |49320 |29976 |1 |20 |1d |0 | |
-ROW |49321 |29977 |1 |20 |1h |0 | |
-ROW |49322 |29978 |1 |20 |1d |0 | |
-ROW |49323 |29979 |1 |1 |0.01 |0 | |
-ROW |49324 |29980 |1 |20 |1h |0 | |
-ROW |49325 |29981 |1 |20 |1d |0 | |
-ROW |49326 |29982 |1 |20 |1h |0 | |
-ROW |49327 |29983 |1 |20 |1d |0 | |
-ROW |49328 |29984 |1 |1 |0.01 |0 | |
-ROW |49329 |29985 |1 |20 |1h |0 | |
-ROW |49330 |29986 |1 |20 |1d |0 | |
-ROW |49331 |29987 |1 |20 |1h |0 | |
-ROW |49332 |29988 |1 |20 |1d |0 | |
-ROW |49333 |29989 |1 |1 |0.01 |0 | |
-ROW |49334 |29990 |1 |20 |1h |0 | |
-ROW |49335 |29991 |1 |20 |1d |0 | |
-ROW |49336 |29992 |1 |20 |1h |0 | |
-ROW |49337 |29993 |1 |20 |1d |0 | |
-ROW |49338 |30050 |1 |20 |1d |0 | |
-ROW |49339 |30051 |1 |20 |1d |0 | |
-ROW |49340 |30052 |1 |20 |1h |0 | |
-ROW |49341 |30053 |1 |20 |1h |0 | |
-ROW |49342 |30054 |1 |20 |1h |0 | |
-ROW |49343 |30055 |1 |1 |0.01 |0 | |
-ROW |49344 |30142 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
-ROW |49345 |30143 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
-ROW |49346 |30144 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
-ROW |49347 |30145 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
-ROW |49348 |30146 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
-ROW |49349 |30157 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |49350 |30158 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |49351 |30161 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |49352 |30162 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |49353 |30163 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |49354 |30164 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |49355 |30167 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |49356 |30168 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |49357 |30169 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |49358 |30170 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |49359 |30173 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |49360 |30174 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |49361 |30175 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |49362 |30176 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |49363 |30179 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |49364 |30180 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |49365 |30181 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |49366 |30182 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |49367 |30185 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |49368 |30186 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |49369 |27079 |1 |10 | |0 | |
-ROW |49370 |27080 |1 |20 |1d |0 | |
-ROW |49371 |27082 |1 |10 | |0 | |
-ROW |49372 |27083 |1 |10 | |0 | |
-ROW |49373 |27084 |1 |10 | |0 | |
-ROW |49374 |27084 |2 |1 |8 |0 | |
-ROW |49375 |27085 |1 |10 | |0 | |
-ROW |49376 |27085 |2 |1 |8 |0 | |
-ROW |49377 |27086 |1 |10 | |0 | |
-ROW |49378 |27620 |1 |10 | |0 | |
-ROW |49379 |27621 |1 |10 | |0 | |
-ROW |49380 |27622 |1 |10 | |0 | |
-ROW |49381 |27622 |2 |1 |8 |0 | |
-ROW |49382 |27623 |1 |10 | |0 | |
-ROW |49383 |27624 |1 |10 | |0 | |
-ROW |49384 |27625 |1 |10 | |0 | |
-ROW |49385 |27625 |2 |1 |8 |0 | |
-ROW |49386 |27628 |1 |20 |1d |0 | |
-ROW |49387 |27977 |1 |10 | |0 | |
-ROW |49388 |27978 |1 |10 | |0 | |
-ROW |49389 |27979 |1 |10 | |0 | |
-ROW |49390 |27979 |2 |1 |8 |0 | |
-ROW |49391 |27980 |1 |10 | |0 | |
-ROW |49392 |27981 |1 |10 | |0 | |
-ROW |49393 |27982 |1 |10 | |0 | |
-ROW |49394 |27982 |2 |1 |8 |0 | |
-ROW |49395 |27985 |1 |20 |1d |0 | |
-ROW |49396 |28006 |1 |10 | |0 | |
-ROW |49397 |28007 |1 |10 | |0 | |
-ROW |49398 |28008 |1 |10 | |0 | |
-ROW |49399 |28008 |2 |1 |8 |0 | |
-ROW |49400 |28009 |1 |10 | |0 | |
-ROW |49401 |28010 |1 |10 | |0 | |
-ROW |49402 |28011 |1 |10 | |0 | |
-ROW |49403 |28011 |2 |1 |8 |0 | |
-ROW |49404 |28014 |1 |20 |1d |0 | |
-ROW |49405 |27099 |1 |10 | |0 | |
-ROW |49406 |27100 |1 |20 |1d |0 | |
-ROW |49407 |27101 |1 |1 |1000000 |0 | |
-ROW |49408 |27101 |2 |20 |1h |0 | |
-ROW |49409 |27102 |1 |10 | |0 | |
-ROW |49410 |27103 |1 |10 | |0 | |
-ROW |49411 |27104 |1 |10 | |0 | |
-ROW |49412 |27104 |2 |1 |8 |0 | |
-ROW |49413 |27105 |1 |10 | |0 | |
-ROW |49414 |27105 |2 |1 |8 |0 | |
-ROW |49415 |27106 |1 |10 | |0 | |
-ROW |49416 |27181 |1 |10 | |0 | |
-ROW |49417 |27182 |1 |10 | |0 | |
-ROW |49418 |27183 |1 |10 | |0 | |
-ROW |49419 |27183 |2 |1 |8 |0 | |
-ROW |49420 |27184 |1 |10 | |0 | |
-ROW |49421 |27185 |1 |10 | |0 | |
-ROW |49422 |27186 |1 |10 | |0 | |
-ROW |49423 |27186 |2 |1 |8 |0 | |
-ROW |49424 |27187 |1 |1 |1000000 |0 | |
-ROW |49425 |27187 |2 |20 |1h |0 | |
-ROW |49426 |27189 |1 |20 |1d |0 | |
-ROW |49427 |27216 |1 |10 | |0 | |
-ROW |49428 |27217 |1 |10 | |0 | |
-ROW |49429 |27218 |1 |10 | |0 | |
-ROW |49430 |27218 |2 |1 |8 |0 | |
-ROW |49431 |27219 |1 |10 | |0 | |
-ROW |49432 |27220 |1 |10 | |0 | |
-ROW |49433 |27221 |1 |10 | |0 | |
-ROW |49434 |27221 |2 |1 |8 |0 | |
-ROW |49435 |27222 |1 |1 |1000000 |0 | |
-ROW |49436 |27222 |2 |20 |1h |0 | |
-ROW |49437 |27224 |1 |20 |1d |0 | |
-ROW |49438 |27252 |1 |10 | |0 | |
-ROW |49439 |27253 |1 |10 | |0 | |
-ROW |49440 |27254 |1 |10 | |0 | |
-ROW |49441 |27254 |2 |1 |8 |0 | |
-ROW |49442 |27255 |1 |10 | |0 | |
-ROW |49443 |27256 |1 |10 | |0 | |
-ROW |49444 |27257 |1 |10 | |0 | |
-ROW |49445 |27257 |2 |1 |8 |0 | |
-ROW |49446 |27258 |1 |1 |1000000 |0 | |
-ROW |49447 |27258 |2 |20 |1h |0 | |
-ROW |49448 |27260 |1 |20 |1d |0 | |
-ROW |49449 |27273 |1 |10 | |0 | |
-ROW |49450 |27274 |1 |10 | |0 | |
-ROW |49451 |27275 |1 |10 | |0 | |
-ROW |49452 |27275 |2 |1 |8 |0 | |
-ROW |49453 |27276 |1 |10 | |0 | |
-ROW |49454 |27277 |1 |10 | |0 | |
-ROW |49455 |27278 |1 |10 | |0 | |
-ROW |49456 |27278 |2 |1 |8 |0 | |
-ROW |49457 |27279 |1 |1 |1000000 |0 | |
-ROW |49458 |27279 |2 |20 |1h |0 | |
-ROW |49459 |27281 |1 |20 |1d |0 | |
-ROW |49460 |27322 |1 |10 | |0 | |
-ROW |49461 |27323 |1 |10 | |0 | |
-ROW |49462 |27324 |1 |10 | |0 | |
-ROW |49463 |27324 |2 |1 |8 |0 | |
-ROW |49464 |27325 |1 |10 | |0 | |
-ROW |49465 |27326 |1 |10 | |0 | |
-ROW |49466 |27327 |1 |10 | |0 | |
-ROW |49467 |27327 |2 |1 |8 |0 | |
-ROW |49468 |27328 |1 |1 |1000000 |0 | |
-ROW |49469 |27328 |2 |20 |1h |0 | |
-ROW |49470 |27330 |1 |20 |1d |0 | |
-ROW |49471 |27451 |1 |10 | |0 | |
-ROW |49472 |27452 |1 |10 | |0 | |
-ROW |49473 |27453 |1 |10 | |0 | |
-ROW |49474 |27453 |2 |1 |8 |0 | |
-ROW |49475 |27454 |1 |10 | |0 | |
-ROW |49476 |27455 |1 |10 | |0 | |
-ROW |49477 |27456 |1 |10 | |0 | |
-ROW |49478 |27456 |2 |1 |8 |0 | |
-ROW |49479 |27457 |1 |1 |1000000 |0 | |
-ROW |49480 |27457 |2 |20 |1h |0 | |
-ROW |49481 |27459 |1 |20 |1d |0 | |
-ROW |49482 |27487 |1 |10 | |0 | |
-ROW |49483 |27488 |1 |10 | |0 | |
-ROW |49484 |27489 |1 |10 | |0 | |
-ROW |49485 |27489 |2 |1 |8 |0 | |
-ROW |49486 |27490 |1 |10 | |0 | |
-ROW |49487 |27491 |1 |10 | |0 | |
-ROW |49488 |27492 |1 |10 | |0 | |
-ROW |49489 |27492 |2 |1 |8 |0 | |
-ROW |49490 |27493 |1 |1 |1000000 |0 | |
-ROW |49491 |27493 |2 |20 |1h |0 | |
-ROW |49492 |27495 |1 |20 |1d |0 | |
-ROW |49493 |27521 |1 |10 | |0 | |
-ROW |49494 |27522 |1 |10 | |0 | |
-ROW |49495 |27523 |1 |10 | |0 | |
-ROW |49496 |27523 |2 |1 |8 |0 | |
-ROW |49497 |27524 |1 |10 | |0 | |
-ROW |49498 |27525 |1 |10 | |0 | |
-ROW |49499 |27526 |1 |10 | |0 | |
-ROW |49500 |27526 |2 |1 |8 |0 | |
-ROW |49501 |27527 |1 |1 |1000000 |0 | |
-ROW |49502 |27527 |2 |20 |1h |0 | |
-ROW |49503 |27529 |1 |20 |1d |0 | |
-ROW |49504 |27557 |1 |10 | |0 | |
-ROW |49505 |27558 |1 |10 | |0 | |
-ROW |49506 |27559 |1 |10 | |0 | |
-ROW |49507 |27559 |2 |1 |8 |0 | |
-ROW |49508 |27560 |1 |10 | |0 | |
-ROW |49509 |27561 |1 |10 | |0 | |
-ROW |49510 |27562 |1 |10 | |0 | |
-ROW |49511 |27562 |2 |1 |8 |0 | |
-ROW |49512 |27563 |1 |1 |1000000 |0 | |
-ROW |49513 |27563 |2 |20 |1h |0 | |
-ROW |49514 |27565 |1 |20 |1d |0 | |
-ROW |49515 |27643 |1 |10 | |0 | |
-ROW |49516 |27644 |1 |10 | |0 | |
-ROW |49517 |27645 |1 |10 | |0 | |
-ROW |49518 |27645 |2 |1 |8 |0 | |
-ROW |49519 |27646 |1 |10 | |0 | |
-ROW |49520 |27647 |1 |10 | |0 | |
-ROW |49521 |27648 |1 |10 | |0 | |
-ROW |49522 |27648 |2 |1 |8 |0 | |
-ROW |49523 |27649 |1 |1 |1000000 |0 | |
-ROW |49524 |27649 |2 |20 |1h |0 | |
-ROW |49525 |27651 |1 |20 |1d |0 | |
-ROW |49526 |27723 |1 |10 | |0 | |
-ROW |49527 |27724 |1 |10 | |0 | |
-ROW |49528 |27725 |1 |10 | |0 | |
-ROW |49529 |27725 |2 |1 |8 |0 | |
-ROW |49530 |27726 |1 |10 | |0 | |
-ROW |49531 |27727 |1 |10 | |0 | |
-ROW |49532 |27728 |1 |10 | |0 | |
-ROW |49533 |27728 |2 |1 |8 |0 | |
-ROW |49534 |27729 |1 |1 |1000000 |0 | |
-ROW |49535 |27729 |2 |20 |1h |0 | |
-ROW |49536 |27731 |1 |20 |1d |0 | |
-ROW |49537 |27757 |1 |10 | |0 | |
-ROW |49538 |27758 |1 |10 | |0 | |
-ROW |49539 |27759 |1 |10 | |0 | |
-ROW |49540 |27759 |2 |1 |8 |0 | |
-ROW |49541 |27760 |1 |10 | |0 | |
-ROW |49542 |27761 |1 |10 | |0 | |
-ROW |49543 |27762 |1 |10 | |0 | |
-ROW |49544 |27762 |2 |1 |8 |0 | |
-ROW |49545 |27763 |1 |1 |1000000 |0 | |
-ROW |49546 |27763 |2 |20 |1h |0 | |
-ROW |49547 |27765 |1 |20 |1d |0 | |
-ROW |49548 |27789 |1 |10 | |0 | |
-ROW |49549 |27790 |1 |10 | |0 | |
-ROW |49550 |27791 |1 |10 | |0 | |
-ROW |49551 |27791 |2 |1 |8 |0 | |
-ROW |49552 |27792 |1 |10 | |0 | |
-ROW |49553 |27793 |1 |10 | |0 | |
-ROW |49554 |27794 |1 |10 | |0 | |
-ROW |49555 |27794 |2 |1 |8 |0 | |
-ROW |49556 |27795 |1 |1 |1000000 |0 | |
-ROW |49557 |27795 |2 |20 |1h |0 | |
-ROW |49558 |27797 |1 |20 |1d |0 | |
-ROW |49559 |27873 |1 |10 | |0 | |
-ROW |49560 |27874 |1 |10 | |0 | |
-ROW |49561 |27875 |1 |10 | |0 | |
-ROW |49562 |27875 |2 |1 |8 |0 | |
-ROW |49563 |27876 |1 |10 | |0 | |
-ROW |49564 |27877 |1 |10 | |0 | |
-ROW |49565 |27878 |1 |10 | |0 | |
-ROW |49566 |27878 |2 |1 |8 |0 | |
-ROW |49567 |27879 |1 |1 |1000000 |0 | |
-ROW |49568 |27879 |2 |20 |1h |0 | |
-ROW |49569 |27881 |1 |20 |1d |0 | |
-ROW |49570 |27910 |1 |10 | |0 | |
-ROW |49571 |27911 |1 |10 | |0 | |
-ROW |49572 |27912 |1 |10 | |0 | |
-ROW |49573 |27912 |2 |1 |8 |0 | |
-ROW |49574 |27913 |1 |10 | |0 | |
-ROW |49575 |27914 |1 |10 | |0 | |
-ROW |49576 |27915 |1 |10 | |0 | |
-ROW |49577 |27915 |2 |1 |8 |0 | |
-ROW |49578 |27916 |1 |1 |1000000 |0 | |
-ROW |49579 |27916 |2 |20 |1h |0 | |
-ROW |49580 |27918 |1 |20 |1d |0 | |
-ROW |49581 |27945 |1 |10 | |0 | |
-ROW |49582 |27946 |1 |10 | |0 | |
-ROW |49583 |27947 |1 |10 | |0 | |
-ROW |49584 |27947 |2 |1 |8 |0 | |
-ROW |49585 |27948 |1 |10 | |0 | |
-ROW |49586 |27949 |1 |10 | |0 | |
-ROW |49587 |27950 |1 |10 | |0 | |
-ROW |49588 |27950 |2 |1 |8 |0 | |
-ROW |49589 |27951 |1 |1 |1000000 |0 | |
-ROW |49590 |27951 |2 |20 |1h |0 | |
-ROW |49591 |27953 |1 |20 |1d |0 | |
-ROW |49592 |28119 |1 |10 | |0 | |
-ROW |49593 |28120 |1 |10 | |0 | |
-ROW |49594 |28121 |1 |10 | |0 | |
-ROW |49595 |28121 |2 |1 |8 |0 | |
-ROW |49596 |28122 |1 |10 | |0 | |
-ROW |49597 |28123 |1 |10 | |0 | |
-ROW |49598 |28124 |1 |10 | |0 | |
-ROW |49599 |28124 |2 |1 |8 |0 | |
-ROW |49600 |28125 |1 |1 |1000000 |0 | |
-ROW |49601 |28125 |2 |20 |1h |0 | |
-ROW |49602 |28127 |1 |20 |1d |0 | |
-ROW |49603 |28176 |1 |10 | |0 | |
-ROW |49604 |28177 |1 |10 | |0 | |
-ROW |49605 |28178 |1 |10 | |0 | |
-ROW |49606 |28178 |2 |1 |8 |0 | |
-ROW |49607 |28179 |1 |10 | |0 | |
-ROW |49608 |28180 |1 |10 | |0 | |
-ROW |49609 |28181 |1 |10 | |0 | |
-ROW |49610 |28181 |2 |1 |8 |0 | |
-ROW |49611 |28182 |1 |1 |1000000 |0 | |
-ROW |49612 |28182 |2 |20 |1h |0 | |
-ROW |49613 |28184 |1 |20 |1d |0 | |
-ROW |49614 |28224 |1 |10 | |0 | |
-ROW |49615 |28225 |1 |10 | |0 | |
-ROW |49616 |28226 |1 |10 | |0 | |
-ROW |49617 |28226 |2 |1 |8 |0 | |
-ROW |49618 |28227 |1 |10 | |0 | |
-ROW |49619 |28228 |1 |10 | |0 | |
-ROW |49620 |28229 |1 |10 | |0 | |
-ROW |49621 |28229 |2 |1 |8 |0 | |
-ROW |49622 |28230 |1 |1 |1000000 |0 | |
-ROW |49623 |28230 |2 |20 |1h |0 | |
-ROW |49624 |28232 |1 |20 |1d |0 | |
-ROW |49625 |28294 |1 |10 | |0 | |
-ROW |49626 |28295 |1 |10 | |0 | |
-ROW |49627 |28296 |1 |10 | |0 | |
-ROW |49628 |28296 |2 |1 |8 |0 | |
-ROW |49629 |28297 |1 |10 | |0 | |
-ROW |49630 |28298 |1 |10 | |0 | |
-ROW |49631 |28299 |1 |10 | |0 | |
-ROW |49632 |28299 |2 |1 |8 |0 | |
-ROW |49633 |28300 |1 |1 |1000000 |0 | |
-ROW |49634 |28300 |2 |20 |1h |0 | |
-ROW |49635 |28302 |1 |20 |1d |0 | |
-ROW |49636 |28969 |1 |10 | |0 | |
-ROW |49637 |28970 |1 |10 | |0 | |
-ROW |49638 |28971 |1 |10 | |0 | |
-ROW |49639 |28971 |2 |1 |8 |0 | |
-ROW |49640 |28972 |1 |10 | |0 | |
-ROW |49641 |28973 |1 |10 | |0 | |
-ROW |49642 |28974 |1 |10 | |0 | |
-ROW |49643 |28974 |2 |1 |8 |0 | |
-ROW |49644 |28975 |1 |1 |1000000 |0 | |
-ROW |49645 |28975 |2 |20 |1h |0 | |
-ROW |49646 |28977 |1 |20 |1d |0 | |
-ROW |49647 |27119 |1 |10 | |0 | |
-ROW |49648 |27120 |1 |20 |1d |0 | |
-ROW |49649 |27121 |1 |1 |1000000 |0 | |
-ROW |49650 |27121 |2 |20 |1h |0 | |
-ROW |49651 |27122 |1 |10 | |0 | |
-ROW |49652 |27123 |1 |10 | |0 | |
-ROW |49653 |27124 |1 |10 | |0 | |
-ROW |49654 |27124 |2 |1 |8 |0 | |
-ROW |49655 |27125 |1 |10 | |0 | |
-ROW |49656 |27125 |2 |1 |8 |0 | |
-ROW |49657 |27126 |1 |10 | |0 | |
-ROW |49658 |29078 |1 |10 | |0 | |
-ROW |49659 |29079 |1 |10 | |0 | |
-ROW |49660 |29080 |1 |10 | |0 | |
-ROW |49661 |29080 |2 |1 |8 |0 | |
-ROW |49662 |29081 |1 |10 | |0 | |
-ROW |49663 |29082 |1 |10 | |0 | |
-ROW |49664 |29083 |1 |10 | |0 | |
-ROW |49665 |29083 |2 |1 |8 |0 | |
-ROW |49666 |29084 |1 |1 |1000000 |0 | |
-ROW |49667 |29084 |2 |20 |1h |0 | |
-ROW |49668 |29086 |1 |20 |1d |0 | |
-ROW |49669 |22231 |1 |20 |1d |0 | |
-ROW |49670 |23318 |1 |20 |1d |0 | |
-ROW |49671 |29545 |1 |20 |1d |0 | |
-ROW |49672 |29546 |1 |20 |1d |0 | |
-ROW |49673 |10059 |1 |20 |1d |0 | |
-ROW |49674 |22834 |1 |20 |1d |0 | |
-ROW |49675 |22874 |1 |20 |1d |0 | |
-ROW |49676 |22914 |1 |20 |1d |0 | |
-ROW |49677 |22954 |1 |20 |1d |0 | |
-ROW |49678 |22994 |1 |20 |1d |0 | |
-ROW |49679 |23034 |1 |20 |1d |0 | |
-ROW |49680 |23161 |1 |20 |1d |0 | |
-ROW |49681 |23319 |1 |20 |1d |0 | |
-ROW |49682 |23320 |1 |20 |1d |0 | |
-ROW |49683 |23321 |1 |20 |1d |0 | |
-ROW |49684 |23322 |1 |20 |1d |0 | |
-ROW |49685 |23323 |1 |20 |1d |0 | |
-ROW |49686 |23324 |1 |20 |1d |0 | |
-ROW |49687 |23325 |1 |20 |1d |0 | |
-ROW |49688 |23326 |1 |20 |1d |0 | |
-ROW |49689 |29558 |1 |20 |1d |0 | |
-ROW |49690 |29560 |1 |20 |1d |0 | |
-ROW |49691 |29995 |1 |20 |1d |0 | |
-ROW |49692 |29997 |1 |20 |1d |0 | |
-ROW |49693 |23288 |1 |20 |1d |0 | |
-ROW |49694 |23327 |1 |20 |1d |0 | |
-ROW |49695 |27203 |1 |5 |^(\w&pipe;-&pipe;\.&pipe;/)+ (\w&pipe;-&pipe;\.&pipe;/)+ (.+) Copyright&bsn;\3 |0 | |
-ROW |49696 |27203 |2 |20 |1d |0 | |
-ROW |49697 |27207 |1 |1 |1024 |0 | |
-ROW |49698 |30086 |1 |5 |^((\w&pipe;-&pipe;\.&pipe;/)+)&bsn;\1 |0 | |
-ROW |49699 |30086 |2 |20 |1d |0 | |
-ROW |49700 |30087 |1 |1 |1024 |0 | |
-ROW |49701 |27214 |1 |20 |1d |0 | |
-ROW |49702 |28323 |1 |1 |0.1 |0 | |
-ROW |49703 |28327 |1 |20 |1d |0 | |
-ROW |49704 |28328 |1 |20 |1d |0 | |
-ROW |49705 |27236 |1 |20 |1d |0 | |
-ROW |49706 |27237 |1 |20 |1d |0 | |
-ROW |49707 |27295 |1 |20 |1d |0 | |
-ROW |49708 |27296 |1 |20 |1d |0 | |
-ROW |49709 |27297 |1 |20 |1d |0 | |
-ROW |49710 |27314 |1 |1 |0.5 |0 | |
-ROW |49711 |27315 |1 |1 |0.5 |0 | |
-ROW |49712 |27318 |1 |1 |0.5 |0 | |
-ROW |49713 |27319 |1 |20 |1d |0 | |
-ROW |49714 |27320 |1 |20 |1d |0 | |
-ROW |49715 |27378 |1 |20 |1d |0 | |
-ROW |49716 |27379 |1 |20 |1d |0 | |
-ROW |49717 |30097 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
-ROW |49718 |30097 |2 |20 |1d |0 | |
-ROW |49719 |27382 |1 |20 |1d |0 | |
-ROW |49720 |27383 |1 |20 |1d |0 | |
-ROW |49721 |27385 |1 |20 |1d |0 | |
-ROW |49722 |27386 |1 |20 |1d |0 | |
-ROW |49723 |28209 |1 |20 |1d |0 | |
-ROW |49724 |28210 |1 |20 |1d |0 | |
-ROW |49725 |30098 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
-ROW |49726 |30098 |2 |20 |1d |0 | |
-ROW |49727 |30099 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
-ROW |49728 |30099 |2 |20 |1d |0 | |
-ROW |49729 |30100 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
-ROW |49730 |30100 |2 |20 |1d |0 | |
-ROW |49731 |27419 |1 |20 |1d |0 | |
-ROW |49732 |27428 |1 |20 |1d |0 | |
-ROW |49733 |27445 |1 |20 |1d |0 | |
-ROW |49734 |28208 |1 |20 |1d |0 | |
-ROW |49735 |27481 |1 |20 |1d |0 | |
-ROW |49736 |27482 |1 |20 |1d |0 | |
-ROW |49737 |27483 |1 |20 |1d |0 | |
-ROW |49738 |27484 |1 |20 |1d |0 | |
-ROW |49739 |27508 |1 |20 |1d |0 | |
-ROW |49740 |27509 |1 |20 |1d |0 | |
-ROW |49741 |27510 |1 |20 |1d |0 | |
-ROW |49742 |30106 |1 |20 |1d |0 | |
-ROW |49743 |27543 |1 |20 |1d |0 | |
-ROW |49744 |27544 |1 |20 |1d |0 | |
-ROW |49745 |27545 |1 |20 |1d |0 | |
-ROW |49746 |27546 |1 |20 |1d |0 | |
-ROW |49747 |27579 |1 |20 |1d |0 | |
-ROW |49748 |27580 |1 |20 |1d |0 | |
-ROW |49749 |27582 |1 |20 |1d |0 | |
-ROW |49750 |27583 |1 |20 |1d |0 | |
-ROW |49751 |30109 |1 |20 |1d |0 | |
-ROW |49752 |27591 |1 |1 |1024 |0 | |
-ROW |49753 |30110 |1 |1 |1024 |0 | |
-ROW |49754 |27675 |1 |20 |1d |0 | |
-ROW |49755 |27676 |1 |20 |1d |0 | |
-ROW |49756 |27677 |1 |20 |1d |0 | |
-ROW |49757 |27678 |1 |20 |1d |0 | |
-ROW |49758 |27679 |1 |20 |1d |0 | |
-ROW |49759 |28141 |1 |20 |1d |0 | |
-ROW |49760 |28142 |1 |20 |1d |0 | |
-ROW |49761 |28157 |1 |20 |1d |0 | |
-ROW |49762 |28158 |1 |20 |1d |0 | |
-ROW |49763 |27748 |1 |20 |1d |0 | |
-ROW |49764 |27749 |1 |20 |1d |0 | |
-ROW |49765 |27750 |1 |20 |1d |0 | |
-ROW |49766 |27754 |1 |20 |1d |0 | |
-ROW |49767 |27777 |1 |5 |Firmware Version: ([0-9.]+),&bsn;\1 |0 | |
-ROW |49768 |27777 |2 |20 |1d |0 | |
-ROW |49769 |27778 |1 |5 |(.+) - Firmware&bsn;\1 |0 | |
-ROW |49770 |27778 |2 |20 |1d |0 | |
-ROW |49771 |27785 |1 |20 |1d |0 | |
-ROW |49772 |27812 |1 |20 |1d |0 | |
-ROW |49773 |27813 |1 |20 |1d |0 | |
-ROW |49774 |30117 |1 |5 |kernel (JUNOS [0-9a-zA-Z\.\-]+)&bsn;\1 |0 | |
-ROW |49775 |30117 |2 |20 |1d |0 | |
-ROW |49776 |28201 |1 |1 |0.1 |0 | |
-ROW |49777 |28204 |1 |20 |1d |0 | |
-ROW |49778 |28205 |1 |20 |1d |0 | |
-ROW |49779 |27893 |1 |20 |1d |0 | |
-ROW |49780 |27894 |1 |20 |1d |0 | |
-ROW |49781 |27895 |1 |20 |1d |0 | |
-ROW |49782 |27897 |1 |1 |0.1 |0 | |
-ROW |49783 |27898 |1 |1 |1024 |0 | |
-ROW |49784 |27900 |1 |1 |1024 |0 | |
-ROW |49785 |30119 |1 |20 |1d |0 | |
-ROW |49786 |27905 |1 |1 |0.1 |0 | |
-ROW |49787 |27907 |1 |1 |1024 |0 | |
-ROW |49788 |27908 |1 |1 |1024 |0 | |
-ROW |49789 |27930 |1 |20 |1d |0 | |
-ROW |49790 |27931 |1 |20 |1d |0 | |
-ROW |49791 |27936 |1 |5 |60 Secs \( ([0-9\.]+)%\).+300 Secs&bsn;\1 |0 | |
-ROW |49792 |30121 |1 |20 |1d |0 | |
-ROW |49793 |27967 |1 |20 |1d |0 | |
-ROW |49794 |27968 |1 |20 |1d |0 | |
-ROW |49795 |27970 |1 |20 |1d |0 | |
-ROW |49796 |27971 |1 |20 |1d |0 | |
-ROW |49797 |30125 |1 |20 |1d |0 | |
-ROW |49798 |27997 |1 |20 |1d |0 | |
-ROW |49799 |27998 |1 |20 |1d |0 | |
-ROW |49800 |27999 |1 |20 |1d |0 | |
-ROW |49801 |28000 |1 |20 |1d |0 | |
-ROW |49802 |28026 |1 |20 |1d |0 | |
-ROW |49803 |28027 |1 |20 |1d |0 | |
-ROW |49804 |30132 |1 |1 |1024 |0 | |
-ROW |49805 |30133 |1 |1 |1024 |0 | |
-ROW |49806 |30134 |1 |1 |1024 |0 | |
-ROW |49807 |30135 |1 |1 |1024 |0 | |
-ROW |49808 |29087 |1 |20 |1d |0 | |
-ROW |49809 |29089 |1 |10 | |0 | |
-ROW |49810 |29102 |1 |10 | |0 | |
-ROW |49811 |29111 |1 |20 |1h |0 | |
-ROW |49812 |29113 |1 |20 |1h |0 | |
-ROW |49813 |29114 |1 |20 |1d |0 | |
-ROW |49814 |29116 |1 |20 |1d |0 | |
-ROW |49815 |29117 |1 |20 |1d |0 | |
-ROW |49816 |29120 |1 |20 |1h |0 | |
-ROW |49817 |29121 |1 |20 |1d |0 | |
-ROW |49818 |29122 |1 |20 |1d |0 | |
-ROW |49819 |29123 |1 |20 |1d |0 | |
-ROW |49820 |29124 |1 |20 |1d |0 | |
-ROW |49821 |29126 |1 |10 | |0 | |
-ROW |49822 |29139 |1 |10 | |0 | |
-ROW |49823 |29148 |1 |20 |1h |0 | |
-ROW |49824 |29150 |1 |20 |1h |0 | |
-ROW |49825 |29151 |1 |20 |1d |0 | |
-ROW |49826 |29153 |1 |20 |1d |0 | |
-ROW |49827 |29154 |1 |20 |1d |0 | |
-ROW |49828 |29157 |1 |20 |1h |0 | |
-ROW |49829 |29158 |1 |20 |1d |0 | |
-ROW |49830 |29159 |1 |20 |1d |0 | |
-ROW |49831 |29160 |1 |20 |1d |0 | |
-ROW |49832 |29161 |1 |20 |1d |0 | |
-ROW |49833 |29163 |1 |10 | |0 | |
-ROW |49834 |29176 |1 |10 | |0 | |
-ROW |49835 |29185 |1 |20 |1h |0 | |
-ROW |49836 |29187 |1 |20 |1h |0 | |
-ROW |49837 |29188 |1 |20 |1d |0 | |
-ROW |49838 |29190 |1 |20 |1d |0 | |
-ROW |49839 |29191 |1 |20 |1d |0 | |
-ROW |49840 |29194 |1 |20 |1h |0 | |
-ROW |49841 |29195 |1 |20 |1d |0 | |
-ROW |49842 |29196 |1 |20 |1d |0 | |
-ROW |49843 |29197 |1 |20 |1d |0 | |
-ROW |49844 |29198 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
-ROW |49845 |31270 |1 |21 |return (100-value); |0 | |
-ROW |49846 |29199 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
-ROW |49847 |31271 |1 |21 |return (100-value); |0 | |
-ROW |49848 |29200 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
-ROW |49849 |31272 |1 |21 |return (100-value); |0 | |
-ROW |49850 |31273 |1 |20 |1h |0 | |
-ROW |49851 |31274 |1 |20 |1h |0 | |
-ROW |49852 |31275 |1 |20 |1h |0 | |
-ROW |49853 |29216 |1 |10 | |0 | |
-ROW |49854 |29216 |2 |1 |8 |0 | |
-ROW |49855 |29217 |1 |10 | |0 | |
-ROW |49856 |29217 |2 |1 |8 |0 | |
-ROW |49857 |29218 |1 |10 | |0 | |
-ROW |49858 |29219 |1 |10 | |0 | |
-ROW |49859 |29220 |1 |10 | |0 | |
-ROW |49860 |29221 |1 |10 | |0 | |
-ROW |49861 |29222 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
-ROW |49862 |29223 |1 |20 |1d |0 | |
-ROW |49863 |31278 |1 |21 |return JSON.stringify(value.trim().split(/ +/)); |0 | |
-ROW |49864 |29230 |1 |10 | |0 | |
-ROW |49865 |29230 |2 |1 |8 |0 | |
-ROW |49866 |29231 |1 |10 | |0 | |
-ROW |49867 |29231 |2 |1 |8 |0 | |
-ROW |49868 |29232 |1 |10 | |0 | |
-ROW |49869 |29233 |1 |10 | |0 | |
-ROW |49870 |29234 |1 |10 | |0 | |
-ROW |49871 |29235 |1 |10 | |0 | |
-ROW |49872 |29236 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
-ROW |49873 |29237 |1 |20 |1d |0 | |
-ROW |49874 |31281 |1 |21 |return JSON.stringify(value.trim().split(/ +/)); |0 | |
-ROW |49875 |29244 |1 |10 | |0 | |
-ROW |49876 |29244 |2 |1 |8 |0 | |
-ROW |49877 |29245 |1 |10 | |0 | |
-ROW |49878 |29245 |2 |1 |8 |0 | |
-ROW |49879 |29246 |1 |10 | |0 | |
-ROW |49880 |29247 |1 |10 | |0 | |
-ROW |49881 |29248 |1 |10 | |0 | |
-ROW |49882 |29249 |1 |10 | |0 | |
-ROW |49883 |29250 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
-ROW |49884 |29251 |1 |20 |1d |0 | |
-ROW |49885 |31284 |1 |21 |return JSON.stringify(value.trim().split(/ +/)); |0 | |
-ROW |49886 |31285 |1 |12 |$[10] |0 | |
-ROW |49887 |31285 |2 |10 | |0 | |
-ROW |49888 |31285 |3 |1 |0.001 |0 | |
-ROW |49889 |31286 |1 |12 |$[0] |0 | |
-ROW |49890 |31286 |2 |10 | |0 | |
-ROW |49891 |31287 |1 |12 |$[3] |0 | |
-ROW |49892 |31287 |2 |10 | |0 | |
-ROW |49893 |31287 |3 |1 |0.001 |0 | |
-ROW |49894 |31288 |1 |12 |$[9] |0 | |
-ROW |49895 |31288 |2 |10 | |0 | |
-ROW |49896 |31288 |3 |1 |0.1 |0 | |
-ROW |49897 |31289 |1 |12 |$[4] |0 | |
-ROW |49898 |31289 |2 |10 | |0 | |
-ROW |49899 |31290 |1 |12 |$[7] |0 | |
-ROW |49900 |31290 |2 |10 | |0 | |
-ROW |49901 |31290 |3 |1 |0.001 |0 | |
-ROW |49902 |31291 |1 |12 |$[10] |0 | |
-ROW |49903 |31291 |2 |10 | |0 | |
-ROW |49904 |31291 |3 |1 |0.001 |0 | |
-ROW |49905 |31292 |1 |12 |$[0] |0 | |
-ROW |49906 |31292 |2 |10 | |0 | |
-ROW |49907 |31293 |1 |12 |$[3] |0 | |
-ROW |49908 |31293 |2 |10 | |0 | |
-ROW |49909 |31293 |3 |1 |0.001 |0 | |
-ROW |49910 |31294 |1 |12 |$[9] |0 | |
-ROW |49911 |31294 |2 |10 | |0 | |
-ROW |49912 |31294 |3 |1 |0.1 |0 | |
-ROW |49913 |31295 |1 |12 |$[4] |0 | |
-ROW |49914 |31295 |2 |10 | |0 | |
-ROW |49915 |31296 |1 |12 |$[7] |0 | |
-ROW |49916 |31296 |2 |10 | |0 | |
-ROW |49917 |31296 |3 |1 |0.001 |0 | |
-ROW |49918 |31297 |1 |12 |$[10] |0 | |
-ROW |49919 |31297 |2 |10 | |0 | |
-ROW |49920 |31297 |3 |1 |0.001 |0 | |
-ROW |49921 |31298 |1 |12 |$[0] |0 | |
-ROW |49922 |31298 |2 |10 | |0 | |
-ROW |49923 |31299 |1 |12 |$[3] |0 | |
-ROW |49924 |31299 |2 |10 | |0 | |
-ROW |49925 |31299 |3 |1 |0.001 |0 | |
-ROW |49926 |31300 |1 |12 |$[9] |0 | |
-ROW |49927 |31300 |2 |10 | |0 | |
-ROW |49928 |31300 |3 |1 |0.1 |0 | |
-ROW |49929 |31301 |1 |12 |$[4] |0 | |
-ROW |49930 |31301 |2 |10 | |0 | |
-ROW |49931 |31302 |1 |12 |$[7] |0 | |
-ROW |49932 |31302 |2 |10 | |0 | |
-ROW |49933 |31302 |3 |1 |0.001 |0 | |
-ROW |49934 |29273 |1 |20 |1d |0 | |
-ROW |49935 |29275 |1 |10 | |0 | |
-ROW |49936 |29288 |1 |10 | |0 | |
-ROW |49937 |29297 |1 |20 |1h |0 | |
-ROW |49938 |29299 |1 |20 |1h |0 | |
-ROW |49939 |29300 |1 |20 |1d |0 | |
-ROW |49940 |29302 |1 |20 |1d |0 | |
-ROW |49941 |29303 |1 |20 |1d |0 | |
-ROW |49942 |29306 |1 |20 |1h |0 | |
-ROW |49943 |29307 |1 |20 |1d |0 | |
-ROW |49944 |29308 |1 |20 |1d |0 | |
-ROW |49945 |29309 |1 |20 |1d |0 | |
-ROW |49946 |29310 |1 |20 |1d |0 | |
-ROW |49947 |29312 |1 |10 | |0 | |
-ROW |49948 |29325 |1 |10 | |0 | |
-ROW |49949 |29334 |1 |20 |1h |0 | |
-ROW |49950 |29336 |1 |20 |1h |0 | |
-ROW |49951 |29337 |1 |20 |1d |0 | |
-ROW |49952 |29339 |1 |20 |1d |0 | |
-ROW |49953 |29340 |1 |20 |1d |0 | |
-ROW |49954 |29343 |1 |20 |1h |0 | |
-ROW |49955 |29344 |1 |20 |1d |0 | |
-ROW |49956 |29345 |1 |20 |1d |0 | |
-ROW |49957 |29346 |1 |20 |1d |0 | |
-ROW |49958 |29347 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
-ROW |49959 |31303 |1 |21 |return (100-value); |0 | |
-ROW |49960 |29348 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
-ROW |49961 |31304 |1 |21 |return (100-value); |0 | |
-ROW |49962 |31305 |1 |20 |1h |0 | |
-ROW |49963 |31306 |1 |20 |1h |0 | |
-ROW |49964 |29361 |1 |10 | |0 | |
-ROW |49965 |29361 |2 |1 |8 |0 | |
-ROW |49966 |29362 |1 |10 | |0 | |
-ROW |49967 |29362 |2 |1 |8 |0 | |
-ROW |49968 |29363 |1 |10 | |0 | |
-ROW |49969 |29364 |1 |10 | |0 | |
-ROW |49970 |29365 |1 |10 | |0 | |
-ROW |49971 |29366 |1 |10 | |0 | |
-ROW |49972 |29367 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
-ROW |49973 |29368 |1 |20 |1d |0 | |
-ROW |49974 |31309 |1 |21 |return JSON.stringify(value.trim().split(/ +/)); |0 | |
-ROW |49975 |29375 |1 |10 | |0 | |
-ROW |49976 |29375 |2 |1 |8 |0 | |
-ROW |49977 |29376 |1 |10 | |0 | |
-ROW |49978 |29376 |2 |1 |8 |0 | |
-ROW |49979 |29377 |1 |10 | |0 | |
-ROW |49980 |29378 |1 |10 | |0 | |
-ROW |49981 |29379 |1 |10 | |0 | |
-ROW |49982 |29380 |1 |10 | |0 | |
-ROW |49983 |29381 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
-ROW |49984 |29382 |1 |20 |1d |0 | |
-ROW |49985 |31312 |1 |21 |return JSON.stringify(value.trim().split(/ +/)); |0 | |
-ROW |49986 |31313 |1 |12 |$[10] |0 | |
-ROW |49987 |31313 |2 |10 | |0 | |
-ROW |49988 |31313 |3 |1 |0.001 |0 | |
-ROW |49989 |31314 |1 |12 |$[0] |0 | |
-ROW |49990 |31314 |2 |10 | |0 | |
-ROW |49991 |31315 |1 |12 |$[3] |0 | |
-ROW |49992 |31315 |2 |10 | |0 | |
-ROW |49993 |31315 |3 |1 |0.001 |0 | |
-ROW |49994 |31316 |1 |12 |$[9] |0 | |
-ROW |49995 |31316 |2 |10 | |0 | |
-ROW |49996 |31316 |3 |1 |0.1 |0 | |
-ROW |49997 |31317 |1 |12 |$[4] |0 | |
-ROW |49998 |31317 |2 |10 | |0 | |
-ROW |49999 |31318 |1 |12 |$[7] |0 | |
-ROW |50000 |31318 |2 |10 | |0 | |
-ROW |50001 |31318 |3 |1 |0.001 |0 | |
-ROW |50002 |31319 |1 |12 |$[10] |0 | |
-ROW |50003 |31319 |2 |10 | |0 | |
-ROW |50004 |31319 |3 |1 |0.001 |0 | |
-ROW |50005 |31320 |1 |12 |$[0] |0 | |
-ROW |50006 |31320 |2 |10 | |0 | |
-ROW |50007 |31321 |1 |12 |$[3] |0 | |
-ROW |50008 |31321 |2 |10 | |0 | |
-ROW |50009 |31321 |3 |1 |0.001 |0 | |
-ROW |50010 |31322 |1 |12 |$[9] |0 | |
-ROW |50011 |31322 |2 |10 | |0 | |
-ROW |50012 |31322 |3 |1 |0.1 |0 | |
-ROW |50013 |31323 |1 |12 |$[4] |0 | |
-ROW |50014 |31323 |2 |10 | |0 | |
-ROW |50015 |31324 |1 |12 |$[7] |0 | |
-ROW |50016 |31324 |2 |10 | |0 | |
-ROW |50017 |31324 |3 |1 |0.001 |0 | |
-ROW |50018 |29398 |1 |22 |{__name__=~"^node_time(?:_seconds)?$"}&bsn; |0 | |
-ROW |50019 |29399 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="steal"} |0 | |
-ROW |50020 |29399 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
-ROW |50021 |29399 |3 |10 | |0 | |
-ROW |50022 |29399 |4 |1 |100 |0 | |
-ROW |50023 |29400 |1 |22 |{__name__=~"node_memory_SwapFree"}&bsn; |0 | |
-ROW |50024 |29401 |1 |22 |{__name__=~"node_memory_SwapTotal"}&bsn; |0 | |
-ROW |50025 |29402 |1 |22 |{__name__=~"node_memory_MemAvailable"}&bsn; |0 | |
-ROW |50026 |29403 |1 |22 |{__name__=~"node_memory_MemTotal"}&bsn; |0 | |
-ROW |50027 |29404 |1 |22 |{__name__=~"^node_boot_time(?:_seconds)?$"}&bsn; |0 | |
-ROW |50028 |29405 |1 |22 |{__name__=~"node_context_switches"}&bsn; |0 | |
-ROW |50029 |29405 |2 |10 | |0 | |
-ROW |50030 |29406 |1 |22 |{__name__=~"node_intr"}&bsn; |0 | |
-ROW |50031 |29406 |2 |10 | |0 | |
-ROW |50032 |29407 |1 |23 |{__name__=~"^node_cpu(?:_guest_seconds_total)?$",cpu=~".+",mode=~"^(?:nice&pipe;guest_nice)$"} |0 | |
-ROW |50033 |29407 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
-ROW |50034 |29407 |3 |10 | |0 | |
-ROW |50035 |29407 |4 |1 |100 |0 | |
-ROW |50036 |29408 |1 |23 |{__name__=~"^node_cpu(?:_guest_seconds_total)?$",cpu=~".+",mode=~"^(?:user&pipe;guest)$"} |0 | |
-ROW |50037 |29408 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
-ROW |50038 |29408 |3 |10 | |0 | |
-ROW |50039 |29408 |4 |1 |100 |0 | |
-ROW |50040 |29409 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="irq"} |0 | |
-ROW |50041 |29409 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
-ROW |50042 |29409 |3 |10 | |0 | |
-ROW |50043 |29409 |4 |1 |100 |0 | |
-ROW |50044 |29410 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="iowait"} |0 | |
-ROW |50045 |29410 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
-ROW |50046 |29410 |3 |10 | |0 | |
-ROW |50047 |29410 |4 |1 |100 |0 | |
-ROW |50048 |29411 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="nice"} |0 | |
-ROW |50049 |29411 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
-ROW |50050 |29411 |3 |10 | |0 | |
-ROW |50051 |29411 |4 |1 |100 |0 | |
-ROW |50052 |29412 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="softirq"} |0 | |
-ROW |50053 |29412 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
-ROW |50054 |29412 |3 |10 | |0 | |
-ROW |50055 |29412 |4 |1 |100 |0 | |
-ROW |50056 |29413 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="user"} |0 | |
-ROW |50057 |29413 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
-ROW |50058 |29413 |3 |10 | |0 | |
-ROW |50059 |29413 |4 |1 |100 |0 | |
-ROW |50060 |29414 |1 |22 |node_uname_info&bsn;nodename |0 | |
-ROW |50061 |29414 |2 |20 |1d |0 | |
-ROW |50062 |29415 |1 |22 |node_exporter_build_info&bsn;version |0 | |
-ROW |50063 |29415 |2 |20 |1d |0 | |
-ROW |50064 |29416 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="idle"} |0 | |
-ROW |50065 |29416 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
-ROW |50066 |29416 |3 |10 | |0 | |
-ROW |50067 |29416 |4 |1 |100 |0 | |
-ROW |50068 |29417 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="idle"} |0 | |
-ROW |50069 |29417 |2 |21 |//count the number of cores&bsn;return JSON.parse(value).length&bsn; |0 | |
-ROW |50070 |29418 |1 |22 |node_load15&bsn; |0 | |
-ROW |50071 |29419 |1 |22 |node_load5&bsn; |0 | |
-ROW |50072 |29420 |1 |22 |node_load1&bsn; |0 | |
-ROW |50073 |29421 |1 |22 |{__name__=~"^node_boot_time(?:_seconds)?$"}&bsn; |0 | |
-ROW |50074 |29421 |2 |21 |//use boottime to calculate uptime&bsn;return (Math.floor(Date.now()/1000)-Number(value)); |0 | |
-ROW |50075 |29422 |1 |22 |node_uname_info&bsn;machine |0 | |
-ROW |50076 |29422 |2 |20 |1d |0 | |
-ROW |50077 |29423 |1 |22 |node_filefd_allocated&bsn; |0 | |
-ROW |50078 |29424 |1 |22 |node_filefd_maximum&bsn; |0 | |
-ROW |50079 |29424 |2 |20 |1d |0 | |
-ROW |50080 |29425 |1 |23 |node_uname_info |0 | |
-ROW |50081 |29425 |2 |21 |var info = JSON.parse(value)[0];&bsn; return info.labels.sysname+' version: '+info.labels.release+' '+info.labels.version |0 | |
-ROW |50082 |29425 |3 |20 |1d |0 | |
-ROW |50083 |29426 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="system"} |0 | |
-ROW |50084 |29426 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
-ROW |50085 |29426 |3 |10 | |0 | |
-ROW |50086 |29426 |4 |1 |100 |0 | |
-ROW |50087 |29427 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
-ROW |50088 |29428 |1 |20 |1d |0 | |
-ROW |50089 |29429 |1 |23 |{__name__=~"^node_network_info$"} |0 | |
-ROW |50090 |29430 |1 |23 |{__name__=~"^node_filesystem_size(?:_bytes)?$", mountpoint=~".+"} |0 | |
-ROW |50091 |29431 |1 |23 |node_disk_io_now{device=~".+"} |0 | |
-ROW |50092 |29436 |1 |22 |node_network_receive_bytes_total{device="{#IFNAME}"}&bsn; |0 | |
-ROW |50093 |29436 |2 |10 | |0 | |
-ROW |50094 |29436 |3 |1 |8 |0 | |
-ROW |50095 |29437 |1 |22 |node_network_transmit_bytes_total{device="{#IFNAME}"}&bsn; |0 | |
-ROW |50096 |29437 |2 |10 | |0 | |
-ROW |50097 |29437 |3 |1 |8 |0 | |
-ROW |50098 |29438 |1 |22 |node_network_transmit_errs_total{device="{#IFNAME}"}&bsn; |0 | |
-ROW |50099 |29438 |2 |10 | |0 | |
-ROW |50100 |29439 |1 |22 |node_network_receive_errs_total{device="{#IFNAME}"}&bsn; |0 | |
-ROW |50101 |29439 |2 |10 | |0 | |
-ROW |50102 |29440 |1 |22 |node_network_receive_drop_total{device="{#IFNAME}"}&bsn; |0 | |
-ROW |50103 |29440 |2 |10 | |0 | |
-ROW |50104 |29441 |1 |22 |node_network_transmit_drop_total{device="{#IFNAME}"}&bsn; |0 | |
-ROW |50105 |29441 |2 |10 | |0 | |
-ROW |50106 |29442 |1 |22 |node_network_speed_bytes{device="{#IFNAME}"}&bsn; |2 |0 |
-ROW |50107 |29442 |2 |1 |8 |0 | |
-ROW |50108 |29443 |1 |22 |node_network_protocol_type{device="{#IFNAME}"}&bsn; |0 | |
-ROW |50109 |29444 |1 |22 |node_network_info{device="{#IFNAME}"}&bsn;operstate |0 | |
-ROW |50110 |29444 |2 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
-ROW |50111 |29445 |1 |22 |{__name__=~"^node_filesystem_avail(?:_bytes)?$", mountpoint="{#FSNAME}"}&bsn; |0 | |
-ROW |50112 |29446 |1 |22 |{__name__=~"^node_filesystem_size(?:_bytes)?$", mountpoint="{#FSNAME}"}&bsn; |0 | |
-ROW |50113 |29447 |1 |23 |{__name__=~"node_filesystem_files.*",mountpoint="{#FSNAME}"} |0 | |
-ROW |50114 |29447 |2 |21 |//count vfs.fs.inode.pfree&bsn;var inode_free;&bsn;var inode_total;&bsn;JSON.parse(value).forEach(function(metric) {&bsn; if (metric['name'] == 'node_filesystem_files'){&bsn; inode_total = metric['value'];&bsn; } else if (metric['name'] == 'node_filesystem_files_free'){&bsn; inode_free = metric['value'];&bsn; }&bsn;});&bsn;return (inode_free/inode_total)*100; |0 | |
-ROW |50115 |29448 |1 |22 |node_disk_reads_completed_total{device="{#DEVNAME}"}&bsn; |0 | |
-ROW |50116 |29448 |2 |10 | |0 | |
-ROW |50117 |29449 |1 |22 |node_disk_writes_completed_total{device="{#DEVNAME}"}&bsn; |0 | |
-ROW |50118 |29449 |2 |10 | |0 | |
-ROW |50119 |29450 |1 |22 |node_disk_read_time_seconds_total{device="{#DEVNAME}"}&bsn; |0 | |
-ROW |50120 |29450 |2 |10 | |0 | |
-ROW |50121 |29451 |1 |22 |node_disk_write_time_seconds_total{device="{#DEVNAME}"}&bsn; |0 | |
-ROW |50122 |29451 |2 |10 | |0 | |
-ROW |50123 |29452 |1 |22 |node_disk_io_time_weighted_seconds_total{device="{#DEVNAME}"}&bsn; |0 | |
-ROW |50124 |29452 |2 |10 | |0 | |
-ROW |50125 |29453 |1 |22 |node_disk_io_time_seconds_total{device="{#DEVNAME}"}&bsn; |0 | |
-ROW |50126 |29453 |2 |10 | |0 | |
-ROW |50127 |29453 |3 |1 |100 |0 | |
-ROW |50128 |28979 |1 |1 |1024 |0 | |
-ROW |50129 |28980 |1 |1 |1024 |0 | |
-ROW |50130 |28981 |1 |1 |1024 |0 | |
-ROW |50131 |28982 |1 |1 |1024 |0 | |
-ROW |50132 |28984 |1 |1 |1024 |0 | |
-ROW |50133 |28985 |1 |1 |1024 |0 | |
-ROW |50134 |28990 |1 |21 |//count the number of cores&bsn;return JSON.parse(value).length;&bsn; |0 | |
-ROW |50135 |28991 |1 |10 | |0 | |
-ROW |50136 |28992 |1 |10 | |0 | |
-ROW |50137 |28994 |1 |1 |1024 |0 | |
-ROW |50138 |28995 |1 |1 |1024 |0 | |
-ROW |50139 |28996 |1 |1 |1024 |0 | |
-ROW |50140 |28997 |1 |1 |1024 |0 | |
-ROW |50141 |28999 |1 |1 |1024 |0 | |
-ROW |50142 |29000 |1 |1 |1024 |0 | |
-ROW |50143 |29005 |1 |21 |//count the number of cores&bsn;return JSON.parse(value).length;&bsn; |0 | |
-ROW |50144 |29006 |1 |10 | |0 | |
-ROW |50145 |29007 |1 |10 | |0 | |
-ROW |50146 |29009 |1 |21 |//count the number of CPU cores&bsn;return JSON.stringify([{"{#CPU.COUNT}": value, "{#SNMPINDEX}": 0, "{#SINGLETON}":""}])&bsn; |0 | |
-ROW |50147 |29012 |1 |21 |//count the number of CPU cores&bsn;return JSON.stringify([{"{#CPU.COUNT}": value, "{#SNMPINDEX}": 0, "{#SINGLETON}":""}])&bsn; |0 | |
-ROW |50148 |29014 |1 |10 | |0 | |
-ROW |50149 |29015 |1 |10 | |0 | |
-ROW |50150 |29017 |1 |10 | |0 | |
-ROW |50151 |29017 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |50152 |29018 |1 |10 | |0 | |
-ROW |50153 |29018 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |50154 |29019 |1 |10 | |0 | |
-ROW |50155 |29019 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |50156 |29020 |1 |10 | |0 | |
-ROW |50157 |29020 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |50158 |29021 |1 |10 | |0 | |
-ROW |50159 |29021 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |50160 |29022 |1 |10 | |0 | |
-ROW |50161 |29022 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |50162 |29023 |1 |10 | |0 | |
-ROW |50163 |29023 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |50164 |29024 |1 |10 | |0 | |
-ROW |50165 |29024 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |50166 |29025 |1 |10 | |0 | |
-ROW |50167 |29025 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |50168 |29026 |1 |10 | |0 | |
-ROW |50169 |29026 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |50170 |29027 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |50171 |29028 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |50172 |29030 |1 |21 |return (100-value); |0 | |
-ROW |50173 |29031 |1 |10 | |0 | |
-ROW |50174 |29032 |1 |10 | |0 | |
-ROW |50175 |29034 |1 |10 | |0 | |
-ROW |50176 |29034 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |50177 |29035 |1 |10 | |0 | |
-ROW |50178 |29035 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |50179 |29036 |1 |10 | |0 | |
-ROW |50180 |29036 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |50181 |29037 |1 |10 | |0 | |
-ROW |50182 |29037 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |50183 |29038 |1 |10 | |0 | |
-ROW |50184 |29038 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |50185 |29039 |1 |10 | |0 | |
-ROW |50186 |29039 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |50187 |29040 |1 |10 | |0 | |
-ROW |50188 |29040 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |50189 |29041 |1 |10 | |0 | |
-ROW |50190 |29041 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |50191 |29042 |1 |10 | |0 | |
-ROW |50192 |29042 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |50193 |29043 |1 |10 | |0 | |
-ROW |50194 |29043 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |50195 |29044 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |50196 |29045 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |50197 |29047 |1 |21 |return (100-value); |0 | |
-ROW |50198 |29048 |1 |21 |//Calculate utilization&bsn;return (100 - value)&bsn; |0 | |
-ROW |50199 |29049 |1 |21 |//Calculate utilization&bsn;return (100 - value)&bsn; |0 | |
-ROW |50200 |29474 |1 |20 |1d |0 | |
-ROW |50201 |29475 |1 |20 |1d |0 | |
-ROW |50202 |29478 |1 |20 |1d |0 | |
-ROW |50203 |29500 |1 |20 |1d |0 | |
-ROW |50204 |29501 |1 |20 |1d |0 | |
-ROW |50205 |29504 |1 |20 |1d |0 | |
-ROW |50206 |31331 |1 |21 |return (100 - value) |0 | |
-ROW |50207 |31332 |1 |21 |return (100 - value) |0 | |
-ROW |50208 |31333 |1 |25 |{#INSTANCE}&bsn;{#DEVNAME} |0 | |
-ROW |50209 |31457 |1 |21 |output = JSON.parse(value).map(function(net){&bsn; return {&bsn; "{#IFNAME}": net.Name,&bsn; "{#IFDESCR}": net.Description,&bsn; "{#IFALIAS}" : net.NetConnectionID&bsn; }})&bsn;return JSON.stringify({"data": output}) |0 | |
-ROW |50210 |31457 |2 |20 |1h |0 | |
-ROW |50211 |31334 |1 |25 |{#INSTANCE}&bsn;{#DEVNAME} |0 | |
-ROW |50212 |31458 |1 |21 |output = JSON.parse(value).map(function(net){&bsn; return {&bsn; "{#IFNAME}": net.Name,&bsn; "{#IFDESCR}": net.Description,&bsn; "{#IFALIAS}" : net.NetConnectionID&bsn; }})&bsn;return JSON.stringify({"data": output}) |0 | |
-ROW |50213 |31458 |2 |20 |1h |0 | |
-ROW |50214 |31459 |1 |10 | |0 | |
-ROW |50215 |31460 |1 |10 | |0 | |
-ROW |50216 |31461 |1 |10 | |0 | |
-ROW |50217 |31461 |2 |1 |8 |0 | |
-ROW |50218 |31462 |1 |10 | |0 | |
-ROW |50219 |31463 |1 |10 | |0 | |
-ROW |50220 |31464 |1 |10 | |0 | |
-ROW |50221 |31464 |2 |1 |8 |0 | |
-ROW |50222 |31465 |1 |10 | |0 | |
-ROW |50223 |31466 |1 |10 | |0 | |
-ROW |50224 |31467 |1 |10 | |0 | |
-ROW |50225 |31467 |2 |1 |8 |0 | |
-ROW |50226 |31468 |1 |10 | |0 | |
-ROW |50227 |31469 |1 |10 | |0 | |
-ROW |50228 |31470 |1 |10 | |0 | |
-ROW |50229 |31470 |2 |1 |8 |0 | |
-ROW |50230 |31471 |1 |12 |$[?(@.Name == "{#IFNAME}")].Speed.first() |2 |0 |
-ROW |50231 |31471 |2 |21 |return (value=='9223372036854775807' ? 0 : value)&bsn; |0 | |
-ROW |50232 |31472 |1 |12 |$[?(@.Name == "{#IFNAME}")].NetConnectionStatus.first() |0 | |
-ROW |50233 |31473 |1 |12 |$[?(@.Name == "{#IFNAME}")].AdapterTypeId.first() |0 | |
-ROW |50234 |31474 |1 |12 |$[?(@.Name == "{#IFNAME}")].Speed.first() |2 |0 |
-ROW |50235 |31474 |2 |21 |return (value=='9223372036854775807' ? 0 : value)&bsn; |0 | |
-ROW |50236 |31475 |1 |12 |$[?(@.Name == "{#IFNAME}")].NetConnectionStatus.first() |0 | |
-ROW |50237 |31476 |1 |12 |$[?(@.Name == "{#IFNAME}")].AdapterTypeId.first() |0 | |
-ROW |50238 |29581 |1 |20 |1d |0 | |
-ROW |50239 |29582 |1 |20 |1d |0 | |
-ROW |50240 |29585 |1 |20 |1d |0 | |
-ROW |50241 |29607 |1 |20 |1d |0 | |
-ROW |50242 |29608 |1 |20 |1d |0 | |
-ROW |50243 |29611 |1 |20 |1d |0 | |
-ROW |50244 |31349 |1 |21 |return (100 - value) |0 | |
-ROW |50245 |31350 |1 |21 |return (100 - value) |0 | |
-ROW |50246 |31351 |1 |25 |{#INSTANCE}&bsn;{#DEVNAME} |0 | |
-ROW |50247 |31479 |1 |21 |output = JSON.parse(value).map(function(net){&bsn; return {&bsn; "{#IFNAME}": net.Name,&bsn; "{#IFDESCR}": net.Description,&bsn; "{#IFALIAS}" : net.NetConnectionID&bsn; }})&bsn;return JSON.stringify({"data": output}) |0 | |
-ROW |50248 |31479 |2 |20 |1h |0 | |
-ROW |50249 |31352 |1 |25 |{#INSTANCE}&bsn;{#DEVNAME} |0 | |
-ROW |50250 |31480 |1 |21 |output = JSON.parse(value).map(function(net){&bsn; return {&bsn; "{#IFNAME}": net.Name,&bsn; "{#IFDESCR}": net.Description,&bsn; "{#IFALIAS}" : net.NetConnectionID&bsn; }})&bsn;return JSON.stringify({"data": output}) |0 | |
-ROW |50251 |31480 |2 |20 |1h |0 | |
-ROW |50252 |31481 |1 |10 | |0 | |
-ROW |50253 |31482 |1 |10 | |0 | |
-ROW |50254 |31483 |1 |10 | |0 | |
-ROW |50255 |31483 |2 |1 |8 |0 | |
-ROW |50256 |31484 |1 |10 | |0 | |
-ROW |50257 |31485 |1 |10 | |0 | |
-ROW |50258 |31486 |1 |10 | |0 | |
-ROW |50259 |31486 |2 |1 |8 |0 | |
-ROW |50260 |31487 |1 |10 | |0 | |
-ROW |50261 |31488 |1 |10 | |0 | |
-ROW |50262 |31489 |1 |10 | |0 | |
-ROW |50263 |31489 |2 |1 |8 |0 | |
-ROW |50264 |31490 |1 |10 | |0 | |
-ROW |50265 |31491 |1 |10 | |0 | |
-ROW |50266 |31492 |1 |10 | |0 | |
-ROW |50267 |31492 |2 |1 |8 |0 | |
-ROW |50268 |31493 |1 |12 |$[?(@.Name == "{#IFNAME}")].Speed.first() |2 |0 |
-ROW |50269 |31493 |2 |21 |return (value=='9223372036854775807' ? 0 : value)&bsn; |0 | |
-ROW |50270 |31494 |1 |12 |$[?(@.Name == "{#IFNAME}")].NetConnectionStatus.first() |0 | |
-ROW |50271 |31495 |1 |12 |$[?(@.Name == "{#IFNAME}")].AdapterTypeId.first() |0 | |
-ROW |50272 |31496 |1 |12 |$[?(@.Name == "{#IFNAME}")].Speed.first() |2 |0 |
-ROW |50273 |31496 |2 |21 |return (value=='9223372036854775807' ? 0 : value)&bsn; |0 | |
-ROW |50274 |31497 |1 |12 |$[?(@.Name == "{#IFNAME}")].NetConnectionStatus.first() |0 | |
-ROW |50275 |31498 |1 |12 |$[?(@.Name == "{#IFNAME}")].AdapterTypeId.first() |0 | |
-ROW |50276 |30688 |1 |12 |$.[?(@.id=='{#SENSOR_ID}')].state.text.first() |0 | |
-ROW |50277 |30688 |2 |20 |1d |0 | |
-ROW |50278 |30689 |1 |12 |$.[?(@.id=='{#SENSOR_ID}')].value.first() |0 | |
-ROW |50279 |30689 |2 |20 |1h |0 | |
-ROW |50280 |30073 |1 |20 |1d |0 | |
-ROW |50281 |30074 |1 |20 |1d |0 | |
-ROW |50282 |30079 |1 |1 |1048576 |0 | |
-ROW |50283 |30082 |1 |1 |1048576 |0 | |
-ROW |50284 |28342 |1 |20 |1d |0 | |
-ROW |50285 |28344 |1 |20 |1d |0 | |
-ROW |50286 |28345 |1 |20 |1d |0 | |
-ROW |50287 |30141 |1 |20 |1d |0 | |
-ROW |50288 |28354 |1 |1 |0.1 |0 | |
-ROW |50289 |28356 |1 |1 |0.1 |0 | |
-ROW |50290 |28367 |1 |1 |1048576 |0 | |
-ROW |50291 |28372 |1 |1 |1048576 |0 | |
-ROW |50292 |28390 |1 |20 |1d |0 | |
-ROW |50293 |28391 |1 |20 |1d |0 | |
-ROW |50294 |28422 |1 |1 |1048576 |0 | |
-ROW |50295 |28425 |1 |1 |1048576 |0 | |
-ROW |50296 |28466 |1 |20 |1d |0 | |
-ROW |50297 |28467 |1 |20 |1d |0 | |
-ROW |50298 |28479 |1 |5 |(\d{1,3}) *%( of maximum)?&bsn;\1 |0 | |
+ROW |50299 |28743 |1 |20 |10m |0 | |
+ROW |50300 |30896 |1 |21 |// Convert Apache status to JSON&bsn;var lines = value.split('\n');&bsn;var output = {},&bsn; workers = {&bsn; '_': 0, 'S': 0, 'R': 0, 'W': 0,&bsn; 'K': 0, 'D': 0, 'C': 0, 'L': 0,&bsn; 'G': 0, 'I': 0, '.': 0&bsn; };&bsn;&bsn;// Get all "Key: Value" pairs as an object&bsn;for (var i = 0; i < lines.length; i++) {&bsn; var line = lines[i].match(/([A-z0-9 ]+): (.*)/);&bsn;&bsn; if (line !== null) {&bsn; output[line[1]] = isNaN(line[2]) ? line[2] : Number(line[2]);&bsn; }&bsn;}&bsn;&bsn;// Multiversion metrics&bsn;output.ServerUptimeSeconds = output.ServerUptimeSeconds &pipe;&pipe; output.Uptime;&bsn;output.ServerVersion = output.Server &pipe;&pipe; output.ServerVersion;&bsn;&bsn;// Parse "Scoreboard" to get worker count.&bsn;if (typeof output.Scoreboard === 'string') {&bsn; for (var i = 0; i < output.Scoreboard.length; i++) {&bsn; var char = output.Scoreboard[i];&bsn;&bsn; workers[char]++;&bsn; }&bsn;}&bsn;&bsn;// Add worker data to the output&bsn;output.Workers = {&bsn; waiting: workers['_'], starting: workers['S'], reading: workers['R'],&bsn; sending: workers['W'], keepalive: workers['K'], dnslookup: workers['D'],&bsn; closing: workers['C'], logging: workers['L'], finishing: workers['G'],&bsn; cleanup: workers['I'], slot: workers['.']&bsn;};&bsn;&bsn;// Return JSON string&bsn;return JSON.stringify(output);|0 | |
+ROW |50301 |30897 |1 |12 |$.Workers.reading |0 | |
+ROW |50302 |30898 |1 |12 |$.Workers.waiting |0 | |
+ROW |50303 |30899 |1 |12 |$.Workers.starting |0 | |
+ROW |50304 |30900 |1 |12 |$.Workers.slot |0 | |
+ROW |50305 |30901 |1 |12 |$.Workers.sending |0 | |
+ROW |50306 |30902 |1 |12 |$["Total kBytes"] |0 | |
+ROW |50307 |30902 |2 |1 |1024 |0 | |
+ROW |50308 |30903 |1 |12 |$["Total kBytes"] |0 | |
+ROW |50309 |30903 |2 |1 |1024 |0 | |
+ROW |50310 |30903 |3 |10 | |0 | |
+ROW |50311 |30904 |1 |12 |$.Workers.keepalive |0 | |
+ROW |50312 |30905 |1 |12 |$.Workers.finishing |0 | |
+ROW |50313 |30906 |1 |12 |$.Workers.dnslookup |0 | |
+ROW |50314 |30907 |1 |12 |$.Workers.closing |0 | |
+ROW |50315 |30908 |1 |12 |$.Workers.cleanup |0 | |
+ROW |50316 |30909 |1 |12 |$.IdleWorkers |0 | |
+ROW |50317 |30910 |1 |12 |$.BusyWorkers |0 | |
+ROW |50318 |30911 |1 |12 |$.ServerVersion |0 | |
+ROW |50319 |30911 |2 |20 |1d |0 | |
+ROW |50320 |30912 |1 |12 |$.ServerUptimeSeconds |0 | |
+ROW |50321 |30913 |1 |12 |$["Total Accesses"] |0 | |
+ROW |50322 |30913 |2 |10 | |0 | |
+ROW |50323 |30914 |1 |12 |$["Total Accesses"] |0 | |
+ROW |50324 |30915 |1 |12 |$.Workers.logging |0 | |
+ROW |50325 |30916 |1 |12 |$.ServerMPM |0 | |
+ROW |50326 |30916 |2 |21 |return JSON.stringify(value === 'event' ? [{'{#SINGLETON}': ''}] : []); |0 | |
+ROW |50327 |30917 |1 |12 |$.BytesPerReq |0 | |
+ROW |50328 |30918 |1 |12 |$.ConnsAsyncClosing |0 | |
+ROW |50329 |30919 |1 |12 |$.ConnsAsyncKeepAlive |0 | |
+ROW |50330 |30920 |1 |12 |$.ConnsAsyncWriting |0 | |
+ROW |50331 |30921 |1 |12 |$.ConnsTotal |0 | |
+ROW |50332 |30922 |1 |12 |$.Processes |0 | |
+ROW |50333 |28775 |1 |21 |// Convert Apache status to JSON&bsn;var lines = value.split('\n');&bsn;var output = {},&bsn; workers = {&bsn; '_': 0, 'S': 0, 'R': 0, 'W': 0,&bsn; 'K': 0, 'D': 0, 'C': 0, 'L': 0,&bsn; 'G': 0, 'I': 0, '.': 0&bsn; };&bsn;&bsn;// Get all "Key: Value" pairs as an object&bsn;for (var i = 0; i < lines.length; i++) {&bsn; var line = lines[i].match(/([A-z0-9 ]+): (.*)/);&bsn;&bsn; if (line !== null) {&bsn; output[line[1]] = isNaN(line[2]) ? line[2] : Number(line[2]);&bsn; }&bsn;}&bsn;&bsn;// Multiversion metrics&bsn;output.ServerUptimeSeconds = output.ServerUptimeSeconds &pipe;&pipe; output.Uptime;&bsn;output.ServerVersion = output.Server &pipe;&pipe; output.ServerVersion;&bsn;&bsn;// Parse "Scoreboard" to get worker count.&bsn;if (typeof output.Scoreboard === 'string') {&bsn; for (var i = 0; i < output.Scoreboard.length; i++) {&bsn; var char = output.Scoreboard[i];&bsn;&bsn; workers[char]++;&bsn; }&bsn;}&bsn;&bsn;// Add worker data to the output&bsn;output.Workers = {&bsn; waiting: workers['_'], starting: workers['S'], reading: workers['R'],&bsn; sending: workers['W'], keepalive: workers['K'], dnslookup: workers['D'],&bsn; closing: workers['C'], logging: workers['L'], finishing: workers['G'],&bsn; cleanup: workers['I'], slot: workers['.']&bsn;};&bsn;&bsn;// Return JSON string&bsn;return JSON.stringify(output);|0 | |
+ROW |50334 |28776 |1 |20 |10m |0 | |
+ROW |50335 |28778 |1 |12 |$.Workers.starting |0 | |
+ROW |50336 |28779 |1 |12 |$.Workers.slot |0 | |
+ROW |50337 |28780 |1 |12 |$.Workers.sending |0 | |
+ROW |50338 |28781 |1 |12 |$.Workers.reading |0 | |
+ROW |50339 |28782 |1 |12 |$.Workers.logging |0 | |
+ROW |50340 |28783 |1 |12 |$.Workers.keepalive |0 | |
+ROW |50341 |28784 |1 |12 |$.Workers.cleanup |0 | |
+ROW |50342 |28785 |1 |12 |$.Workers.finishing |0 | |
+ROW |50343 |28786 |1 |12 |$.Workers.closing |0 | |
+ROW |50344 |28787 |1 |12 |$.Workers.dnslookup |0 | |
+ROW |50345 |28788 |1 |12 |$.IdleWorkers |0 | |
+ROW |50346 |28789 |1 |12 |$.BusyWorkers |0 | |
+ROW |50347 |28790 |1 |12 |$.ServerVersion |0 | |
+ROW |50348 |28790 |2 |20 |1d |0 | |
+ROW |50349 |28791 |1 |12 |$.ServerUptimeSeconds |0 | |
+ROW |50350 |28792 |1 |12 |$["Total Accesses"] |0 | |
+ROW |50351 |28793 |1 |12 |$["Total Accesses"] |0 | |
+ROW |50352 |28793 |2 |10 | |0 | |
+ROW |50353 |28794 |1 |12 |$["Total kBytes"] |0 | |
+ROW |50354 |28794 |2 |1 |1024 |0 | |
+ROW |50355 |28794 |3 |10 | |0 | |
+ROW |50356 |28795 |1 |12 |$["Total kBytes"] |0 | |
+ROW |50357 |28795 |2 |1 |1024 |0 | |
+ROW |50358 |28796 |1 |12 |$.Workers.waiting |0 | |
+ROW |50359 |28797 |1 |12 |$.ServerMPM |0 | |
+ROW |50360 |28797 |2 |21 |return JSON.stringify(value === 'event' ? [{'{#SINGLETON}': ''}] : []); |0 | |
+ROW |50361 |28798 |1 |12 |$.ConnsAsyncClosing |0 | |
+ROW |50362 |28799 |1 |12 |$.ConnsAsyncKeepAlive |0 | |
+ROW |50363 |28800 |1 |12 |$.ConnsAsyncWriting |0 | |
+ROW |50364 |28801 |1 |12 |$.ConnsTotal |0 | |
+ROW |50365 |28802 |1 |12 |$.BytesPerReq |0 | |
+ROW |50366 |28803 |1 |12 |$.Processes |0 | |
+ROW |50367 |30530 |1 |20 |10m |0 | |
+ROW |50368 |30532 |1 |12 |$.Architecture |0 | |
+ROW |50369 |30532 |2 |20 |1d |0 | |
+ROW |50370 |30533 |1 |12 |$.LiveRestoreEnabled |0 | |
+ROW |50371 |30533 |2 |6 | |0 | |
+ROW |50372 |30533 |3 |20 |1d |0 | |
+ROW |50373 |30534 |1 |12 |$.LoggingDriver |0 | |
+ROW |50374 |30534 |2 |20 |1d |0 | |
+ROW |50375 |30535 |1 |12 |$.MemoryLimit |0 | |
+ROW |50376 |30535 |2 |6 | |0 | |
+ROW |50377 |30535 |3 |20 |1d |0 | |
+ROW |50378 |30536 |1 |12 |$.MemTotal |0 | |
+ROW |50379 |30537 |1 |12 |$.Name |0 | |
+ROW |50380 |30538 |1 |12 |$.NCPU |0 | |
+ROW |50381 |30539 |1 |12 |$.NFd |0 | |
+ROW |50382 |30540 |1 |12 |$.NEventsListener |0 | |
+ROW |50383 |30541 |1 |12 |$.KernelVersion |0 | |
+ROW |50384 |30541 |2 |20 |1d |0 | |
+ROW |50385 |30542 |1 |12 |$.OomKillDisable |0 | |
+ROW |50386 |30542 |2 |6 | |0 | |
+ROW |50387 |30542 |3 |20 |1d |0 | |
+ROW |50388 |30543 |1 |12 |$.OperatingSystem |0 | |
+ROW |50389 |30543 |2 |20 |1d |0 | |
+ROW |50390 |30544 |1 |12 |$.OSType |0 | |
+ROW |50391 |30544 |2 |20 |1d |0 | |
+ROW |50392 |30545 |1 |12 |$.PidsLimit |0 | |
+ROW |50393 |30545 |2 |6 | |0 | |
+ROW |50394 |30545 |3 |20 |1d |0 | |
+ROW |50395 |30546 |1 |12 |$.DockerRootDir |0 | |
+ROW |50396 |30546 |2 |20 |1d |0 | |
+ROW |50397 |30547 |1 |12 |$.ServerVersion |0 | |
+ROW |50398 |30547 |2 |20 |1d |0 | |
+ROW |50399 |30548 |1 |12 |$.SwapLimit |0 | |
+ROW |50400 |30548 |2 |6 | |0 | |
+ROW |50401 |30548 |3 |20 |1d |0 | |
+ROW |50402 |30549 |1 |12 |$.LayersSize |0 | |
+ROW |50403 |30550 |1 |12 |$.IPv4Forwarding |0 | |
+ROW |50404 |30550 |2 |6 | |0 | |
+ROW |50405 |30550 |3 |20 |1d |0 | |
+ROW |50406 |30551 |1 |12 |$.KernelMemory |0 | |
+ROW |50407 |30551 |2 |6 | |0 | |
+ROW |50408 |30551 |3 |20 |1d |0 | |
+ROW |50409 |30552 |1 |12 |$.CPUSet |0 | |
+ROW |50410 |30552 |2 |6 | |0 | |
+ROW |50411 |30552 |3 |20 |1d |0 | |
+ROW |50412 |30553 |1 |12 |$.Containers[*].SizeRw.sum() |0 | |
+ROW |50413 |30554 |1 |12 |$.ContainersPaused |0 | |
+ROW |50414 |30555 |1 |12 |$.ContainersRunning |0 | |
+ROW |50415 |30556 |1 |12 |$.ContainersStopped |0 | |
+ROW |50416 |30557 |1 |12 |$.Containers |0 | |
+ROW |50417 |30558 |1 |12 |$.CpuCfsPeriod |0 | |
+ROW |50418 |30558 |2 |6 | |0 | |
+ROW |50419 |30558 |3 |20 |1d |0 | |
+ROW |50420 |30559 |1 |12 |$.CpuCfsQuota |0 | |
+ROW |50421 |30559 |2 |6 | |0 | |
+ROW |50422 |30559 |3 |20 |1d |0 | |
+ROW |50423 |30560 |1 |12 |$.CPUShares |0 | |
+ROW |50424 |30560 |2 |6 | |0 | |
+ROW |50425 |30560 |3 |20 |1d |0 | |
+ROW |50426 |30561 |1 |12 |$.KernelMemoryTCP |0 | |
+ROW |50427 |30561 |2 |6 | |0 | |
+ROW |50428 |30561 |3 |20 |1d |0 | |
+ROW |50429 |30562 |1 |12 |$.Debug |0 | |
+ROW |50430 |30562 |2 |6 | |0 | |
+ROW |50431 |30562 |3 |20 |1d |0 | |
+ROW |50432 |30563 |1 |12 |$.DefaultRuntime |0 | |
+ROW |50433 |30563 |2 |20 |1d |0 | |
+ROW |50434 |30564 |1 |12 |$.Driver |0 | |
+ROW |50435 |30564 |2 |20 |1d |0 | |
+ROW |50436 |30565 |1 |12 |$.NGoroutines |0 | |
+ROW |50437 |30566 |1 |12 |$.Images[*].Size.sum() |0 | |
+ROW |50438 |30567 |1 |12 |$.length() |0 | |
+ROW |50439 |30568 |1 |12 |$.Images |0 | |
+ROW |50440 |30569 |1 |12 |$.CgroupDriver |0 | |
+ROW |50441 |30569 |2 |20 |1d |0 | |
+ROW |50442 |30570 |1 |12 |$.Volumes[*].UsageData.Size.sum() |0 | |
+ROW |50443 |30575 |1 |12 |$.cpu_stats.online_cpus |0 | |
+ROW |50444 |30576 |1 |12 |$.memory_stats.commitbytes |0 | |
+ROW |50445 |30577 |1 |12 |$.memory_stats.commitpeakbytes |0 | |
+ROW |50446 |30578 |1 |12 |$.memory_stats.max_usage |0 | |
+ROW |50447 |30579 |1 |12 |$.memory_stats.privateworkingset |0 | |
+ROW |50448 |30580 |1 |12 |$.memory_stats.usage |0 | |
+ROW |50449 |30581 |1 |12 |$.Created |0 | |
+ROW |50450 |30581 |2 |20 |1d |0 | |
+ROW |50451 |30582 |1 |12 |$.cpu_stats.cpu_usage.total_usage |0 | |
+ROW |50452 |30582 |2 |10 | |0 | |
+ROW |50453 |30582 |3 |1 |1.0E-9 |0 | |
+ROW |50454 |30583 |1 |12 |$.networks[*].rx_bytes.sum() |2 |0 |
+ROW |50455 |30583 |2 |10 | |0 | |
+ROW |50456 |30584 |1 |12 |$.networks[*].rx_dropped.sum() |2 |0 |
+ROW |50457 |30584 |2 |10 | |0 | |
+ROW |50458 |30585 |1 |12 |$.networks[*].rx_errors.sum() |2 |0 |
+ROW |50459 |30585 |2 |10 | |0 | |
+ROW |50460 |30586 |1 |12 |$.networks[*].rx_packets.sum() |2 |0 |
+ROW |50461 |30586 |2 |10 | |0 | |
+ROW |50462 |30587 |1 |12 |$.networks[*].tx_bytes.sum() |2 |0 |
+ROW |50463 |30587 |2 |10 | |0 | |
+ROW |50464 |30588 |1 |12 |$.networks[*].tx_dropped.sum() |2 |0 |
+ROW |50465 |30588 |2 |10 | |0 | |
+ROW |50466 |30589 |1 |12 |$.networks[*].tx_errors.sum() |2 |0 |
+ROW |50467 |30589 |2 |10 | |0 | |
+ROW |50468 |30590 |1 |12 |$.cpu_stats.cpu_usage.usage_in_usermode |0 | |
+ROW |50469 |30590 |2 |10 | |0 | |
+ROW |50470 |30590 |3 |1 |1.0E-9 |0 | |
+ROW |50471 |30591 |1 |12 |$.cpu_stats.throttling_data.periods |0 | |
+ROW |50472 |30592 |1 |12 |$.State.FinishedAt |0 | |
+ROW |50473 |30592 |2 |20 |1d |0 | |
+ROW |50474 |30593 |1 |12 |$.State.OOMKilled |0 | |
+ROW |50475 |30593 |2 |6 | |0 | |
+ROW |50476 |30594 |1 |12 |$[?(@.Names[0] == "{#NAME}")].Image.first() |0 | |
+ROW |50477 |30594 |2 |20 |1d |0 | |
+ROW |50478 |30595 |1 |12 |$.RestartCount |0 | |
+ROW |50479 |30596 |1 |12 |$.State.StartedAt |0 | |
+ROW |50480 |30596 |2 |20 |1d |0 | |
+ROW |50481 |30597 |1 |12 |$.State.Dead |0 | |
+ROW |50482 |30597 |2 |6 | |0 | |
+ROW |50483 |30598 |1 |12 |$.State.Error |0 | |
+ROW |50484 |30598 |2 |20 |1d |0 | |
+ROW |50485 |30599 |1 |12 |$.State.ExitCode |0 | |
+ROW |50486 |30599 |2 |20 |1d |0 | |
+ROW |50487 |30600 |1 |12 |$.State.Paused |0 | |
+ROW |50488 |30600 |2 |6 | |0 | |
+ROW |50489 |30601 |1 |12 |$.cpu_stats.throttling_data.throttled_time |0 | |
+ROW |50490 |30601 |2 |1 |1.0E-9 |0 | |
+ROW |50491 |30602 |1 |12 |$.State.Pid |0 | |
+ROW |50492 |30602 |2 |20 |1d |0 | |
+ROW |50493 |30603 |1 |12 |$.State.Restarting |0 | |
+ROW |50494 |30603 |2 |6 | |0 | |
+ROW |50495 |30604 |1 |12 |$.State.Running |0 | |
+ROW |50496 |30604 |2 |6 | |0 | |
+ROW |50497 |30605 |1 |12 |$.State.Status |0 | |
+ROW |50498 |30605 |2 |20 |1h |0 | |
+ROW |50499 |30606 |1 |12 |$.cpu_stats.cpu_usage.usage_in_kernelmode |0 | |
+ROW |50500 |30606 |2 |10 | |0 | |
+ROW |50501 |30606 |3 |1 |1.0E-9 |0 | |
+ROW |50502 |30607 |1 |12 |$.cpu_stats.throttling_data.throttled_periods |0 | |
+ROW |50503 |30608 |1 |12 |$.networks[*].tx_packets.sum() |2 |0 |
+ROW |50504 |30608 |2 |10 | |0 | |
+ROW |50505 |30609 |1 |12 |$[?(@.Id == "{#ID}")].Created.first() |0 | |
+ROW |50506 |30609 |2 |20 |1d |0 | |
+ROW |50507 |30610 |1 |12 |$[?(@.Id == "{#ID}")].Size.first() |0 | |
+ROW |50508 |30690 |1 |20 |10m |0 | |
+ROW |50509 |30695 |1 |12 |$.indices.docs.count |0 | |
+ROW |50510 |30695 |2 |20 |1h |0 | |
+ROW |50511 |30696 |1 |12 |$.nodes.jvm.max_uptime_in_millis |0 | |
+ROW |50512 |30696 |2 |1 |0.001 |0 | |
+ROW |50513 |30697 |1 |12 |$.nodes.fs.total_in_bytes |0 | |
+ROW |50514 |30697 |2 |20 |1h |0 | |
+ROW |50515 |30698 |1 |12 |$.nodes.fs.available_in_bytes |0 | |
+ROW |50516 |30698 |2 |20 |1h |0 | |
+ROW |50517 |30699 |1 |12 |$.nodes.count.master |0 | |
+ROW |50518 |30699 |2 |20 |1h |0 | |
+ROW |50519 |30700 |1 |12 |$.nodes.count.ingest |0 | |
+ROW |50520 |30700 |2 |20 |1h |0 | |
+ROW |50521 |30701 |1 |12 |$.nodes.count.data |0 | |
+ROW |50522 |30701 |2 |20 |1h |0 | |
+ROW |50523 |30702 |1 |12 |$.delayed_unassigned_shards |0 | |
+ROW |50524 |30703 |1 |12 |$.indices.count |0 | |
+ROW |50525 |30703 |2 |20 |1h |0 | |
+ROW |50526 |30704 |1 |12 |$.task_max_waiting_in_queue_millis |0 | |
+ROW |50527 |30704 |2 |1 |0.001 |0 | |
+ROW |50528 |30705 |1 |12 |$.status |0 | |
+ROW |50529 |30705 |2 |21 |var state = ['green', 'yellow', 'red'];&bsn;&bsn;return state.indexOf(value.trim()) === -1 ? 255 : state.indexOf(value.trim());&bsn; |0 | |
+ROW |50530 |30705 |3 |20 |1h |0 | |
+ROW |50531 |30706 |1 |12 |$.relocating_shards |0 | |
+ROW |50532 |30707 |1 |12 |$.number_of_pending_tasks |0 | |
+ROW |50533 |30708 |1 |12 |$.number_of_nodes |0 | |
+ROW |50534 |30708 |2 |20 |1h |0 | |
+ROW |50535 |30709 |1 |12 |$.number_of_data_nodes |0 | |
+ROW |50536 |30709 |2 |20 |1h |0 | |
+ROW |50537 |30710 |1 |12 |$.initializing_shards |0 | |
+ROW |50538 |30711 |1 |12 |$.active_shards_percent_as_number |0 | |
+ROW |50539 |30711 |2 |21 |return (100 - value) |0 | |
+ROW |50540 |30712 |1 |12 |$.unassigned_shards |0 | |
+ROW |50541 |30713 |1 |12 |$.nodes.[*] |0 | |
+ROW |50542 |30713 |2 |20 |1d |0 | |
+ROW |50543 |30718 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.refresh.active.first() |0 | |
+ROW |50544 |30719 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.query_total.first() |0 | |
+ROW |50545 |30719 |2 |20 |1h |0 | |
+ROW |50546 |30720 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.query_total.first() |0 | |
+ROW |50547 |30720 |2 |10 | |0 | |
+ROW |50548 |30721 |1 |12 |$..[?(@.name=='{#ES.NODE}')].jvm.mem.heap_committed_in_bytes.first() |0 | |
+ROW |50549 |30721 |2 |20 |1h |0 | |
+ROW |50550 |30722 |1 |12 |$..[?(@.name=='{#ES.NODE}')].jvm.mem.heap_max_in_bytes.first() |0 | |
+ROW |50551 |30722 |2 |20 |1d |0 | |
+ROW |50552 |30723 |1 |12 |$..[?(@.name=='{#ES.NODE}')].jvm.mem.heap_used_in_bytes.first() |0 | |
+ROW |50553 |30723 |2 |20 |1h |0 | |
+ROW |50554 |30724 |1 |12 |$..[?(@.name=='{#ES.NODE}')].jvm.mem.heap_used_percent.first() |0 | |
+ROW |50555 |30724 |2 |20 |1h |0 | |
+ROW |50556 |30725 |1 |12 |$..[?(@.name=='{#ES.NODE}')].jvm.uptime_in_millis.first() |0 | |
+ROW |50557 |30725 |2 |1 |0.001 |0 | |
+ROW |50558 |30726 |1 |12 |$..[?(@.name=='{#ES.NODE}')].fs.total.available_in_bytes.first() |0 | |
+ROW |50559 |30726 |2 |20 |1h |0 | |
+ROW |50560 |30727 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.refresh.completed.first() |0 | |
+ROW |50561 |30727 |2 |10 | |0 | |
+ROW |50562 |30728 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.query_time_in_millis.first() |0 | |
+ROW |50563 |30728 |2 |1 |0.001 |0 | |
+ROW |50564 |30728 |3 |9 | |0 | |
+ROW |50565 |30729 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.refresh.rejected.first() |0 | |
+ROW |50566 |30729 |2 |10 | |0 | |
+ROW |50567 |30730 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.search.active.first() |0 | |
+ROW |50568 |30731 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.search.completed.first() |0 | |
+ROW |50569 |30731 |2 |10 | |0 | |
+ROW |50570 |30732 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.search.queue.first() |0 | |
+ROW |50571 |30733 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.search.rejected.first() |0 | |
+ROW |50572 |30733 |2 |10 | |0 | |
+ROW |50573 |30734 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.write.active.first() |0 | |
+ROW |50574 |30735 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.write.completed.first() |0 | |
+ROW |50575 |30735 |2 |10 | |0 | |
+ROW |50576 |30736 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.write.queue.first() |0 | |
+ROW |50577 |30737 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.refresh.queue.first() |0 | |
+ROW |50578 |30738 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.query_current.first() |0 | |
+ROW |50579 |30739 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.query_time_in_millis.first() |0 | |
+ROW |50580 |30739 |2 |20 |1h |0 | |
+ROW |50581 |30740 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.indexing.throttle_time_in_millis.first() |0 | |
+ROW |50582 |30740 |2 |1 |0.001 |0 | |
+ROW |50583 |30740 |3 |9 | |0 | |
+ROW |50584 |30741 |1 |12 |$..[?(@.name=='{#ES.NODE}')].http.current_open.first() |0 | |
+ROW |50585 |30741 |2 |20 |1h |0 | |
+ROW |50586 |30742 |1 |12 |$..[?(@.name=='{#ES.NODE}')].http.total_opened.first() |0 | |
+ROW |50587 |30742 |2 |10 | |0 | |
+ROW |50588 |30743 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.flush.total_time_in_millis.first() |0 | |
+ROW |50589 |30743 |2 |20 |1h |0 | |
+ROW |50590 |30744 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.flush.total.first() |0 | |
+ROW |50591 |30744 |2 |20 |1h |0 | |
+ROW |50592 |30745 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.indexing.index_current.first() |0 | |
+ROW |50593 |30745 |2 |20 |1h |0 | |
+ROW |50594 |30746 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.indexing.index_time_in_millis.first() |0 | |
+ROW |50595 |30746 |2 |20 |1h |0 | |
+ROW |50596 |30747 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.indexing.index_total.first() |0 | |
+ROW |50597 |30747 |2 |20 |1h |0 | |
+ROW |50598 |30748 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.merges.total_throttled_time_in_millis.first() |0 | |
+ROW |50599 |30748 |2 |1 |0.001 |0 | |
+ROW |50600 |30748 |3 |9 | |0 | |
+ROW |50601 |30749 |1 |12 |$..[?(@.name=='{#ES.NODE}')].fs.total.total_in_bytes.first() |0 | |
+ROW |50602 |30749 |2 |20 |1d |0 | |
+ROW |50603 |30750 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.recovery.throttle_time_in_millis.first() |0 | |
+ROW |50604 |30750 |2 |1 |0.001 |0 | |
+ROW |50605 |30750 |3 |9 | |0 | |
+ROW |50606 |30751 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.refresh.total.first() |0 | |
+ROW |50607 |30751 |2 |10 | |0 | |
+ROW |50608 |30752 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.refresh.total_time_in_millis.first() |0 | |
+ROW |50609 |30752 |2 |1 |0.001 |0 | |
+ROW |50610 |30752 |3 |9 | |0 | |
+ROW |50611 |30753 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.fetch_current.first() |0 | |
+ROW |50612 |30754 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.fetch_time_in_millis.first() |0 | |
+ROW |50613 |30754 |2 |20 |1h |0 | |
+ROW |50614 |30755 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.fetch_time_in_millis.first() |0 | |
+ROW |50615 |30755 |2 |1 |0.001 |0 | |
+ROW |50616 |30755 |3 |9 | |0 | |
+ROW |50617 |30756 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.fetch_total.first() |0 | |
+ROW |50618 |30756 |2 |20 |1h |0 | |
+ROW |50619 |30757 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.fetch_total.first() |0 | |
+ROW |50620 |30757 |2 |10 | |0 | |
+ROW |50621 |30758 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.write.rejected.first() |0 | |
+ROW |50622 |30758 |2 |10 | |0 | |
+ROW |50623 |30923 |1 |20 |10m |0 | |
+ROW |50624 |30924 |1 |12 |$.health |0 | |
+ROW |50625 |30924 |2 |6 | |2 |0 |
+ROW |50626 |30924 |3 |20 |10m |0 | |
+ROW |50627 |30927 |1 |22 |process_open_fds&bsn; |0 | |
+ROW |50628 |30928 |1 |22 |etcd_server_proposals_applied_total&bsn; |0 | |
+ROW |50629 |30928 |2 |10 | |0 | |
+ROW |50630 |30929 |1 |22 |etcd_server_proposals_committed_total&bsn; |0 | |
+ROW |50631 |30929 |2 |10 | |0 | |
+ROW |50632 |30930 |1 |22 |etcd_server_proposals_failed_total&bsn; |0 | |
+ROW |50633 |30930 |2 |10 | |0 | |
+ROW |50634 |30931 |1 |22 |etcd_server_proposals_pending&bsn; |0 | |
+ROW |50635 |30932 |1 |22 |etcd_debugging_mvcc_put_total&bsn; |0 | |
+ROW |50636 |30932 |2 |10 | |0 | |
+ROW |50637 |30933 |1 |22 |etcd_debugging_mvcc_range_total&bsn; |0 | |
+ROW |50638 |30933 |2 |10 | |0 | |
+ROW |50639 |30934 |1 |23 |etcd_debugging_store_reads_total |0 | |
+ROW |50640 |30934 |2 |21 |//calculates total reads&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0); |0 | |
+ROW |50641 |30934 |3 |10 | |0 | |
+ROW |50642 |30935 |1 |22 |etcd_network_client_grpc_received_bytes_total&bsn; |0 | |
+ROW |50643 |30935 |2 |10 | |0 | |
+ROW |50644 |30936 |1 |22 |process_resident_memory_bytes&bsn; |0 | |
+ROW |50645 |30937 |1 |12 |$.etcdserver |0 | |
+ROW |50646 |30937 |2 |20 |1d |0 | |
+ROW |50647 |30938 |1 |22 |etcd_debugging_mvcc_range_total&bsn; |0 | |
+ROW |50648 |30938 |2 |10 | |0 | |
+ROW |50649 |30939 |1 |22 |process_start_time_seconds&bsn; |0 | |
+ROW |50650 |30939 |2 |21 |//use boottime to calculate uptime&bsn;return (Math.floor(Date.now()/1000)-Number(value)); |0 | |
+ROW |50651 |30940 |1 |22 |process_virtual_memory_bytes&bsn; |0 | |
+ROW |50652 |30941 |1 |23 |etcd_debugging_store_writes_total |0 | |
+ROW |50653 |30941 |2 |21 |var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0); |0 | |
+ROW |50654 |30941 |3 |10 | |0 | |
+ROW |50655 |30942 |1 |22 |etcd_network_client_grpc_sent_bytes_total&bsn; |0 | |
+ROW |50656 |30942 |2 |10 | |0 | |
+ROW |50657 |30943 |1 |12 |$.etcdcluster |0 | |
+ROW |50658 |30943 |2 |20 |1d |0 | |
+ROW |50659 |30944 |1 |22 |process_max_fds&bsn; |0 | |
+ROW |50660 |30945 |1 |22 |etcd_server_has_leader&bsn; |0 | |
+ROW |50661 |30945 |2 |20 |10m |0 | |
+ROW |50662 |30946 |1 |22 |etcd_debugging_mvcc_db_total_size_in_bytes&bsn; |0 | |
+ROW |50663 |30947 |1 |22 |etcd_debugging_mvcc_delete_total&bsn; |0 | |
+ROW |50664 |30947 |2 |10 | |0 | |
+ROW |50665 |30948 |1 |22 |etcd_debugging_mvcc_pending_events_total&bsn; |0 | |
+ROW |50666 |30949 |1 |23 |grpc_server_msg_received_total |0 | |
+ROW |50667 |30949 |2 |21 |var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0); |0 | |
+ROW |50668 |30949 |3 |10 | |0 | |
+ROW |50669 |30950 |1 |23 |grpc_server_msg_sent_total |0 | |
+ROW |50670 |30950 |2 |21 |var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0); |0 | |
+ROW |50671 |30950 |3 |10 | |0 | |
+ROW |50672 |30951 |1 |23 |grpc_server_started_total |0 | |
+ROW |50673 |30951 |2 |21 |var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0); |0 | |
+ROW |50674 |30951 |3 |10 | |0 | |
+ROW |50675 |30952 |1 |23 |etcd_http_failed_total{code=~"4.+"} |0 | |
+ROW |50676 |30952 |2 |21 |var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0); |0 | |
+ROW |50677 |30952 |3 |10 | |0 | |
+ROW |50678 |30953 |1 |22 |process_cpu_seconds_total&bsn; |0 | |
+ROW |50679 |30953 |2 |10 | |0 | |
+ROW |50680 |30954 |1 |23 |etcd_http_failed_total{code=~"5.+"} |0 | |
+ROW |50681 |30954 |2 |21 |var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0); |0 | |
+ROW |50682 |30954 |3 |10 | |0 | |
+ROW |50683 |30955 |1 |23 |etcd_http_received_total |0 | |
+ROW |50684 |30955 |2 |21 |var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0); |0 | |
+ROW |50685 |30955 |3 |10 | |0 | |
+ROW |50686 |30956 |1 |22 |etcd_server_is_leader&bsn; |2 |0 |
+ROW |50687 |30956 |2 |20 |10m |0 | |
+ROW |50688 |30957 |1 |22 |etcd_debugging_mvcc_db_compaction_keys_total&bsn; |2 |0 |
+ROW |50689 |30957 |2 |10 | |0 | |
+ROW |50690 |30958 |1 |22 |etcd_debugging_store_expires_total&bsn; |0 | |
+ROW |50691 |30958 |2 |10 | |0 | |
+ROW |50692 |30959 |1 |22 |etcd_debugging_mvcc_keys_total&bsn; |0 | |
+ROW |50693 |30960 |1 |22 |etcd_server_leader_changes_seen_total&bsn; |0 | |
+ROW |50694 |30961 |1 |23 |grpc_server_handled_total |0 | |
+ROW |50695 |30961 |2 |21 |var data = JSON.parse(value),&bsn; lookup = {},&bsn; result =[];&bsn;for (var item, i = 0; item = data[i++];) {&bsn; var code = item.labels.grpc_code;&bsn; if (!(code in lookup)) {&bsn; lookup[code] = 1;&bsn; result.push({ "{#GRPC.CODE}": code});&bsn;}&bsn;}&bsn;return JSON.stringify(result); |0 | |
+ROW |50696 |30961 |3 |20 |1h |0 | |
+ROW |50697 |30962 |1 |23 |etcd_network_peer_sent_bytes_total |0 | |
+ROW |50698 |30963 |1 |23 |grpc_server_handled_total{grpc_method="{#GRPC.CODE}"} |0 | |
+ROW |50699 |30963 |2 |21 |var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0); |0 | |
+ROW |50700 |30963 |3 |10 | |0 | |
+ROW |50701 |30964 |1 |22 |etcd_network_peer_received_bytes_total{From="{#ETCD.PEER}"}&bsn; |2 |0 |
+ROW |50702 |30964 |2 |10 | |0 | |
+ROW |50703 |30965 |1 |22 |etcd_network_peer_sent_bytes_total{To="{#ETCD.PEER}"}&bsn; |2 |0 |
+ROW |50704 |30965 |2 |10 | |0 | |
+ROW |50705 |30966 |1 |22 |etcd_network_peer_received_failures_total{To="{#ETCD.PEER}"}&bsn; |2 |0 |
+ROW |50706 |30966 |2 |10 | |0 | |
+ROW |50707 |30967 |1 |22 |etcd_network_peer_sent_failures_total{To="{#ETCD.PEER}"}&bsn; |2 |0 |
+ROW |50708 |30967 |2 |10 | |0 | |
+ROW |50709 |31499 |1 |20 |10m |0 | |
+ROW |50710 |31501 |1 |20 |10m |0 | |
+ROW |50711 |31504 |1 |20 |10m |0 | |
+ROW |50712 |31507 |1 |20 |10m |0 | |
+ROW |50713 |31510 |1 |20 |10m |0 | |
+ROW |50714 |31512 |1 |20 |10m |0 | |
+ROW |50715 |31516 |1 |20 |10m |0 | |
+ROW |50716 |31518 |1 |1 |100 |0 | |
+ROW |50717 |31519 |1 |1 |0.001 |0 | |
+ROW |50718 |31520 |1 |20 |30m |0 | |
+ROW |50719 |31521 |1 |20 |30m |0 | |
+ROW |50720 |31522 |1 |20 |10m |0 | |
+ROW |50721 |31526 |1 |20 |10m |0 | |
+ROW |50722 |31527 |1 |20 |10m |0 | |
+ROW |50723 |31528 |1 |10 | |0 | |
+ROW |50724 |31529 |1 |20 |10m |0 | |
+ROW |50725 |31530 |1 |20 |30m |0 | |
+ROW |50726 |31531 |1 |1 |0.001 |0 | |
+ROW |50727 |31531 |2 |20 |10m |0 | |
+ROW |50728 |31532 |1 |10 | |0 | |
+ROW |50729 |31533 |1 |1 |0.001 |0 | |
+ROW |50730 |31533 |2 |20 |10m |0 | |
+ROW |50731 |31534 |1 |10 | |0 | |
+ROW |50732 |31535 |1 |1 |0.001 |0 | |
+ROW |50733 |31535 |2 |20 |10m |0 | |
+ROW |50734 |31536 |1 |10 | |0 | |
+ROW |50735 |31537 |1 |1 |0.001 |0 | |
+ROW |50736 |31537 |2 |20 |10m |0 | |
+ROW |50737 |31538 |1 |10 | |0 | |
+ROW |50738 |31539 |1 |1 |0.001 |0 | |
+ROW |50739 |31539 |2 |20 |10m |0 | |
+ROW |50740 |31540 |1 |1 |0.001 |0 | |
+ROW |50741 |31540 |2 |20 |10m |0 | |
+ROW |50742 |31542 |1 |10 | |0 | |
+ROW |50743 |31543 |1 |1 |0.001 |0 | |
+ROW |50744 |31543 |2 |20 |10m |0 | |
+ROW |50745 |31545 |1 |20 |10m |0 | |
+ROW |50746 |31546 |1 |20 |10m |0 | |
+ROW |50747 |31547 |1 |20 |10m |0 | |
+ROW |50748 |31548 |1 |20 |10m |0 | |
+ROW |50749 |31549 |1 |20 |10m |0 | |
+ROW |50750 |31550 |1 |20 |10m |0 | |
+ROW |50751 |31551 |1 |20 |10m |0 | |
+ROW |50752 |30188 |1 |20 |10m |0 | |
+ROW |50753 |30189 |1 |5 |# ([\s\S]*)&bsn;\1 |0 | |
+ROW |50754 |30189 |2 |24 |&bsn;&bsn;1 |0 | |
+ROW |50755 |30191 |1 |21 |try {&bsn; var t = value.match(/(\d+)d (\d+)h(\d+)m(\d+)s/);&bsn; return t[1] * 86400 + t[2] * 3600 + t[3] * 60 + t[4] * 1;&bsn;}&bsn;catch (error) {&bsn; throw "HAProxy uptime is not found : " + error;&bsn;} |0 | |
+ROW |50756 |30192 |1 |5 |HAProxy version ([^,]*),&bsn;\1 |3 |HAProxy version is not found |
+ROW |50757 |30192 |2 |20 |1d |0 | |
+ROW |50758 |30197 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
+ROW |50759 |30197 |2 |10 | |0 | |
+ROW |50760 |30198 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
+ROW |50761 |30198 |2 |10 | |0 | |
+ROW |50762 |30199 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
+ROW |50763 |30199 |2 |10 | |0 | |
+ROW |50764 |30200 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
+ROW |50765 |30201 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
+ROW |50766 |30201 |2 |1 |0.001 |0 | |
+ROW |50767 |30202 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
+ROW |50768 |30202 |2 |1 |0.001 |0 | |
+ROW |50769 |30203 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
+ROW |50770 |30203 |2 |6 | |0 | |
+ROW |50771 |30203 |3 |20 |10m |0 | |
+ROW |50772 |30204 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
+ROW |50773 |30204 |2 |10 | |0 | |
+ROW |50774 |30205 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
+ROW |50775 |30205 |2 |10 | |0 | |
+ROW |50776 |30206 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bin.first() |0 | |
+ROW |50777 |30206 |2 |1 |8 |0 | |
+ROW |50778 |30206 |3 |10 | |0 | |
+ROW |50779 |30207 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bout.first() |0 | |
+ROW |50780 |30207 |2 |1 |8 |0 | |
+ROW |50781 |30207 |3 |10 | |0 | |
+ROW |50782 |30208 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dreq.first() |0 | |
+ROW |50783 |30208 |2 |10 | |0 | |
+ROW |50784 |30209 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].ereq.first() |0 | |
+ROW |50785 |30209 |2 |10 | |0 | |
+ROW |50786 |30210 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_1xx.first() |0 | |
+ROW |50787 |30210 |2 |10 | |0 | |
+ROW |50788 |30211 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_2xx.first() |0 | |
+ROW |50789 |30211 |2 |10 | |0 | |
+ROW |50790 |30212 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_3xx.first() |0 | |
+ROW |50791 |30212 |2 |10 | |0 | |
+ROW |50792 |30213 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_4xx.first() |0 | |
+ROW |50793 |30213 |2 |10 | |0 | |
+ROW |50794 |30214 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_5xx.first() |0 | |
+ROW |50795 |30214 |2 |10 | |0 | |
+ROW |50796 |30215 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rate.first() |0 | |
+ROW |50797 |30216 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].req_rate.first() |0 | |
+ROW |50798 |30217 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].scur.first() |0 | |
+ROW |50799 |30218 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].slim.first() |0 | |
+ROW |50800 |30218 |2 |20 |1h |0 | |
+ROW |50801 |30219 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
+ROW |50802 |30219 |2 |10 | |0 | |
+ROW |50803 |30220 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
+ROW |50804 |30220 |2 |10 | |0 | |
+ROW |50805 |30221 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
+ROW |50806 |30221 |2 |10 | |0 | |
+ROW |50807 |30222 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_4xx.first() |0 | |
+ROW |50808 |30222 |2 |10 | |0 | |
+ROW |50809 |30223 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_5xx.first() |0 | |
+ROW |50810 |30223 |2 |10 | |0 | |
+ROW |50811 |30224 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
+ROW |50812 |30225 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
+ROW |50813 |30225 |2 |1 |0.001 |0 | |
+ROW |50814 |30226 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
+ROW |50815 |30226 |2 |1 |0.001 |0 | |
+ROW |50816 |30227 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
+ROW |50817 |30227 |2 |6 | |0 | |
+ROW |50818 |30227 |3 |20 |10m |0 | |
+ROW |50819 |30228 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
+ROW |50820 |30228 |2 |10 | |0 | |
+ROW |50821 |30229 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
+ROW |50822 |30229 |2 |10 | |0 | |
+ROW |50823 |30763 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
+ROW |50824 |30763 |2 |10 | |0 | |
+ROW |50825 |30764 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
+ROW |50826 |30764 |2 |10 | |0 | |
+ROW |50827 |30765 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
+ROW |50828 |30765 |2 |10 | |0 | |
+ROW |50829 |30766 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
+ROW |50830 |30767 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
+ROW |50831 |30767 |2 |1 |0.001 |0 | |
+ROW |50832 |30768 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
+ROW |50833 |30768 |2 |1 |0.001 |0 | |
+ROW |50834 |30769 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
+ROW |50835 |30769 |2 |6 | |0 | |
+ROW |50836 |30769 |3 |20 |10m |0 | |
+ROW |50837 |30770 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
+ROW |50838 |30770 |2 |10 | |0 | |
+ROW |50839 |30771 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
+ROW |50840 |30771 |2 |10 | |0 | |
+ROW |50841 |30772 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bin.first() |0 | |
+ROW |50842 |30772 |2 |1 |8 |0 | |
+ROW |50843 |30772 |3 |10 | |0 | |
+ROW |50844 |30773 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bout.first() |0 | |
+ROW |50845 |30773 |2 |1 |8 |0 | |
+ROW |50846 |30773 |3 |10 | |0 | |
+ROW |50847 |30774 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dreq.first() |0 | |
+ROW |50848 |30774 |2 |10 | |0 | |
+ROW |50849 |30775 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].ereq.first() |0 | |
+ROW |50850 |30775 |2 |10 | |0 | |
+ROW |50851 |30776 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rate.first() |0 | |
+ROW |50852 |30777 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].req_rate.first() |0 | |
+ROW |50853 |30778 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].scur.first() |0 | |
+ROW |50854 |30779 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].slim.first() |0 | |
+ROW |50855 |30779 |2 |20 |1h |0 | |
+ROW |50856 |30780 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
+ROW |50857 |30780 |2 |10 | |0 | |
+ROW |50858 |30781 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
+ROW |50859 |30781 |2 |10 | |0 | |
+ROW |50860 |30782 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
+ROW |50861 |30782 |2 |10 | |0 | |
+ROW |50862 |30783 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
+ROW |50863 |30784 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
+ROW |50864 |30784 |2 |1 |0.001 |0 | |
+ROW |50865 |30785 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
+ROW |50866 |30785 |2 |1 |0.001 |0 | |
+ROW |50867 |30786 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
+ROW |50868 |30786 |2 |6 | |0 | |
+ROW |50869 |30786 |3 |20 |10m |0 | |
+ROW |50870 |30787 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
+ROW |50871 |30787 |2 |10 | |0 | |
+ROW |50872 |30788 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
+ROW |50873 |30788 |2 |10 | |0 | |
+ROW |50874 |30230 |1 |5 |# ([\s\S]*)\n&bsn;\1 |0 | |
+ROW |50875 |30230 |2 |24 |&bsn;&bsn;1 |0 | |
+ROW |50876 |30790 |1 |20 |10m |0 | |
+ROW |50877 |30234 |1 |21 |try {&bsn; var t = value.match(/(\d+)d (\d+)h(\d+)m(\d+)s/);&bsn; return t[1] * 86400 + t[2] * 3600 + t[3] * 60 + t[4] * 1;&bsn;}&bsn;catch (error) {&bsn; throw "HAProxy uptime is not found : " + error;&bsn;} |0 | |
+ROW |50878 |30235 |1 |5 |HAProxy version ([^,]*),&bsn;\1 |3 |HAProxy version is not found |
+ROW |50879 |30235 |2 |20 |1d |0 | |
+ROW |50880 |30240 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
+ROW |50881 |30240 |2 |10 | |0 | |
+ROW |50882 |30241 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
+ROW |50883 |30241 |2 |10 | |0 | |
+ROW |50884 |30242 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
+ROW |50885 |30242 |2 |10 | |0 | |
+ROW |50886 |30243 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
+ROW |50887 |30244 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
+ROW |50888 |30244 |2 |1 |0.001 |0 | |
+ROW |50889 |30245 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
+ROW |50890 |30245 |2 |1 |0.001 |0 | |
+ROW |50891 |30246 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
+ROW |50892 |30246 |2 |6 | |0 | |
+ROW |50893 |30246 |3 |20 |10m |0 | |
+ROW |50894 |30247 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
+ROW |50895 |30247 |2 |10 | |0 | |
+ROW |50896 |30248 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
+ROW |50897 |30248 |2 |10 | |0 | |
+ROW |50898 |30249 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bin.first() |0 | |
+ROW |50899 |30249 |2 |1 |8 |0 | |
+ROW |50900 |30249 |3 |10 | |0 | |
+ROW |50901 |30250 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bout.first() |0 | |
+ROW |50902 |30250 |2 |1 |8 |0 | |
+ROW |50903 |30250 |3 |10 | |0 | |
+ROW |50904 |30251 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dreq.first() |0 | |
+ROW |50905 |30251 |2 |10 | |0 | |
+ROW |50906 |30252 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].ereq.first() |0 | |
+ROW |50907 |30252 |2 |10 | |0 | |
+ROW |50908 |30253 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_1xx.first() |0 | |
+ROW |50909 |30253 |2 |10 | |0 | |
+ROW |50910 |30254 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_2xx.first() |0 | |
+ROW |50911 |30254 |2 |10 | |0 | |
+ROW |50912 |30255 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_3xx.first() |0 | |
+ROW |50913 |30255 |2 |10 | |0 | |
+ROW |50914 |30256 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_4xx.first() |0 | |
+ROW |50915 |30256 |2 |10 | |0 | |
+ROW |50916 |30257 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_5xx.first() |0 | |
+ROW |50917 |30257 |2 |10 | |0 | |
+ROW |50918 |30258 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rate.first() |0 | |
+ROW |50919 |30259 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].req_rate.first() |0 | |
+ROW |50920 |30260 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].scur.first() |0 | |
+ROW |50921 |30261 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].slim.first() |0 | |
+ROW |50922 |30261 |2 |20 |1h |0 | |
+ROW |50923 |30262 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
+ROW |50924 |30262 |2 |10 | |0 | |
+ROW |50925 |30263 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
+ROW |50926 |30263 |2 |10 | |0 | |
+ROW |50927 |30264 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
+ROW |50928 |30264 |2 |10 | |0 | |
+ROW |50929 |30265 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_4xx.first() |0 | |
+ROW |50930 |30265 |2 |10 | |0 | |
+ROW |50931 |30266 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_5xx.first() |0 | |
+ROW |50932 |30266 |2 |10 | |0 | |
+ROW |50933 |30267 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
+ROW |50934 |30268 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
+ROW |50935 |30268 |2 |1 |0.001 |0 | |
+ROW |50936 |30269 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
+ROW |50937 |30269 |2 |1 |0.001 |0 | |
+ROW |50938 |30270 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
+ROW |50939 |30270 |2 |6 | |0 | |
+ROW |50940 |30270 |3 |20 |10m |0 | |
+ROW |50941 |30271 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
+ROW |50942 |30271 |2 |10 | |0 | |
+ROW |50943 |30272 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
+ROW |50944 |30272 |2 |10 | |0 | |
+ROW |50945 |30795 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
+ROW |50946 |30795 |2 |10 | |0 | |
+ROW |50947 |30796 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
+ROW |50948 |30796 |2 |10 | |0 | |
+ROW |50949 |30797 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
+ROW |50950 |30797 |2 |10 | |0 | |
+ROW |50951 |30798 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
+ROW |50952 |30799 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
+ROW |50953 |30799 |2 |1 |0.001 |0 | |
+ROW |50954 |30800 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
+ROW |50955 |30800 |2 |1 |0.001 |0 | |
+ROW |50956 |30801 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
+ROW |50957 |30801 |2 |6 | |0 | |
+ROW |50958 |30801 |3 |20 |10m |0 | |
+ROW |50959 |30802 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
+ROW |50960 |30802 |2 |10 | |0 | |
+ROW |50961 |30803 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
+ROW |50962 |30803 |2 |10 | |0 | |
+ROW |50963 |30804 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bin.first() |0 | |
+ROW |50964 |30804 |2 |1 |8 |0 | |
+ROW |50965 |30804 |3 |10 | |0 | |
+ROW |50966 |30805 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bout.first() |0 | |
+ROW |50967 |30805 |2 |1 |8 |0 | |
+ROW |50968 |30805 |3 |10 | |0 | |
+ROW |50969 |30806 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dreq.first() |0 | |
+ROW |50970 |30806 |2 |10 | |0 | |
+ROW |50971 |30807 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].ereq.first() |0 | |
+ROW |50972 |30807 |2 |10 | |0 | |
+ROW |50973 |30808 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rate.first() |0 | |
+ROW |50974 |30809 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].req_rate.first() |0 | |
+ROW |50975 |30810 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].scur.first() |0 | |
+ROW |50976 |30811 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].slim.first() |0 | |
+ROW |50977 |30811 |2 |20 |1h |0 | |
+ROW |50978 |30812 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
+ROW |50979 |30812 |2 |10 | |0 | |
+ROW |50980 |30813 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
+ROW |50981 |30813 |2 |10 | |0 | |
+ROW |50982 |30814 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
+ROW |50983 |30814 |2 |10 | |0 | |
+ROW |50984 |30815 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
+ROW |50985 |30816 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
+ROW |50986 |30816 |2 |1 |0.001 |0 | |
+ROW |50987 |30817 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
+ROW |50988 |30817 |2 |1 |0.001 |0 | |
+ROW |50989 |30818 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
+ROW |50990 |30818 |2 |6 | |0 | |
+ROW |50991 |30818 |3 |20 |10m |0 | |
+ROW |50992 |30819 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
+ROW |50993 |30819 |2 |10 | |0 | |
+ROW |50994 |30820 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
+ROW |50995 |30820 |2 |10 | |0 | |
+ROW |50996 |30968 |1 |20 |10m |0 | |
+ROW |50997 |30969 |1 |20 |10m |0 | |
+ROW |50998 |30970 |1 |20 |10m |0 | |
+ROW |50999 |30971 |1 |20 |10m |0 | |
+ROW |51000 |30972 |1 |20 |10m |0 | |
+ROW |51001 |30973 |1 |20 |10m |0 | |
+ROW |51002 |30974 |1 |20 |10m |0 | |
+ROW |51003 |30976 |1 |20 |10m |0 | |
+ROW |51004 |30977 |1 |20 |10m |0 | |
+ROW |51005 |30978 |1 |20 |10m |0 | |
+ROW |51006 |30979 |1 |20 |10m |0 | |
+ROW |51007 |30980 |1 |20 |10m |0 | |
+ROW |51008 |30981 |1 |20 |10m |0 | |
+ROW |51009 |30982 |1 |20 |10m |0 | |
+ROW |51010 |30983 |1 |20 |10m |0 | |
+ROW |51011 |30984 |1 |20 |10m |0 | |
+ROW |51012 |30985 |1 |20 |10m |0 | |
+ROW |51013 |30986 |1 |20 |10m |0 | |
+ROW |51014 |30992 |1 |20 |10m |0 | |
+ROW |51015 |30993 |1 |20 |10m |0 | |
+ROW |51016 |30994 |1 |20 |10m |0 | |
+ROW |51017 |30995 |1 |20 |10m |0 | |
+ROW |51018 |30997 |1 |20 |10m |0 | |
+ROW |51019 |30998 |1 |20 |10m |0 | |
+ROW |51020 |30999 |1 |20 |10m |0 | |
+ROW |51021 |31000 |1 |20 |10m |0 | |
+ROW |51022 |31001 |1 |20 |10m |0 | |
+ROW |51023 |31002 |1 |20 |10m |0 | |
+ROW |51024 |31003 |1 |20 |10m |0 | |
+ROW |51025 |31004 |1 |20 |10m |0 | |
+ROW |51026 |31006 |1 |20 |10m |0 | |
+ROW |51027 |31008 |1 |20 |10m |0 | |
+ROW |51028 |31009 |1 |20 |10m |0 | |
+ROW |51029 |31010 |1 |20 |10m |0 | |
+ROW |51030 |31011 |1 |20 |10m |0 | |
+ROW |51031 |31012 |1 |20 |10m |0 | |
+ROW |51032 |31013 |1 |20 |10m |0 | |
+ROW |51033 |31014 |1 |20 |10m |0 | |
+ROW |51034 |31015 |1 |20 |10m |0 | |
+ROW |51035 |31016 |1 |20 |10m |0 | |
+ROW |51036 |31018 |1 |20 |10m |0 | |
+ROW |51037 |31019 |1 |20 |10m |0 | |
+ROW |51038 |31020 |1 |20 |10m |0 | |
+ROW |51039 |31021 |1 |20 |10m |0 | |
+ROW |51040 |31022 |1 |20 |10m |0 | |
+ROW |51041 |31023 |1 |20 |10m |0 | |
+ROW |51042 |31024 |1 |20 |10m |0 | |
+ROW |51043 |31025 |1 |20 |10m |0 | |
+ROW |51044 |31026 |1 |20 |10m |0 | |
+ROW |51045 |31027 |1 |20 |10m |0 | |
+ROW |51046 |31028 |1 |20 |10m |0 | |
+ROW |51047 |31034 |1 |20 |10m |0 | |
+ROW |51048 |31035 |1 |20 |10m |0 | |
+ROW |51049 |31036 |1 |20 |10m |0 | |
+ROW |51050 |31037 |1 |20 |10m |0 | |
+ROW |51051 |31039 |1 |20 |10m |0 | |
+ROW |51052 |31040 |1 |20 |10m |0 | |
+ROW |51053 |31041 |1 |20 |10m |0 | |
+ROW |51054 |31042 |1 |20 |10m |0 | |
+ROW |51055 |31043 |1 |20 |10m |0 | |
+ROW |51056 |31044 |1 |20 |10m |0 | |
+ROW |51057 |31045 |1 |20 |10m |0 | |
+ROW |51058 |31046 |1 |20 |10m |0 | |
+ROW |51059 |31048 |1 |20 |10m |0 | |
+ROW |51060 |31050 |1 |20 |10m |0 | |
+ROW |51061 |31051 |1 |20 |10m |0 | |
+ROW |51062 |30611 |1 |20 |10m |0 | |
+ROW |51063 |30613 |1 |12 |$.cmd_flush |0 | |
+ROW |51064 |30613 |2 |10 | |0 | |
+ROW |51065 |30614 |1 |12 |$.bytes |0 | |
+ROW |51066 |30615 |1 |12 |$.uptime |0 | |
+ROW |51067 |30616 |1 |12 |$.total_items |0 | |
+ROW |51068 |30616 |2 |10 | |0 | |
+ROW |51069 |30617 |1 |12 |$.threads |0 | |
+ROW |51070 |30618 |1 |12 |$.get_misses |0 | |
+ROW |51071 |30618 |2 |10 | |0 | |
+ROW |51072 |30619 |1 |12 |$.get_hits |0 | |
+ROW |51073 |30619 |2 |10 | |0 | |
+ROW |51074 |30620 |1 |12 |$.evictions |0 | |
+ROW |51075 |30620 |2 |10 | |0 | |
+ROW |51076 |30621 |1 |12 |$.curr_items |0 | |
+ROW |51077 |30622 |1 |12 |$.bytes_written |0 | |
+ROW |51078 |30622 |2 |10 | |0 | |
+ROW |51079 |30623 |1 |12 |$.bytes_read |0 | |
+ROW |51080 |30623 |2 |10 | |0 | |
+ROW |51081 |30624 |1 |12 |$.pid |0 | |
+ROW |51082 |30624 |2 |20 |1d |0 | |
+ROW |51083 |30625 |1 |12 |$.cmd_get |0 | |
+ROW |51084 |30625 |2 |10 | |0 | |
+ROW |51085 |30626 |1 |12 |$.rusage_user |0 | |
+ROW |51086 |30627 |1 |12 |$.rusage_system |0 | |
+ROW |51087 |30628 |1 |12 |$.conn_yields |0 | |
+ROW |51088 |30628 |2 |10 | |0 | |
+ROW |51089 |30629 |1 |12 |$.connection_structures |0 | |
+ROW |51090 |30630 |1 |12 |$.total_connections |0 | |
+ROW |51091 |30630 |2 |10 | |0 | |
+ROW |51092 |30631 |1 |12 |$.listen_disabled_num |0 | |
+ROW |51093 |30631 |2 |10 | |0 | |
+ROW |51094 |30632 |1 |12 |$.max_connections |0 | |
+ROW |51095 |30632 |2 |20 |30m |0 | |
+ROW |51096 |30633 |1 |12 |$.curr_connections |0 | |
+ROW |51097 |30634 |1 |12 |$.limit_maxbytes |0 | |
+ROW |51098 |30634 |2 |20 |30m |0 | |
+ROW |51099 |30635 |1 |12 |$.cmd_set |0 | |
+ROW |51100 |30635 |2 |10 | |0 | |
+ROW |51101 |30636 |1 |12 |$.version |0 | |
+ROW |51102 |30636 |2 |20 |1d |0 | |
+ROW |51103 |28810 |1 |20 |10m |0 | |
+ROW |51104 |28811 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\3 |0 | |
+ROW |51105 |28812 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\2 |0 | |
+ROW |51106 |28813 |1 |5 |Active connections: ([0-9]+)&bsn;\1 |0 | |
+ROW |51107 |28814 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\1 |0 | |
+ROW |51108 |28815 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\2 |0 | |
+ROW |51109 |28815 |2 |10 | |0 | |
+ROW |51110 |28816 |1 |21 |var a = value.match(/server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)/)&bsn;if (a) {&bsn; return a[1]-a[2]&bsn;} |0 | |
+ROW |51111 |28816 |2 |10 | |0 | |
+ROW |51112 |28817 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\1 |0 | |
+ROW |51113 |28817 |2 |10 | |0 | |
+ROW |51114 |28818 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\3 |0 | |
+ROW |51115 |28818 |2 |10 | |0 | |
+ROW |51116 |28819 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\3 |0 | |
+ROW |51117 |28820 |1 |5 |Server: nginx\/(.+(?<!\r))&bsn;\1 |0 | |
+ROW |51118 |28820 |2 |20 |1d |0 | |
+ROW |51119 |28822 |1 |20 |10m |0 | |
+ROW |51120 |28824 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\3 |0 | |
+ROW |51121 |28825 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\3 |0 | |
+ROW |51122 |28825 |2 |10 | |0 | |
+ROW |51123 |28826 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\1 |0 | |
+ROW |51124 |28826 |2 |10 | |0 | |
+ROW |51125 |28827 |1 |21 |var a = value.match(/server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)/)&bsn;if (a) {&bsn; return a[1]-a[2]&bsn;} |0 | |
+ROW |51126 |28827 |2 |10 | |0 | |
+ROW |51127 |28828 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\2 |0 | |
+ROW |51128 |28828 |2 |10 | |0 | |
+ROW |51129 |28829 |1 |5 |Active connections: ([0-9]+)&bsn;\1 |0 | |
+ROW |51130 |28830 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\1 |0 | |
+ROW |51131 |28831 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\3 |0 | |
+ROW |51132 |28832 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\2 |0 | |
+ROW |51133 |28833 |1 |5 |Server: nginx\/(.+(?<!\r))&bsn;\1 |0 | |
+ROW |51134 |28833 |2 |20 |1d |0 | |
+ROW |51135 |29653 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
+ROW |51136 |29654 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
+ROW |51137 |29655 |1 |20 |10m |0 | |
+ROW |51138 |29661 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
+ROW |51139 |29662 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
+ROW |51140 |29662 |2 |12 |$.status |0 | |
+ROW |51141 |29662 |3 |6 | |2 |0 |
+ROW |51142 |29998 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
+ROW |51143 |29999 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
+ROW |51144 |29687 |1 |12 |$.mem_used |0 | |
+ROW |51145 |29688 |1 |12 |$.disk_free_alarm |0 | |
+ROW |51146 |29688 |2 |6 | |0 | |
+ROW |51147 |29691 |1 |12 |$.fd_used |0 | |
+ROW |51148 |29692 |1 |12 |$.uptime |0 | |
+ROW |51149 |29692 |2 |1 |0.001 |0 | |
+ROW |51150 |29693 |1 |12 |$.mem_alarm |0 | |
+ROW |51151 |29693 |2 |6 | |0 | |
+ROW |51152 |29694 |1 |12 |$.mem_limit |0 | |
+ROW |51153 |29695 |1 |12 |$.running |0 | |
+ROW |51154 |29695 |2 |6 | |0 | |
+ROW |51155 |29696 |1 |12 |$.partitions |0 | |
+ROW |51156 |29696 |2 |21 |return JSON.parse(value).length; |0 | |
+ROW |51157 |29697 |1 |12 |$.sockets_total |0 | |
+ROW |51158 |29698 |1 |12 |$.disk_free |0 | |
+ROW |51159 |29699 |1 |12 |$.run_queue |0 | |
+ROW |51160 |29700 |1 |12 |$.disk_free_limit |0 | |
+ROW |51161 |29701 |1 |12 |$.sockets_used |0 | |
+ROW |51162 |30000 |1 |12 |$.message_stats.redeliver |2 |0 |
+ROW |51163 |30001 |1 |12 |$.message_stats.return_unroutable_details.rate |2 |0 |
+ROW |51164 |30002 |1 |12 |$.message_stats.return_unroutable |2 |0 |
+ROW |51165 |30003 |1 |12 |$.message_stats.publish_out_details.rate |2 |0 |
+ROW |51166 |30004 |1 |12 |$.message_stats.publish_out |2 |0 |
+ROW |51167 |30005 |1 |12 |$.message_stats.publish_in_details.rate |2 |0 |
+ROW |51168 |30006 |1 |12 |$.message_stats.publish_in |2 |0 |
+ROW |51169 |30007 |1 |12 |$.message_stats.publish_details.rate |2 |0 |
+ROW |51170 |30008 |1 |12 |$.message_stats.publish |2 |0 |
+ROW |51171 |30009 |1 |12 |$.message_stats.deliver_get_details.rate |2 |0 |
+ROW |51172 |30010 |1 |12 |$.message_stats.deliver_get |2 |0 |
+ROW |51173 |30011 |1 |12 |$.message_stats.confirm_details.rate |2 |0 |
+ROW |51174 |30012 |1 |12 |$.message_stats.confirm |2 |0 |
+ROW |51175 |30013 |1 |12 |$.message_stats.ack_details.rate |2 |0 |
+ROW |51176 |30014 |1 |12 |$.message_stats.ack |2 |0 |
+ROW |51177 |30015 |1 |12 |$.queue_totals.messages_unacknowledged |0 | |
+ROW |51178 |30016 |1 |12 |$.queue_totals.messages_ready |0 | |
+ROW |51179 |30017 |1 |12 |$.queue_totals.messages |0 | |
+ROW |51180 |30018 |1 |12 |$.object_totals.exchanges |0 | |
+ROW |51181 |30019 |1 |12 |$.object_totals.consumers |0 | |
+ROW |51182 |30020 |1 |12 |$.object_totals.queues |0 | |
+ROW |51183 |30021 |1 |12 |$.object_totals.channels |0 | |
+ROW |51184 |30022 |1 |12 |$.object_totals.connections |0 | |
+ROW |51185 |30023 |1 |12 |$.message_stats.redeliver_details.rate |2 |0 |
+ROW |51186 |30024 |1 |12 |$.management_version |0 | |
+ROW |51187 |30024 |2 |20 |1d |0 | |
+ROW |51188 |30025 |1 |12 |$.rabbitmq_version |0 | |
+ROW |51189 |30025 |2 |20 |1d |0 | |
+ROW |51190 |29720 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages.first() |0 | |
+ROW |51191 |29721 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver.first() |2 |0 |
+ROW |51192 |29722 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver.first() |2 |0 |
+ROW |51193 |29723 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish_details.rate.first() |2 |0 |
+ROW |51194 |29724 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish.first() |2 |0 |
+ROW |51195 |29725 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get_details.rate.first() |2 |0 |
+ROW |51196 |29726 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get.first() |2 |0 |
+ROW |51197 |29727 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_details.rate.first() |2 |0 |
+ROW |51198 |29728 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack_details.rate.first() |2 |0 |
+ROW |51199 |29729 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_details.rate.first() |0 | |
+ROW |51200 |29730 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack.first() |2 |0 |
+ROW |51201 |29731 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged_details.rate.first() |0 | |
+ROW |51202 |29732 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged.first() |0 | |
+ROW |51203 |29733 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready_details.rate.first() |0 | |
+ROW |51204 |29734 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready.first() |0 | |
+ROW |51205 |29735 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].memory.first() |0 | |
+ROW |51206 |29736 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].consumers.first() |0 | |
+ROW |51207 |29737 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver_details.rate.first() |2 |0 |
+ROW |51208 |30027 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack.first() |2 |0 |
+ROW |51209 |30028 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack_details.rate.first() |2 |0 |
+ROW |51210 |30029 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm.first() |2 |0 |
+ROW |51211 |30030 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm_details.rate.first() |2 |0 |
+ROW |51212 |30031 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get.first() |2 |0 |
+ROW |51213 |30032 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get_details.rate.first() |2 |0 |
+ROW |51214 |30033 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish.first() |2 |0 |
+ROW |51215 |30034 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_details.rate.first() |2 |0 |
+ROW |51216 |30035 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in.first() |2 |0 |
+ROW |51217 |30036 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in_details.rate.first() |2 |0 |
+ROW |51218 |30037 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out.first() |2 |0 |
+ROW |51219 |30038 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out_details.rate.first() |2 |0 |
+ROW |51220 |30039 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable.first() |2 |0 |
+ROW |51221 |30040 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable_details.rate.first() |2 |0 |
+ROW |51222 |30041 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver.first() |2 |0 |
+ROW |51223 |30042 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver_details.rate.first() |2 |0 |
+ROW |51224 |29742 |1 |20 |10m |0 | |
+ROW |51225 |29744 |1 |12 |$.status |0 | |
+ROW |51226 |29744 |2 |6 | |2 |0 |
+ROW |51227 |29746 |1 |12 |$.message_stats.redeliver |2 |0 |
+ROW |51228 |29747 |1 |12 |$.message_stats.return_unroutable_details.rate |2 |0 |
+ROW |51229 |29748 |1 |12 |$.message_stats.return_unroutable |2 |0 |
+ROW |51230 |29749 |1 |12 |$.message_stats.publish_out_details.rate |2 |0 |
+ROW |51231 |29750 |1 |12 |$.message_stats.publish_out |2 |0 |
+ROW |51232 |29751 |1 |12 |$.message_stats.publish_in_details.rate |2 |0 |
+ROW |51233 |29752 |1 |12 |$.message_stats.publish_in |2 |0 |
+ROW |51234 |29753 |1 |12 |$.message_stats.publish_details.rate |2 |0 |
+ROW |51235 |29754 |1 |12 |$.message_stats.publish |2 |0 |
+ROW |51236 |29755 |1 |12 |$.message_stats.deliver_get_details.rate |2 |0 |
+ROW |51237 |29756 |1 |12 |$.message_stats.deliver_get |2 |0 |
+ROW |51238 |29757 |1 |12 |$.message_stats.confirm_details.rate |2 |0 |
+ROW |51239 |29758 |1 |12 |$.message_stats.confirm |2 |0 |
+ROW |51240 |29759 |1 |12 |$.message_stats.ack_details.rate |2 |0 |
+ROW |51241 |29760 |1 |12 |$.message_stats.ack |2 |0 |
+ROW |51242 |29761 |1 |12 |$.queue_totals.messages_unacknowledged |0 | |
+ROW |51243 |29762 |1 |12 |$.queue_totals.messages_ready |0 | |
+ROW |51244 |29763 |1 |12 |$.queue_totals.messages |0 | |
+ROW |51245 |29764 |1 |12 |$.object_totals.exchanges |0 | |
+ROW |51246 |29765 |1 |12 |$.object_totals.consumers |0 | |
+ROW |51247 |29766 |1 |12 |$.object_totals.queues |0 | |
+ROW |51248 |29767 |1 |12 |$.object_totals.channels |0 | |
+ROW |51249 |29768 |1 |12 |$.object_totals.connections |0 | |
+ROW |51250 |29769 |1 |12 |$.message_stats.redeliver_details.rate |2 |0 |
+ROW |51251 |29771 |1 |12 |$.partitions |0 | |
+ROW |51252 |29771 |2 |21 |return JSON.parse(value).length; |0 | |
+ROW |51253 |29772 |1 |12 |$.uptime |0 | |
+ROW |51254 |29772 |2 |1 |0.001 |0 | |
+ROW |51255 |29773 |1 |12 |$.disk_free_alarm |0 | |
+ROW |51256 |29773 |2 |6 | |0 | |
+ROW |51257 |29774 |1 |12 |$.mem_alarm |0 | |
+ROW |51258 |29774 |2 |6 | |0 | |
+ROW |51259 |29775 |1 |12 |$.running |0 | |
+ROW |51260 |29775 |2 |6 | |0 | |
+ROW |51261 |29776 |1 |12 |$.sockets_used |0 | |
+ROW |51262 |29777 |1 |12 |$.sockets_total |0 | |
+ROW |51263 |29779 |1 |12 |$.run_queue |0 | |
+ROW |51264 |29780 |1 |12 |$.mem_used |0 | |
+ROW |51265 |29781 |1 |12 |$.disk_free_limit |0 | |
+ROW |51266 |29782 |1 |12 |$.disk_free |0 | |
+ROW |51267 |29783 |1 |12 |$.fd_used |0 | |
+ROW |51268 |29784 |1 |12 |$.mem_limit |0 | |
+ROW |51269 |30044 |1 |12 |$.management_version |0 | |
+ROW |51270 |30044 |2 |20 |1d |0 | |
+ROW |51271 |30045 |1 |12 |$.rabbitmq_version |0 | |
+ROW |51272 |30045 |2 |20 |1d |0 | |
+ROW |51273 |29787 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack.first() |2 |0 |
+ROW |51274 |29788 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack_details.rate.first() |2 |0 |
+ROW |51275 |29789 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm.first() |2 |0 |
+ROW |51276 |29790 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm_details.rate.first() |2 |0 |
+ROW |51277 |29791 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get.first() |2 |0 |
+ROW |51278 |29792 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get_details.rate.first() |2 |0 |
+ROW |51279 |29793 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish.first() |2 |0 |
+ROW |51280 |29794 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_details.rate.first() |2 |0 |
+ROW |51281 |29795 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in.first() |2 |0 |
+ROW |51282 |29796 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in_details.rate.first() |2 |0 |
+ROW |51283 |29797 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out.first() |2 |0 |
+ROW |51284 |29798 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out_details.rate.first() |2 |0 |
+ROW |51285 |29799 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable.first() |2 |0 |
+ROW |51286 |29800 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable_details.rate.first() |2 |0 |
+ROW |51287 |29801 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver.first() |2 |0 |
+ROW |51288 |29802 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver_details.rate.first() |2 |0 |
+ROW |51289 |29803 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages.first() |0 | |
+ROW |51290 |29804 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver.first() |2 |0 |
+ROW |51291 |29805 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver.first() |2 |0 |
+ROW |51292 |29806 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish_details.rate.first() |2 |0 |
+ROW |51293 |29807 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish.first() |2 |0 |
+ROW |51294 |29808 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get_details.rate.first() |2 |0 |
+ROW |51295 |29809 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get.first() |2 |0 |
+ROW |51296 |29810 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_details.rate.first() |2 |0 |
+ROW |51297 |29811 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack_details.rate.first() |2 |0 |
+ROW |51298 |29812 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_details.rate.first() |0 | |
+ROW |51299 |29813 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack.first() |2 |0 |
+ROW |51300 |29814 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged_details.rate.first() |0 | |
+ROW |51301 |29815 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged.first() |0 | |
+ROW |51302 |29816 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready_details.rate.first() |0 | |
+ROW |51303 |29817 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready.first() |0 | |
+ROW |51304 |29818 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].memory.first() |0 | |
+ROW |51305 |29819 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].consumers.first() |0 | |
+ROW |51306 |29820 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver_details.rate.first() |2 |0 |
+ROW |51307 |31555 |1 |20 |1d |0 | |
+ROW |51308 |31556 |1 |20 |1d |0 | |
+ROW |51309 |31557 |1 |20 |1d |0 | |
+ROW |51310 |31562 |1 |20 |1h |0 | |
+ROW |51311 |31563 |1 |20 |1d |0 | |
+ROW |51312 |31567 |1 |20 |1d |0 | |
+ROW |51313 |31571 |1 |20 |1d |0 | |
+ROW |51314 |31572 |1 |20 |1d |0 | |
+ROW |51315 |31576 |1 |20 |1d |0 | |
+ROW |51316 |31591 |1 |20 |1d |0 | |
+ROW |51317 |31594 |1 |20 |1d |0 | |
+ROW |51318 |31595 |1 |20 |1d |0 | |
+ROW |51319 |31620 |1 |20 |1d |0 | |
+ROW |51320 |28501 |1 |10 | |0 | |
+ROW |51321 |28514 |1 |10 | |0 | |
+ROW |51322 |28517 |1 |10 | |0 | |
+ROW |51323 |28519 |1 |10 | |0 | |
+ROW |51324 |28520 |1 |1 |0.001 |0 | |
+ROW |51325 |28521 |1 |10 | |0 | |
+ROW |51326 |28522 |1 |10 | |0 | |
+ROW |51327 |28523 |1 |10 | |0 | |
+ROW |51328 |28524 |1 |10 | |0 | |
+ROW |51329 |28525 |1 |1 |0.001 |0 | |
+ROW |51330 |28526 |1 |10 | |0 | |
+ROW |51331 |28527 |1 |10 | |0 | |
+ROW |51332 |28528 |1 |10 | |0 | |
+ROW |51333 |28529 |1 |10 | |0 | |
+ROW |51334 |28530 |1 |1 |0.001 |0 | |
+ROW |51335 |28531 |1 |10 | |0 | |
+ROW |51336 |28586 |1 |12 |$.queue |0 | |
+ROW |51337 |28587 |1 |12 |$.queue |0 | |
+ROW |51338 |28588 |1 |12 |$.data.process['vmware collector'].busy.avg |0 | |
+ROW |51339 |28589 |1 |12 |$.data.wcache.values.uint |0 | |
+ROW |51340 |28589 |2 |10 | |0 | |
+ROW |51341 |28590 |1 |12 |$.data.wcache.values.text |0 | |
+ROW |51342 |28590 |2 |10 | |0 | |
+ROW |51343 |28591 |1 |12 |$.data.wcache.values.str |0 | |
+ROW |51344 |28591 |2 |10 | |0 | |
+ROW |51345 |28592 |1 |12 |$.data.wcache.values['not supported'] |0 | |
+ROW |51346 |28592 |2 |10 | |0 | |
+ROW |51347 |28593 |1 |12 |$.data.wcache.values.log |0 | |
+ROW |51348 |28593 |2 |10 | |0 | |
+ROW |51349 |28594 |1 |12 |$.data.wcache.values.float |0 | |
+ROW |51350 |28594 |2 |10 | |0 | |
+ROW |51351 |28595 |1 |12 |$.data.wcache.values.all |0 | |
+ROW |51352 |28595 |2 |10 | |0 | |
+ROW |51353 |28596 |1 |12 |$.data.wcache.index.pused |0 | |
+ROW |51354 |28597 |1 |12 |$.data.wcache.history.pused |0 | |
+ROW |51355 |28598 |1 |12 |$.data.vmware.pused |0 | |
+ROW |51356 |28599 |1 |12 |$.data.rcache.pused |0 | |
+ROW |51357 |28600 |1 |12 |$.data.process['configuration syncer'].busy.avg |0 | |
+ROW |51358 |28601 |1 |12 |$.data.process['data sender'].busy.avg |0 | |
+ROW |51359 |28602 |1 |12 |$.data.process.trapper.busy.avg |0 | |
+ROW |51360 |28603 |1 |12 |$.data.process['task manager'].busy.avg |0 | |
+ROW |51361 |28604 |1 |12 |$.data.process['snmp trapper'].busy.avg |0 | |
+ROW |51362 |28605 |1 |12 |$.data.process['self-monitoring'].busy.avg |0 | |
+ROW |51363 |28606 |1 |12 |$.data.process.poller.busy.avg |0 | |
+ROW |51364 |28607 |1 |12 |$.data.process['java poller'].busy.avg |0 | |
+ROW |51365 |28608 |1 |12 |$.data.process['ipmi poller'].busy.avg |0 | |
+ROW |51366 |28609 |1 |12 |$.data.process['ipmi manager'].busy.avg |0 | |
+ROW |51367 |28610 |1 |12 |$.data.process['icmp pinger'].busy.avg |0 | |
+ROW |51368 |28611 |1 |12 |$.data.process['http poller'].busy.avg |0 | |
+ROW |51369 |28612 |1 |12 |$.data.process.housekeeper.busy.avg |0 | |
+ROW |51370 |28613 |1 |12 |$.data.process['history syncer'].busy.avg |0 | |
+ROW |51371 |28614 |1 |12 |$.data.process['heartbeat sender'].busy.avg |0 | |
+ROW |51372 |28615 |1 |12 |$.data.process.discoverer.busy.avg |0 | |
+ROW |51373 |28616 |1 |12 |$.data.process['unreachable poller'].busy.avg |0 | |
+ROW |51374 |31052 |1 |12 |$.data.version |0 | |
+ROW |51375 |31052 |2 |20 |1d |0 | |
+ROW |51376 |28540 |1 |12 |$.queue |0 | |
+ROW |51377 |28541 |1 |12 |$.queue |0 | |
+ROW |51378 |28542 |1 |12 |$.data.wcache.index.pused |0 | |
+ROW |51379 |28543 |1 |12 |$.data.rcache.pused |0 | |
+ROW |51380 |28544 |1 |12 |$.data.vcache.buffer.pused |0 | |
+ROW |51381 |28545 |1 |12 |$.data.vcache.cache.hits |0 | |
+ROW |51382 |28545 |2 |10 | |0 | |
+ROW |51383 |28546 |1 |12 |$.data.vcache.cache.misses |0 | |
+ROW |51384 |28546 |2 |10 | |0 | |
+ROW |51385 |28547 |1 |12 |$.data.vcache.cache.mode |0 | |
+ROW |51386 |28548 |1 |12 |$.data.vmware.pused |0 | |
+ROW |51387 |28549 |1 |12 |$.data.wcache.history.pused |0 | |
+ROW |51388 |28550 |1 |12 |$.data.wcache.values.all |0 | |
+ROW |51389 |28550 |2 |10 | |0 | |
+ROW |51390 |28551 |1 |12 |$.data.wcache.trend.pused |0 | |
+ROW |51391 |28552 |1 |12 |$.data.process['unreachable poller'].busy.avg |0 | |
+ROW |51392 |28553 |1 |12 |$.data.wcache.values.float |0 | |
+ROW |51393 |28553 |2 |10 | |0 | |
+ROW |51394 |28554 |1 |12 |$.data.wcache.values.log |0 | |
+ROW |51395 |28554 |2 |10 | |0 | |
+ROW |51396 |28555 |1 |12 |$.data.wcache.values['not supported'] |0 | |
+ROW |51397 |28555 |2 |10 | |0 | |
+ROW |51398 |28556 |1 |12 |$.data.wcache.values.str |0 | |
+ROW |51399 |28556 |2 |10 | |0 | |
+ROW |51400 |28557 |1 |12 |$.data.wcache.values.text |0 | |
+ROW |51401 |28557 |2 |10 | |0 | |
+ROW |51402 |28558 |1 |12 |$.data.wcache.values.uint |0 | |
+ROW |51403 |28558 |2 |10 | |0 | |
+ROW |51404 |28559 |1 |12 |$.data.process['vmware collector'].busy.avg |0 | |
+ROW |51405 |28560 |1 |12 |$.data.preprocessing_queue |0 | |
+ROW |51406 |28561 |1 |12 |$.data.process.alerter.busy.avg |0 | |
+ROW |51407 |28562 |1 |12 |$.data.process['ipmi manager'].busy.avg |0 | |
+ROW |51408 |28563 |1 |12 |$.data.process['alert manager'].busy.avg |0 | |
+ROW |51409 |28564 |1 |12 |$.data.process['configuration syncer'].busy.avg |0 | |
+ROW |51410 |28565 |1 |12 |$.data.process.discoverer.busy.avg |0 | |
+ROW |51411 |28566 |1 |12 |$.data.process.escalator.busy.avg |0 | |
+ROW |51412 |28567 |1 |12 |$.data.process['history syncer'].busy.avg |0 | |
+ROW |51413 |28568 |1 |12 |$.data.process.housekeeper.busy.avg |0 | |
+ROW |51414 |28569 |1 |12 |$.data.process['http poller'].busy.avg |0 | |
+ROW |51415 |28570 |1 |12 |$.data.process['icmp pinger'].busy.avg |0 | |
+ROW |51416 |28571 |1 |12 |$.data.process['ipmi poller'].busy.avg |0 | |
+ROW |51417 |28572 |1 |12 |$.data.process.timer.busy.avg |0 | |
+ROW |51418 |28573 |1 |12 |$.data.process['java poller'].busy.avg |0 | |
+ROW |51419 |28574 |1 |12 |$.data.process.poller.busy.avg |0 | |
+ROW |51420 |28575 |1 |12 |$.data.process['preprocessing manager'].busy.avg |0 | |
+ROW |51421 |28576 |1 |12 |$.data.process['preprocessing worker'].busy.avg |0 | |
+ROW |51422 |28577 |1 |12 |$.data.process['proxy poller'].busy.avg |0 | |
+ROW |51423 |28578 |1 |12 |$.data.process['self-monitoring'].busy.avg |0 | |
+ROW |51424 |28579 |1 |12 |$.data.process['snmp trapper'].busy.avg |0 | |
+ROW |51425 |28580 |1 |12 |$.data.process['task manager'].busy.avg |0 | |
+ROW |51426 |28581 |1 |12 |$.data.process.trapper.busy.avg |0 | |
+ROW |51427 |28582 |1 |12 |$.data.process['lld manager'].busy.avg |0 | |
+ROW |51428 |28583 |1 |12 |$.data.process['lld worker'].busy.avg |0 | |
+ROW |51429 |28584 |1 |12 |$.data.lld_queue |0 | |
+ROW |51430 |29821 |1 |12 |$.data.process['alert syncer'].busy.avg |0 | |
+ROW |51431 |31053 |1 |12 |$.data.version |0 | |
+ROW |51432 |31053 |2 |20 |1d |0 | |
+ROW |51433 |10067 |1 |10 | |0 | |
+ROW |51434 |10068 |1 |10 | |0 | |
+ROW |51435 |10069 |1 |10 | |0 | |
+ROW |51436 |10070 |1 |10 | |0 | |
+ROW |51437 |10071 |1 |10 | |0 | |
+ROW |51438 |10072 |1 |10 | |0 | |
+ROW |51439 |23340 |1 |10 | |0 | |
+ROW |51440 |10061 |1 |10 | |0 | |
+ROW |51441 |10062 |1 |10 | |0 | |
+ROW |51442 |10063 |1 |10 | |0 | |
+ROW |51443 |10064 |1 |10 | |0 | |
+ROW |51444 |10065 |1 |10 | |0 | |
+ROW |51445 |10066 |1 |10 | |0 | |
+ROW |51446 |22187 |1 |10 | |0 | |
+ROW |51447 |22196 |1 |10 | |0 | |
+ROW |51448 |22199 |1 |10 | |0 | |
+ROW |51449 |10073 |1 |10 | |0 | |
+ROW |51450 |10074 |1 |10 | |0 | |
+ROW |51451 |10075 |1 |10 | |0 | |
+ROW |51452 |10076 |1 |10 | |0 | |
+ROW |51453 |10077 |1 |10 | |0 | |
+ROW |51454 |10078 |1 |10 | |0 | |
+ROW |51455 |23277 |1 |10 | |0 | |
+ROW |51456 |23625 |1 |10 | |0 | |
+ROW |51457 |23628 |1 |10 | |0 | |
+ROW |51458 |22920 |1 |10 | |0 | |
+ROW |51459 |22924 |1 |10 | |0 | |
+ROW |51460 |22945 |1 |10 | |0 | |
+ROW |51461 |22945 |2 |1 |8 |0 | |
+ROW |51462 |22946 |1 |10 | |0 | |
+ROW |51463 |22946 |2 |1 |8 |0 | |
+ROW |51464 |22880 |1 |10 | |0 | |
+ROW |51465 |22884 |1 |10 | |0 | |
+ROW |51466 |23073 |1 |10 | |0 | |
+ROW |51467 |23073 |2 |1 |8 |0 | |
+ROW |51468 |23074 |1 |10 | |0 | |
+ROW |51469 |23074 |2 |1 |8 |0 | |
+ROW |51470 |22985 |1 |10 | |0 | |
+ROW |51471 |22985 |2 |1 |8 |0 | |
+ROW |51472 |22986 |1 |10 | |0 | |
+ROW |51473 |22986 |2 |1 |8 |0 | |
+ROW |51474 |23077 |1 |10 | |0 | |
+ROW |51475 |23077 |2 |1 |8 |0 | |
+ROW |51476 |23078 |1 |10 | |0 | |
+ROW |51477 |23078 |2 |1 |8 |0 | |
+ROW |51478 |22840 |1 |10 | |0 | |
+ROW |51479 |22844 |1 |10 | |0 | |
+ROW |51480 |23075 |1 |10 | |0 | |
+ROW |51481 |23075 |2 |1 |8 |0 | |
+ROW |51482 |23076 |1 |10 | |0 | |
+ROW |51483 |23076 |2 |1 |8 |0 | |
+ROW |51484 |23000 |1 |10 | |0 | |
+ROW |51485 |23004 |1 |10 | |0 | |
+ROW |51486 |23025 |1 |10 | |0 | |
+ROW |51487 |23025 |2 |1 |8 |0 | |
+ROW |51488 |23026 |1 |10 | |0 | |
+ROW |51489 |23026 |2 |1 |8 |0 | |
+ROW |51490 |30821 |1 |5 |Ok\.&bsn;1 |2 |0 |
+ROW |51491 |30821 |2 |20 |10m |0 | |
+ROW |51492 |30822 |1 |20 |1d |0 | |
+ROW |51493 |30823 |1 |12 |$.data |0 | |
+ROW |51494 |30824 |1 |12 |$.data |0 | |
+ROW |51495 |30825 |1 |12 |$.data |0 | |
+ROW |51496 |30826 |1 |12 |$.data |0 | |
+ROW |51497 |30828 |1 |12 |$.data |0 | |
+ROW |51498 |30829 |1 |12 |$.data |0 | |
+ROW |51499 |30829 |2 |20 |1h |0 | |
+ROW |51500 |30830 |1 |12 |$.data |0 | |
+ROW |51501 |31054 |1 |20 |10m |0 | |
+ROW |51502 |30831 |1 |12 |$[?(@.metric == "Write")].value.first() |0 | |
+ROW |51503 |30832 |1 |12 |$[?(@.metric == "ReplicasSumQueueSize")].value.first() |0 | |
+ROW |51504 |30833 |1 |12 |$[?(@.data.event == "Query")].value.first() |2 |0 |
+ROW |51505 |30833 |2 |10 | |0 | |
+ROW |51506 |30834 |1 |12 |$[?(@.metric == "Read")].value.first() |0 | |
+ROW |51507 |30835 |1 |12 |$[?(@.event == "ReadCompressedBytes")].value.first() |2 |0 |
+ROW |51508 |30835 |2 |10 | |0 | |
+ROW |51509 |30836 |1 |12 |$[?(@.event == "ZooKeeperWaitMicroseconds")].value.first() |2 |0 |
+ROW |51510 |30836 |2 |1 |0.000001 |0 | |
+ROW |51511 |30836 |3 |10 | |0 | |
+ROW |51512 |30837 |1 |12 |$[?(@.metric == "ReplicasMaxAbsoluteDelay")].value.first() |0 | |
+ROW |51513 |30838 |1 |12 |$[?(@.metric == "ReadonlyReplica")].value.first() |0 | |
+ROW |51514 |30839 |1 |12 |$[?(@.metric == "Revision")].value.first() |0 | |
+ROW |51515 |30840 |1 |12 |$[?(@.event == "ZooKeeperOtherExceptions")].value.first() |2 |0 |
+ROW |51516 |30840 |2 |10 | |0 | |
+ROW |51517 |30841 |1 |12 |$[?(@.event == "SelectQuery")].value.first() |2 |0 |
+ROW |51518 |30841 |2 |10 | |0 | |
+ROW |51519 |30842 |1 |12 |$[?(@.event == "ZooKeeperUserExceptions")].value.first() |2 |0 |
+ROW |51520 |30842 |2 |10 | |0 | |
+ROW |51521 |30843 |1 |12 |$[?(@.metric == "ZooKeeperSession")].value.first() |0 | |
+ROW |51522 |30844 |1 |12 |$[?(@.metric == "ZooKeeperRequest")].value.first() |0 | |
+ROW |51523 |30845 |1 |12 |$[?(@.event == "ZooKeeperHardwareExceptions")].value.first() |2 |0 |
+ROW |51524 |30845 |2 |10 | |0 | |
+ROW |51525 |30846 |1 |12 |$[?(@.metric == "Uptime")].value.first() |0 | |
+ROW |51526 |30847 |1 |12 |$[?(@.metric == "Query")].value.first() |0 | |
+ROW |51527 |30848 |1 |12 |$[?(@.metric == "DistributedSend")].value.first() |0 | |
+ROW |51528 |30849 |1 |12 |$[?(@.metric == "HTTPConnection")].value.first() |0 | |
+ROW |51529 |30850 |1 |12 |$[?(@.metric == "jemalloc.allocated")].value.first() |0 | |
+ROW |51530 |30851 |1 |12 |$[?(@.metric == "InterserverConnection")].value.first() |0 | |
+ROW |51531 |30852 |1 |12 |$[?(@.metric == "MySQLConnection")].value.first() |2 |0 |
+ROW |51532 |30853 |1 |12 |$[?(@.metric == "TCPConnection")].value.first() |0 | |
+ROW |51533 |30854 |1 |12 |$[?(@.metric == "DistributedFilesToInsert")].value.first() |0 | |
+ROW |51534 |30855 |1 |12 |$[?(@.metric == "DistributedConnectionFailAtAll")].value.first() |2 |0 |
+ROW |51535 |30855 |2 |10 | |0 | |
+ROW |51536 |30856 |1 |12 |$[?(@.metric == "DistributedConnectionFailTry")].value.first() |2 |0 |
+ROW |51537 |30856 |2 |10 | |0 | |
+ROW |51538 |30857 |1 |12 |$[?(@.event == "InsertQuery")].value.first() |2 |0 |
+ROW |51539 |30857 |2 |10 | |0 | |
+ROW |51540 |30858 |1 |12 |$[?(@.metric == "DelayedInserts")].value.first() |0 | |
+ROW |51541 |30859 |1 |12 |$[?(@.event == "InsertedBytes")].value.first() |2 |0 |
+ROW |51542 |30859 |2 |10 | |0 | |
+ROW |51543 |30860 |1 |12 |$[?(@.event == "InsertedRows")].value.first() |2 |0 |
+ROW |51544 |30860 |2 |10 | |0 | |
+ROW |51545 |30861 |1 |12 |$[?(@.metric == "jemalloc.mapped")].value.first() |0 | |
+ROW |51546 |30862 |1 |12 |$[?(@.event == "NetworkErrors")].value.first() |2 |0 |
+ROW |51547 |30862 |2 |10 | |0 | |
+ROW |51548 |30863 |1 |12 |$[?(@.metric == "jemalloc.resident")].value.first() |0 | |
+ROW |51549 |30864 |1 |12 |$[?(@.metric == "MaxPartCountForPartition")].value.first() |0 | |
+ROW |51550 |30865 |1 |12 |$[?(@.metric == "MemoryTracking")].value.first() |0 | |
+ROW |51551 |30866 |1 |12 |$[?(@.metric == "MemoryTrackingInBackgroundProcessingPool")].value.first() |0 | |
+ROW |51552 |30867 |1 |12 |$[?(@.metric == "MemoryTrackingInBackgroundMoveProcessingPool")].value.first() |2 |0 |
+ROW |51553 |30868 |1 |12 |$[?(@.metric == "MemoryTrackingForMerges")].value.first() |0 | |
+ROW |51554 |30869 |1 |12 |$[?(@.metric == "MemoryTrackingInBackgroundSchedulePool")].value.first() |0 | |
+ROW |51555 |30870 |1 |12 |$[?(@.event == "MergedUncompressedBytes")].value.first() |2 |0 |
+ROW |51556 |30870 |2 |10 | |0 | |
+ROW |51557 |30871 |1 |12 |$[?(@.event == "MergedRows")].value.first() |2 |0 |
+ROW |51558 |30871 |2 |10 | |0 | |
+ROW |51559 |30872 |1 |12 |$[?(@.metric == "Merge")].value.first() |0 | |
+ROW |51560 |30873 |1 |12 |$[?(@.metric == "ZooKeeperWatch")].value.first() |0 | |
+ROW |51561 |30877 |1 |12 |$[?(@.name == "{#NAME}")].bytes_allocated.first() |0 | |
+ROW |51562 |30878 |1 |12 |$[?(@.name == "{#NAME}")].element_count.first() |0 | |
+ROW |51563 |30879 |1 |12 |$[?(@.name == "{#NAME}")].bytes_allocated.first() |0 | |
+ROW |51564 |30879 |2 |1 |100 |0 | |
+ROW |51565 |30880 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].active_replicas.first() |0 | |
+ROW |51566 |30881 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].future_parts.first() |0 | |
+ROW |51567 |30882 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].inserts_in_queue.first() |0 | |
+ROW |51568 |30883 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].is_readonly.first() |0 | |
+ROW |51569 |30884 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].is_session_expired.first() |0 | |
+ROW |51570 |30885 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].replica_lag.first() |0 | |
+ROW |51571 |30886 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].log_max_index.first() |0 | |
+ROW |51572 |30887 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].log_pointer.first() |0 | |
+ROW |51573 |30888 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].merges_in_queue.first() |0 | |
+ROW |51574 |30889 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].parts_to_check.first() |0 | |
+ROW |51575 |30890 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].queue_size.first() |0 | |
+ROW |51576 |30891 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].total_replicas.first() |0 | |
+ROW |51577 |30892 |1 |12 |$[?(@.database == "{#DB}")].bytes.sum() |0 | |
+ROW |51578 |30893 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].bytes.first() |0 | |
+ROW |51579 |30894 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].parts.first() |0 | |
+ROW |51580 |30895 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].rows.first() |0 | |
+ROW |51581 |31057 |1 |20 |10m |0 | |
+ROW |51582 |31059 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Latches' && @.counter_name=='Average Latch Wait Time Base')].cntr_value.first() |0 | |
+ROW |51583 |31060 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Access Methods' && @.counter_name=='Table Lock Escalations/sec')].cntr_value.first() |0 | |
+ROW |51584 |31060 |2 |10 | |0 | |
+ROW |51585 |31061 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Memory Manager' && @.counter_name=='Memory Grants Pending')].cntr_value.first() |0 | |
+ROW |51586 |31062 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Locks' && @.counter_name=='Number of Deadlocks/sec' && @.instance_name=='_Total')].cntr_value.first() |0 | |
+ROW |51587 |31062 |2 |10 | |0 | |
+ROW |51588 |31063 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:SQL Errors' && @.counter_name=='Errors/sec' && @.instance_name=='DB Offline Errors')].cntr_value.first() |0 | |
+ROW |51589 |31063 |2 |10 | |0 | |
+ROW |51590 |31064 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Buffer Manager' && @.counter_name=='Page life expectancy')].cntr_value.first() |0 | |
+ROW |51591 |31065 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Buffer Manager' && @.counter_name=='Page lookups/sec')].cntr_value.first() |0 | |
+ROW |51592 |31065 |2 |10 | |0 | |
+ROW |51593 |31066 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Buffer Manager' && @.counter_name=='Page reads/sec')].cntr_value.first() |0 | |
+ROW |51594 |31066 |2 |10 | |0 | |
+ROW |51595 |31067 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Access Methods' && @.counter_name=='Page Splits/sec')].cntr_value.first() |0 | |
+ROW |51596 |31067 |2 |10 | |0 | |
+ROW |51597 |31068 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Buffer Manager' && @.counter_name=='Page writes/sec')].cntr_value.first() |0 | |
+ROW |51598 |31068 |2 |10 | |0 | |
+ROW |51599 |31069 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:General Statistics' && @.counter_name=='Processes blocked')].cntr_value.first() |0 | |
+ROW |51600 |31070 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Buffer Manager' && @.counter_name=='Readahead pages/sec')].cntr_value.first() |0 | |
+ROW |51601 |31070 |2 |10 | |0 | |
+ROW |51602 |31071 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:SQL Statistics' && @.counter_name=='Safe Auto-Params/sec')].cntr_value.first() |0 | |
+ROW |51603 |31071 |2 |10 | |0 | |
+ROW |51604 |31072 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:SQL Statistics' && @.counter_name=='SQL Compilations/sec')].cntr_value.first() |0 | |
+ROW |51605 |31072 |2 |10 | |0 | |
+ROW |51606 |31073 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:SQL Statistics' && @.counter_name=='SQL Re-Compilations/sec')].cntr_value.first() |0 | |
+ROW |51607 |31073 |2 |10 | |0 | |
+ROW |51608 |31074 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Buffer Manager' && @.counter_name=='Target pages')].cntr_value.first() |0 | |
+ROW |51609 |31075 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Memory Manager' && @.counter_name=='Maximum Workspace Memory (KB)')].cntr_value.first() |0 | |
+ROW |51610 |31075 |2 |1 |1024 |0 | |
+ROW |51611 |31076 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Memory Manager' && @.counter_name=='Target Server Memory (KB)')].cntr_value.first() |0 | |
+ROW |51612 |31076 |2 |1 |1024 |0 | |
+ROW |51613 |31077 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Latches' && @.counter_name=='Total Latch Wait Time (ms)')].cntr_value.first() |0 | |
+ROW |51614 |31077 |2 |10 | |0 | |
+ROW |51615 |31078 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Memory Manager' && @.counter_name=='Total Server Memory (KB)')].cntr_value.first() |0 | |
+ROW |51616 |31078 |2 |1 |1024 |0 | |
+ROW |51617 |31079 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Transactions' && @.counter_name=='Transactions')].cntr_value.first() |0 | |
+ROW |51618 |31080 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Transactions/sec' && @.instance_name=='_Total')].cntr_value.first() |0 | |
+ROW |51619 |31080 |2 |10 | |0 | |
+ROW |51620 |31081 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:SQL Statistics' && @.counter_name=='Unsafe Auto-Params/sec')].cntr_value.first() |0 | |
+ROW |51621 |31081 |2 |10 | |0 | |
+ROW |51622 |31082 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}' && @.counter_name=='Uptime')].cntr_value.first() |0 | |
+ROW |51623 |31083 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:General Statistics' && @.counter_name=='User Connections')].cntr_value.first() |0 | |
+ROW |51624 |31084 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:SQL Errors' && @.counter_name=='Errors/sec' && @.instance_name=='User Errors')].cntr_value.first() |0 | |
+ROW |51625 |31084 |2 |10 | |0 | |
+ROW |51626 |31085 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}' && @.counter_name=='Version')].instance_name.first() |0 | |
+ROW |51627 |31085 |2 |20 |1d |0 | |
+ROW |51628 |31086 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Access Methods' && @.counter_name=='Workfiles Created/sec')].cntr_value.first() |0 | |
+ROW |51629 |31086 |2 |10 | |0 | |
+ROW |51630 |31087 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Access Methods' && @.counter_name=='Worktables Created/sec')].cntr_value.first() |0 | |
+ROW |51631 |31087 |2 |10 | |0 | |
+ROW |51632 |31088 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Access Methods' && @.counter_name=='WorktablesFromCacheRatio')].cntr_value.first() |0 | |
+ROW |51633 |31089 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Memory Manager' && @.counter_name=='Memory Grants Outstanding')].cntr_value.first() |0 | |
+ROW |51634 |31090 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:General Statistics' && @.counter_name=='Logouts/sec')].cntr_value.first() |0 | |
+ROW |51635 |31090 |2 |10 | |0 | |
+ROW |51636 |31091 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Latches' && @.counter_name=='Average Latch Wait Time (ms)')].cntr_value.first() |0 | |
+ROW |51637 |31092 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Access Methods' && @.counter_name=='Forwarded Records/sec')].cntr_value.first() |0 | |
+ROW |51638 |31092 |2 |10 | |0 | |
+ROW |51639 |31093 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Locks' && @.counter_name=='Average Wait Time Base' && @.instance_name=='_Total')].cntr_value.first() |0 | |
+ROW |51640 |31094 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Locks' && @.counter_name=='Average Wait Time (ms)' && @.instance_name=='_Total')].cntr_value.first() |0 | |
+ROW |51641 |31095 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:SQL Statistics' && @.counter_name=='Batch Requests/sec')].cntr_value.first() |0 | |
+ROW |51642 |31095 |2 |10 | |0 | |
+ROW |51643 |31096 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Buffer Manager' && @.counter_name=='BufferCacheHitRatio')].cntr_value.first() |0 | |
+ROW |51644 |31097 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Plan Cache' && @.counter_name=='CacheHitRatio' && @.instance_name=='_Total')].cntr_value.first() |0 | |
+ROW |51645 |31098 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Plan Cache' && @.counter_name=='Cache Object Counts' && @.instance_name=='_Total')].cntr_value.first() |0 | |
+ROW |51646 |31099 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Plan Cache' && @.counter_name=='Cache Objects in use' && @.instance_name=='_Total')].cntr_value.first() |0 | |
+ROW |51647 |31100 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Plan Cache' && @.counter_name=='Cache Pages' && @.instance_name=='_Total')].cntr_value.first() |0 | |
+ROW |51648 |31101 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Buffer Manager' && @.counter_name=='Checkpoint pages/sec')].cntr_value.first() |0 | |
+ROW |51649 |31101 |2 |10 | |0 | |
+ROW |51650 |31102 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Data File(s) Size (KB)' && @.instance_name=='_Total')].cntr_value.first() |0 | |
+ROW |51651 |31102 |2 |1 |1024 |0 | |
+ROW |51652 |31103 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Buffer Manager' && @.counter_name=='Database pages')].cntr_value.first() |0 | |
+ROW |51653 |31104 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:SQL Errors' && @.counter_name=='Errors/sec' && @.instance_name=='_Total')].cntr_value.first() |0 | |
+ROW |51654 |31104 |2 |10 | |0 | |
+ROW |51655 |31105 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:SQL Statistics' && @.counter_name=='Failed Auto-Params/sec')].cntr_value.first() |0 | |
+ROW |51656 |31105 |2 |10 | |0 | |
+ROW |51657 |31106 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Buffer Manager' && @.counter_name=='Free list stalls/sec')].cntr_value.first() |0 | |
+ROW |51658 |31106 |2 |10 | |0 | |
+ROW |51659 |31107 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:General Statistics' && @.counter_name=='Logins/sec')].cntr_value.first() |0 | |
+ROW |51660 |31107 |2 |10 | |0 | |
+ROW |51661 |31108 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Access Methods' && @.counter_name=='Full Scans/sec')].cntr_value.first() |0 | |
+ROW |51662 |31108 |2 |10 | |0 | |
+ROW |51663 |31109 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Memory Manager' && @.counter_name=='Granted Workspace Memory (KB)')].cntr_value.first() |0 | |
+ROW |51664 |31109 |2 |1 |1024 |0 | |
+ROW |51665 |31110 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Access Methods' && @.counter_name=='Index Searches/sec')].cntr_value.first() |0 | |
+ROW |51666 |31110 |2 |10 | |0 | |
+ROW |51667 |31111 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:SQL Errors' && @.counter_name=='Errors/sec' && @.instance_name=='Info Errors')].cntr_value.first() |0 | |
+ROW |51668 |31111 |2 |10 | |0 | |
+ROW |51669 |31112 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:SQL Errors' && @.counter_name=='Errors/sec' && @.instance_name=='Kill Connection Errors')].cntr_value.first() |0 | |
+ROW |51670 |31112 |2 |10 | |0 | |
+ROW |51671 |31113 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Latches' && @.counter_name=='Latch Waits/sec')].cntr_value.first() |0 | |
+ROW |51672 |31113 |2 |10 | |0 | |
+ROW |51673 |31114 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Buffer Manager' && @.counter_name=='Lazy writes/sec')].cntr_value.first() |0 | |
+ROW |51674 |31114 |2 |10 | |0 | |
+ROW |51675 |31115 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Locks' && @.counter_name=='Lock Requests/sec' && @.instance_name=='_Total')].cntr_value.first() |0 | |
+ROW |51676 |31115 |2 |10 | |0 | |
+ROW |51677 |31116 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Locks' && @.counter_name=='Lock Timeouts/sec' && @.instance_name=='_Total')].cntr_value.first() |0 | |
+ROW |51678 |31116 |2 |10 | |0 | |
+ROW |51679 |31117 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Locks' && @.counter_name=='Lock Wait Time (ms)' && @.instance_name=='_Total')].cntr_value.first() |0 | |
+ROW |51680 |31117 |2 |10 | |0 | |
+ROW |51681 |31118 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Locks' && @.counter_name=='Lock Waits/sec' && @.instance_name=='_Total')].cntr_value.first() |0 | |
+ROW |51682 |31118 |2 |10 | |0 | |
+ROW |51683 |31119 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Log File(s) Size (KB)' && @.instance_name=='_Total')].cntr_value.first() |0 | |
+ROW |51684 |31119 |2 |1 |1024 |0 | |
+ROW |51685 |31120 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:SQL Statistics' && @.counter_name=='Auto-Param Attempts/sec')].cntr_value.first() |0 | |
+ROW |51686 |31120 |2 |10 | |0 | |
+ROW |51687 |31121 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Log File(s) Used Size (KB)' && @.instance_name=='_Total')].cntr_value.first() |0 | |
+ROW |51688 |31121 |2 |1 |1024 |0 | |
+ROW |51689 |31122 |1 |20 |1d |0 | |
+ROW |51690 |31123 |1 |20 |1d |0 | |
+ROW |51691 |31124 |1 |20 |1d |0 | |
+ROW |51692 |31125 |1 |20 |1d |0 | |
+ROW |51693 |31126 |1 |20 |1d |0 | |
+ROW |51694 |31127 |1 |20 |1d |0 | |
+ROW |51695 |31133 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}')].primary_recovery_health.first() |0 | |
+ROW |51696 |31133 |2 |20 |1h |0 | |
+ROW |51697 |31134 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}')].primary_replica.first() |0 | |
+ROW |51698 |31134 |2 |20 |3h |0 | |
+ROW |51699 |31135 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}')].secondary_recovery_health.first() |0 | |
+ROW |51700 |31135 |2 |20 |1h |0 | |
+ROW |51701 |31136 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}')].synchronization_health.first() |0 | |
+ROW |51702 |31136 |2 |20 |1h |0 | |
+ROW |51703 |31137 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Active Transactions' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
+ROW |51704 |31138 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Data File(s) Size (KB)' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
+ROW |51705 |31138 |2 |1 |1024 |0 | |
+ROW |51706 |31139 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Log Bytes Flushed/sec' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
+ROW |51707 |31139 |2 |10 | |0 | |
+ROW |51708 |31140 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Log File(s) Size (KB)' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
+ROW |51709 |31140 |2 |1 |1024 |0 | |
+ROW |51710 |31141 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Log File(s) Used Size (KB)' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
+ROW |51711 |31141 |2 |1 |1024 |0 | |
+ROW |51712 |31142 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Log Flush Wait Time' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
+ROW |51713 |31142 |2 |10 | |0 | |
+ROW |51714 |31143 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Log Flush Waits/sec' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
+ROW |51715 |31143 |2 |10 | |0 | |
+ROW |51716 |31144 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Log Flushes/sec' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
+ROW |51717 |31144 |2 |10 | |0 | |
+ROW |51718 |31145 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Log Growths' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
+ROW |51719 |31146 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Log Shrinks' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
+ROW |51720 |31147 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Log Truncations' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
+ROW |51721 |31148 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Percent Log Used' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
+ROW |51722 |31149 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='State' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
+ROW |51723 |31149 |2 |20 |15m |0 | |
+ROW |51724 |31150 |1 |12 |$[?(@.object_name=='{$MSSQL.INSTANCE}:Databases' && @.counter_name=='Transactions/sec' && @.instance_name=='{#DBNAME}')].cntr_value.first() |0 | |
+ROW |51725 |31150 |2 |10 | |0 | |
+ROW |51726 |31151 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}' && @.dbname=='{#DBNAME}')].is_suspended.first() |0 | |
+ROW |51727 |31151 |2 |20 |1h |0 | |
+ROW |51728 |31152 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}' && @.dbname=='{#DBNAME}')].database_state.first() |0 | |
+ROW |51729 |31152 |2 |20 |1h |0 | |
+ROW |51730 |31153 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}' && @.dbname=='{#DBNAME}')].synchronization_health.first() |0 | |
+ROW |51731 |31153 |2 |20 |1h |0 | |
+ROW |51732 |31154 |1 |12 |$[?(@.dbname=='{#DBNAME}')].mirroring_role_sequence.first() |0 | |
+ROW |51733 |31154 |2 |9 | |0 | |
+ROW |51734 |31155 |1 |12 |$[?(@.dbname=='{#DBNAME}')].mirroring_role.first() |0 | |
+ROW |51735 |31155 |2 |20 |1h |0 | |
+ROW |51736 |31156 |1 |12 |$[?(@.dbname=='{#DBNAME}')].mirroring_safety_level.first() |0 | |
+ROW |51737 |31156 |2 |20 |1h |0 | |
+ROW |51738 |31157 |1 |12 |$[?(@.dbname=='{#DBNAME}')].mirroring_state.first() |0 | |
+ROW |51739 |31157 |2 |20 |1h |0 | |
+ROW |51740 |31158 |1 |12 |$[?(@.dbname=='{#DBNAME}')].mirroring_witness_state.first() |0 | |
+ROW |51741 |31158 |2 |20 |1h |0 | |
+ROW |51742 |31159 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}' && @.dbname=='{#DBNAME}')].log_send_queue_size.first() |0 | |
+ROW |51743 |31159 |2 |1 |1024 |0 | |
+ROW |51744 |31159 |3 |20 |1h |0 | |
+ROW |51745 |31160 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}' && @.dbname=='{#DBNAME}')].redo_queue_size.first() |0 | |
+ROW |51746 |31160 |2 |1 |1024 |0 | |
+ROW |51747 |31160 |3 |20 |1h |0 | |
+ROW |51748 |31161 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}')].connected_state.first() |0 | |
+ROW |51749 |31161 |2 |20 |1h |0 | |
+ROW |51750 |31162 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}')].is_local.first() |0 | |
+ROW |51751 |31162 |2 |20 |1h |0 | |
+ROW |51752 |31163 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}')].join_state.first() |0 | |
+ROW |51753 |31163 |2 |20 |1h |0 | |
+ROW |51754 |31164 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}')].operational_state.first() |0 | |
+ROW |51755 |31164 |2 |20 |1h |0 | |
+ROW |51756 |31165 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}')].recovery_health.first() |0 | |
+ROW |51757 |31165 |2 |20 |1h |0 | |
+ROW |51758 |31166 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}')].role.first() |0 | |
+ROW |51759 |31166 |2 |20 |1h |0 | |
+ROW |51760 |31167 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}')].synchronization_health.first() |0 | |
+ROW |51761 |31167 |2 |20 |1h |0 | |
+ROW |51762 |30431 |1 |5 |(Server version)\s+(.+)&bsn;\2 |0 | |
+ROW |51763 |30431 |2 |20 |1d |0 | |
+ROW |51764 |30432 |1 |21 |return value.indexOf('is alive') !== -1 ? 1 : 0; |0 | |
+ROW |51765 |30432 |2 |20 |10m |0 | |
+ROW |51766 |30436 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_reads']/field[@name='Value']/text() |0 | |
+ROW |51767 |30437 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_reads']/field[@name='Value']/text() |0 | |
+ROW |51768 |30437 |2 |10 | |0 | |
+ROW |51769 |30438 |1 |11 |/resultset/row[field/text()='Innodb_row_lock_time']/field[@name='Value']/text() |0 | |
+ROW |51770 |30438 |2 |1 |0.001 |0 | |
+ROW |51771 |30438 |3 |20 |1h |0 | |
+ROW |51772 |30439 |1 |11 |/resultset/row[field/text()='Innodb_row_lock_time_max']/field[@name='Value']/text() |0 | |
+ROW |51773 |30439 |2 |1 |0.001 |0 | |
+ROW |51774 |30439 |3 |20 |1h |0 | |
+ROW |51775 |30440 |1 |11 |/resultset/row[field/text()='Innodb_row_lock_waits']/field[@name='Value']/text() |0 | |
+ROW |51776 |30441 |1 |11 |/resultset/row[field/text()='Max_used_connections']/field[@name='Value']/text() |0 | |
+ROW |51777 |30441 |2 |20 |1h |0 | |
+ROW |51778 |30442 |1 |11 |/resultset/row[field/text()='Queries']/field[@name='Value']/text() |0 | |
+ROW |51779 |30442 |2 |10 | |0 | |
+ROW |51780 |30443 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_read_requests']/field[@name='Value']/text() |0 | |
+ROW |51781 |30444 |1 |11 |/resultset/row[field/text()='Questions']/field[@name='Value']/text() |0 | |
+ROW |51782 |30444 |2 |10 | |0 | |
+ROW |51783 |30445 |1 |11 |/resultset/row[field/text()='Slow_queries']/field[@name='Value']/text() |0 | |
+ROW |51784 |30445 |2 |10 | |0 | |
+ROW |51785 |30446 |1 |11 |/resultset/row[field/text()='Threads_cached']/field[@name='Value']/text() |0 | |
+ROW |51786 |30447 |1 |11 |/resultset/row[field/text()='Threads_connected']/field[@name='Value']/text() |0 | |
+ROW |51787 |30449 |1 |11 |/resultset/row[field/text()='Threads_running']/field[@name='Value']/text() |0 | |
+ROW |51788 |30450 |1 |11 |/resultset/row[field/text()='Uptime']/field[@name='Value']/text() |0 | |
+ROW |51789 |30451 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_read_requests']/field[@name='Value']/text() |0 | |
+ROW |51790 |30451 |2 |10 | |0 | |
+ROW |51791 |30452 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_pages_total']/field[@name='Value']/text() |0 | |
+ROW |51792 |30452 |2 |20 |1h |0 | |
+ROW |51793 |30453 |1 |11 |/resultset/row[field/text()='Bytes_received']/field[@name='Value']/text() |0 | |
+ROW |51794 |30453 |2 |10 | |0 | |
+ROW |51795 |30454 |1 |11 |/resultset/row[field/text()='Connection_errors_max_connections']/field[@name='Value']/text() |0 | |
+ROW |51796 |30454 |2 |10 | |0 | |
+ROW |51797 |30455 |1 |11 |/resultset/row[field/text()='Bytes_sent']/field[@name='Value']/text() |0 | |
+ROW |51798 |30455 |2 |10 | |0 | |
+ROW |51799 |30456 |1 |11 |/resultset/row[field/text()='Com_delete']/field[@name='Value']/text() |0 | |
+ROW |51800 |30456 |2 |10 | |0 | |
+ROW |51801 |30457 |1 |11 |/resultset/row[field/text()='Com_insert']/field[@name='Value']/text() |0 | |
+ROW |51802 |30457 |2 |10 | |0 | |
+ROW |51803 |30458 |1 |11 |/resultset/row[field/text()='Com_select']/field[@name='Value']/text() |0 | |
+ROW |51804 |30458 |2 |10 | |0 | |
+ROW |51805 |30459 |1 |11 |/resultset/row[field/text()='Com_update']/field[@name='Value']/text() |0 | |
+ROW |51806 |30459 |2 |10 | |0 | |
+ROW |51807 |30460 |1 |11 |/resultset/row[field/text()='Connection_errors_accept']/field[@name='Value']/text() |0 | |
+ROW |51808 |30460 |2 |10 | |0 | |
+ROW |51809 |30461 |1 |11 |/resultset/row[field/text()='Connection_errors_internal']/field[@name='Value']/text() |0 | |
+ROW |51810 |30461 |2 |10 | |0 | |
+ROW |51811 |30462 |1 |11 |/resultset/row[field/text()='Connection_errors_peer_address']/field[@name='Value']/text() |0 | |
+ROW |51812 |30462 |2 |10 | |0 | |
+ROW |51813 |30463 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_pages_free']/field[@name='Value']/text() |0 | |
+ROW |51814 |30464 |1 |11 |/resultset/row[field/text()='Connection_errors_select']/field[@name='Value']/text() |0 | |
+ROW |51815 |30464 |2 |10 | |0 | |
+ROW |51816 |30465 |1 |11 |/resultset/row[field/text()='Connection_errors_tcpwrap']/field[@name='Value']/text() |0 | |
+ROW |51817 |30465 |2 |10 | |0 | |
+ROW |51818 |30466 |1 |11 |/resultset/row[field/text()='Connections']/field[@name='Value']/text() |0 | |
+ROW |51819 |30466 |2 |10 | |0 | |
+ROW |51820 |30470 |1 |11 |/resultset/row[field/text()='Aborted_connects']/field[@name='Value']/text() |0 | |
+ROW |51821 |30470 |2 |10 | |0 | |
+ROW |51822 |30471 |1 |11 |/resultset/row[field/text()='Aborted_clients']/field[@name='Value']/text() |0 | |
+ROW |51823 |30471 |2 |10 | |0 | |
+ROW |51824 |31168 |1 |11 |/resultset/row[field/text()='Threads_created']/field[@name='Value']/text() |0 | |
+ROW |51825 |31168 |2 |10 | |0 | |
+ROW |51826 |31169 |1 |11 |/resultset/row[field/text()='Created_tmp_disk_tables']/field[@name='Value']/text() |0 | |
+ROW |51827 |31169 |2 |10 | |0 | |
+ROW |51828 |31170 |1 |11 |/resultset/row[field/text()='Created_tmp_files']/field[@name='Value']/text() |0 | |
+ROW |51829 |31170 |2 |10 | |0 | |
+ROW |51830 |31171 |1 |11 |/resultset/row[field/text()='Created_tmp_tables']/field[@name='Value']/text() |0 | |
+ROW |51831 |31171 |2 |10 | |0 | |
+ROW |51832 |30472 |1 |21 |return JSON.stringify(value.split("\n").map(function (name) {&bsn; return ({"{#DBNAME}": name});&bsn;})); |0 | |
+ROW |51833 |30472 |2 |20 |1d |0 | |
+ROW |51834 |30473 |1 |21 |var matches = value.match(/Master_Host.*>(.*)<.*/);&bsn;if (matches) {&bsn; return JSON.stringify([{"{#MASTERHOST}": matches[1]}]);&bsn;}&bsn;&bsn;return '[]'; |0 | |
+ROW |51835 |30473 |2 |20 |1d |0 | |
+ROW |51836 |30474 |1 |20 |1h |0 | |
+ROW |51837 |30476 |1 |11 |/resultset/row/field[@name='Seconds_Behind_Master']/text() |0 | |
+ROW |51838 |30476 |2 |20 |1h |0 | |
+ROW |51839 |30476 |3 |15 |null |3 |Replication is not performed. |
+ROW |51840 |30477 |1 |11 |/resultset/row/field[@name='Slave_IO_Running']/text() |0 | |
+ROW |51841 |30477 |2 |20 |1h |0 | |
+ROW |51842 |30478 |1 |11 |/resultset/row/field[@name='Slave_SQL_Running']/text() |0 | |
+ROW |51843 |30478 |2 |20 |1h |0 | |
+ROW |51844 |30637 |1 |20 |1d |0 | |
+ROW |51845 |30638 |1 |20 |10m |0 | |
+ROW |51846 |30642 |1 |12 |$.Innodb_buffer_pool_reads |0 | |
+ROW |51847 |30643 |1 |12 |$.Innodb_buffer_pool_reads |0 | |
+ROW |51848 |30643 |2 |10 | |0 | |
+ROW |51849 |30644 |1 |12 |$.Innodb_row_lock_time |0 | |
+ROW |51850 |30644 |2 |1 |0.001 |0 | |
+ROW |51851 |30644 |3 |20 |1h |0 | |
+ROW |51852 |30645 |1 |12 |$.Innodb_row_lock_time_max |0 | |
+ROW |51853 |30645 |2 |1 |0.001 |0 | |
+ROW |51854 |30645 |3 |20 |1h |0 | |
+ROW |51855 |30646 |1 |12 |$.Innodb_row_lock_waits |0 | |
+ROW |51856 |30647 |1 |12 |$.Max_used_connections |0 | |
+ROW |51857 |30647 |2 |20 |1h |0 | |
+ROW |51858 |30648 |1 |12 |$.Queries |0 | |
+ROW |51859 |30648 |2 |10 | |0 | |
+ROW |51860 |30649 |1 |12 |$.Innodb_buffer_pool_read_requests |0 | |
+ROW |51861 |30650 |1 |12 |$.Questions |0 | |
+ROW |51862 |30650 |2 |10 | |0 | |
+ROW |51863 |30651 |1 |12 |$.Slow_queries |0 | |
+ROW |51864 |30651 |2 |10 | |0 | |
+ROW |51865 |30652 |1 |12 |$.Threads_cached |0 | |
+ROW |51866 |30653 |1 |12 |$.Threads_connected |0 | |
+ROW |51867 |30655 |1 |12 |$.Threads_running |0 | |
+ROW |51868 |30656 |1 |12 |$.Uptime |0 | |
+ROW |51869 |30657 |1 |12 |$.Innodb_buffer_pool_read_requests |0 | |
+ROW |51870 |30657 |2 |10 | |0 | |
+ROW |51871 |30658 |1 |12 |$.Innodb_buffer_pool_pages_total |0 | |
+ROW |51872 |30658 |2 |20 |1h |0 | |
+ROW |51873 |30659 |1 |12 |$.Bytes_received |0 | |
+ROW |51874 |30659 |2 |10 | |0 | |
+ROW |51875 |30660 |1 |12 |$.Connection_errors_max_connections |0 | |
+ROW |51876 |30660 |2 |10 | |0 | |
+ROW |51877 |30661 |1 |12 |$.Bytes_sent |0 | |
+ROW |51878 |30661 |2 |10 | |0 | |
+ROW |51879 |30662 |1 |12 |$.Com_delete |0 | |
+ROW |51880 |30662 |2 |10 | |0 | |
+ROW |51881 |30663 |1 |12 |$.Com_insert |0 | |
+ROW |51882 |30663 |2 |10 | |0 | |
+ROW |51883 |30664 |1 |12 |$.Com_select |0 | |
+ROW |51884 |30664 |2 |10 | |0 | |
+ROW |51885 |30665 |1 |12 |$.Com_update |0 | |
+ROW |51886 |30665 |2 |10 | |0 | |
+ROW |51887 |30666 |1 |12 |$.Connection_errors_accept |0 | |
+ROW |51888 |30666 |2 |10 | |0 | |
+ROW |51889 |30667 |1 |12 |$.Connection_errors_internal |0 | |
+ROW |51890 |30667 |2 |10 | |0 | |
+ROW |51891 |30668 |1 |12 |$.Connection_errors_peer_address |0 | |
+ROW |51892 |30668 |2 |10 | |0 | |
+ROW |51893 |30669 |1 |12 |$.Innodb_buffer_pool_pages_free |0 | |
+ROW |51894 |30670 |1 |12 |$.Connection_errors_select |0 | |
+ROW |51895 |30670 |2 |10 | |0 | |
+ROW |51896 |30671 |1 |12 |$.Connection_errors_tcpwrap |0 | |
+ROW |51897 |30671 |2 |10 | |0 | |
+ROW |51898 |30672 |1 |12 |$.Connections |0 | |
+ROW |51899 |30672 |2 |10 | |0 | |
+ROW |51900 |30676 |1 |12 |$.Aborted_connects |0 | |
+ROW |51901 |30676 |2 |10 | |0 | |
+ROW |51902 |30677 |1 |12 |$.Aborted_clients |0 | |
+ROW |51903 |30677 |2 |10 | |0 | |
+ROW |51904 |31172 |1 |12 |$.Threads_created |0 | |
+ROW |51905 |31172 |2 |10 | |0 | |
+ROW |51906 |31173 |1 |12 |$.Created_tmp_disk_tables |0 | |
+ROW |51907 |31173 |2 |10 | |0 | |
+ROW |51908 |31174 |1 |12 |$.Created_tmp_files |0 | |
+ROW |51909 |31174 |2 |10 | |0 | |
+ROW |51910 |31175 |1 |12 |$.Created_tmp_tables |0 | |
+ROW |51911 |31175 |2 |10 | |0 | |
+ROW |51912 |30678 |1 |20 |1d |0 | |
+ROW |51913 |30679 |1 |20 |1d |0 | |
+ROW |51914 |30680 |1 |20 |1h |0 | |
+ROW |51915 |30682 |1 |12 |$.Seconds_Behind_Master |0 | |
+ROW |51916 |30682 |2 |14 |\d+ |3 |Replication is not performed. |
+ROW |51917 |30682 |3 |20 |1h |0 | |
+ROW |51918 |30683 |1 |12 |$.Slave_IO_Running |0 | |
+ROW |51919 |30683 |2 |20 |1h |0 | |
+ROW |51920 |30684 |1 |12 |$.Slave_SQL_Running |0 | |
+ROW |51921 |30684 |2 |20 |1h |0 | |
+ROW |51922 |30480 |1 |20 |1d |0 | |
+ROW |51923 |30481 |1 |20 |10m |0 | |
+ROW |51924 |30484 |1 |12 |$[?(@.Variable_name=='Innodb_row_lock_waits')].Value.first() |0 | |
+ROW |51925 |30485 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_read_requests')].Value.first() |0 | |
+ROW |51926 |30486 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_read_requests')].Value.first() |0 | |
+ROW |51927 |30486 |2 |10 | |0 | |
+ROW |51928 |30487 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_reads')].Value.first() |0 | |
+ROW |51929 |30488 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_reads')].Value.first() |0 | |
+ROW |51930 |30488 |2 |10 | |0 | |
+ROW |51931 |30489 |1 |12 |$[?(@.Variable_name=='Innodb_row_lock_time')].Value.first() |0 | |
+ROW |51932 |30489 |2 |1 |0.001 |0 | |
+ROW |51933 |30489 |3 |20 |1h |0 | |
+ROW |51934 |30490 |1 |12 |$[?(@.Variable_name=='Innodb_row_lock_time_max')].Value.first() |0 | |
+ROW |51935 |30490 |2 |1 |0.001 |0 | |
+ROW |51936 |30490 |3 |20 |1h |0 | |
+ROW |51937 |30491 |1 |12 |$[?(@.Variable_name=='Queries')].Value.first() |0 | |
+ROW |51938 |30491 |2 |10 | |0 | |
+ROW |51939 |30492 |1 |12 |$[?(@.Variable_name=='Max_used_connections')].Value.first() |0 | |
+ROW |51940 |30492 |2 |20 |1h |0 | |
+ROW |51941 |30493 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_pages_free')].Value.first() |0 | |
+ROW |51942 |30494 |1 |12 |$[?(@.Variable_name=='Questions')].Value.first() |0 | |
+ROW |51943 |30494 |2 |10 | |0 | |
+ROW |51944 |30495 |1 |12 |$[?(@.Variable_name=='Slow_queries')].Value.first() |0 | |
+ROW |51945 |30495 |2 |10 | |0 | |
+ROW |51946 |30496 |1 |12 |$[?(@.Variable_name=='Threads_cached')].Value.first() |0 | |
+ROW |51947 |30497 |1 |12 |$[?(@.Variable_name=='Threads_connected')].Value.first() |0 | |
+ROW |51948 |30499 |1 |12 |$[?(@.Variable_name=='Threads_running')].Value.first() |0 | |
+ROW |51949 |30500 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_pages_total')].Value.first() |0 | |
+ROW |51950 |30500 |2 |20 |1h |0 | |
+ROW |51951 |30503 |1 |12 |$[?(@.Variable_name=='Com_select')].Value.first() |0 | |
+ROW |51952 |30503 |2 |10 | |0 | |
+ROW |51953 |30504 |1 |12 |$[?(@.Variable_name=='Aborted_clients')].Value.first() |0 | |
+ROW |51954 |30504 |2 |10 | |0 | |
+ROW |51955 |30505 |1 |12 |$[?(@.Variable_name=='Aborted_connects')].Value.first() |0 | |
+ROW |51956 |30505 |2 |10 | |0 | |
+ROW |51957 |30506 |1 |12 |$[?(@.Variable_name=='Bytes_received')].Value.first() |0 | |
+ROW |51958 |30506 |2 |10 | |0 | |
+ROW |51959 |30507 |1 |12 |$[?(@.Variable_name=='Bytes_sent')].Value.first() |0 | |
+ROW |51960 |30507 |2 |10 | |0 | |
+ROW |51961 |30508 |1 |12 |$[?(@.Variable_name=='Com_delete')].Value.first() |0 | |
+ROW |51962 |30508 |2 |10 | |0 | |
+ROW |51963 |30509 |1 |12 |$[?(@.Variable_name=='Com_insert')].Value.first() |0 | |
+ROW |51964 |30509 |2 |10 | |0 | |
+ROW |51965 |30510 |1 |12 |$[?(@.Variable_name=='Com_update')].Value.first() |0 | |
+ROW |51966 |30510 |2 |10 | |0 | |
+ROW |51967 |30512 |1 |12 |$[?(@.Variable_name=='Connection_errors_accept')].Value.first() |0 | |
+ROW |51968 |30512 |2 |10 | |0 | |
+ROW |51969 |30513 |1 |12 |$[?(@.Variable_name=='Connection_errors_internal')].Value.first() |0 | |
+ROW |51970 |30513 |2 |10 | |0 | |
+ROW |51971 |30514 |1 |12 |$[?(@.Variable_name=='Connection_errors_max_connections')].Value.first() |0 | |
+ROW |51972 |30514 |2 |10 | |0 | |
+ROW |51973 |30515 |1 |12 |$[?(@.Variable_name=='Connection_errors_peer_address')].Value.first() |0 | |
+ROW |51974 |30515 |2 |10 | |0 | |
+ROW |51975 |30516 |1 |12 |$[?(@.Variable_name=='Connection_errors_select')].Value.first() |0 | |
+ROW |51976 |30516 |2 |10 | |0 | |
+ROW |51977 |30517 |1 |12 |$[?(@.Variable_name=='Connection_errors_tcpwrap')].Value.first() |0 | |
+ROW |51978 |30517 |2 |10 | |0 | |
+ROW |51979 |30518 |1 |12 |$[?(@.Variable_name=='Connections')].Value.first() |0 | |
+ROW |51980 |30518 |2 |10 | |0 | |
+ROW |51981 |30519 |1 |12 |$[?(@.Variable_name=='Uptime')].Value.first() |0 | |
+ROW |51982 |31176 |1 |12 |$[?(@.Variable_name=='Threads_created')].Value.first() |0 | |
+ROW |51983 |31176 |2 |10 | |0 | |
+ROW |51984 |31177 |1 |12 |$[?(@.Variable_name=='Created_tmp_disk_tables')].Value.first() |0 | |
+ROW |51985 |31177 |2 |10 | |0 | |
+ROW |51986 |31178 |1 |12 |$[?(@.Variable_name=='Created_tmp_tables')].Value.first() |0 | |
+ROW |51987 |31178 |2 |10 | |0 | |
+ROW |51988 |31179 |1 |12 |$[?(@.Variable_name=='Created_tmp_files')].Value.first() |0 | |
+ROW |51989 |31179 |2 |10 | |0 | |
+ROW |51990 |30520 |1 |20 |1d |0 | |
+ROW |51991 |30521 |1 |20 |1d |0 | |
+ROW |51992 |30522 |1 |20 |1h |0 | |
+ROW |51993 |30524 |1 |12 |$.[?(@.Master_Host=='{#MASTER_HOST}')]['Seconds_Behind_Master'].first() |0 | |
+ROW |51994 |30524 |2 |14 |\d+ |3 |Replication is not performed. |
+ROW |51995 |30524 |3 |20 |1h |0 | |
+ROW |51996 |30525 |1 |12 |$.[?(@.Master_Host=='{#MASTER_HOST}')]['Slave_IO_Running'].first() |0 | |
+ROW |51997 |30525 |2 |20 |1h |0 | |
+ROW |51998 |30526 |1 |12 |$.[?(@.Master_Host=='{#MASTER_HOST}')]['Slave_SQL_Running'].first() |0 | |
+ROW |51999 |30526 |2 |20 |1h |0 | |
+ROW |52000 |31629 |1 |20 |10m |0 | |
+ROW |52001 |31630 |1 |12 |$.datafile_num |0 | |
+ROW |52002 |31632 |1 |12 |$.proc_num |0 | |
+ROW |52003 |31640 |1 |12 |$.available |0 | |
+ROW |52004 |31641 |1 |12 |$.exp_passwd_days_before |0 | |
+ROW |52005 |31646 |1 |12 |$.active_user |2 |0 |
+ROW |52006 |31647 |1 |12 |$.['Rows Per Sort'] |0 | |
+ROW |52007 |31648 |1 |12 |$.active_background |2 |0 |
+ROW |52008 |31649 |1 |12 |$.concurrency_rate |0 | |
+ROW |52009 |31650 |1 |12 |$.total |0 | |
+ROW |52010 |31651 |1 |12 |$.inactive_user |2 |0 |
+ROW |52011 |31652 |1 |12 |$.['SQL Service Response Time'] |0 | |
+ROW |52012 |31652 |2 |1 |0.01 |0 | |
+ROW |52013 |31653 |1 |12 |$.sessions |0 | |
+ROW |52014 |31654 |1 |12 |$.lock_rate |0 | |
+ROW |52015 |31655 |1 |12 |$.processes |0 | |
+ROW |52016 |31656 |1 |12 |$.['Active Parallel Sessions'] |0 | |
+ROW |52017 |31657 |1 |12 |$.long_time_locked |0 | |
+ROW |52018 |31658 |1 |12 |$.buffer_cache |0 | |
+ROW |52019 |31659 |1 |12 |$.fixed_sga |0 | |
+ROW |52020 |31660 |1 |12 |$.java_pool |0 | |
+ROW |52021 |31661 |1 |12 |$.log_buffer |0 | |
+ROW |52022 |31662 |1 |12 |$.shared_pool |0 | |
+ROW |52023 |31663 |1 |12 |$.['Shared Pool Free %'] |0 | |
+ROW |52024 |31664 |1 |12 |$.['Total Sorts Per User Call'] |0 | |
+ROW |52025 |31665 |1 |12 |$.['Temp Space Used'] |0 | |
+ROW |52026 |31666 |1 |12 |$.['total PGA allocated'] |0 | |
+ROW |52027 |31667 |1 |12 |$.['total freeable PGA memory'] |0 | |
+ROW |52028 |31668 |1 |12 |$.['total PGA inuse'] |0 | |
+ROW |52029 |31669 |1 |12 |$.uptime |0 | |
+ROW |52030 |31670 |1 |12 |$.['User Rollbacks Per Sec'] |0 | |
+ROW |52031 |31671 |1 |12 |$.large_pool |0 | |
+ROW |52032 |31672 |1 |12 |$.['Physical Read Bytes Per Sec'] |0 | |
+ROW |52033 |31673 |1 |12 |$.['Physical Writes Per Sec'] |0 | |
+ROW |52034 |31674 |1 |12 |$.space_reclaimable |0 | |
+ROW |52035 |31675 |1 |12 |$.['Average Active Sessions'] |0 | |
+ROW |52036 |31676 |1 |12 |$..archiver.first() |0 | |
+ROW |52037 |31677 |1 |12 |$.['Buffer Cache Hit Ratio'] |0 | |
+ROW |52038 |31678 |1 |12 |$.['Global Cache Blocks Corrupted'] |0 | |
+ROW |52039 |31679 |1 |12 |$.['Global Cache Blocks Lost'] |0 | |
+ROW |52040 |31680 |1 |12 |$.['Cursor Cache Hit Ratio'] |0 | |
+ROW |52041 |31681 |1 |12 |$.['Database CPU Time Ratio'] |0 | |
+ROW |52042 |31682 |1 |12 |$.['Database Wait Time Ratio'] |0 | |
+ROW |52043 |31683 |1 |12 |$.db_files |0 | |
+ROW |52044 |31684 |1 |12 |$.['Disk Sort Per Sec'] |0 | |
+ROW |52045 |31685 |1 |12 |$.['Enqueue Timeouts Per Sec'] |0 | |
+ROW |52046 |31686 |1 |12 |$.number_of_files |0 | |
+ROW |52047 |31687 |1 |12 |$.restore_point |0 | |
+ROW |52048 |31688 |1 |12 |$.space_limit |0 | |
+ROW |52049 |31689 |1 |12 |$.space_used |0 | |
+ROW |52050 |31690 |1 |12 |$.['Physical Write Bytes Per Sec'] |0 | |
+ROW |52051 |31691 |1 |12 |$.usable_pct |0 | |
+ROW |52052 |31692 |1 |12 |$.['GC CR Block Received Per Second'] |0 | |
+ROW |52053 |31693 |1 |12 |$..hostname.first() |0 | |
+ROW |52054 |31694 |1 |12 |$.instance |0 | |
+ROW |52055 |31695 |1 |12 |$.status |0 | |
+ROW |52056 |31696 |1 |12 |$.role |0 | |
+ROW |52057 |31697 |1 |12 |$.['Library Cache Hit Ratio'] |0 | |
+ROW |52058 |31698 |1 |12 |$.['Logons Per Sec'] |0 | |
+ROW |52059 |31699 |1 |12 |$.['Long Table Scans Per Sec'] |0 | |
+ROW |52060 |31700 |1 |12 |$.['Memory Sorts Ratio'] |0 | |
+ROW |52061 |31701 |1 |12 |$.['global memory bound'] |0 | |
+ROW |52062 |31702 |1 |12 |$.['aggregate PGA target parameter'] |0 | |
+ROW |52063 |31703 |1 |12 |$.['Active Serial Sessions'] |0 | |
+ROW |52064 |31704 |1 |12 |$.['Physical Reads Per Sec'] |0 | |
+ROW |52065 |31705 |1 |12 |$.version |0 | |
+ROW |52066 |31705 |2 |20 |1d |0 | |
+ROW |52067 |31711 |1 |12 |$..['{#DEST_NAME}'].log_sequence.first() |0 | |
+ROW |52068 |31712 |1 |12 |$..['{#DEST_NAME}'].log_sequence.first() |0 | |
+ROW |52069 |31713 |1 |12 |$..['{#DEST_NAME}'].log_sequence.first() |0 | |
+ROW |52070 |31714 |1 |12 |$..{#DBNAME}.force_logging.first() |0 | |
+ROW |52071 |31714 |2 |20 |15m |0 | |
+ROW |52072 |31715 |1 |12 |$..{#DBNAME}.log_mode.first() |0 | |
+ROW |52073 |31715 |2 |20 |15m |0 | |
+ROW |52074 |31716 |1 |12 |$..{#DBNAME}.open_mode.first() |0 | |
+ROW |52075 |31716 |2 |20 |15m |0 | |
+ROW |52076 |31717 |1 |12 |$..{#DBNAME}.role.first() |0 | |
+ROW |52077 |31717 |2 |20 |15m |0 | |
+ROW |52078 |31718 |1 |12 |$..['{#DG_NAME}'].free_size_byte.first() |0 | |
+ROW |52079 |31719 |1 |12 |$..['{#DG_NAME}'].size_byte.first() |0 | |
+ROW |52080 |31720 |1 |12 |$..['{#DG_NAME}'].used_percent.first() |0 | |
+ROW |52081 |31721 |1 |12 |$..{#DBNAME}.open_mode.first() |0 | |
+ROW |52082 |31721 |2 |20 |15m |0 | |
+ROW |52083 |31722 |1 |12 |$..{#TABLESPACE}.used_bytes.first() |0 | |
+ROW |52084 |31723 |1 |12 |$..{#TABLESPACE}.free_bytes.first() |0 | |
+ROW |52085 |31724 |1 |12 |$..{#TABLESPACE}.max_bytes.first() |0 | |
+ROW |52086 |31725 |1 |12 |$..{#TABLESPACE}.status.first() |0 | |
+ROW |52087 |31726 |1 |12 |$..{#TABLESPACE}.used_pct.first() |0 | |
+ROW |52088 |31729 |1 |12 |$[?(@.METRIC=='SESSION::Lock rate')].VALUE.first() |0 | |
+ROW |52089 |31730 |1 |12 |$[?(@.METRIC=='SYS::Physical Writes Per Sec')].VALUE.first() |0 | |
+ROW |52090 |31731 |1 |12 |$[?(@.METRIC=='PROC::Procnum')].VALUE.first() |0 | |
+ROW |52091 |31732 |1 |12 |$[?(@.METRIC=='SYSPARAM::Processes')].VALUE.first() |0 | |
+ROW |52092 |31733 |1 |12 |$[?(@.METRIC=='REDO::Available')].VALUE.first() |0 | |
+ROW |52093 |31734 |1 |12 |$[?(@.METRIC=='SYS::Rows Per Sort')].VALUE.first() |0 | |
+ROW |52094 |31735 |1 |12 |$[?(@.METRIC=='SYS::SQL Service Response Time')].VALUE.first() |0 | |
+ROW |52095 |31735 |2 |1 |0.01 |0 | |
+ROW |52096 |31736 |1 |12 |$[?(@.METRIC=='SESSION::Active Background')].VALUE.first() |2 |0 |
+ROW |52097 |31737 |1 |12 |$[?(@.METRIC=='SESSION::Active User')].VALUE.first() |2 |0 |
+ROW |52098 |31738 |1 |12 |$[?(@.METRIC=='SESSION::Concurrency rate')].VALUE.first() |0 | |
+ROW |52099 |31739 |1 |12 |$[?(@.METRIC=='SESSION::Total')].VALUE.first() |0 | |
+ROW |52100 |31740 |1 |12 |$[?(@.METRIC=='SESSION::Inactive User')].VALUE.first() |2 |0 |
+ROW |52101 |31741 |1 |12 |$[?(@.METRIC=='SYSPARAM::Sessions')].VALUE.first() |0 | |
+ROW |52102 |31742 |1 |12 |$[?(@.METRIC=='SESSION::Long time locked')].VALUE.first() |0 | |
+ROW |52103 |31743 |1 |12 |$[?(@.METRIC=='SYS::User Rollbacks Per Sec')].VALUE.first() |0 | |
+ROW |52104 |31744 |1 |12 |$[?(@.METRIC=='SGA::Buffer_Cache')].VALUE.first() |2 |0 |
+ROW |52105 |31745 |1 |12 |$[?(@.METRIC=='SYS::Physical Write Bytes Per Sec')].VALUE.first() |0 | |
+ROW |52106 |31746 |1 |12 |$[?(@.METRIC=='SGA::Java Pool')].VALUE.first() |2 |0 |
+ROW |52107 |31747 |1 |12 |$[?(@.METRIC=='SGA::Large Pool')].VALUE.first() |2 |0 |
+ROW |52108 |31748 |1 |12 |$[?(@.METRIC=='SGA::Log_Buffer')].VALUE.first() |2 |0 |
+ROW |52109 |31749 |1 |12 |$[?(@.METRIC=='SGA::Shared Pool')].VALUE.first() |2 |0 |
+ROW |52110 |31750 |1 |12 |$[?(@.METRIC=='SYS::Shared Pool Free %')].VALUE.first() |0 | |
+ROW |52111 |31751 |1 |12 |$[?(@.METRIC=='SYS::Total Sorts Per User Call')].VALUE.first() |0 | |
+ROW |52112 |31752 |1 |12 |$[?(@.METRIC=='SYS::Temp Space Used')].VALUE.first() |0 | |
+ROW |52113 |31753 |1 |12 |$[?(@.METRIC=='PGA::Total Pga Allocated')].VALUE.first() |0 | |
+ROW |52114 |31754 |1 |12 |$[?(@.METRIC=='PGA::Total Freeable Pga Memory')].VALUE.first() |0 | |
+ROW |52115 |31755 |1 |12 |$[?(@.METRIC=='PGA::Total Pga Inuse')].VALUE.first() |0 | |
+ROW |52116 |31756 |1 |12 |$[?(@.METRIC=='USER::Expire password')].VALUE.first() |0 | |
+ROW |52117 |31757 |1 |12 |$[?(@.METRIC=='SGA::Fixed_Sga')].VALUE.first() |2 |0 |
+ROW |52118 |31758 |1 |12 |$[?(@.METRIC=='SYS::Physical Read Bytes Per Sec')].VALUE.first() |0 | |
+ROW |52119 |31759 |1 |12 |$[?(@.METRIC=='SYS::Physical Reads Per Sec')].VALUE.first() |0 | |
+ROW |52120 |31760 |1 |12 |$[?(@.METRIC=='SYS::Enqueue Timeouts Per Sec')].VALUE.first() |0 | |
+ROW |52121 |31761 |1 |12 |$[?(@.METRIC=='SYS::Active Parallel Sessions')].VALUE.first() |0 | |
+ROW |52122 |31762 |1 |12 |$[?(@.METRIC=='SYS::Active Serial Sessions')].VALUE.first() |0 | |
+ROW |52123 |31763 |1 |12 |$[?(@.METRIC=='SYS::Average Active Sessions')].VALUE.first() |0 | |
+ROW |52124 |31764 |1 |12 |$[?(@.METRIC=='SYS::Buffer Cache Hit Ratio')].VALUE.first() |0 | |
+ROW |52125 |31765 |1 |12 |$[?(@.METRIC=='SYS::Global Cache Blocks Corrupted')].VALUE.first() |0 | |
+ROW |52126 |31766 |1 |12 |$[?(@.METRIC=='SYS::Global Cache Blocks Lost')].VALUE.first() |0 | |
+ROW |52127 |31767 |1 |12 |$[?(@.METRIC=='SYS::Cursor Cache Hit Ratio')].VALUE.first() |0 | |
+ROW |52128 |31768 |1 |12 |$[?(@.METRIC=='SYS::Database CPU Time Ratio')].VALUE.first() |0 | |
+ROW |52129 |31769 |1 |12 |$[?(@.METRIC=='SYS::Database Wait Time Ratio')].VALUE.first() |0 | |
+ROW |52130 |31770 |1 |12 |$[?(@.METRIC=='DATAFILE::Count')].VALUE.first() |0 | |
+ROW |52131 |31771 |1 |12 |$[?(@.METRIC=='SYSPARAM::Db_Files')].VALUE.first() |0 | |
+ROW |52132 |31772 |1 |12 |$[?(@.METRIC=='SYS::Disk Sort Per Sec')].VALUE.first() |0 | |
+ROW |52133 |31773 |1 |12 |$[?(@.METRIC=='FRA::Number Of Files')].VALUE.first() |2 |0 |
+ROW |52134 |31774 |1 |12 |$[?(@.METRIC=='PGA::Aggregate Pga Target Parameter')].VALUE.first() |0 | |
+ROW |52135 |31775 |1 |12 |$[?(@.METRIC=='FRA::Restore Point')].VALUE.first() |0 | |
+ROW |52136 |31776 |1 |12 |$[?(@.METRIC=='FRA::Space Limit')].VALUE.first() |2 |0 |
+ROW |52137 |31777 |1 |12 |$[?(@.METRIC=='FRA::Space Reclaimable')].VALUE.first() |2 |0 |
+ROW |52138 |31778 |1 |12 |$[?(@.METRIC=='FRA::Space Used')].VALUE.first() |2 |0 |
+ROW |52139 |31779 |1 |12 |$[?(@.METRIC=='FRA::Usable Pct')].VALUE.first() |2 |0 |
+ROW |52140 |31780 |1 |12 |$[?(@.METRIC=='SYS::GC CR Block Received Per Second')].VALUE.first() |0 | |
+ROW |52141 |31781 |1 |12 |$[?(@.METRIC=='SYS::Library Cache Hit Ratio')].VALUE.first() |0 | |
+ROW |52142 |31782 |1 |12 |$[?(@.METRIC=='SYS::Logons Per Sec')].VALUE.first() |0 | |
+ROW |52143 |31783 |1 |12 |$[?(@.METRIC=='SYS::Long Table Scans Per Sec')].VALUE.first() |0 | |
+ROW |52144 |31784 |1 |12 |$[?(@.METRIC=='PGA::Global Memory Bound')].VALUE.first() |0 | |
+ROW |52145 |31785 |1 |12 |$[?(@.METRIC=='SYS::Memory Sorts Ratio')].VALUE.first() |0 | |
+ROW |52146 |31364 |1 |20 |10m |0 | |
+ROW |52147 |31365 |1 |20 |10m |0 | |
+ROW |52148 |31370 |1 |12 |$..VERSION.first() |0 | |
+ROW |52149 |31370 |2 |20 |1d |0 | |
+ROW |52150 |31398 |1 |12 |$..UPTIME.first() |0 | |
+ROW |52151 |31407 |1 |12 |$..ARCHIVER.first() |0 | |
+ROW |52152 |31425 |1 |12 |$..HOST_NAME.first() |0 | |
+ROW |52153 |31426 |1 |12 |$..INSTANCE_NAME.first() |0 | |
+ROW |52154 |31427 |1 |12 |$..STATUS.first() |0 | |
+ROW |52155 |31428 |1 |12 |$..INSTANCE_ROLE.first() |0 | |
+ROW |52156 |31786 |1 |12 |$[?(@.TABLESPACE=='{#TABLESPACE}')].USED_BYTES.first() |0 | |
+ROW |52157 |31439 |1 |12 |$[?(@.DEST_NAME=='{#DEST_NAME}')].ERROR.first() |0 | |
+ROW |52158 |31440 |1 |12 |$[?(@.DEST_NAME=='{#DEST_NAME}')].LOG_SEQUENCE.first() |0 | |
+ROW |52159 |31441 |1 |12 |$[?(@.DEST_NAME=='{#DEST_NAME}')].STATUS.first() |0 | |
+ROW |52160 |31442 |1 |12 |$[?(@.DG_NAME=='{#DG_NAME}')].FREE_SIZE_BYTE.first() |0 | |
+ROW |52161 |31443 |1 |12 |$[?(@.DG_NAME=='{#DG_NAME}')].SIZE_BYTE.first() |0 | |
+ROW |52162 |31444 |1 |12 |$[?(@.DG_NAME=='{#DG_NAME}')].USED_PERCENT.first() |0 | |
+ROW |52163 |31445 |1 |12 |$[?(@.DBNAME=='{#DBNAME}')].FORCE_LOGGING.first() |0 | |
+ROW |52164 |31445 |2 |20 |15m |0 | |
+ROW |52165 |31446 |1 |12 |$[?(@.DBNAME=='{#DBNAME}')].LOG_MODE.first() |0 | |
+ROW |52166 |31446 |2 |20 |15m |0 | |
+ROW |52167 |31447 |1 |12 |$[?(@.DBNAME=='{#DBNAME}')].OPEN_MODE.first() |0 | |
+ROW |52168 |31447 |2 |20 |15m |0 | |
+ROW |52169 |31448 |1 |12 |$[?(@.DBNAME=='{#DBNAME}')].ROLE.first() |0 | |
+ROW |52170 |31448 |2 |20 |15m |0 | |
+ROW |52171 |31449 |1 |12 |$[?(@.DBNAME=='{#DBNAME}')].OPEN_MODE.first() |0 | |
+ROW |52172 |31449 |2 |20 |15m |0 | |
+ROW |52173 |31450 |1 |12 |$[?(@.TABLESPACE=='{#TABLESPACE}')].FREE_BYTES.first() |0 | |
+ROW |52174 |31451 |1 |12 |$[?(@.TABLESPACE=='{#TABLESPACE}')].MAX_BYTES.first() |0 | |
+ROW |52175 |31452 |1 |12 |$[?(@.TABLESPACE=='{#TABLESPACE}')].STATUS.first() |0 | |
+ROW |52176 |31454 |1 |12 |$[?(@.TABLESPACE=='{#TABLESPACE}')].USED_PCT.first() |0 | |
+ROW |52177 |28673 |1 |5 |Time:\s(\d+\.\d+)\sms&bsn;\1 |0 | |
+ROW |52178 |28674 |1 |21 |return value.search(/accepting connections/)>0 ? 1 : 0 |0 | |
+ROW |52179 |28674 |2 |20 |1h |0 | |
+ROW |52180 |28680 |1 |20 |1h |0 | |
+ROW |52181 |28685 |1 |20 |1d |0 | |
+ROW |52182 |28688 |1 |12 |$.idle |0 | |
+ROW |52183 |28689 |1 |12 |$.active |0 | |
+ROW |52184 |28690 |1 |12 |$.prepared |0 | |
+ROW |52185 |28691 |1 |12 |$.waiting |0 | |
+ROW |52186 |28692 |1 |12 |$.count |0 | |
+ROW |52187 |28693 |1 |12 |$.buffers_alloc |0 | |
+ROW |52188 |28693 |2 |10 | |0 | |
+ROW |52189 |28694 |1 |12 |$.buffers_backend |0 | |
+ROW |52190 |28694 |2 |10 | |0 | |
+ROW |52191 |28695 |1 |12 |$.checkpoint_write_time |0 | |
+ROW |52192 |28695 |2 |1 |0.001 |0 | |
+ROW |52193 |28695 |3 |10 | |0 | |
+ROW |52194 |28696 |1 |12 |$.buffers_backend_fsync |0 | |
+ROW |52195 |28696 |2 |10 | |0 | |
+ROW |52196 |28697 |1 |12 |$.buffers_checkpoint |0 | |
+ROW |52197 |28697 |2 |10 | |0 | |
+ROW |52198 |28698 |1 |12 |$.buffers_clean |0 | |
+ROW |52199 |28698 |2 |10 | |0 | |
+ROW |52200 |28699 |1 |12 |$.checkpoints_req |0 | |
+ROW |52201 |28699 |2 |10 | |0 | |
+ROW |52202 |28700 |1 |12 |$.checkpoints_timed |0 | |
+ROW |52203 |28700 |2 |10 | |0 | |
+ROW |52204 |28701 |1 |12 |$.checkpoint_write_time |0 | |
+ROW |52205 |28701 |2 |1 |0.001 |0 | |
+ROW |52206 |28701 |3 |10 | |0 | |
+ROW |52207 |28702 |1 |12 |$.maxwritten_clean |0 | |
+ROW |52208 |28702 |2 |10 | |0 | |
+ROW |52209 |28703 |1 |12 |$.waiting |0 | |
+ROW |52210 |28704 |1 |12 |$.active |0 | |
+ROW |52211 |28705 |1 |12 |$.idle |0 | |
+ROW |52212 |28706 |1 |12 |$.idle_in_transaction |0 | |
+ROW |52213 |28707 |1 |12 |$.prepared |0 | |
+ROW |52214 |28708 |1 |12 |$.total |0 | |
+ROW |52215 |28709 |1 |12 |$.total_pct |0 | |
+ROW |52216 |28710 |1 |12 |$.write |0 | |
+ROW |52217 |28710 |2 |10 | |0 | |
+ROW |52218 |28715 |1 |12 |$['{#DBNAME}'].conflicts |0 | |
+ROW |52219 |28715 |2 |10 | |0 | |
+ROW |52220 |28716 |1 |12 |$['{#DBNAME}'].total |0 | |
+ROW |52221 |28717 |1 |12 |$.seq |0 | |
+ROW |52222 |28717 |2 |10 | |0 | |
+ROW |52223 |28718 |1 |12 |$.idx |0 | |
+ROW |52224 |28718 |2 |10 | |0 | |
+ROW |52225 |28719 |1 |12 |$['{#DBNAME}'].tx_time_sum |0 | |
+ROW |52226 |28720 |1 |12 |$['{#DBNAME}'].tx_time_max |0 | |
+ROW |52227 |28721 |1 |12 |$['{#DBNAME}'].tx_slow_count |0 | |
+ROW |52228 |28722 |1 |12 |$['{#DBNAME}'].query_time_sum |0 | |
+ROW |52229 |28723 |1 |12 |$['{#DBNAME}'].query_time_max |0 | |
+ROW |52230 |28724 |1 |12 |$['{#DBNAME}'].query_slow_count |0 | |
+ROW |52231 |28725 |1 |12 |$['{#DBNAME}'].mro_time_sum |0 | |
+ROW |52232 |28726 |1 |12 |$['{#DBNAME}'].mro_time_max |0 | |
+ROW |52233 |28727 |1 |12 |$['{#DBNAME}'].mro_slow_count |0 | |
+ROW |52234 |28728 |1 |12 |$['{#DBNAME}'].blks_read |0 | |
+ROW |52235 |28728 |2 |10 | |0 | |
+ROW |52236 |28729 |1 |12 |$['{#DBNAME}'].deadlocks |0 | |
+ROW |52237 |28729 |2 |10 | |0 | |
+ROW |52238 |28730 |1 |12 |$['{#DBNAME}'].blks_hit |0 | |
+ROW |52239 |28730 |2 |10 | |0 | |
+ROW |52240 |28731 |1 |12 |$.prc_before_av |0 | |
+ROW |52241 |28732 |1 |12 |$['{#DBNAME}'].xact_rollback |0 | |
+ROW |52242 |28732 |2 |10 | |0 | |
+ROW |52243 |28733 |1 |12 |$['{#DBNAME}'].xact_commit |0 | |
+ROW |52244 |28733 |2 |10 | |0 | |
+ROW |52245 |28734 |1 |12 |$['{#DBNAME}'].tup_updated |0 | |
+ROW |52246 |28734 |2 |10 | |0 | |
+ROW |52247 |28735 |1 |12 |$['{#DBNAME}'].tup_returned |0 | |
+ROW |52248 |28735 |2 |10 | |0 | |
+ROW |52249 |28736 |1 |12 |$['{#DBNAME}'].tup_inserted |0 | |
+ROW |52250 |28736 |2 |10 | |0 | |
+ROW |52251 |28737 |1 |12 |$['{#DBNAME}'].tup_fetched |0 | |
+ROW |52252 |28737 |2 |10 | |0 | |
+ROW |52253 |28738 |1 |12 |$['{#DBNAME}'].tup_deleted |0 | |
+ROW |52254 |28738 |2 |10 | |0 | |
+ROW |52255 |28739 |1 |12 |$['{#DBNAME}'].temp_files |0 | |
+ROW |52256 |28739 |2 |10 | |0 | |
+ROW |52257 |28740 |1 |12 |$['{#DBNAME}'].temp_bytes |0 | |
+ROW |52258 |28740 |2 |10 | |0 | |
+ROW |52259 |28741 |1 |12 |$.prc_before_stop |0 | |
+ROW |52260 |31188 |1 |20 |1h |0 | |
+ROW |52261 |31197 |1 |12 |$.tup_fetched |0 | |
+ROW |52262 |31197 |2 |10 | |0 | |
+ROW |52263 |31198 |1 |12 |$.numbackends |0 | |
+ROW |52264 |31199 |1 |12 |$.deadlocks |0 | |
+ROW |52265 |31199 |2 |10 | |0 | |
+ROW |52266 |31200 |1 |12 |$.temp_bytes |0 | |
+ROW |52267 |31200 |2 |10 | |0 | |
+ROW |52268 |31201 |1 |12 |$.temp_files |0 | |
+ROW |52269 |31201 |2 |10 | |0 | |
+ROW |52270 |31202 |1 |12 |$.tup_deleted |0 | |
+ROW |52271 |31202 |2 |10 | |0 | |
+ROW |52272 |31203 |1 |12 |$.archived_count |0 | |
+ROW |52273 |31204 |1 |12 |$.tup_inserted |0 | |
+ROW |52274 |31204 |2 |10 | |0 | |
+ROW |52275 |31205 |1 |12 |$.tup_returned |0 | |
+ROW |52276 |31205 |2 |10 | |0 | |
+ROW |52277 |31206 |1 |12 |$.tup_updated |0 | |
+ROW |52278 |31206 |2 |10 | |0 | |
+ROW |52279 |31207 |1 |12 |$.xact_commit |0 | |
+ROW |52280 |31207 |2 |10 | |0 | |
+ROW |52281 |31208 |1 |12 |$.xact_rollback |0 | |
+ROW |52282 |31208 |2 |10 | |0 | |
+ROW |52283 |31209 |1 |12 |$.checksum_failures |0 | |
+ROW |52284 |31209 |2 |14 |^\d*$ |0 | |
+ROW |52285 |31209 |3 |10 | |2 |ZBX_NOTSUPPORTED: Checksum failures metric is supported only in PostgreSQL 12 or higher.|
+ROW |52286 |31210 |1 |12 |$.write |0 | |
+ROW |52287 |31211 |1 |12 |$.conflicts |0 | |
+ROW |52288 |31211 |2 |10 | |0 | |
+ROW |52289 |31212 |1 |12 |$.blk_read_time |0 | |
+ROW |52290 |31212 |2 |1 |0.001 |0 | |
+ROW |52291 |31213 |1 |12 |$.blks_read |0 | |
+ROW |52292 |31213 |2 |10 | |0 | |
+ROW |52293 |31214 |1 |12 |$.sync_time |0 | |
+ROW |52294 |31214 |2 |1 |0.001 |0 | |
+ROW |52295 |31214 |3 |10 | |0 | |
+ROW |52296 |31215 |1 |12 |$.failed_count |0 | |
+ROW |52297 |31216 |1 |12 |$.size_files |0 | |
+ROW |52298 |31217 |1 |12 |$.buffers_alloc |0 | |
+ROW |52299 |31217 |2 |10 | |0 | |
+ROW |52300 |31218 |1 |12 |$.buffers_backend_fsync |0 | |
+ROW |52301 |31218 |2 |10 | |0 | |
+ROW |52302 |31219 |1 |12 |$.buffers_backend |0 | |
+ROW |52303 |31219 |2 |10 | |0 | |
+ROW |52304 |31220 |1 |12 |$.buffers_checkpoint |0 | |
+ROW |52305 |31220 |2 |10 | |0 | |
+ROW |52306 |31221 |1 |12 |$.buffers_clean |0 | |
+ROW |52307 |31221 |2 |10 | |0 | |
+ROW |52308 |31222 |1 |12 |$.checkpoint_write_time |0 | |
+ROW |52309 |31222 |2 |1 |0.001 |0 | |
+ROW |52310 |31222 |3 |10 | |0 | |
+ROW |52311 |31223 |1 |12 |$.checkpoints_req |0 | |
+ROW |52312 |31223 |2 |10 | |0 | |
+ROW |52313 |31224 |1 |12 |$.checkpoints_timed |0 | |
+ROW |52314 |31224 |2 |10 | |0 | |
+ROW |52315 |31225 |1 |12 |$.maxwritten_clean |0 | |
+ROW |52316 |31225 |2 |10 | |0 | |
+ROW |52317 |31226 |1 |12 |$.active |0 | |
+ROW |52318 |31227 |1 |12 |$.blks_hit |0 | |
+ROW |52319 |31227 |2 |10 | |0 | |
+ROW |52320 |31228 |1 |12 |$.disabled |0 | |
+ROW |52321 |31229 |1 |12 |$.idle_in_transaction |0 | |
+ROW |52322 |31230 |1 |12 |$.idle |0 | |
+ROW |52323 |31231 |1 |12 |$.idle_in_transaction |0 | |
+ROW |52324 |31232 |1 |12 |$.idle_in_transaction_aborted |0 | |
+ROW |52325 |31233 |1 |12 |$.prepared |0 | |
+ROW |52326 |31234 |1 |12 |$.total |0 | |
+ROW |52327 |31235 |1 |12 |$.total_pct |0 | |
+ROW |52328 |31236 |1 |12 |$.waiting |0 | |
+ROW |52329 |31237 |1 |12 |$.blk_read_time |0 | |
+ROW |52330 |31237 |2 |1 |0.001 |0 | |
+ROW |52331 |31238 |1 |12 |$.count_files |0 | |
+ROW |52332 |31239 |1 |12 |$.write |0 | |
+ROW |52333 |31239 |2 |10 | |0 | |
+ROW |52334 |31244 |1 |12 |$['{#DBNAME}'].tup_returned |0 | |
+ROW |52335 |31244 |2 |10 | |0 | |
+ROW |52336 |31245 |1 |12 |$['{#DBNAME}'].shareupdateexclusive |0 | |
+ROW |52337 |31246 |1 |12 |$['{#DBNAME}'].sharerowexclusive |0 | |
+ROW |52338 |31247 |1 |12 |$['{#DBNAME}'].share |0 | |
+ROW |52339 |31248 |1 |12 |$['{#DBNAME}'].rowshare |0 | |
+ROW |52340 |31249 |1 |12 |$['{#DBNAME}'].rowexclusive |0 | |
+ROW |52341 |31250 |1 |12 |$['{#DBNAME}'].exclusive |0 | |
+ROW |52342 |31251 |1 |12 |$['{#DBNAME}'].accessshare |0 | |
+ROW |52343 |31252 |1 |12 |$['{#DBNAME}'].accessexclusive |0 | |
+ROW |52344 |31253 |1 |12 |$['{#DBNAME}'].xact_rollback |0 | |
+ROW |52345 |31253 |2 |10 | |0 | |
+ROW |52346 |31254 |1 |12 |$['{#DBNAME}'].xact_commit |0 | |
+ROW |52347 |31254 |2 |10 | |0 | |
+ROW |52348 |31255 |1 |12 |$['{#DBNAME}'].tup_updated |0 | |
+ROW |52349 |31255 |2 |10 | |0 | |
+ROW |52350 |31256 |1 |12 |$['{#DBNAME}'].tup_fetched |0 | |
+ROW |52351 |31256 |2 |10 | |0 | |
+ROW |52352 |31257 |1 |12 |$['{#DBNAME}'].tup_inserted |0 | |
+ROW |52353 |31257 |2 |10 | |0 | |
+ROW |52354 |31258 |1 |12 |$['{#DBNAME}'].tup_deleted |0 | |
+ROW |52355 |31258 |2 |10 | |0 | |
+ROW |52356 |31259 |1 |12 |$['{#DBNAME}'].temp_files |0 | |
+ROW |52357 |31259 |2 |10 | |0 | |
+ROW |52358 |31260 |1 |12 |$['{#DBNAME}'].temp_bytes |0 | |
+ROW |52359 |31260 |2 |10 | |0 | |
+ROW |52360 |31261 |1 |12 |$['{#DBNAME}'].numbackends |0 | |
+ROW |52361 |31262 |1 |12 |$['{#DBNAME}'].deadlocks |0 | |
+ROW |52362 |31262 |2 |10 | |0 | |
+ROW |52363 |31263 |1 |12 |$['{#DBNAME}'].conflicts |0 | |
+ROW |52364 |31263 |2 |10 | |0 | |
+ROW |52365 |31264 |1 |12 |$['{#DBNAME}'].checksum_failures |0 | |
+ROW |52366 |31264 |2 |14 |^\d*$ |0 | |
+ROW |52367 |31264 |3 |10 | |2 |ZBX_NOTSUPPORTED: Checksum failures metric is supported only in PostgreSQL 12 or higher.|
+ROW |52368 |31265 |1 |12 |$['{#DBNAME}'].blks_read |0 | |
+ROW |52369 |31265 |2 |10 | |0 | |
+ROW |52370 |31266 |1 |12 |$['{#DBNAME}'].blks_hit |0 | |
+ROW |52371 |31266 |2 |10 | |0 | |
+ROW |52372 |31267 |1 |12 |$['{#DBNAME}'].blk_write_time |0 | |
+ROW |52373 |31267 |2 |1 |0.001 |0 | |
+ROW |52374 |31267 |3 |10 | |0 | |
+ROW |52375 |31268 |1 |12 |$['{#DBNAME}'].blk_read_time |0 | |
+ROW |52376 |31268 |2 |1 |0.001 |0 | |
+ROW |52377 |31268 |3 |10 | |0 | |
+ROW |52378 |31269 |1 |12 |$['{#DBNAME}'].total |0 | |
+ROW |52379 |30273 |1 |20 |10m |0 | |
+ROW |52380 |30274 |1 |10 | |0 | |
+ROW |52381 |30275 |1 |20 |1h |0 | |
+ROW |52382 |30277 |1 |12 |$.Clients.blocked_clients |0 | |
+ROW |52383 |30278 |1 |12 |$.Server.tcp_port |0 | |
+ROW |52384 |30278 |2 |20 |1d |0 | |
+ROW |52385 |30279 |1 |12 |$.Stats.expired_keys |0 | |
+ROW |52386 |30280 |1 |12 |$.Stats.evicted_keys |0 | |
+ROW |52387 |30281 |1 |12 |$.Server.uptime_in_seconds |0 | |
+ROW |52388 |30282 |1 |12 |$.Server.redis_mode |0 | |
+ROW |52389 |30282 |2 |20 |1d |0 | |
+ROW |52390 |30283 |1 |12 |$.Server.redis_version |0 | |
+ROW |52391 |30283 |2 |20 |1d |0 | |
+ROW |52392 |30284 |1 |12 |$.Stats.instantaneous_ops_per_sec |0 | |
+ROW |52393 |30285 |1 |12 |$.Server.process_id |0 | |
+ROW |52394 |30285 |2 |20 |1d |0 | |
+ROW |52395 |30286 |1 |12 |$.Replication.role |0 | |
+ROW |52396 |30286 |2 |20 |1d |0 | |
+ROW |52397 |30287 |1 |12 |$.Replication.repl_backlog_size |0 | |
+ROW |52398 |30288 |1 |12 |$.Replication.repl_backlog_histlen |0 | |
+ROW |52399 |30289 |1 |12 |$.Stats.instantaneous_input_kbps |0 | |
+ROW |52400 |30289 |2 |1 |1024 |0 | |
+ROW |52401 |30290 |1 |12 |$.Stats.keyspace_hits |0 | |
+ROW |52402 |30291 |1 |12 |$.Stats.instantaneous_output_kbps |0 | |
+ROW |52403 |30291 |2 |1 |1024 |0 | |
+ROW |52404 |30292 |1 |12 |$.Replication.repl_backlog_active |0 | |
+ROW |52405 |30293 |1 |12 |$.Stats.keyspace_misses |0 | |
+ROW |52406 |30294 |1 |12 |$.Stats.latest_fork_usec |0 | |
+ROW |52407 |30294 |2 |1 |1.0E-5 |0 | |
+ROW |52408 |30295 |1 |12 |$.Stats.migrate_cached_sockets |0 | |
+ROW |52409 |30296 |1 |12 |$.Stats.pubsub_channels |0 | |
+ROW |52410 |30297 |1 |12 |$.Stats.pubsub_patterns |0 | |
+ROW |52411 |30298 |1 |12 |$.Stats.rejected_connections |0 | |
+ROW |52412 |30299 |1 |12 |$.Stats.sync_full |0 | |
+ROW |52413 |30300 |1 |12 |$.Stats.sync_partial_err |0 | |
+ROW |52414 |30301 |1 |12 |$.Stats.sync_partial_ok |0 | |
+ROW |52415 |30302 |1 |12 |$.Stats.total_commands_processed |0 | |
+ROW |52416 |30303 |1 |12 |$.Stats.total_connections_received |0 | |
+ROW |52417 |30304 |1 |12 |$.Stats.total_net_input_bytes |0 | |
+ROW |52418 |30305 |1 |12 |$.Replication.repl_backlog_first_byte_offset |0 | |
+ROW |52419 |30306 |1 |12 |$.Replication.connected_slaves |0 | |
+ROW |52420 |30307 |1 |12 |$.Replication.master_repl_offset |0 | |
+ROW |52421 |30308 |1 |12 |$.Memory.used_memory_rss |0 | |
+ROW |52422 |30309 |1 |21 |var clients = JSON.parse(value).Clients&bsn;return clients.client_recent_max_input_buffer &pipe;&pipe; clients.client_biggest_input_buf |0 | |
+ROW |52423 |30310 |1 |21 |var clients = JSON.parse(value).Clients&bsn;return clients.client_recent_max_output_buffer &pipe;&pipe; clients.client_longest_output_list |0 | |
+ROW |52424 |30311 |1 |12 |$.Cluster.cluster_enabled |0 | |
+ROW |52425 |30312 |1 |12 |$.maxclients |0 | |
+ROW |52426 |30312 |2 |20 |30m |0 | |
+ROW |52427 |30313 |1 |12 |$.CPU.used_cpu_sys |0 | |
+ROW |52428 |30314 |1 |12 |$.CPU.used_cpu_sys_children |0 | |
+ROW |52429 |30315 |1 |12 |$.CPU.used_cpu_user |0 | |
+ROW |52430 |30316 |1 |12 |$.CPU.used_cpu_user_children |0 | |
+ROW |52431 |30317 |1 |12 |$.Memory.mem_fragmentation_ratio |0 | |
+ROW |52432 |30318 |1 |12 |$.Memory.used_memory |0 | |
+ROW |52433 |30319 |1 |12 |$.Memory.used_memory_lua |0 | |
+ROW |52434 |30320 |1 |12 |$.Memory.used_memory_peak |0 | |
+ROW |52435 |30321 |1 |12 |$.Persistence.aof_current_rewrite_time_sec |0 | |
+ROW |52436 |30322 |1 |12 |$.Clients.connected_clients |0 | |
+ROW |52437 |30323 |1 |12 |$.Persistence.aof_enabled |0 | |
+ROW |52438 |30324 |1 |12 |$.Persistence.aof_last_bgrewrite_status |0 | |
+ROW |52439 |30324 |2 |6 | |0 | |
+ROW |52440 |30325 |1 |12 |$.Persistence.aof_last_rewrite_time_sec |0 | |
+ROW |52441 |30326 |1 |12 |$.Persistence.aof_last_write_status |0 | |
+ROW |52442 |30326 |2 |6 | |0 | |
+ROW |52443 |30327 |1 |12 |$.Persistence.aof_rewrite_in_progress |0 | |
+ROW |52444 |30328 |1 |12 |$.Persistence.aof_rewrite_scheduled |0 | |
+ROW |52445 |30329 |1 |12 |$.Persistence.loading |0 | |
+ROW |52446 |30330 |1 |12 |$.Persistence.rdb_bgsave_in_progress |0 | |
+ROW |52447 |30331 |1 |12 |$.Persistence.rdb_changes_since_last_save |0 | |
+ROW |52448 |30332 |1 |12 |$.Persistence.rdb_current_bgsave_time_sec |0 | |
+ROW |52449 |30333 |1 |12 |$.Persistence.rdb_last_bgsave_status |0 | |
+ROW |52450 |30333 |2 |6 | |0 | |
+ROW |52451 |30334 |1 |12 |$.Persistence.rdb_last_bgsave_time_sec |0 | |
+ROW |52452 |30335 |1 |12 |$.Persistence.rdb_last_save_time |0 | |
+ROW |52453 |30336 |1 |12 |$.Stats.total_net_output_bytes |0 | |
+ROW |52454 |30337 |1 |21 |return JSON.stringify(value > 0 ? [{'{#SINGLETON}': ''}] : []); |0 | |
+ROW |52455 |30338 |1 |21 |return JSON.stringify(Object.keys(JSON.parse(value).Keyspace)&bsn; .map(function (v){return {"{#DB}": v}})); |0 | |
+ROW |52456 |30339 |1 |12 |$.Server.redis_version |0 | |
+ROW |52457 |30339 |2 |21 |return JSON.stringify(parseInt(value.split('.')[0]) >= 4 ? [{'{#SINGLETON}': ''}] : []); |0 | |
+ROW |52458 |30340 |1 |12 |$.Server.redis_version |0 | |
+ROW |52459 |30340 |2 |21 |return JSON.stringify(parseInt(value.split('.')[0]) >= 5 ? [{'{#SINGLETON}': ''}] : []); |0 | |
+ROW |52460 |30341 |1 |21 |return JSON.stringify(JSON.parse(value).Persistence.aof_enabled === '1'&bsn; ? [{'{#SINGLETON}': ''}]&bsn; : []); |0 | |
+ROW |52461 |30342 |1 |21 |var repl = JSON.parse(value).Replication;&bsn;return JSON.stringify(Object.keys(repl)&bsn; .filter(function (v) {return v.match(/slave\d+/)})&bsn; .map(function (v){&bsn; return {"{#SLAVE_IP}": repl[v].ip, "{#SLAVE_PORT}": repl[v].port}&bsn; })); |0 | |
+ROW |52462 |30343 |1 |21 |return JSON.stringify(JSON.parse(value).Replication.role === 'slave'&bsn; ? [{'{#SINGLETON}': ''}]&bsn; : []); |0 | |
+ROW |52463 |30348 |1 |12 |$.Keyspace["{#DB}"].avg_ttl |0 | |
+ROW |52464 |30348 |2 |1 |0.001 |0 | |
+ROW |52465 |30349 |1 |12 |$.Keyspace["{#DB}"].expires |0 | |
+ROW |52466 |30350 |1 |12 |$.Keyspace["{#DB}"].keys |0 | |
+ROW |52467 |30351 |1 |12 |$.Memory.active_defrag_running |0 | |
+ROW |52468 |30352 |1 |12 |$.Persistence.rdb_last_cow_size |0 | |
+ROW |52469 |30353 |1 |12 |$.Stats.expired_time_cap_reached_count |0 | |
+ROW |52470 |30354 |1 |12 |$.Stats.expired_stale_perc |0 | |
+ROW |52471 |30355 |1 |12 |$.Stats.active_defrag_misses |0 | |
+ROW |52472 |30356 |1 |12 |$.Stats.active_defrag_key_misses |0 | |
+ROW |52473 |30357 |1 |12 |$.Stats.active_defrag_key_hits |0 | |
+ROW |52474 |30358 |1 |12 |$.Stats.active_defrag_hits |0 | |
+ROW |52475 |30359 |1 |12 |$.Server.executable |0 | |
+ROW |52476 |30359 |2 |20 |1d |0 | |
+ROW |52477 |30360 |1 |12 |$.Replication.second_repl_offset |0 | |
+ROW |52478 |30361 |1 |12 |$.Persistence.aof_last_cow_size |0 | |
+ROW |52479 |30362 |1 |12 |$.Memory.lazyfree_pending_objects |0 | |
+ROW |52480 |30363 |1 |12 |$.Memory.used_memory_startup |0 | |
+ROW |52481 |30364 |1 |12 |$.Memory.used_memory_peak_perc |0 | |
+ROW |52482 |30364 |2 |5 |(.+)%&bsn;\1 |0 | |
+ROW |52483 |30365 |1 |12 |$.Memory.used_memory_overhead |0 | |
+ROW |52484 |30366 |1 |12 |$.Memory.used_memory_dataset |0 | |
+ROW |52485 |30367 |1 |12 |$.Memory.used_memory_dataset_perc |0 | |
+ROW |52486 |30367 |2 |5 |(.+)%&bsn;\1 |0 | |
+ROW |52487 |30368 |1 |12 |$.Memory.total_system_memory |0 | |
+ROW |52488 |30369 |1 |12 |$.Memory.maxmemory |0 | |
+ROW |52489 |30370 |1 |12 |$.Memory.maxmemory_policy |0 | |
+ROW |52490 |30370 |2 |20 |1d |0 | |
+ROW |52491 |30371 |1 |12 |$.Stats.slave_expires_tracked_keys |0 | |
+ROW |52492 |30372 |1 |12 |$.Memory.allocator_active |0 | |
+ROW |52493 |30373 |1 |12 |$.Memory.mem_clients_normal |0 | |
+ROW |52494 |30374 |1 |12 |$.Memory.rss_overhead_ratio |0 | |
+ROW |52495 |30375 |1 |12 |$.Memory.rss_overhead_bytes |0 | |
+ROW |52496 |30376 |1 |12 |$.Memory.mem_replication_backlog |0 | |
+ROW |52497 |30377 |1 |12 |$.Memory.number_of_cached_scripts |0 | |
+ROW |52498 |30378 |1 |12 |$.Memory.mem_not_counted_for_evict |0 | |
+ROW |52499 |30379 |1 |12 |$.Memory.mem_clients_slaves |0 | |
+ROW |52500 |30380 |1 |12 |$.Memory.mem_aof_buffer |0 | |
+ROW |52501 |30381 |1 |12 |$.Memory.allocator_allocated |0 | |
+ROW |52502 |30382 |1 |12 |$.Memory.mem_fragmentation_bytes |0 | |
+ROW |52503 |30383 |1 |12 |$.Memory.allocator_rss_ratio |0 | |
+ROW |52504 |30384 |1 |12 |$.Memory.allocator_rss_bytes |0 | |
+ROW |52505 |30385 |1 |12 |$.Memory.allocator_resident |0 | |
+ROW |52506 |30386 |1 |12 |$.Memory.allocator_frag_ratio |0 | |
+ROW |52507 |30387 |1 |12 |$.Memory.allocator_frag_bytes |0 | |
+ROW |52508 |30388 |1 |12 |$.Memory.used_memory_scripts |0 | |
+ROW |52509 |30389 |1 |12 |$.Persistence.aof_base_size |0 | |
+ROW |52510 |30390 |1 |12 |$.Persistence.aof_buffer_length |0 | |
+ROW |52511 |30391 |1 |12 |$.Persistence.aof_current_size |0 | |
+ROW |52512 |30392 |1 |12 |$.Persistence.aof_delayed_fsync |0 | |
+ROW |52513 |30393 |1 |12 |$.Persistence.aof_pending_bio_fsync |0 | |
+ROW |52514 |30394 |1 |12 |$.Persistence.aof_pending_rewrite |0 | |
+ROW |52515 |30395 |1 |12 |$.Persistence.aof_rewrite_buffer_length |0 | |
+ROW |52516 |30396 |1 |21 |var repl = JSON.parse(value).Replication;&bsn;var res = Object.keys(repl)&bsn; .filter(function (v) {return v.match(/slave\d+/)})&bsn; .filter(function (v) {return (repl[v].ip === "{#SLAVE_IP}" && repl[v].port === "{#SLAVE_PORT}")})&bsn; .map(function (v) {return repl[v].offset})[0];&bsn;&bsn;if (res === undefined) {&bsn; throw 'Slave {#SLAVE_IP}:{#SLAVE_PORT} is no longer available.';&bsn;}&bsn;&bsn;return res; |0 | |
+ROW |52517 |30397 |1 |12 |$.Replication.master_host |0 | |
+ROW |52518 |30397 |2 |20 |1d |0 | |
+ROW |52519 |30398 |1 |12 |$.Replication.master_last_io_seconds_ago |0 | |
+ROW |52520 |30399 |1 |12 |$.Replication.master_link_status |0 | |
+ROW |52521 |30399 |2 |6 | |0 | |
+ROW |52522 |30400 |1 |12 |$.Replication.master_port |0 | |
+ROW |52523 |30400 |2 |20 |1d |0 | |
+ROW |52524 |30401 |1 |12 |$.Replication.master_sync_in_progress |0 | |
+ROW |52525 |30402 |1 |12 |$.Replication.slave_priority |0 | |
+ROW |52526 |30403 |1 |12 |$.Replication.slave_read_only |0 | |
+ROW |52527 |30403 |2 |20 |1d |0 | |
+ROW |52528 |30404 |1 |12 |$.Replication.slave_repl_offset |0 | |
+ROW |52529 |27152 |1 |20 |1h |0 | |
+ROW |52530 |29844 |1 |1 |0.01 |0 | |
+ROW |52531 |29845 |1 |20 |1h |0 | |
+ROW |52532 |29846 |1 |20 |1d |0 | |
+ROW |52533 |29847 |1 |20 |1h |0 | |
+ROW |52534 |29848 |1 |20 |1d |0 | |
+ROW |52535 |27199 |1 |20 |1h |0 | |
+ROW |52536 |27232 |1 |20 |1h |0 | |
+ROW |52537 |27268 |1 |20 |1h |0 | |
+ROW |52538 |27289 |1 |20 |1h |0 | |
+ROW |52539 |27340 |1 |20 |1h |0 | |
+ROW |52540 |27372 |1 |20 |1h |0 | |
+ROW |52541 |27469 |1 |20 |1h |0 | |
+ROW |52542 |27503 |1 |20 |1h |0 | |
+ROW |52543 |27539 |1 |20 |1h |0 | |
+ROW |52544 |27575 |1 |20 |1h |0 | |
+ROW |52545 |27638 |1 |20 |1h |0 | |
+ROW |52546 |27661 |1 |20 |1h |0 | |
+ROW |52547 |27741 |1 |20 |1h |0 | |
+ROW |52548 |27773 |1 |20 |1h |0 | |
+ROW |52549 |27807 |1 |20 |1h |0 | |
+ROW |52550 |27889 |1 |20 |1h |0 | |
+ROW |52551 |27926 |1 |20 |1h |0 | |
+ROW |52552 |27963 |1 |20 |1h |0 | |
+ROW |52553 |27993 |1 |20 |1h |0 | |
+ROW |52554 |28022 |1 |20 |1h |0 | |
+ROW |52555 |28137 |1 |20 |1h |0 | |
+ROW |52556 |28192 |1 |20 |1h |0 | |
+ROW |52557 |28240 |1 |20 |1h |0 | |
+ROW |52558 |28289 |1 |20 |1h |0 | |
+ROW |52559 |28337 |1 |20 |1h |0 | |
+ROW |52560 |28384 |1 |20 |1h |0 | |
+ROW |52561 |28461 |1 |20 |1h |0 | |
+ROW |52562 |28489 |1 |20 |1h |0 | |
+ROW |52563 |28964 |1 |20 |1h |0 | |
+ROW |52564 |29057 |1 |20 |1h |0 | |
+ROW |52565 |29834 |1 |1 |0.01 |0 | |
+ROW |52566 |29835 |1 |20 |1h |0 | |
+ROW |52567 |29836 |1 |20 |1d |0 | |
+ROW |52568 |29837 |1 |20 |1h |0 | |
+ROW |52569 |29838 |1 |20 |1d |0 | |
+ROW |52570 |29849 |1 |1 |0.01 |0 | |
+ROW |52571 |29850 |1 |20 |1h |0 | |
+ROW |52572 |29851 |1 |20 |1d |0 | |
+ROW |52573 |29852 |1 |20 |1h |0 | |
+ROW |52574 |29853 |1 |20 |1d |0 | |
+ROW |52575 |29854 |1 |1 |0.01 |0 | |
+ROW |52576 |29855 |1 |20 |1h |0 | |
+ROW |52577 |29856 |1 |20 |1d |0 | |
+ROW |52578 |29857 |1 |20 |1h |0 | |
+ROW |52579 |29858 |1 |20 |1d |0 | |
+ROW |52580 |29859 |1 |1 |0.01 |0 | |
+ROW |52581 |29860 |1 |20 |1h |0 | |
+ROW |52582 |29861 |1 |20 |1d |0 | |
+ROW |52583 |29862 |1 |20 |1h |0 | |
+ROW |52584 |29863 |1 |20 |1d |0 | |
+ROW |52585 |29864 |1 |1 |0.01 |0 | |
+ROW |52586 |29865 |1 |20 |1h |0 | |
+ROW |52587 |29866 |1 |20 |1d |0 | |
+ROW |52588 |29867 |1 |20 |1h |0 | |
+ROW |52589 |29868 |1 |20 |1d |0 | |
+ROW |52590 |29869 |1 |1 |0.01 |0 | |
+ROW |52591 |29870 |1 |20 |1h |0 | |
+ROW |52592 |29871 |1 |20 |1d |0 | |
+ROW |52593 |29872 |1 |20 |1h |0 | |
+ROW |52594 |29873 |1 |20 |1d |0 | |
+ROW |52595 |29874 |1 |1 |0.01 |0 | |
+ROW |52596 |29875 |1 |20 |1h |0 | |
+ROW |52597 |29876 |1 |20 |1d |0 | |
+ROW |52598 |29877 |1 |20 |1h |0 | |
+ROW |52599 |29878 |1 |20 |1d |0 | |
+ROW |52600 |29879 |1 |1 |0.01 |0 | |
+ROW |52601 |29880 |1 |20 |1h |0 | |
+ROW |52602 |29881 |1 |20 |1d |0 | |
+ROW |52603 |29882 |1 |20 |1h |0 | |
+ROW |52604 |29883 |1 |20 |1d |0 | |
+ROW |52605 |29884 |1 |1 |0.01 |0 | |
+ROW |52606 |29885 |1 |20 |1h |0 | |
+ROW |52607 |29886 |1 |20 |1d |0 | |
+ROW |52608 |29887 |1 |20 |1h |0 | |
+ROW |52609 |29888 |1 |20 |1d |0 | |
+ROW |52610 |29889 |1 |1 |0.01 |0 | |
+ROW |52611 |29890 |1 |20 |1h |0 | |
+ROW |52612 |29891 |1 |20 |1d |0 | |
+ROW |52613 |29892 |1 |20 |1h |0 | |
+ROW |52614 |29893 |1 |20 |1d |0 | |
+ROW |52615 |29894 |1 |1 |0.01 |0 | |
+ROW |52616 |29895 |1 |20 |1h |0 | |
+ROW |52617 |29896 |1 |20 |1d |0 | |
+ROW |52618 |29897 |1 |20 |1h |0 | |
+ROW |52619 |29898 |1 |20 |1d |0 | |
+ROW |52620 |29899 |1 |1 |0.01 |0 | |
+ROW |52621 |29900 |1 |20 |1h |0 | |
+ROW |52622 |29901 |1 |20 |1d |0 | |
+ROW |52623 |29902 |1 |20 |1h |0 | |
+ROW |52624 |29903 |1 |20 |1d |0 | |
+ROW |52625 |29904 |1 |1 |0.01 |0 | |
+ROW |52626 |29905 |1 |20 |1h |0 | |
+ROW |52627 |29906 |1 |20 |1d |0 | |
+ROW |52628 |29907 |1 |20 |1h |0 | |
+ROW |52629 |29908 |1 |20 |1d |0 | |
+ROW |52630 |29909 |1 |1 |0.01 |0 | |
+ROW |52631 |29910 |1 |20 |1h |0 | |
+ROW |52632 |29911 |1 |20 |1d |0 | |
+ROW |52633 |29912 |1 |20 |1h |0 | |
+ROW |52634 |29913 |1 |20 |1d |0 | |
+ROW |52635 |29914 |1 |1 |0.01 |0 | |
+ROW |52636 |29915 |1 |20 |1h |0 | |
+ROW |52637 |29916 |1 |20 |1d |0 | |
+ROW |52638 |29917 |1 |20 |1h |0 | |
+ROW |52639 |29918 |1 |20 |1d |0 | |
+ROW |52640 |29919 |1 |1 |0.01 |0 | |
+ROW |52641 |29920 |1 |20 |1h |0 | |
+ROW |52642 |29921 |1 |20 |1d |0 | |
+ROW |52643 |29922 |1 |20 |1h |0 | |
+ROW |52644 |29923 |1 |20 |1d |0 | |
+ROW |52645 |29924 |1 |1 |0.01 |0 | |
+ROW |52646 |29925 |1 |20 |1h |0 | |
+ROW |52647 |29926 |1 |20 |1d |0 | |
+ROW |52648 |29927 |1 |20 |1h |0 | |
+ROW |52649 |29928 |1 |20 |1d |0 | |
+ROW |52650 |29929 |1 |1 |0.01 |0 | |
+ROW |52651 |29930 |1 |20 |1h |0 | |
+ROW |52652 |29931 |1 |20 |1d |0 | |
+ROW |52653 |29932 |1 |20 |1h |0 | |
+ROW |52654 |29933 |1 |20 |1d |0 | |
+ROW |52655 |29934 |1 |1 |0.01 |0 | |
+ROW |52656 |29935 |1 |20 |1h |0 | |
+ROW |52657 |29936 |1 |20 |1d |0 | |
+ROW |52658 |29937 |1 |20 |1h |0 | |
+ROW |52659 |29938 |1 |20 |1d |0 | |
+ROW |52660 |29939 |1 |1 |0.01 |0 | |
+ROW |52661 |29940 |1 |20 |1h |0 | |
+ROW |52662 |29941 |1 |20 |1d |0 | |
+ROW |52663 |29942 |1 |20 |1h |0 | |
+ROW |52664 |29943 |1 |20 |1d |0 | |
+ROW |52665 |29944 |1 |1 |0.01 |0 | |
+ROW |52666 |29945 |1 |20 |1h |0 | |
+ROW |52667 |29946 |1 |20 |1d |0 | |
+ROW |52668 |29947 |1 |20 |1h |0 | |
+ROW |52669 |29948 |1 |20 |1d |0 | |
+ROW |52670 |29949 |1 |1 |0.01 |0 | |
+ROW |52671 |29950 |1 |20 |1h |0 | |
+ROW |52672 |29951 |1 |20 |1d |0 | |
+ROW |52673 |29952 |1 |20 |1h |0 | |
+ROW |52674 |29953 |1 |20 |1d |0 | |
+ROW |52675 |29954 |1 |1 |0.01 |0 | |
+ROW |52676 |29955 |1 |20 |1h |0 | |
+ROW |52677 |29956 |1 |20 |1d |0 | |
+ROW |52678 |29957 |1 |20 |1h |0 | |
+ROW |52679 |29958 |1 |20 |1d |0 | |
+ROW |52680 |29959 |1 |1 |0.01 |0 | |
+ROW |52681 |29960 |1 |20 |1h |0 | |
+ROW |52682 |29961 |1 |20 |1d |0 | |
+ROW |52683 |29962 |1 |20 |1h |0 | |
+ROW |52684 |29963 |1 |20 |1d |0 | |
+ROW |52685 |29964 |1 |1 |0.01 |0 | |
+ROW |52686 |29965 |1 |20 |1h |0 | |
+ROW |52687 |29966 |1 |20 |1d |0 | |
+ROW |52688 |29967 |1 |20 |1h |0 | |
+ROW |52689 |29968 |1 |20 |1d |0 | |
+ROW |52690 |29969 |1 |1 |0.01 |0 | |
+ROW |52691 |29970 |1 |20 |1h |0 | |
+ROW |52692 |29971 |1 |20 |1d |0 | |
+ROW |52693 |29972 |1 |20 |1h |0 | |
+ROW |52694 |29973 |1 |20 |1d |0 | |
+ROW |52695 |29974 |1 |1 |0.01 |0 | |
+ROW |52696 |29975 |1 |20 |1h |0 | |
+ROW |52697 |29976 |1 |20 |1d |0 | |
+ROW |52698 |29977 |1 |20 |1h |0 | |
+ROW |52699 |29978 |1 |20 |1d |0 | |
+ROW |52700 |29979 |1 |1 |0.01 |0 | |
+ROW |52701 |29980 |1 |20 |1h |0 | |
+ROW |52702 |29981 |1 |20 |1d |0 | |
+ROW |52703 |29982 |1 |20 |1h |0 | |
+ROW |52704 |29983 |1 |20 |1d |0 | |
+ROW |52705 |29984 |1 |1 |0.01 |0 | |
+ROW |52706 |29985 |1 |20 |1h |0 | |
+ROW |52707 |29986 |1 |20 |1d |0 | |
+ROW |52708 |29987 |1 |20 |1h |0 | |
+ROW |52709 |29988 |1 |20 |1d |0 | |
+ROW |52710 |29989 |1 |1 |0.01 |0 | |
+ROW |52711 |29990 |1 |20 |1h |0 | |
+ROW |52712 |29991 |1 |20 |1d |0 | |
+ROW |52713 |29992 |1 |20 |1h |0 | |
+ROW |52714 |29993 |1 |20 |1d |0 | |
+ROW |52715 |30050 |1 |20 |1d |0 | |
+ROW |52716 |30051 |1 |20 |1d |0 | |
+ROW |52717 |30052 |1 |20 |1h |0 | |
+ROW |52718 |30053 |1 |20 |1h |0 | |
+ROW |52719 |30054 |1 |20 |1h |0 | |
+ROW |52720 |30055 |1 |1 |0.01 |0 | |
+ROW |52721 |30142 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
+ROW |52722 |30143 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
+ROW |52723 |30144 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
+ROW |52724 |30145 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
+ROW |52725 |30146 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
+ROW |52726 |30157 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |52727 |30158 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |52728 |30161 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |52729 |30162 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |52730 |30163 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |52731 |30164 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |52732 |30167 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |52733 |30168 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |52734 |30169 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |52735 |30170 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |52736 |30173 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |52737 |30174 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |52738 |30175 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |52739 |30176 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |52740 |30179 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |52741 |30180 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |52742 |30181 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |52743 |30182 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |52744 |30185 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |52745 |30186 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |52746 |27079 |1 |10 | |0 | |
+ROW |52747 |27080 |1 |20 |1d |0 | |
+ROW |52748 |27082 |1 |10 | |0 | |
+ROW |52749 |27083 |1 |10 | |0 | |
+ROW |52750 |27084 |1 |10 | |0 | |
+ROW |52751 |27084 |2 |1 |8 |0 | |
+ROW |52752 |27085 |1 |10 | |0 | |
+ROW |52753 |27085 |2 |1 |8 |0 | |
+ROW |52754 |27086 |1 |10 | |0 | |
+ROW |52755 |27620 |1 |10 | |0 | |
+ROW |52756 |27621 |1 |10 | |0 | |
+ROW |52757 |27622 |1 |10 | |0 | |
+ROW |52758 |27622 |2 |1 |8 |0 | |
+ROW |52759 |27623 |1 |10 | |0 | |
+ROW |52760 |27624 |1 |10 | |0 | |
+ROW |52761 |27625 |1 |10 | |0 | |
+ROW |52762 |27625 |2 |1 |8 |0 | |
+ROW |52763 |27628 |1 |20 |1d |0 | |
+ROW |52764 |27977 |1 |10 | |0 | |
+ROW |52765 |27978 |1 |10 | |0 | |
+ROW |52766 |27979 |1 |10 | |0 | |
+ROW |52767 |27979 |2 |1 |8 |0 | |
+ROW |52768 |27980 |1 |10 | |0 | |
+ROW |52769 |27981 |1 |10 | |0 | |
+ROW |52770 |27982 |1 |10 | |0 | |
+ROW |52771 |27982 |2 |1 |8 |0 | |
+ROW |52772 |27985 |1 |20 |1d |0 | |
+ROW |52773 |28006 |1 |10 | |0 | |
+ROW |52774 |28007 |1 |10 | |0 | |
+ROW |52775 |28008 |1 |10 | |0 | |
+ROW |52776 |28008 |2 |1 |8 |0 | |
+ROW |52777 |28009 |1 |10 | |0 | |
+ROW |52778 |28010 |1 |10 | |0 | |
+ROW |52779 |28011 |1 |10 | |0 | |
+ROW |52780 |28011 |2 |1 |8 |0 | |
+ROW |52781 |28014 |1 |20 |1d |0 | |
+ROW |52782 |27099 |1 |10 | |0 | |
+ROW |52783 |27100 |1 |20 |1d |0 | |
+ROW |52784 |27101 |1 |1 |1000000 |0 | |
+ROW |52785 |27101 |2 |20 |1h |0 | |
+ROW |52786 |27102 |1 |10 | |0 | |
+ROW |52787 |27103 |1 |10 | |0 | |
+ROW |52788 |27104 |1 |10 | |0 | |
+ROW |52789 |27104 |2 |1 |8 |0 | |
+ROW |52790 |27105 |1 |10 | |0 | |
+ROW |52791 |27105 |2 |1 |8 |0 | |
+ROW |52792 |27106 |1 |10 | |0 | |
+ROW |52793 |27181 |1 |10 | |0 | |
+ROW |52794 |27182 |1 |10 | |0 | |
+ROW |52795 |27183 |1 |10 | |0 | |
+ROW |52796 |27183 |2 |1 |8 |0 | |
+ROW |52797 |27184 |1 |10 | |0 | |
+ROW |52798 |27185 |1 |10 | |0 | |
+ROW |52799 |27186 |1 |10 | |0 | |
+ROW |52800 |27186 |2 |1 |8 |0 | |
+ROW |52801 |27187 |1 |1 |1000000 |0 | |
+ROW |52802 |27187 |2 |20 |1h |0 | |
+ROW |52803 |27189 |1 |20 |1d |0 | |
+ROW |52804 |27216 |1 |10 | |0 | |
+ROW |52805 |27217 |1 |10 | |0 | |
+ROW |52806 |27218 |1 |10 | |0 | |
+ROW |52807 |27218 |2 |1 |8 |0 | |
+ROW |52808 |27219 |1 |10 | |0 | |
+ROW |52809 |27220 |1 |10 | |0 | |
+ROW |52810 |27221 |1 |10 | |0 | |
+ROW |52811 |27221 |2 |1 |8 |0 | |
+ROW |52812 |27222 |1 |1 |1000000 |0 | |
+ROW |52813 |27222 |2 |20 |1h |0 | |
+ROW |52814 |27224 |1 |20 |1d |0 | |
+ROW |52815 |27252 |1 |10 | |0 | |
+ROW |52816 |27253 |1 |10 | |0 | |
+ROW |52817 |27254 |1 |10 | |0 | |
+ROW |52818 |27254 |2 |1 |8 |0 | |
+ROW |52819 |27255 |1 |10 | |0 | |
+ROW |52820 |27256 |1 |10 | |0 | |
+ROW |52821 |27257 |1 |10 | |0 | |
+ROW |52822 |27257 |2 |1 |8 |0 | |
+ROW |52823 |27258 |1 |1 |1000000 |0 | |
+ROW |52824 |27258 |2 |20 |1h |0 | |
+ROW |52825 |27260 |1 |20 |1d |0 | |
+ROW |52826 |27273 |1 |10 | |0 | |
+ROW |52827 |27274 |1 |10 | |0 | |
+ROW |52828 |27275 |1 |10 | |0 | |
+ROW |52829 |27275 |2 |1 |8 |0 | |
+ROW |52830 |27276 |1 |10 | |0 | |
+ROW |52831 |27277 |1 |10 | |0 | |
+ROW |52832 |27278 |1 |10 | |0 | |
+ROW |52833 |27278 |2 |1 |8 |0 | |
+ROW |52834 |27279 |1 |1 |1000000 |0 | |
+ROW |52835 |27279 |2 |20 |1h |0 | |
+ROW |52836 |27281 |1 |20 |1d |0 | |
+ROW |52837 |27322 |1 |10 | |0 | |
+ROW |52838 |27323 |1 |10 | |0 | |
+ROW |52839 |27324 |1 |10 | |0 | |
+ROW |52840 |27324 |2 |1 |8 |0 | |
+ROW |52841 |27325 |1 |10 | |0 | |
+ROW |52842 |27326 |1 |10 | |0 | |
+ROW |52843 |27327 |1 |10 | |0 | |
+ROW |52844 |27327 |2 |1 |8 |0 | |
+ROW |52845 |27328 |1 |1 |1000000 |0 | |
+ROW |52846 |27328 |2 |20 |1h |0 | |
+ROW |52847 |27330 |1 |20 |1d |0 | |
+ROW |52848 |27451 |1 |10 | |0 | |
+ROW |52849 |27452 |1 |10 | |0 | |
+ROW |52850 |27453 |1 |10 | |0 | |
+ROW |52851 |27453 |2 |1 |8 |0 | |
+ROW |52852 |27454 |1 |10 | |0 | |
+ROW |52853 |27455 |1 |10 | |0 | |
+ROW |52854 |27456 |1 |10 | |0 | |
+ROW |52855 |27456 |2 |1 |8 |0 | |
+ROW |52856 |27457 |1 |1 |1000000 |0 | |
+ROW |52857 |27457 |2 |20 |1h |0 | |
+ROW |52858 |27459 |1 |20 |1d |0 | |
+ROW |52859 |27487 |1 |10 | |0 | |
+ROW |52860 |27488 |1 |10 | |0 | |
+ROW |52861 |27489 |1 |10 | |0 | |
+ROW |52862 |27489 |2 |1 |8 |0 | |
+ROW |52863 |27490 |1 |10 | |0 | |
+ROW |52864 |27491 |1 |10 | |0 | |
+ROW |52865 |27492 |1 |10 | |0 | |
+ROW |52866 |27492 |2 |1 |8 |0 | |
+ROW |52867 |27493 |1 |1 |1000000 |0 | |
+ROW |52868 |27493 |2 |20 |1h |0 | |
+ROW |52869 |27495 |1 |20 |1d |0 | |
+ROW |52870 |27521 |1 |10 | |0 | |
+ROW |52871 |27522 |1 |10 | |0 | |
+ROW |52872 |27523 |1 |10 | |0 | |
+ROW |52873 |27523 |2 |1 |8 |0 | |
+ROW |52874 |27524 |1 |10 | |0 | |
+ROW |52875 |27525 |1 |10 | |0 | |
+ROW |52876 |27526 |1 |10 | |0 | |
+ROW |52877 |27526 |2 |1 |8 |0 | |
+ROW |52878 |27527 |1 |1 |1000000 |0 | |
+ROW |52879 |27527 |2 |20 |1h |0 | |
+ROW |52880 |27529 |1 |20 |1d |0 | |
+ROW |52881 |27557 |1 |10 | |0 | |
+ROW |52882 |27558 |1 |10 | |0 | |
+ROW |52883 |27559 |1 |10 | |0 | |
+ROW |52884 |27559 |2 |1 |8 |0 | |
+ROW |52885 |27560 |1 |10 | |0 | |
+ROW |52886 |27561 |1 |10 | |0 | |
+ROW |52887 |27562 |1 |10 | |0 | |
+ROW |52888 |27562 |2 |1 |8 |0 | |
+ROW |52889 |27563 |1 |1 |1000000 |0 | |
+ROW |52890 |27563 |2 |20 |1h |0 | |
+ROW |52891 |27565 |1 |20 |1d |0 | |
+ROW |52892 |27643 |1 |10 | |0 | |
+ROW |52893 |27644 |1 |10 | |0 | |
+ROW |52894 |27645 |1 |10 | |0 | |
+ROW |52895 |27645 |2 |1 |8 |0 | |
+ROW |52896 |27646 |1 |10 | |0 | |
+ROW |52897 |27647 |1 |10 | |0 | |
+ROW |52898 |27648 |1 |10 | |0 | |
+ROW |52899 |27648 |2 |1 |8 |0 | |
+ROW |52900 |27649 |1 |1 |1000000 |0 | |
+ROW |52901 |27649 |2 |20 |1h |0 | |
+ROW |52902 |27651 |1 |20 |1d |0 | |
+ROW |52903 |27723 |1 |10 | |0 | |
+ROW |52904 |27724 |1 |10 | |0 | |
+ROW |52905 |27725 |1 |10 | |0 | |
+ROW |52906 |27725 |2 |1 |8 |0 | |
+ROW |52907 |27726 |1 |10 | |0 | |
+ROW |52908 |27727 |1 |10 | |0 | |
+ROW |52909 |27728 |1 |10 | |0 | |
+ROW |52910 |27728 |2 |1 |8 |0 | |
+ROW |52911 |27729 |1 |1 |1000000 |0 | |
+ROW |52912 |27729 |2 |20 |1h |0 | |
+ROW |52913 |27731 |1 |20 |1d |0 | |
+ROW |52914 |27757 |1 |10 | |0 | |
+ROW |52915 |27758 |1 |10 | |0 | |
+ROW |52916 |27759 |1 |10 | |0 | |
+ROW |52917 |27759 |2 |1 |8 |0 | |
+ROW |52918 |27760 |1 |10 | |0 | |
+ROW |52919 |27761 |1 |10 | |0 | |
+ROW |52920 |27762 |1 |10 | |0 | |
+ROW |52921 |27762 |2 |1 |8 |0 | |
+ROW |52922 |27763 |1 |1 |1000000 |0 | |
+ROW |52923 |27763 |2 |20 |1h |0 | |
+ROW |52924 |27765 |1 |20 |1d |0 | |
+ROW |52925 |27789 |1 |10 | |0 | |
+ROW |52926 |27790 |1 |10 | |0 | |
+ROW |52927 |27791 |1 |10 | |0 | |
+ROW |52928 |27791 |2 |1 |8 |0 | |
+ROW |52929 |27792 |1 |10 | |0 | |
+ROW |52930 |27793 |1 |10 | |0 | |
+ROW |52931 |27794 |1 |10 | |0 | |
+ROW |52932 |27794 |2 |1 |8 |0 | |
+ROW |52933 |27795 |1 |1 |1000000 |0 | |
+ROW |52934 |27795 |2 |20 |1h |0 | |
+ROW |52935 |27797 |1 |20 |1d |0 | |
+ROW |52936 |27873 |1 |10 | |0 | |
+ROW |52937 |27874 |1 |10 | |0 | |
+ROW |52938 |27875 |1 |10 | |0 | |
+ROW |52939 |27875 |2 |1 |8 |0 | |
+ROW |52940 |27876 |1 |10 | |0 | |
+ROW |52941 |27877 |1 |10 | |0 | |
+ROW |52942 |27878 |1 |10 | |0 | |
+ROW |52943 |27878 |2 |1 |8 |0 | |
+ROW |52944 |27879 |1 |1 |1000000 |0 | |
+ROW |52945 |27879 |2 |20 |1h |0 | |
+ROW |52946 |27881 |1 |20 |1d |0 | |
+ROW |52947 |27910 |1 |10 | |0 | |
+ROW |52948 |27911 |1 |10 | |0 | |
+ROW |52949 |27912 |1 |10 | |0 | |
+ROW |52950 |27912 |2 |1 |8 |0 | |
+ROW |52951 |27913 |1 |10 | |0 | |
+ROW |52952 |27914 |1 |10 | |0 | |
+ROW |52953 |27915 |1 |10 | |0 | |
+ROW |52954 |27915 |2 |1 |8 |0 | |
+ROW |52955 |27916 |1 |1 |1000000 |0 | |
+ROW |52956 |27916 |2 |20 |1h |0 | |
+ROW |52957 |27918 |1 |20 |1d |0 | |
+ROW |52958 |27945 |1 |10 | |0 | |
+ROW |52959 |27946 |1 |10 | |0 | |
+ROW |52960 |27947 |1 |10 | |0 | |
+ROW |52961 |27947 |2 |1 |8 |0 | |
+ROW |52962 |27948 |1 |10 | |0 | |
+ROW |52963 |27949 |1 |10 | |0 | |
+ROW |52964 |27950 |1 |10 | |0 | |
+ROW |52965 |27950 |2 |1 |8 |0 | |
+ROW |52966 |27951 |1 |1 |1000000 |0 | |
+ROW |52967 |27951 |2 |20 |1h |0 | |
+ROW |52968 |27953 |1 |20 |1d |0 | |
+ROW |52969 |28119 |1 |10 | |0 | |
+ROW |52970 |28120 |1 |10 | |0 | |
+ROW |52971 |28121 |1 |10 | |0 | |
+ROW |52972 |28121 |2 |1 |8 |0 | |
+ROW |52973 |28122 |1 |10 | |0 | |
+ROW |52974 |28123 |1 |10 | |0 | |
+ROW |52975 |28124 |1 |10 | |0 | |
+ROW |52976 |28124 |2 |1 |8 |0 | |
+ROW |52977 |28125 |1 |1 |1000000 |0 | |
+ROW |52978 |28125 |2 |20 |1h |0 | |
+ROW |52979 |28127 |1 |20 |1d |0 | |
+ROW |52980 |28176 |1 |10 | |0 | |
+ROW |52981 |28177 |1 |10 | |0 | |
+ROW |52982 |28178 |1 |10 | |0 | |
+ROW |52983 |28178 |2 |1 |8 |0 | |
+ROW |52984 |28179 |1 |10 | |0 | |
+ROW |52985 |28180 |1 |10 | |0 | |
+ROW |52986 |28181 |1 |10 | |0 | |
+ROW |52987 |28181 |2 |1 |8 |0 | |
+ROW |52988 |28182 |1 |1 |1000000 |0 | |
+ROW |52989 |28182 |2 |20 |1h |0 | |
+ROW |52990 |28184 |1 |20 |1d |0 | |
+ROW |52991 |28224 |1 |10 | |0 | |
+ROW |52992 |28225 |1 |10 | |0 | |
+ROW |52993 |28226 |1 |10 | |0 | |
+ROW |52994 |28226 |2 |1 |8 |0 | |
+ROW |52995 |28227 |1 |10 | |0 | |
+ROW |52996 |28228 |1 |10 | |0 | |
+ROW |52997 |28229 |1 |10 | |0 | |
+ROW |52998 |28229 |2 |1 |8 |0 | |
+ROW |52999 |28230 |1 |1 |1000000 |0 | |
+ROW |53000 |28230 |2 |20 |1h |0 | |
+ROW |53001 |28232 |1 |20 |1d |0 | |
+ROW |53002 |28294 |1 |10 | |0 | |
+ROW |53003 |28295 |1 |10 | |0 | |
+ROW |53004 |28296 |1 |10 | |0 | |
+ROW |53005 |28296 |2 |1 |8 |0 | |
+ROW |53006 |28297 |1 |10 | |0 | |
+ROW |53007 |28298 |1 |10 | |0 | |
+ROW |53008 |28299 |1 |10 | |0 | |
+ROW |53009 |28299 |2 |1 |8 |0 | |
+ROW |53010 |28300 |1 |1 |1000000 |0 | |
+ROW |53011 |28300 |2 |20 |1h |0 | |
+ROW |53012 |28302 |1 |20 |1d |0 | |
+ROW |53013 |28969 |1 |10 | |0 | |
+ROW |53014 |28970 |1 |10 | |0 | |
+ROW |53015 |28971 |1 |10 | |0 | |
+ROW |53016 |28971 |2 |1 |8 |0 | |
+ROW |53017 |28972 |1 |10 | |0 | |
+ROW |53018 |28973 |1 |10 | |0 | |
+ROW |53019 |28974 |1 |10 | |0 | |
+ROW |53020 |28974 |2 |1 |8 |0 | |
+ROW |53021 |28975 |1 |1 |1000000 |0 | |
+ROW |53022 |28975 |2 |20 |1h |0 | |
+ROW |53023 |28977 |1 |20 |1d |0 | |
+ROW |53024 |27119 |1 |10 | |0 | |
+ROW |53025 |27120 |1 |20 |1d |0 | |
+ROW |53026 |27121 |1 |1 |1000000 |0 | |
+ROW |53027 |27121 |2 |20 |1h |0 | |
+ROW |53028 |27122 |1 |10 | |0 | |
+ROW |53029 |27123 |1 |10 | |0 | |
+ROW |53030 |27124 |1 |10 | |0 | |
+ROW |53031 |27124 |2 |1 |8 |0 | |
+ROW |53032 |27125 |1 |10 | |0 | |
+ROW |53033 |27125 |2 |1 |8 |0 | |
+ROW |53034 |27126 |1 |10 | |0 | |
+ROW |53035 |29078 |1 |10 | |0 | |
+ROW |53036 |29079 |1 |10 | |0 | |
+ROW |53037 |29080 |1 |10 | |0 | |
+ROW |53038 |29080 |2 |1 |8 |0 | |
+ROW |53039 |29081 |1 |10 | |0 | |
+ROW |53040 |29082 |1 |10 | |0 | |
+ROW |53041 |29083 |1 |10 | |0 | |
+ROW |53042 |29083 |2 |1 |8 |0 | |
+ROW |53043 |29084 |1 |1 |1000000 |0 | |
+ROW |53044 |29084 |2 |20 |1h |0 | |
+ROW |53045 |29086 |1 |20 |1d |0 | |
+ROW |53046 |22231 |1 |20 |1d |0 | |
+ROW |53047 |23318 |1 |20 |1d |0 | |
+ROW |53048 |29545 |1 |20 |1d |0 | |
+ROW |53049 |29546 |1 |20 |1d |0 | |
+ROW |53050 |10059 |1 |20 |1d |0 | |
+ROW |53051 |22834 |1 |20 |1d |0 | |
+ROW |53052 |22874 |1 |20 |1d |0 | |
+ROW |53053 |22914 |1 |20 |1d |0 | |
+ROW |53054 |22954 |1 |20 |1d |0 | |
+ROW |53055 |22994 |1 |20 |1d |0 | |
+ROW |53056 |23034 |1 |20 |1d |0 | |
+ROW |53057 |23161 |1 |20 |1d |0 | |
+ROW |53058 |23319 |1 |20 |1d |0 | |
+ROW |53059 |23320 |1 |20 |1d |0 | |
+ROW |53060 |23321 |1 |20 |1d |0 | |
+ROW |53061 |23322 |1 |20 |1d |0 | |
+ROW |53062 |23323 |1 |20 |1d |0 | |
+ROW |53063 |23324 |1 |20 |1d |0 | |
+ROW |53064 |23325 |1 |20 |1d |0 | |
+ROW |53065 |23326 |1 |20 |1d |0 | |
+ROW |53066 |29558 |1 |20 |1d |0 | |
+ROW |53067 |29560 |1 |20 |1d |0 | |
+ROW |53068 |29995 |1 |20 |1d |0 | |
+ROW |53069 |29997 |1 |20 |1d |0 | |
+ROW |53070 |23288 |1 |20 |1d |0 | |
+ROW |53071 |23327 |1 |20 |1d |0 | |
+ROW |53072 |27203 |1 |5 |^(\w&pipe;-&pipe;\.&pipe;/)+ (\w&pipe;-&pipe;\.&pipe;/)+ (.+) Copyright&bsn;\3 |0 | |
+ROW |53073 |27203 |2 |20 |1d |0 | |
+ROW |53074 |27207 |1 |1 |1024 |0 | |
+ROW |53075 |30086 |1 |5 |^((\w&pipe;-&pipe;\.&pipe;/)+)&bsn;\1 |0 | |
+ROW |53076 |30086 |2 |20 |1d |0 | |
+ROW |53077 |30087 |1 |1 |1024 |0 | |
+ROW |53078 |27214 |1 |20 |1d |0 | |
+ROW |53079 |28323 |1 |1 |0.1 |0 | |
+ROW |53080 |28327 |1 |20 |1d |0 | |
+ROW |53081 |28328 |1 |20 |1d |0 | |
+ROW |53082 |27236 |1 |20 |1d |0 | |
+ROW |53083 |27237 |1 |20 |1d |0 | |
+ROW |53084 |27295 |1 |20 |1d |0 | |
+ROW |53085 |27296 |1 |20 |1d |0 | |
+ROW |53086 |27297 |1 |20 |1d |0 | |
+ROW |53087 |27314 |1 |1 |0.5 |0 | |
+ROW |53088 |27315 |1 |1 |0.5 |0 | |
+ROW |53089 |27318 |1 |1 |0.5 |0 | |
+ROW |53090 |27319 |1 |20 |1d |0 | |
+ROW |53091 |27320 |1 |20 |1d |0 | |
+ROW |53092 |27378 |1 |20 |1d |0 | |
+ROW |53093 |27379 |1 |20 |1d |0 | |
+ROW |53094 |30097 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
+ROW |53095 |30097 |2 |20 |1d |0 | |
+ROW |53096 |27382 |1 |20 |1d |0 | |
+ROW |53097 |27383 |1 |20 |1d |0 | |
+ROW |53098 |27385 |1 |20 |1d |0 | |
+ROW |53099 |27386 |1 |20 |1d |0 | |
+ROW |53100 |28209 |1 |20 |1d |0 | |
+ROW |53101 |28210 |1 |20 |1d |0 | |
+ROW |53102 |30098 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
+ROW |53103 |30098 |2 |20 |1d |0 | |
+ROW |53104 |30099 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
+ROW |53105 |30099 |2 |20 |1d |0 | |
+ROW |53106 |30100 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
+ROW |53107 |30100 |2 |20 |1d |0 | |
+ROW |53108 |27419 |1 |20 |1d |0 | |
+ROW |53109 |27428 |1 |20 |1d |0 | |
+ROW |53110 |27445 |1 |20 |1d |0 | |
+ROW |53111 |28208 |1 |20 |1d |0 | |
+ROW |53112 |27481 |1 |20 |1d |0 | |
+ROW |53113 |27482 |1 |20 |1d |0 | |
+ROW |53114 |27483 |1 |20 |1d |0 | |
+ROW |53115 |27484 |1 |20 |1d |0 | |
+ROW |53116 |27508 |1 |20 |1d |0 | |
+ROW |53117 |27509 |1 |20 |1d |0 | |
+ROW |53118 |27510 |1 |20 |1d |0 | |
+ROW |53119 |30106 |1 |20 |1d |0 | |
+ROW |53120 |27543 |1 |20 |1d |0 | |
+ROW |53121 |27544 |1 |20 |1d |0 | |
+ROW |53122 |27545 |1 |20 |1d |0 | |
+ROW |53123 |27546 |1 |20 |1d |0 | |
+ROW |53124 |27579 |1 |20 |1d |0 | |
+ROW |53125 |27580 |1 |20 |1d |0 | |
+ROW |53126 |27582 |1 |20 |1d |0 | |
+ROW |53127 |27583 |1 |20 |1d |0 | |
+ROW |53128 |30109 |1 |20 |1d |0 | |
+ROW |53129 |27591 |1 |1 |1024 |0 | |
+ROW |53130 |30110 |1 |1 |1024 |0 | |
+ROW |53131 |27675 |1 |20 |1d |0 | |
+ROW |53132 |27676 |1 |20 |1d |0 | |
+ROW |53133 |27677 |1 |20 |1d |0 | |
+ROW |53134 |27678 |1 |20 |1d |0 | |
+ROW |53135 |27679 |1 |20 |1d |0 | |
+ROW |53136 |28141 |1 |20 |1d |0 | |
+ROW |53137 |28142 |1 |20 |1d |0 | |
+ROW |53138 |28157 |1 |20 |1d |0 | |
+ROW |53139 |28158 |1 |20 |1d |0 | |
+ROW |53140 |27748 |1 |20 |1d |0 | |
+ROW |53141 |27749 |1 |20 |1d |0 | |
+ROW |53142 |27750 |1 |20 |1d |0 | |
+ROW |53143 |27754 |1 |20 |1d |0 | |
+ROW |53144 |27777 |1 |5 |Firmware Version: ([0-9.]+),&bsn;\1 |0 | |
+ROW |53145 |27777 |2 |20 |1d |0 | |
+ROW |53146 |27778 |1 |5 |(.+) - Firmware&bsn;\1 |0 | |
+ROW |53147 |27778 |2 |20 |1d |0 | |
+ROW |53148 |27785 |1 |20 |1d |0 | |
+ROW |53149 |27812 |1 |20 |1d |0 | |
+ROW |53150 |27813 |1 |20 |1d |0 | |
+ROW |53151 |30117 |1 |5 |kernel (JUNOS [0-9a-zA-Z\.\-]+)&bsn;\1 |0 | |
+ROW |53152 |30117 |2 |20 |1d |0 | |
+ROW |53153 |28201 |1 |1 |0.1 |0 | |
+ROW |53154 |28204 |1 |20 |1d |0 | |
+ROW |53155 |28205 |1 |20 |1d |0 | |
+ROW |53156 |27893 |1 |20 |1d |0 | |
+ROW |53157 |27894 |1 |20 |1d |0 | |
+ROW |53158 |27895 |1 |20 |1d |0 | |
+ROW |53159 |27898 |1 |1 |1024 |0 | |
+ROW |53160 |27900 |1 |1 |1024 |0 | |
+ROW |53161 |30119 |1 |20 |1d |0 | |
+ROW |53162 |31790 |1 |1 |0.1 |0 | |
+ROW |53163 |31792 |1 |20 |1h |0 | |
+ROW |53164 |31793 |1 |20 |1h |0 | |
+ROW |53165 |31794 |1 |20 |15m |0 | |
+ROW |53166 |31797 |1 |20 |1h |0 | |
+ROW |53167 |31799 |1 |20 |1h |0 | |
+ROW |53168 |27905 |1 |1 |0.1 |0 | |
+ROW |53169 |27907 |1 |1 |1024 |0 | |
+ROW |53170 |27908 |1 |1 |1024 |0 | |
+ROW |53171 |27930 |1 |20 |1d |0 | |
+ROW |53172 |27931 |1 |20 |1d |0 | |
+ROW |53173 |27936 |1 |5 |60 Secs \( ([0-9\.]+)%\).+300 Secs&bsn;\1 |0 | |
+ROW |53174 |30121 |1 |20 |1d |0 | |
+ROW |53175 |27967 |1 |20 |1d |0 | |
+ROW |53176 |27968 |1 |20 |1d |0 | |
+ROW |53177 |27970 |1 |20 |1d |0 | |
+ROW |53178 |27971 |1 |20 |1d |0 | |
+ROW |53179 |30125 |1 |20 |1d |0 | |
+ROW |53180 |27997 |1 |20 |1d |0 | |
+ROW |53181 |27998 |1 |20 |1d |0 | |
+ROW |53182 |27999 |1 |20 |1d |0 | |
+ROW |53183 |28000 |1 |20 |1d |0 | |
+ROW |53184 |28026 |1 |20 |1d |0 | |
+ROW |53185 |28027 |1 |20 |1d |0 | |
+ROW |53186 |30132 |1 |1 |1024 |0 | |
+ROW |53187 |30133 |1 |1 |1024 |0 | |
+ROW |53188 |30134 |1 |1 |1024 |0 | |
+ROW |53189 |30135 |1 |1 |1024 |0 | |
+ROW |53190 |29087 |1 |20 |1d |0 | |
+ROW |53191 |29089 |1 |10 | |0 | |
+ROW |53192 |29102 |1 |10 | |0 | |
+ROW |53193 |29111 |1 |20 |1h |0 | |
+ROW |53194 |29113 |1 |20 |1h |0 | |
+ROW |53195 |29114 |1 |20 |1d |0 | |
+ROW |53196 |29116 |1 |20 |1d |0 | |
+ROW |53197 |29117 |1 |20 |1d |0 | |
+ROW |53198 |29120 |1 |20 |1h |0 | |
+ROW |53199 |29121 |1 |20 |1d |0 | |
+ROW |53200 |29122 |1 |20 |1d |0 | |
+ROW |53201 |29123 |1 |20 |1d |0 | |
+ROW |53202 |29124 |1 |20 |1d |0 | |
+ROW |53203 |29126 |1 |10 | |0 | |
+ROW |53204 |29139 |1 |10 | |0 | |
+ROW |53205 |29148 |1 |20 |1h |0 | |
+ROW |53206 |29150 |1 |20 |1h |0 | |
+ROW |53207 |29151 |1 |20 |1d |0 | |
+ROW |53208 |29153 |1 |20 |1d |0 | |
+ROW |53209 |29154 |1 |20 |1d |0 | |
+ROW |53210 |29157 |1 |20 |1h |0 | |
+ROW |53211 |29158 |1 |20 |1d |0 | |
+ROW |53212 |29159 |1 |20 |1d |0 | |
+ROW |53213 |29160 |1 |20 |1d |0 | |
+ROW |53214 |29161 |1 |20 |1d |0 | |
+ROW |53215 |29163 |1 |10 | |0 | |
+ROW |53216 |29176 |1 |10 | |0 | |
+ROW |53217 |29185 |1 |20 |1h |0 | |
+ROW |53218 |29187 |1 |20 |1h |0 | |
+ROW |53219 |29188 |1 |20 |1d |0 | |
+ROW |53220 |29190 |1 |20 |1d |0 | |
+ROW |53221 |29191 |1 |20 |1d |0 | |
+ROW |53222 |29194 |1 |20 |1h |0 | |
+ROW |53223 |29195 |1 |20 |1d |0 | |
+ROW |53224 |29196 |1 |20 |1d |0 | |
+ROW |53225 |29197 |1 |20 |1d |0 | |
+ROW |53226 |29198 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
+ROW |53227 |31270 |1 |21 |return (100-value); |0 | |
+ROW |53228 |29199 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
+ROW |53229 |31271 |1 |21 |return (100-value); |0 | |
+ROW |53230 |29200 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
+ROW |53231 |31272 |1 |21 |return (100-value); |0 | |
+ROW |53232 |31273 |1 |20 |1h |0 | |
+ROW |53233 |31274 |1 |20 |1h |0 | |
+ROW |53234 |31275 |1 |20 |1h |0 | |
+ROW |53235 |29216 |1 |10 | |0 | |
+ROW |53236 |29216 |2 |1 |8 |0 | |
+ROW |53237 |29217 |1 |10 | |0 | |
+ROW |53238 |29217 |2 |1 |8 |0 | |
+ROW |53239 |29218 |1 |10 | |0 | |
+ROW |53240 |29219 |1 |10 | |0 | |
+ROW |53241 |29220 |1 |10 | |0 | |
+ROW |53242 |29221 |1 |10 | |0 | |
+ROW |53243 |29222 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
+ROW |53244 |29223 |1 |20 |1d |0 | |
+ROW |53245 |31278 |1 |21 |return JSON.stringify(value.trim().split(/ +/)); |0 | |
+ROW |53246 |29230 |1 |10 | |0 | |
+ROW |53247 |29230 |2 |1 |8 |0 | |
+ROW |53248 |29231 |1 |10 | |0 | |
+ROW |53249 |29231 |2 |1 |8 |0 | |
+ROW |53250 |29232 |1 |10 | |0 | |
+ROW |53251 |29233 |1 |10 | |0 | |
+ROW |53252 |29234 |1 |10 | |0 | |
+ROW |53253 |29235 |1 |10 | |0 | |
+ROW |53254 |29236 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
+ROW |53255 |29237 |1 |20 |1d |0 | |
+ROW |53256 |31281 |1 |21 |return JSON.stringify(value.trim().split(/ +/)); |0 | |
+ROW |53257 |29244 |1 |10 | |0 | |
+ROW |53258 |29244 |2 |1 |8 |0 | |
+ROW |53259 |29245 |1 |10 | |0 | |
+ROW |53260 |29245 |2 |1 |8 |0 | |
+ROW |53261 |29246 |1 |10 | |0 | |
+ROW |53262 |29247 |1 |10 | |0 | |
+ROW |53263 |29248 |1 |10 | |0 | |
+ROW |53264 |29249 |1 |10 | |0 | |
+ROW |53265 |29250 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
+ROW |53266 |29251 |1 |20 |1d |0 | |
+ROW |53267 |31284 |1 |21 |return JSON.stringify(value.trim().split(/ +/)); |0 | |
+ROW |53268 |31285 |1 |12 |$[10] |0 | |
+ROW |53269 |31285 |2 |10 | |0 | |
+ROW |53270 |31285 |3 |1 |0.001 |0 | |
+ROW |53271 |31286 |1 |12 |$[0] |0 | |
+ROW |53272 |31286 |2 |10 | |0 | |
+ROW |53273 |31287 |1 |12 |$[3] |0 | |
+ROW |53274 |31287 |2 |10 | |0 | |
+ROW |53275 |31287 |3 |1 |0.001 |0 | |
+ROW |53276 |31288 |1 |12 |$[9] |0 | |
+ROW |53277 |31288 |2 |10 | |0 | |
+ROW |53278 |31288 |3 |1 |0.1 |0 | |
+ROW |53279 |31289 |1 |12 |$[4] |0 | |
+ROW |53280 |31289 |2 |10 | |0 | |
+ROW |53281 |31290 |1 |12 |$[7] |0 | |
+ROW |53282 |31290 |2 |10 | |0 | |
+ROW |53283 |31290 |3 |1 |0.001 |0 | |
+ROW |53284 |31291 |1 |12 |$[10] |0 | |
+ROW |53285 |31291 |2 |10 | |0 | |
+ROW |53286 |31291 |3 |1 |0.001 |0 | |
+ROW |53287 |31292 |1 |12 |$[0] |0 | |
+ROW |53288 |31292 |2 |10 | |0 | |
+ROW |53289 |31293 |1 |12 |$[3] |0 | |
+ROW |53290 |31293 |2 |10 | |0 | |
+ROW |53291 |31293 |3 |1 |0.001 |0 | |
+ROW |53292 |31294 |1 |12 |$[9] |0 | |
+ROW |53293 |31294 |2 |10 | |0 | |
+ROW |53294 |31294 |3 |1 |0.1 |0 | |
+ROW |53295 |31295 |1 |12 |$[4] |0 | |
+ROW |53296 |31295 |2 |10 | |0 | |
+ROW |53297 |31296 |1 |12 |$[7] |0 | |
+ROW |53298 |31296 |2 |10 | |0 | |
+ROW |53299 |31296 |3 |1 |0.001 |0 | |
+ROW |53300 |31297 |1 |12 |$[10] |0 | |
+ROW |53301 |31297 |2 |10 | |0 | |
+ROW |53302 |31297 |3 |1 |0.001 |0 | |
+ROW |53303 |31298 |1 |12 |$[0] |0 | |
+ROW |53304 |31298 |2 |10 | |0 | |
+ROW |53305 |31299 |1 |12 |$[3] |0 | |
+ROW |53306 |31299 |2 |10 | |0 | |
+ROW |53307 |31299 |3 |1 |0.001 |0 | |
+ROW |53308 |31300 |1 |12 |$[9] |0 | |
+ROW |53309 |31300 |2 |10 | |0 | |
+ROW |53310 |31300 |3 |1 |0.1 |0 | |
+ROW |53311 |31301 |1 |12 |$[4] |0 | |
+ROW |53312 |31301 |2 |10 | |0 | |
+ROW |53313 |31302 |1 |12 |$[7] |0 | |
+ROW |53314 |31302 |2 |10 | |0 | |
+ROW |53315 |31302 |3 |1 |0.001 |0 | |
+ROW |53316 |29273 |1 |20 |1d |0 | |
+ROW |53317 |29275 |1 |10 | |0 | |
+ROW |53318 |29288 |1 |10 | |0 | |
+ROW |53319 |29297 |1 |20 |1h |0 | |
+ROW |53320 |29299 |1 |20 |1h |0 | |
+ROW |53321 |29300 |1 |20 |1d |0 | |
+ROW |53322 |29302 |1 |20 |1d |0 | |
+ROW |53323 |29303 |1 |20 |1d |0 | |
+ROW |53324 |29306 |1 |20 |1h |0 | |
+ROW |53325 |29307 |1 |20 |1d |0 | |
+ROW |53326 |29308 |1 |20 |1d |0 | |
+ROW |53327 |29309 |1 |20 |1d |0 | |
+ROW |53328 |29310 |1 |20 |1d |0 | |
+ROW |53329 |29312 |1 |10 | |0 | |
+ROW |53330 |29325 |1 |10 | |0 | |
+ROW |53331 |29334 |1 |20 |1h |0 | |
+ROW |53332 |29336 |1 |20 |1h |0 | |
+ROW |53333 |29337 |1 |20 |1d |0 | |
+ROW |53334 |29339 |1 |20 |1d |0 | |
+ROW |53335 |29340 |1 |20 |1d |0 | |
+ROW |53336 |29343 |1 |20 |1h |0 | |
+ROW |53337 |29344 |1 |20 |1d |0 | |
+ROW |53338 |29345 |1 |20 |1d |0 | |
+ROW |53339 |29346 |1 |20 |1d |0 | |
+ROW |53340 |29347 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
+ROW |53341 |31303 |1 |21 |return (100-value); |0 | |
+ROW |53342 |29348 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
+ROW |53343 |31304 |1 |21 |return (100-value); |0 | |
+ROW |53344 |31305 |1 |20 |1h |0 | |
+ROW |53345 |31306 |1 |20 |1h |0 | |
+ROW |53346 |29361 |1 |10 | |0 | |
+ROW |53347 |29361 |2 |1 |8 |0 | |
+ROW |53348 |29362 |1 |10 | |0 | |
+ROW |53349 |29362 |2 |1 |8 |0 | |
+ROW |53350 |29363 |1 |10 | |0 | |
+ROW |53351 |29364 |1 |10 | |0 | |
+ROW |53352 |29365 |1 |10 | |0 | |
+ROW |53353 |29366 |1 |10 | |0 | |
+ROW |53354 |29367 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
+ROW |53355 |29368 |1 |20 |1d |0 | |
+ROW |53356 |31309 |1 |21 |return JSON.stringify(value.trim().split(/ +/)); |0 | |
+ROW |53357 |29375 |1 |10 | |0 | |
+ROW |53358 |29375 |2 |1 |8 |0 | |
+ROW |53359 |29376 |1 |10 | |0 | |
+ROW |53360 |29376 |2 |1 |8 |0 | |
+ROW |53361 |29377 |1 |10 | |0 | |
+ROW |53362 |29378 |1 |10 | |0 | |
+ROW |53363 |29379 |1 |10 | |0 | |
+ROW |53364 |29380 |1 |10 | |0 | |
+ROW |53365 |29381 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
+ROW |53366 |29382 |1 |20 |1d |0 | |
+ROW |53367 |31312 |1 |21 |return JSON.stringify(value.trim().split(/ +/)); |0 | |
+ROW |53368 |31313 |1 |12 |$[10] |0 | |
+ROW |53369 |31313 |2 |10 | |0 | |
+ROW |53370 |31313 |3 |1 |0.001 |0 | |
+ROW |53371 |31314 |1 |12 |$[0] |0 | |
+ROW |53372 |31314 |2 |10 | |0 | |
+ROW |53373 |31315 |1 |12 |$[3] |0 | |
+ROW |53374 |31315 |2 |10 | |0 | |
+ROW |53375 |31315 |3 |1 |0.001 |0 | |
+ROW |53376 |31316 |1 |12 |$[9] |0 | |
+ROW |53377 |31316 |2 |10 | |0 | |
+ROW |53378 |31316 |3 |1 |0.1 |0 | |
+ROW |53379 |31317 |1 |12 |$[4] |0 | |
+ROW |53380 |31317 |2 |10 | |0 | |
+ROW |53381 |31318 |1 |12 |$[7] |0 | |
+ROW |53382 |31318 |2 |10 | |0 | |
+ROW |53383 |31318 |3 |1 |0.001 |0 | |
+ROW |53384 |31319 |1 |12 |$[10] |0 | |
+ROW |53385 |31319 |2 |10 | |0 | |
+ROW |53386 |31319 |3 |1 |0.001 |0 | |
+ROW |53387 |31320 |1 |12 |$[0] |0 | |
+ROW |53388 |31320 |2 |10 | |0 | |
+ROW |53389 |31321 |1 |12 |$[3] |0 | |
+ROW |53390 |31321 |2 |10 | |0 | |
+ROW |53391 |31321 |3 |1 |0.001 |0 | |
+ROW |53392 |31322 |1 |12 |$[9] |0 | |
+ROW |53393 |31322 |2 |10 | |0 | |
+ROW |53394 |31322 |3 |1 |0.1 |0 | |
+ROW |53395 |31323 |1 |12 |$[4] |0 | |
+ROW |53396 |31323 |2 |10 | |0 | |
+ROW |53397 |31324 |1 |12 |$[7] |0 | |
+ROW |53398 |31324 |2 |10 | |0 | |
+ROW |53399 |31324 |3 |1 |0.001 |0 | |
+ROW |53400 |29398 |1 |22 |{__name__=~"^node_time(?:_seconds)?$"}&bsn; |0 | |
+ROW |53401 |29399 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="steal"} |0 | |
+ROW |53402 |29399 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
+ROW |53403 |29399 |3 |10 | |0 | |
+ROW |53404 |29399 |4 |1 |100 |0 | |
+ROW |53405 |29400 |1 |22 |{__name__=~"node_memory_SwapFree"}&bsn; |0 | |
+ROW |53406 |29401 |1 |22 |{__name__=~"node_memory_SwapTotal"}&bsn; |0 | |
+ROW |53407 |29402 |1 |22 |{__name__=~"node_memory_MemAvailable"}&bsn; |0 | |
+ROW |53408 |29403 |1 |22 |{__name__=~"node_memory_MemTotal"}&bsn; |0 | |
+ROW |53409 |29404 |1 |22 |{__name__=~"^node_boot_time(?:_seconds)?$"}&bsn; |0 | |
+ROW |53410 |29405 |1 |22 |{__name__=~"node_context_switches"}&bsn; |0 | |
+ROW |53411 |29405 |2 |10 | |0 | |
+ROW |53412 |29406 |1 |22 |{__name__=~"node_intr"}&bsn; |0 | |
+ROW |53413 |29406 |2 |10 | |0 | |
+ROW |53414 |29407 |1 |23 |{__name__=~"^node_cpu(?:_guest_seconds_total)?$",cpu=~".+",mode=~"^(?:nice&pipe;guest_nice)$"} |0 | |
+ROW |53415 |29407 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
+ROW |53416 |29407 |3 |10 | |0 | |
+ROW |53417 |29407 |4 |1 |100 |0 | |
+ROW |53418 |29408 |1 |23 |{__name__=~"^node_cpu(?:_guest_seconds_total)?$",cpu=~".+",mode=~"^(?:user&pipe;guest)$"} |0 | |
+ROW |53419 |29408 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
+ROW |53420 |29408 |3 |10 | |0 | |
+ROW |53421 |29408 |4 |1 |100 |0 | |
+ROW |53422 |29409 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="irq"} |0 | |
+ROW |53423 |29409 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
+ROW |53424 |29409 |3 |10 | |0 | |
+ROW |53425 |29409 |4 |1 |100 |0 | |
+ROW |53426 |29410 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="iowait"} |0 | |
+ROW |53427 |29410 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
+ROW |53428 |29410 |3 |10 | |0 | |
+ROW |53429 |29410 |4 |1 |100 |0 | |
+ROW |53430 |29411 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="nice"} |0 | |
+ROW |53431 |29411 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
+ROW |53432 |29411 |3 |10 | |0 | |
+ROW |53433 |29411 |4 |1 |100 |0 | |
+ROW |53434 |29412 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="softirq"} |0 | |
+ROW |53435 |29412 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
+ROW |53436 |29412 |3 |10 | |0 | |
+ROW |53437 |29412 |4 |1 |100 |0 | |
+ROW |53438 |29413 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="user"} |0 | |
+ROW |53439 |29413 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
+ROW |53440 |29413 |3 |10 | |0 | |
+ROW |53441 |29413 |4 |1 |100 |0 | |
+ROW |53442 |29414 |1 |22 |node_uname_info&bsn;nodename |0 | |
+ROW |53443 |29414 |2 |20 |1d |0 | |
+ROW |53444 |29415 |1 |22 |node_exporter_build_info&bsn;version |0 | |
+ROW |53445 |29415 |2 |20 |1d |0 | |
+ROW |53446 |29416 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="idle"} |0 | |
+ROW |53447 |29416 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
+ROW |53448 |29416 |3 |10 | |0 | |
+ROW |53449 |29416 |4 |1 |100 |0 | |
+ROW |53450 |29417 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="idle"} |0 | |
+ROW |53451 |29417 |2 |21 |//count the number of cores&bsn;return JSON.parse(value).length&bsn; |0 | |
+ROW |53452 |29418 |1 |22 |node_load15&bsn; |0 | |
+ROW |53453 |29419 |1 |22 |node_load5&bsn; |0 | |
+ROW |53454 |29420 |1 |22 |node_load1&bsn; |0 | |
+ROW |53455 |29421 |1 |22 |{__name__=~"^node_boot_time(?:_seconds)?$"}&bsn; |0 | |
+ROW |53456 |29421 |2 |21 |//use boottime to calculate uptime&bsn;return (Math.floor(Date.now()/1000)-Number(value)); |0 | |
+ROW |53457 |29422 |1 |22 |node_uname_info&bsn;machine |0 | |
+ROW |53458 |29422 |2 |20 |1d |0 | |
+ROW |53459 |29423 |1 |22 |node_filefd_allocated&bsn; |0 | |
+ROW |53460 |29424 |1 |22 |node_filefd_maximum&bsn; |0 | |
+ROW |53461 |29424 |2 |20 |1d |0 | |
+ROW |53462 |29425 |1 |23 |node_uname_info |0 | |
+ROW |53463 |29425 |2 |21 |var info = JSON.parse(value)[0];&bsn; return info.labels.sysname+' version: '+info.labels.release+' '+info.labels.version |0 | |
+ROW |53464 |29425 |3 |20 |1d |0 | |
+ROW |53465 |29426 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="system"} |0 | |
+ROW |53466 |29426 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
+ROW |53467 |29426 |3 |10 | |0 | |
+ROW |53468 |29426 |4 |1 |100 |0 | |
+ROW |53469 |29427 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
+ROW |53470 |29428 |1 |20 |1d |0 | |
+ROW |53471 |29429 |1 |23 |{__name__=~"^node_network_info$"} |0 | |
+ROW |53472 |29430 |1 |23 |{__name__=~"^node_filesystem_size(?:_bytes)?$", mountpoint=~".+"} |0 | |
+ROW |53473 |29431 |1 |23 |node_disk_io_now{device=~".+"} |0 | |
+ROW |53474 |29436 |1 |22 |node_network_receive_bytes_total{device="{#IFNAME}"}&bsn; |0 | |
+ROW |53475 |29436 |2 |10 | |0 | |
+ROW |53476 |29436 |3 |1 |8 |0 | |
+ROW |53477 |29437 |1 |22 |node_network_transmit_bytes_total{device="{#IFNAME}"}&bsn; |0 | |
+ROW |53478 |29437 |2 |10 | |0 | |
+ROW |53479 |29437 |3 |1 |8 |0 | |
+ROW |53480 |29438 |1 |22 |node_network_transmit_errs_total{device="{#IFNAME}"}&bsn; |0 | |
+ROW |53481 |29438 |2 |10 | |0 | |
+ROW |53482 |29439 |1 |22 |node_network_receive_errs_total{device="{#IFNAME}"}&bsn; |0 | |
+ROW |53483 |29439 |2 |10 | |0 | |
+ROW |53484 |29440 |1 |22 |node_network_receive_drop_total{device="{#IFNAME}"}&bsn; |0 | |
+ROW |53485 |29440 |2 |10 | |0 | |
+ROW |53486 |29441 |1 |22 |node_network_transmit_drop_total{device="{#IFNAME}"}&bsn; |0 | |
+ROW |53487 |29441 |2 |10 | |0 | |
+ROW |53488 |29442 |1 |22 |node_network_speed_bytes{device="{#IFNAME}"}&bsn; |2 |0 |
+ROW |53489 |29442 |2 |1 |8 |0 | |
+ROW |53490 |29443 |1 |22 |node_network_protocol_type{device="{#IFNAME}"}&bsn; |0 | |
+ROW |53491 |29444 |1 |22 |node_network_info{device="{#IFNAME}"}&bsn;operstate |0 | |
+ROW |53492 |29444 |2 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
+ROW |53493 |29445 |1 |22 |{__name__=~"^node_filesystem_avail(?:_bytes)?$", mountpoint="{#FSNAME}"}&bsn; |0 | |
+ROW |53494 |29446 |1 |22 |{__name__=~"^node_filesystem_size(?:_bytes)?$", mountpoint="{#FSNAME}"}&bsn; |0 | |
+ROW |53495 |29447 |1 |23 |{__name__=~"node_filesystem_files.*",mountpoint="{#FSNAME}"} |0 | |
+ROW |53496 |29447 |2 |21 |//count vfs.fs.inode.pfree&bsn;var inode_free;&bsn;var inode_total;&bsn;JSON.parse(value).forEach(function(metric) {&bsn; if (metric['name'] == 'node_filesystem_files'){&bsn; inode_total = metric['value'];&bsn; } else if (metric['name'] == 'node_filesystem_files_free'){&bsn; inode_free = metric['value'];&bsn; }&bsn;});&bsn;return (inode_free/inode_total)*100; |0 | |
+ROW |53497 |29448 |1 |22 |node_disk_reads_completed_total{device="{#DEVNAME}"}&bsn; |0 | |
+ROW |53498 |29448 |2 |10 | |0 | |
+ROW |53499 |29449 |1 |22 |node_disk_writes_completed_total{device="{#DEVNAME}"}&bsn; |0 | |
+ROW |53500 |29449 |2 |10 | |0 | |
+ROW |53501 |29450 |1 |22 |node_disk_read_time_seconds_total{device="{#DEVNAME}"}&bsn; |0 | |
+ROW |53502 |29450 |2 |10 | |0 | |
+ROW |53503 |29451 |1 |22 |node_disk_write_time_seconds_total{device="{#DEVNAME}"}&bsn; |0 | |
+ROW |53504 |29451 |2 |10 | |0 | |
+ROW |53505 |29452 |1 |22 |node_disk_io_time_weighted_seconds_total{device="{#DEVNAME}"}&bsn; |0 | |
+ROW |53506 |29452 |2 |10 | |0 | |
+ROW |53507 |29453 |1 |22 |node_disk_io_time_seconds_total{device="{#DEVNAME}"}&bsn; |0 | |
+ROW |53508 |29453 |2 |10 | |0 | |
+ROW |53509 |29453 |3 |1 |100 |0 | |
+ROW |53510 |28979 |1 |1 |1024 |0 | |
+ROW |53511 |28980 |1 |1 |1024 |0 | |
+ROW |53512 |28981 |1 |1 |1024 |0 | |
+ROW |53513 |28982 |1 |1 |1024 |0 | |
+ROW |53514 |28984 |1 |1 |1024 |0 | |
+ROW |53515 |28985 |1 |1 |1024 |0 | |
+ROW |53516 |28990 |1 |21 |//count the number of cores&bsn;return JSON.parse(value).length;&bsn; |0 | |
+ROW |53517 |28991 |1 |10 | |0 | |
+ROW |53518 |28992 |1 |10 | |0 | |
+ROW |53519 |28994 |1 |1 |1024 |0 | |
+ROW |53520 |28995 |1 |1 |1024 |0 | |
+ROW |53521 |28996 |1 |1 |1024 |0 | |
+ROW |53522 |28997 |1 |1 |1024 |0 | |
+ROW |53523 |28999 |1 |1 |1024 |0 | |
+ROW |53524 |29000 |1 |1 |1024 |0 | |
+ROW |53525 |29005 |1 |21 |//count the number of cores&bsn;return JSON.parse(value).length;&bsn; |0 | |
+ROW |53526 |29006 |1 |10 | |0 | |
+ROW |53527 |29007 |1 |10 | |0 | |
+ROW |53528 |29009 |1 |21 |//count the number of CPU cores&bsn;return JSON.stringify([{"{#CPU.COUNT}": value, "{#SNMPINDEX}": 0, "{#SINGLETON}":""}])&bsn; |0 | |
+ROW |53529 |29012 |1 |21 |//count the number of CPU cores&bsn;return JSON.stringify([{"{#CPU.COUNT}": value, "{#SNMPINDEX}": 0, "{#SINGLETON}":""}])&bsn; |0 | |
+ROW |53530 |29014 |1 |10 | |0 | |
+ROW |53531 |29015 |1 |10 | |0 | |
+ROW |53532 |29017 |1 |10 | |0 | |
+ROW |53533 |29017 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |53534 |29018 |1 |10 | |0 | |
+ROW |53535 |29018 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |53536 |29019 |1 |10 | |0 | |
+ROW |53537 |29019 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |53538 |29020 |1 |10 | |0 | |
+ROW |53539 |29020 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |53540 |29021 |1 |10 | |0 | |
+ROW |53541 |29021 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |53542 |29022 |1 |10 | |0 | |
+ROW |53543 |29022 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |53544 |29023 |1 |10 | |0 | |
+ROW |53545 |29023 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |53546 |29024 |1 |10 | |0 | |
+ROW |53547 |29024 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |53548 |29025 |1 |10 | |0 | |
+ROW |53549 |29025 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |53550 |29026 |1 |10 | |0 | |
+ROW |53551 |29026 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |53552 |29027 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |53553 |29028 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |53554 |29030 |1 |21 |return (100-value); |0 | |
+ROW |53555 |29031 |1 |10 | |0 | |
+ROW |53556 |29032 |1 |10 | |0 | |
+ROW |53557 |29034 |1 |10 | |0 | |
+ROW |53558 |29034 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |53559 |29035 |1 |10 | |0 | |
+ROW |53560 |29035 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |53561 |29036 |1 |10 | |0 | |
+ROW |53562 |29036 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |53563 |29037 |1 |10 | |0 | |
+ROW |53564 |29037 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |53565 |29038 |1 |10 | |0 | |
+ROW |53566 |29038 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |53567 |29039 |1 |10 | |0 | |
+ROW |53568 |29039 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |53569 |29040 |1 |10 | |0 | |
+ROW |53570 |29040 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |53571 |29041 |1 |10 | |0 | |
+ROW |53572 |29041 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |53573 |29042 |1 |10 | |0 | |
+ROW |53574 |29042 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |53575 |29043 |1 |10 | |0 | |
+ROW |53576 |29043 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |53577 |29044 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |53578 |29045 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |53579 |29047 |1 |21 |return (100-value); |0 | |
+ROW |53580 |29048 |1 |21 |//Calculate utilization&bsn;return (100 - value)&bsn; |0 | |
+ROW |53581 |29049 |1 |21 |//Calculate utilization&bsn;return (100 - value)&bsn; |0 | |
+ROW |53582 |29474 |1 |20 |1d |0 | |
+ROW |53583 |29475 |1 |20 |1d |0 | |
+ROW |53584 |29478 |1 |20 |1d |0 | |
+ROW |53585 |29500 |1 |20 |1d |0 | |
+ROW |53586 |29501 |1 |20 |1d |0 | |
+ROW |53587 |29504 |1 |20 |1d |0 | |
+ROW |53588 |31331 |1 |21 |return (100 - value) |0 | |
+ROW |53589 |31332 |1 |21 |return (100 - value) |0 | |
+ROW |53590 |31333 |1 |25 |{#INSTANCE}&bsn;{#DEVNAME} |0 | |
+ROW |53591 |31457 |1 |21 |output = JSON.parse(value).map(function(net){&bsn; return {&bsn; "{#IFNAME}": net.Name,&bsn; "{#IFDESCR}": net.Description,&bsn; "{#IFALIAS}" : net.NetConnectionID&bsn; }})&bsn;return JSON.stringify({"data": output}) |0 | |
+ROW |53592 |31457 |2 |20 |1h |0 | |
+ROW |53593 |31334 |1 |25 |{#INSTANCE}&bsn;{#DEVNAME} |0 | |
+ROW |53594 |31458 |1 |21 |output = JSON.parse(value).map(function(net){&bsn; return {&bsn; "{#IFNAME}": net.Name,&bsn; "{#IFDESCR}": net.Description,&bsn; "{#IFALIAS}" : net.NetConnectionID&bsn; }})&bsn;return JSON.stringify({"data": output}) |0 | |
+ROW |53595 |31458 |2 |20 |1h |0 | |
+ROW |53596 |31459 |1 |10 | |0 | |
+ROW |53597 |31460 |1 |10 | |0 | |
+ROW |53598 |31461 |1 |10 | |0 | |
+ROW |53599 |31461 |2 |1 |8 |0 | |
+ROW |53600 |31462 |1 |10 | |0 | |
+ROW |53601 |31463 |1 |10 | |0 | |
+ROW |53602 |31464 |1 |10 | |0 | |
+ROW |53603 |31464 |2 |1 |8 |0 | |
+ROW |53604 |31465 |1 |10 | |0 | |
+ROW |53605 |31466 |1 |10 | |0 | |
+ROW |53606 |31467 |1 |10 | |0 | |
+ROW |53607 |31467 |2 |1 |8 |0 | |
+ROW |53608 |31468 |1 |10 | |0 | |
+ROW |53609 |31469 |1 |10 | |0 | |
+ROW |53610 |31470 |1 |10 | |0 | |
+ROW |53611 |31470 |2 |1 |8 |0 | |
+ROW |53612 |31471 |1 |12 |$[?(@.Name == "{#IFNAME}")].Speed.first() |2 |0 |
+ROW |53613 |31471 |2 |21 |return (value=='9223372036854775807' ? 0 : value)&bsn; |0 | |
+ROW |53614 |31472 |1 |12 |$[?(@.Name == "{#IFNAME}")].NetConnectionStatus.first() |0 | |
+ROW |53615 |31473 |1 |12 |$[?(@.Name == "{#IFNAME}")].AdapterTypeId.first() |0 | |
+ROW |53616 |31474 |1 |12 |$[?(@.Name == "{#IFNAME}")].Speed.first() |2 |0 |
+ROW |53617 |31474 |2 |21 |return (value=='9223372036854775807' ? 0 : value)&bsn; |0 | |
+ROW |53618 |31475 |1 |12 |$[?(@.Name == "{#IFNAME}")].NetConnectionStatus.first() |0 | |
+ROW |53619 |31476 |1 |12 |$[?(@.Name == "{#IFNAME}")].AdapterTypeId.first() |0 | |
+ROW |53620 |29581 |1 |20 |1d |0 | |
+ROW |53621 |29582 |1 |20 |1d |0 | |
+ROW |53622 |29585 |1 |20 |1d |0 | |
+ROW |53623 |29607 |1 |20 |1d |0 | |
+ROW |53624 |29608 |1 |20 |1d |0 | |
+ROW |53625 |29611 |1 |20 |1d |0 | |
+ROW |53626 |31349 |1 |21 |return (100 - value) |0 | |
+ROW |53627 |31350 |1 |21 |return (100 - value) |0 | |
+ROW |53628 |31351 |1 |25 |{#INSTANCE}&bsn;{#DEVNAME} |0 | |
+ROW |53629 |31479 |1 |21 |output = JSON.parse(value).map(function(net){&bsn; return {&bsn; "{#IFNAME}": net.Name,&bsn; "{#IFDESCR}": net.Description,&bsn; "{#IFALIAS}" : net.NetConnectionID&bsn; }})&bsn;return JSON.stringify({"data": output}) |0 | |
+ROW |53630 |31479 |2 |20 |1h |0 | |
+ROW |53631 |31352 |1 |25 |{#INSTANCE}&bsn;{#DEVNAME} |0 | |
+ROW |53632 |31480 |1 |21 |output = JSON.parse(value).map(function(net){&bsn; return {&bsn; "{#IFNAME}": net.Name,&bsn; "{#IFDESCR}": net.Description,&bsn; "{#IFALIAS}" : net.NetConnectionID&bsn; }})&bsn;return JSON.stringify({"data": output}) |0 | |
+ROW |53633 |31480 |2 |20 |1h |0 | |
+ROW |53634 |31481 |1 |10 | |0 | |
+ROW |53635 |31482 |1 |10 | |0 | |
+ROW |53636 |31483 |1 |10 | |0 | |
+ROW |53637 |31483 |2 |1 |8 |0 | |
+ROW |53638 |31484 |1 |10 | |0 | |
+ROW |53639 |31485 |1 |10 | |0 | |
+ROW |53640 |31486 |1 |10 | |0 | |
+ROW |53641 |31486 |2 |1 |8 |0 | |
+ROW |53642 |31487 |1 |10 | |0 | |
+ROW |53643 |31488 |1 |10 | |0 | |
+ROW |53644 |31489 |1 |10 | |0 | |
+ROW |53645 |31489 |2 |1 |8 |0 | |
+ROW |53646 |31490 |1 |10 | |0 | |
+ROW |53647 |31491 |1 |10 | |0 | |
+ROW |53648 |31492 |1 |10 | |0 | |
+ROW |53649 |31492 |2 |1 |8 |0 | |
+ROW |53650 |31493 |1 |12 |$[?(@.Name == "{#IFNAME}")].Speed.first() |2 |0 |
+ROW |53651 |31493 |2 |21 |return (value=='9223372036854775807' ? 0 : value)&bsn; |0 | |
+ROW |53652 |31494 |1 |12 |$[?(@.Name == "{#IFNAME}")].NetConnectionStatus.first() |0 | |
+ROW |53653 |31495 |1 |12 |$[?(@.Name == "{#IFNAME}")].AdapterTypeId.first() |0 | |
+ROW |53654 |31496 |1 |12 |$[?(@.Name == "{#IFNAME}")].Speed.first() |2 |0 |
+ROW |53655 |31496 |2 |21 |return (value=='9223372036854775807' ? 0 : value)&bsn; |0 | |
+ROW |53656 |31497 |1 |12 |$[?(@.Name == "{#IFNAME}")].NetConnectionStatus.first() |0 | |
+ROW |53657 |31498 |1 |12 |$[?(@.Name == "{#IFNAME}")].AdapterTypeId.first() |0 | |
+ROW |53658 |30688 |1 |12 |$.[?(@.id=='{#SENSOR_ID}')].state.text.first() |0 | |
+ROW |53659 |30688 |2 |20 |1d |0 | |
+ROW |53660 |30689 |1 |12 |$.[?(@.id=='{#SENSOR_ID}')].value.first() |0 | |
+ROW |53661 |30689 |2 |20 |1h |0 | |
+ROW |53662 |30073 |1 |20 |1d |0 | |
+ROW |53663 |30074 |1 |20 |1d |0 | |
+ROW |53664 |30079 |1 |1 |1048576 |0 | |
+ROW |53665 |30082 |1 |1 |1048576 |0 | |
+ROW |53666 |28342 |1 |20 |1d |0 | |
+ROW |53667 |28344 |1 |20 |1d |0 | |
+ROW |53668 |28345 |1 |20 |1d |0 | |
+ROW |53669 |30141 |1 |20 |1d |0 | |
+ROW |53670 |28354 |1 |1 |0.1 |0 | |
+ROW |53671 |28356 |1 |1 |0.1 |0 | |
+ROW |53672 |28367 |1 |1 |1048576 |0 | |
+ROW |53673 |28372 |1 |1 |1048576 |0 | |
+ROW |53674 |28390 |1 |20 |1d |0 | |
+ROW |53675 |28391 |1 |20 |1d |0 | |
+ROW |53676 |28422 |1 |1 |1048576 |0 | |
+ROW |53677 |28425 |1 |1 |1048576 |0 | |
+ROW |53678 |28466 |1 |20 |1d |0 | |
+ROW |53679 |28467 |1 |20 |1d |0 | |
+ROW |53680 |28479 |1 |5 |(\d{1,3}) *%( of maximum)?&bsn;\1 |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|
@@ -23692,8 +24190,14 @@ ROW |109 |31005 |{#APPPOOL} |$.Name
ROW |110 |31047 |{#APPPOOL} |$.Name |
TABLE |lld_override
-FIELDS|lld_overrideid|itemid|name |step|evaltype|formula|stop|
-ROW |1 |30961 |trigger|1 |0 | |0 |
+FIELDS|lld_overrideid|itemid|name |step|evaltype|formula|stop|
+ROW |1 |30961 |trigger |1 |0 | |0 |
+ROW |2 |30687 |trigger SENSOR_LO_WARN |1 |0 | |0 |
+ROW |3 |30687 |trigger SENSOR_LO_CRIT |2 |0 | |0 |
+ROW |4 |30687 |trigger SENSOR_LO_DISAST|3 |0 | |0 |
+ROW |5 |30687 |trigger SENSOR_HI_WARN |4 |0 | |0 |
+ROW |6 |30687 |trigger SENSOR_HI_CRIT |5 |0 | |0 |
+ROW |7 |30687 |trigger SENSOR_HI_DISAST|6 |0 | |0 |
TABLE |lld_override_condition
FIELDS|lld_override_conditionid|lld_overrideid|operator|macro |value |
@@ -23702,12 +24206,30 @@ ROW |1 |1 |8 |{#GRPC.CODE}|{$ETCD.GRPC
TABLE |lld_override_operation
FIELDS|lld_override_operationid|lld_overrideid|operationobject|operator|value |
ROW |1 |1 |1 |2 |Too many failed gRPC requests|
+ROW |2 |2 |1 |2 |{#SENSOR_LO_WARN} |
+ROW |3 |3 |1 |2 |{#SENSOR_LO_CRIT} |
+ROW |4 |4 |1 |2 |{#SENSOR_LO_DISAST} |
+ROW |5 |5 |1 |2 |{#SENSOR_HI_WARN} |
+ROW |6 |6 |1 |2 |{#SENSOR_HI_CRIT} |
+ROW |7 |7 |1 |2 |{#SENSOR_HI_DISAST} |
TABLE |lld_override_opstatus
FIELDS|lld_override_operationid|status|
ROW |1 |0 |
+ROW |2 |0 |
+ROW |3 |0 |
+ROW |4 |0 |
+ROW |5 |0 |
+ROW |6 |0 |
+ROW |7 |0 |
TABLE |lld_override_opdiscover
FIELDS|lld_override_operationid|discover|
ROW |1 |0 |
+ROW |2 |1 |
+ROW |3 |1 |
+ROW |4 |1 |
+ROW |5 |1 |
+ROW |6 |1 |
+ROW |7 |1 |