diff --git a/README.md b/README.md
index f338235..5c3a0d0 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,11 @@
zabbix
======
-Script and templates for Zabbix 2.0.x.
+Script and templates for Zabbix 2.2.x.
+
+- In /bin you will find bash/perl/php scripts used by some User Parameters (need to be installed on agent)
+- In Templates there are XML files ready to import using Zabbix GUI
+- In zabbix_agentd.conf.d there are custom User Parameters (need to be installed on agent)
Please let us know if you have any questions or concerns.
-The Camels
\ No newline at end of file
+
+The Camels Team
\ No newline at end of file
diff --git a/bin/apc-check.php b/bin/apc-check.php
new file mode 100644
index 0000000..f3c79bb
--- /dev/null
+++ b/bin/apc-check.php
@@ -0,0 +1,87 @@
+
\ No newline at end of file
diff --git a/bin/apc-stats.php b/bin/apc-stats.php
new file mode 100644
index 0000000..14bda6b
--- /dev/null
+++ b/bin/apc-stats.php
@@ -0,0 +1,17 @@
+
\ No newline at end of file
diff --git a/bin/opcache.php b/bin/opcache.php
new file mode 100644
index 0000000..5111f89
--- /dev/null
+++ b/bin/opcache.php
@@ -0,0 +1,146 @@
+
\ No newline at end of file
diff --git a/bin/rabbit.php b/bin/rabbit.php
new file mode 100644
index 0000000..cc97f70
--- /dev/null
+++ b/bin/rabbit.php
@@ -0,0 +1,157 @@
+/dev/null');
+
+$results = array();
+$cleanStats = array();
+$matches = array();
+
+$stats = array();
+$stats['queues'] = shell_exec(RABBITMQCTL_BIN . ' list_queues name durable auto_delete messages_ready messages_unacknowledged messages consumers memory');
+$stats['exchanges'] = shell_exec(RABBITMQCTL_BIN . ' list_exchanges type durable auto_delete');
+$stats['bindings'] = shell_exec(RABBITMQCTL_BIN . ' list_bindings source_kind destination_kind');
+$stats['connections'] = shell_exec(RABBITMQCTL_BIN . ' list_connections state channels protocol recv_oct send_oct');
+$stats['channels'] = shell_exec(RABBITMQCTL_BIN . ' list_channels transactional confirm consumer_count messages_unacknowledged messages_uncommitted acks_uncommitted messages_unconfirmed');
+
+foreach ($stats as $name => $statusString) {
+ $statusString = str_replace("\t", " ", $statusString);
+ $statusString = trim(str_replace("\r", " ", $statusString));
+ $stats[$name] = preg_replace('/ +/', ' ', $statusString);
+ $stats[$name] = explode("\n", $statusString);
+
+ foreach ($stats[$name] as $index => $value) {
+ if (strpos($value, '...') === false && !empty($value)) {
+ $cleanStats[$name][$index] = $value;
+ }
+ }
+}
+
+// QUEUES
+if (isset($cleanStats['queues'])) {
+ foreach ($cleanStats['queues'] as $line) {
+ $columns = explode(' ', $line);
+ if (count($columns) == 8) {
+ $row = array(
+ 'queues_count' => 1,
+ 'queues_durable_count' => $columns[1] == 'true' ? 1 : 0,
+ 'queues_auto_delete_count' => $columns[2] == 'true' ? 1 : 0,
+ 'messages_ready_count' => $columns[3],
+ 'messages_unacknowledged_count' => $columns[4],
+ 'messages_count' => $columns[5],
+ 'queue_consumers_count' => $columns[6],
+ 'queues_memory_allocated' => $columns[7],
+ );
+ $results[] = $row;
+ }
+ }
+}
+$results[] = array(
+ 'queues_count' => 0,
+ 'queues_durable_count' => 0,
+ 'queues_auto_delete_count' => 0,
+ 'messages_ready_count' => 0,
+ 'messages_unacknowledged_count' => 0,
+ 'messages_count' => 0,
+ 'queue_consumers_count' => 0,
+ 'queues_memory_allocated' => 0,
+);
+
+
+// EXCHANGES
+if (isset($cleanStats['exchanges'])) {
+ foreach ($cleanStats['exchanges'] as $line) {
+ $columns = explode(' ', $line);
+ if (count($columns) == 3) {
+ $row = array(
+ 'exchanges_count' => 1,
+ 'exchanges_durable_count' => $columns[1] == 'true' ? 1 : 0,
+ 'exchanges_auto_delete_count' => $columns[2] == 'true' ? 1 : 0,
+ 'exchanges_direct_count' => $columns[0] == 'direct' ? 1 : 0,
+ 'exchanges_topic_count' => $columns[0] == 'topic' ? 1 : 0,
+ 'exchanges_fanout_count' => $columns[0] == 'fanout' ? 1 : 0,
+ 'exchanges_headers_count' => $columns[0] == 'headers' ? 1 : 0,
+ );
+ $results[] = $row;
+ }
+ }
+}
+$results[] = array(
+ 'exchanges_count' => 0,
+ 'exchanges_durable_count' => 0,
+ 'exchanges_auto_delete_count' => 0,
+ 'exchanges_direct_count' => 0,
+ 'exchanges_topic_count' => 0,
+ 'exchanges_fanout_count' => 0,
+ 'exchanges_headers_count' => 0,
+);
+
+// CONNECTIONS
+if (isset($cleanStats['connections'])) {
+ foreach ($cleanStats['connections'] as $line) {
+ $columns = explode(' ', $line);
+ if (count($columns) == 5) {
+ $row = array(
+ 'connections_count' => 1,
+ 'connections_starting' => $columns[0] == 'starting' ? 1 : 0,
+ 'connections_tuning' => $columns[0] == 'tuning' ? 1 : 0,
+ 'connections_opening' => $columns[0] == 'opening' ? 1 : 0,
+ 'connections_running' => $columns[0] == 'running' ? 1 : 0,
+ 'connections_blocking' => $columns[0] == 'blocking' ? 1 : 0,
+ 'connections_blocked' => $columns[0] == 'blocked' ? 1 : 0,
+ 'connections_closing' => $columns[0] == 'closing' ? 1 : 0,
+ 'connections_closed' => $columns[0] == 'closed' ? 1 : 0,
+ );
+ $results[] = $row;
+ }
+ }
+}
+$results[] = array(
+ 'connections_count' => 0,
+ 'connections_starting' => 0,
+ 'connections_tuning' => 0,
+ 'connections_opening' => 0,
+ 'connections_running' => 0,
+ 'connections_blocking' => 0,
+ 'connections_blocked' => 0,
+ 'connections_closing' => 0,
+ 'connections_closed' => 0,
+);
+
+// CHANNELS
+if (isset($cleanStats['channels'])) {
+ foreach ($cleanStats['channels'] as $line) {
+ $columns = explode(' ', $line);
+ if (count($columns) == 2) {
+ $row = array(
+ 'channels_count' => 1,
+ 'channels_transactional_count' => $columns[0] == 'true' ? 1 : 0,
+ 'channels_confirm_count' => $columns[1] == 'true' ? 1 : 0,
+ );
+ $results[] = $row;
+ }
+ }
+}
+$results[] = array(
+ 'channels_count' => 0,
+ 'channels_transactional_count' => 0,
+ 'channels_confirm_count' => 0,
+);
+
+// BINDINGS
+$results[] = array('bindings_count' => count($cleanStats['exchanges']));
+
+//SUMMARU
+$summary = array();
+foreach ($results as $index => $values) {
+ foreach ($values as $name => $value) {
+ if (!isset($summary[$name])) {
+ $summary[$name] = 0;
+ }
+ $summary[$name] += $value;
+ }
+}
+
+// PRINT
+foreach ($summary as $name => $value) {
+ echo $name . ':' . $value . "\n";
+}
\ No newline at end of file
diff --git a/bin/rabbitmq.sh b/bin/rabbitmq.sh
new file mode 100644
index 0000000..35e3cae
--- /dev/null
+++ b/bin/rabbitmq.sh
@@ -0,0 +1,27 @@
+#!/bin/sh
+
+# =======================
+cachefile='/tmp/rabbitmq.log'
+command='sudo /usr/bin/php /etc/zabbix/bin/rabbit.php'
+# =======================
+
+random=$RANDOM
+
+if [ ! -e $cachefile ]; then
+ touch -d "2 hours ago" $cachefile
+fi
+
+cachefileage=$(($(date +%s) - $(stat -c %Y $cachefile)))
+process_running=$(ps aux | grep rabbit.php | grep -v "grep" | wc -l)
+
+if [ "$cachefileage" -gt 60 ] && [ "$process_running" -eq 0 ]; then
+ output=$($command 2>&1)
+
+ if [ $? -eq 0 ]; then
+ echo "$output" > $cachefile.$random
+ mv $cachefile.$random $cachefile
+ chown zabbix.zabbix $cachefile
+ fi
+fi
+
+cat $cachefile
\ No newline at end of file
diff --git a/bin/rabbitmqctl.sh b/bin/rabbitmqctl.sh
new file mode 100644
index 0000000..d20cf9e
--- /dev/null
+++ b/bin/rabbitmqctl.sh
@@ -0,0 +1,27 @@
+#!/bin/sh
+
+# =======================
+cachefile='/tmp/rabbitmqctl.log'
+command='sudo /usr/sbin/rabbitmqctl status'
+# =======================
+
+random=$RANDOM
+
+if [ ! -e $cachefile ]; then
+ touch -d "2 hours ago" $cachefile
+fi
+
+cachefileage=$(($(date +%s) - $(stat -c %Y $cachefile)))
+process_running=$(ps aux | grep "rabbitmqctl status" | grep -v "grep" | wc -l)
+
+if [ "$cachefileage" -gt 60 ] && [ "$process_running" -eq 0 ]; then
+ output=$($command 2>&1)
+
+ if [ $? -eq 0 ]; then
+ echo "$output" > $cachefile.$random
+ mv $cachefile.$random $cachefile
+ chown zabbix.zabbix $cachefile
+ fi
+fi
+
+cat $cachefile
\ No newline at end of file
diff --git a/templates/App_Memcached.xml b/templates/App_Memcached.xml
deleted file mode 100644
index 6a40ad1..0000000
--- a/templates/App_Memcached.xml
+++ /dev/null
@@ -1,1245 +0,0 @@
-
-
- 2.0
- 2013-04-10T14:28:41Z
-
-
- Templates
-
-
-
-
- Template App Memcached
- Template App Memcached
-
-
- Templates
-
-
-
-
- Memcache
-
-
-
- -
- Bytes read by this server per second
- 0
- public
- 0
- interfaces.ifTable.ifEntry.ifInOctets.1
- memcache[bytes_read]
- 60
- 90
- 365
- 0
- 3
-
- B
- 1
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Memcache
-
-
-
-
- -
- Bytes sent by this server per second
- 0
- public
- 0
- interfaces.ifTable.ifEntry.ifInOctets.1
- memcache[bytes_written]
- 60
- 90
- 365
- 0
- 3
-
- B
- 1
-
- 0
-
-
- -1
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Memcache
-
-
-
-
- -
- Bytes this server is allowed to use for storage
- 0
- public
- 0
- interfaces.ifTable.ifEntry.ifInOctets.1
- memcache[limit_maxbytes]
- 3600
- 7
- 365
- 0
- 3
-
- B
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Memcache
-
-
-
-
- -
- Current number of bytes used to store items
- 0
- public
- 0
- interfaces.ifTable.ifEntry.ifInOctets.1
- memcache[bytes]
- 60
- 90
- 365
- 0
- 3
-
- B
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Memcache
-
-
-
-
- -
- Current number of items stored
- 0
- public
- 0
- interfaces.ifTable.ifEntry.ifInOctets.1
- memcache[curr_items]
- 60
- 90
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Memcache
-
-
-
-
- -
- Items removed to free memory per second
- 0
- public
- 0
- interfaces.ifTable.ifEntry.ifInOctets.1
- memcache[evictions]
- 60
- 90
- 365
- 0
- 3
-
-
- 1
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Memcache
-
-
-
-
- -
- Items requested and not found per second
- 0
- public
- 0
- interfaces.ifTable.ifEntry.ifInOctets.1
- memcache[get_misses]
- 60
- 90
- 365
- 0
- 3
-
-
- 1
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Memcache
-
-
-
-
- -
- Keys requested and found present per second
- 0
- public
- 0
- interfaces.ifTable.ifEntry.ifInOctets.1
- memcache[get_hits]
- 60
- 90
- 365
- 0
- 3
-
-
- 1
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Memcache
-
-
-
-
- -
- Memcache service is running
- 0
- public
- 0
- interfaces.ifTable.ifEntry.ifInOctets.1
- net.tcp.service[tcp,,11211]
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Memcache
-
-
-
-
- -
- Number of connections opened per second
- 0
- public
- 0
- interfaces.ifTable.ifEntry.ifInOctets.1
- memcache[total_connections]
- 60
- 90
- 365
- 0
- 3
-
-
- 1
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Memcache
-
-
-
-
- -
- Number of connection structures allocated by the server
- 0
- public
- 0
- interfaces.ifTable.ifEntry.ifInOctets.1
- memcache[connection_structures]
- 60
- 90
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Memcache
-
-
-
-
- -
- Number of new items stored per second
- 0
- public
- 0
- interfaces.ifTable.ifEntry.ifInOctets.1
- memcache[total_items]
- 60
- 90
- 365
- 0
- 3
-
-
- 1
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Memcache
-
-
-
-
- -
- Number of open connections
- 0
- public
- 0
- interfaces.ifTable.ifEntry.ifInOctets.1
- memcache[curr_connections]
- 60
- 90
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Memcache
-
-
-
-
- -
- Number of retrieval requests per second
- 0
- public
- 0
- interfaces.ifTable.ifEntry.ifInOctets.1
- memcache[cmd_get]
- 60
- 90
- 365
- 0
- 3
-
-
- 1
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Memcache
-
-
-
-
- -
- Number of seconds since the server started
- 0
- public
- 0
- interfaces.ifTable.ifEntry.ifInOctets.1
- memcache[uptime]
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Memcache
-
-
-
-
- -
- Number of storage requests per second
- 0
- public
- 0
- interfaces.ifTable.ifEntry.ifInOctets.1
- memcache[cmd_set]
- 60
- 90
- 365
- 0
- 3
-
-
- 1
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Memcache
-
-
-
-
- -
- Number of worker threads requested
- 0
- public
- 0
- interfaces.ifTable.ifEntry.ifInOctets.1
- memcache[threads]
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Memcache
-
-
-
-
- -
- Process id of this server process
- 0
- public
- 0
- interfaces.ifTable.ifEntry.ifInOctets.1
- memcache[pid]
- 3600
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Memcache
-
-
-
-
- -
- System time for this process
- 0
- public
- 0
- interfaces.ifTable.ifEntry.ifInOctets.1
- memcache[rusage_system]
- 60
- 90
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Memcache
-
-
-
-
- -
- Total number of retrieval and storage requests per second
- 15
- public
- 0
- interfaces.ifTable.ifEntry.ifInOctets.1
- memcache[cmd_total]
- 60
- 90
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
- last("memcache[cmd_get]")+last("memcache[cmd_set]")
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Memcache
-
-
-
-
- -
- User time for this process
- 0
- public
- 0
- interfaces.ifTable.ifEntry.ifInOctets.1
- memcache[rusage_user]
- 60
- 90
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Memcache
-
-
-
-
-
-
-
-
-
-
-
-
-
- {Template App Memcached:net.tcp.service[tcp,,11211].last(0)}=0
- Memcache service is down on {HOSTNAME}
-
- 0
- 4
-
- 0
-
-
-
-
-
- Connections per second
- 900
- 200
- 0.0000
- 100.0000
- 0
- 0
- 0
- 1
- 0
- 0.0000
- 0.0000
- 1
- 0
- 0
- 0
-
-
- 0
- 2
- 009900
- 0
- 2
- 0
- -
- Template App Memcached
- memcache[total_connections]
-
-
-
-
-
- Current items
- 900
- 200
- 0.0000
- 100.0000
- 0
- 0
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 2
- 009900
- 0
- 2
- 0
- -
- Template App Memcached
- memcache[curr_items]
-
-
-
-
-
- Current open connections
- 900
- 200
- 0.0000
- 100.0000
- 0
- 0
- 0
- 1
- 0
- 0.0000
- 0.0000
- 1
- 0
- 0
- 0
-
-
- 0
- 2
- 009900
- 0
- 2
- 0
- -
- Template App Memcached
- memcache[curr_connections]
-
-
-
-
-
- Evictions
- 900
- 200
- 0.0000
- 100.0000
- 0
- 0
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 2
- 990000
- 0
- 2
- 0
- -
- Template App Memcached
- memcache[evictions]
-
-
-
-
-
- Items per second
- 900
- 200
- 0.0000
- 100.0000
- 0
- 0
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 2
- 009900
- 0
- 2
- 0
- -
- Template App Memcached
- memcache[total_items]
-
-
-
-
-
- Network traffic
- 900
- 200
- 0.0000
- 100.0000
- 0
- 0
- 0
- 1
- 0
- 0.0000
- 0.0000
- 1
- 0
- 0
- 0
-
-
- 0
- 2
- 009900
- 0
- 2
- 0
- -
- Template App Memcached
- memcache[bytes_read]
-
-
-
- 1
- 2
- 990000
- 0
- 2
- 0
- -
- Template App Memcached
- memcache[bytes_written]
-
-
-
-
-
- Requests per second
- 900
- 200
- 0.0000
- 100.0000
- 0
- 0
- 0
- 1
- 0
- 0.0000
- 0.0000
- 1
- 0
- 0
- 0
-
-
- 0
- 2
- 009900
- 0
- 2
- 0
- -
- Template App Memcached
- memcache[cmd_get]
-
-
-
- 1
- 2
- 990000
- 0
- 2
- 0
- -
- Template App Memcached
- memcache[cmd_set]
-
-
-
-
-
- Resource usage
- 900
- 200
- 0.0000
- 100.0000
- 0
- 0
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 2
- 009900
- 0
- 2
- 0
- -
- Template App Memcached
- memcache[rusage_user]
-
-
-
- 1
- 2
- 000099
- 0
- 2
- 0
- -
- Template App Memcached
- memcache[rusage_system]
-
-
-
-
-
- Retrieval hit and miss per second
- 900
- 200
- 0.0000
- 100.0000
- 0
- 0
- 0
- 1
- 0
- 0.0000
- 0.0000
- 1
- 0
- 0
- 0
-
-
- 0
- 2
- 009900
- 0
- 2
- 0
- -
- Template App Memcached
- memcache[get_hits]
-
-
-
- 1
- 2
- 990000
- 0
- 2
- 0
- -
- Template App Memcached
- memcache[get_misses]
-
-
-
-
-
- Storage usage
- 900
- 200
- 0.0000
- 0.0000
- 0
- 0
- 0
- 1
- 0
- 0.0000
- 0.0000
- 1
- 0
- 0
- 0
-
-
- 0
- 1
- 009900
- 0
- 2
- 0
- -
- Template App Memcached
- memcache[limit_maxbytes]
-
-
-
- 1
- 1
- 990000
- 0
- 2
- 0
- -
- Template App Memcached
- memcache[bytes]
-
-
-
-
-
-
diff --git a/templates/App_MySQL.xml b/templates/App_MySQL.xml
deleted file mode 100644
index fcce0b6..0000000
--- a/templates/App_MySQL.xml
+++ /dev/null
@@ -1,10112 +0,0 @@
-
-
- 2.0
- 2013-04-10T14:28:37Z
-
-
- Templates
-
-
-
-
- Template App MySQL
- Template App MySQL
-
-
- Templates
-
-
-
-
- Database
-
-
-
- -
- Aborted clients
- 0
-
- 0
-
- mysql.Aborted_clients
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Aborted connects
- 0
-
- 0
-
- mysql.Aborted_connects
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Active transactions
- 0
-
- 0
-
- mysql.active_transactions
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Adaptive hash memory
- 0
-
- 0
-
- mysql.adaptive_hash_memory
- 120
- 60
- 365
- 0
- 0
-
- B
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Additional pool alloc
- 0
-
- 0
-
- mysql.additional_pool_alloc
- 120
- 60
- 365
- 0
- 0
-
- B
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Binary log space
- 0
-
- 0
-
- mysql.binary_log_space
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Binlog cache disk use
- 0
-
- 0
-
- mysql.Binlog_cache_disk_use
- 120
- 60
- 365
- 0
- 0
-
- B
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Binlog cache size
- 0
-
- 0
-
- mysql.setting.binlog_cache_size
- 3600
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Binlog cache use
- 0
-
- 0
-
- mysql.Binlog_cache_use
- 120
- 60
- 365
- 0
- 0
-
- B
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Bytes received
- 0
-
- 0
-
- mysql.Bytes_received
- 120
- 60
- 365
- 0
- 0
-
- B
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Bytes sent
- 0
-
- 0
-
- mysql.Bytes_sent
- 120
- 60
- 365
- 0
- 0
-
- B
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Com delete
- 0
-
- 0
-
- mysql.Com_delete
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Com delete multi
- 0
-
- 0
-
- mysql.Com_delete_multi
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Com insert
- 0
-
- 0
-
- mysql.Com_insert
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Com insert select
- 0
-
- 0
-
- mysql.Com_insert_select
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Com load
- 0
-
- 0
-
- mysql.Com_load
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Com replace
- 0
-
- 0
-
- mysql.Com_replace
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Com replace select
- 0
-
- 0
-
- mysql.Com_replace_select
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Com select
- 0
-
- 0
-
- mysql.Com_select
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Com update
- 0
-
- 0
-
- mysql.Com_update
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Com update multi
- 0
-
- 0
-
- mysql.Com_update_multi
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Connections
- 0
-
- 0
-
- mysql.Connections
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Created tmp disk tables
- 0
-
- 0
-
- mysql.Created_tmp_disk_tables
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Created tmp files
- 0
-
- 0
-
- mysql.Created_tmp_files
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Created tmp tables
- 0
-
- 0
-
- mysql.Created_tmp_tables
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Current transactions
- 0
-
- 0
-
- mysql.current_transactions
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Database pages
- 0
-
- 0
-
- mysql.database_pages
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Dictionary cache memory
- 0
-
- 0
-
- mysql.dictionary_cache_memory
- 120
- 60
- 365
- 0
- 0
-
- B
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- File fsyncs
- 0
-
- 0
-
- mysql.file_fsyncs
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- File reads
- 0
-
- 0
-
- mysql.file_reads
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- File system memory
- 0
-
- 0
-
- mysql.file_system_memory
- 120
- 60
- 365
- 0
- 0
-
- B
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- File writes
- 0
-
- 0
-
- mysql.file_writes
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Free pages
- 0
-
- 0
-
- mysql.free_pages
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Handler commit
- 0
-
- 0
-
- mysql.Handler_commit
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Handler delete
- 0
-
- 0
-
- mysql.Handler_delete
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Handler discover
- 0
-
- 0
-
- mysql.Handler_discover
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Handler prepare
- 0
-
- 0
-
- mysql.Handler_prepare
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Handler read first
- 0
-
- 0
-
- mysql.Handler_read_first
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Handler read key
- 0
-
- 0
-
- mysql.Handler_read_key
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Handler read next
- 0
-
- 0
-
- mysql.Handler_read_next
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Handler read prev
- 0
-
- 0
-
- mysql.Handler_read_prev
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Handler read rnd
- 0
-
- 0
-
- mysql.Handler_read_rnd
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Handler read rnd next
- 0
-
- 0
-
- mysql.Handler_read_rnd_next
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Handler rollback
- 0
-
- 0
-
- mysql.Handler_rollback
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Handler savepoint
- 0
-
- 0
-
- mysql.Handler_savepoint
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Handler savepoint rollback
- 0
-
- 0
-
- mysql.Handler_savepoint_rollback
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Handler update
- 0
-
- 0
-
- mysql.Handler_update
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Handler write
- 0
-
- 0
-
- mysql.Handler_write
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Hash index cells total
- 0
-
- 0
-
- mysql.hash_index_cells_total
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Hash index cells used
- 0
-
- 0
-
- mysql.hash_index_cells_used
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- History list
- 0
-
- 0
-
- mysql.history_list
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Ibuf cell count
- 0
-
- 0
-
- mysql.ibuf_cell_count
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Ibuf free cells
- 0
-
- 0
-
- mysql.ibuf_free_cells
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Ibuf inserts
- 0
-
- 0
-
- mysql.ibuf_inserts
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Ibuf merged
- 0
-
- 0
-
- mysql.ibuf_merged
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Ibuf merges
- 0
-
- 0
-
- mysql.ibuf_merges
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Ibuf used cells
- 0
-
- 0
-
- mysql.ibuf_used_cells
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- InnoDB locked tables
- 0
-
- 0
-
- mysql.innodb_locked_tables
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- InnoDB lock structs
- 0
-
- 0
-
- mysql.innodb_lock_structs
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- InnoDB lock wait secs
- 0
-
- 0
-
- mysql.innodb_lock_wait_secs
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- InnoDB log buffer size
- 0
-
- 0
-
- mysql.innodb_log_buffer_size
- 120
- 60
- 365
- 0
- 0
-
- B
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- InnoDB open files
- 0
-
- 0
-
- mysql.innodb_open_files
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Innodb row lock time
- 0
-
- 0
-
- mysql.Innodb_row_lock_time
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Innodb row lock waits
- 0
-
- 0
-
- mysql.Innodb_row_lock_waits
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- InnoDB sem waits
- 0
-
- 0
-
- mysql.innodb_sem_waits
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- InnoDB sem wait time ms
- 0
-
- 0
-
- mysql.innodb_sem_wait_time_ms
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- InnoDB tables in use
- 0
-
- 0
-
- mysql.innodb_tables_in_use
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- InnoDB transactions
- 0
-
- 0
-
- mysql.innodb_transactions
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Locked transactions
- 0
-
- 0
-
- mysql.locked_transactions
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Lock system memory
- 0
-
- 0
-
- mysql.lock_system_memory
- 120
- 60
- 365
- 0
- 0
-
- B
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Log bytes flushed
- 0
-
- 0
-
- mysql.log_bytes_flushed
- 120
- 60
- 365
- 0
- 0
-
- B
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Log bytes written
- 0
-
- 0
-
- mysql.log_bytes_written
- 120
- 60
- 365
- 0
- 0
-
- B
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Log writes
- 0
-
- 0
-
- mysql.log_writes
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Max connections
- 0
-
- 0
-
- mysql.setting.max_connections
- 3600
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Max used connections
- 0
-
- 0
-
- mysql.Max_used_connections
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Modified pages
- 0
-
- 0
-
- mysql.modified_pages
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- MyISAM Key buf bytes unflushed
- 0
-
- 0
-
- mysql.Key_buf_bytes_unflushed
- 120
- 60
- 365
- 0
- 0
-
- B
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- MyISAM Key buf bytes used
- 0
-
- 0
-
- mysql.Key_buf_bytes_used
- 120
- 60
- 365
- 0
- 0
-
- B
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- MyISAM key buffer size
- 0
-
- 0
-
- mysql.setting.key_buffer_size
- 3600
- 60
- 365
- 0
- 0
-
- B
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- MyISAM Key read requests
- 0
-
- 0
-
- mysql.Key_read_requests
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- MyISAM Key reads
- 0
-
- 0
-
- mysql.Key_reads
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- MyISAM Key write requests
- 0
-
- 0
-
- mysql.Key_write_requests
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- MyISAM Key writes
- 0
-
- 0
-
- mysql.Key_writes
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- MySQL begin operations per second
- 0
-
- 0
-
- mysql.status[Com_begin]
- 60
- 7
- 365
- 0
- 3
-
- qps
- 1
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- It requires user parameter mysql.status[*], which is defined in userparameter_mysql.conf.
- 0
-
-
- Database
-
-
-
-
- -
- MySQL bytes received per second
- 0
-
- 0
-
- mysql.status[Bytes_received]
- 60
- 7
- 365
- 0
- 3
-
- Bps
- 1
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- The number of bytes received from all clients.
-
-It requires user parameter mysql.status[*], which is defined in
-userparameter_mysql.conf.
- 0
-
-
- Database
-
-
-
-
- -
- MySQL bytes sent per second
- 0
-
- 0
-
- mysql.status[Bytes_sent]
- 60
- 7
- 365
- 0
- 3
-
- Bps
- 1
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- The number of bytes sent to all clients.
-
-It requires user parameter mysql.status[*], which is defined in userparameter_mysql.conf.
- 0
-
-
- Database
-
-
-
-
- -
- MySQL commit operations per second
- 0
-
- 0
-
- mysql.status[Com_commit]
- 60
- 7
- 365
- 0
- 3
-
- qps
- 1
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- It requires user parameter mysql.status[*], which is defined in userparameter_mysql.conf.
- 0
-
-
- Database
-
-
-
-
- -
- MySQL Connections
- 0
-
- 0
-
- mysql.connection
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- MySQL delete operations per second
- 0
-
- 0
-
- mysql.status[Com_delete]
- 60
- 7
- 365
- 0
- 3
-
- qps
- 1
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- It requires user parameter mysql.status[*], which is defined in userparameter_mysql.conf.
- 0
-
-
- Database
-
-
-
-
- -
- MySQL insert operations per second
- 0
-
- 0
-
- mysql.status[Com_insert]
- 60
- 7
- 365
- 0
- 3
-
- qps
- 1
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- It requires user parameter mysql.status[*], which is defined in userparameter_mysql.conf.
- 0
-
-
- Database
-
-
-
-
- -
- MySQL ping
- 0
-
- 0
-
- mysql.ping
- 60
- 7
- 365
- 0
- 3
- localhost
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- MySQL QPS
- 0
-
- 0
-
- mysql.qps
- 60
- 7
- 365
- 0
- 0
- localhost
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- MySQL queries per second
- 0
-
- 0
-
- mysql.status[Questions]
- 60
- 7
- 365
- 0
- 3
-
- qps
- 1
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- It requires user parameter mysql.status[*], which is defined in userparameter_mysql.conf.
- 0
-
-
- Database
-
-
-
-
- -
- MySQL rollback operations per second
- 0
-
- 0
-
- mysql.status[Com_rollback]
- 60
- 7
- 365
- 0
- 3
-
- qps
- 1
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- It requires user parameter mysql.status[*], which is defined in userparameter_mysql.conf.
- 0
-
-
- Database
-
-
-
-
- -
- MySQL select operations per second
- 0
-
- 0
-
- mysql.status[Com_select]
- 60
- 7
- 365
- 0
- 3
-
- qps
- 1
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- It requires user parameter mysql.status[*], which is defined in userparameter_mysql.conf.
- 0
-
-
- Database
-
-
-
-
- -
- MySQL slow queries
- 0
-
- 0
-
- mysql.status[Slow_queries]
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- It requires user parameter mysql.status[*], which is defined in userparameter_mysql.conf.
- 0
-
-
- Database
-
-
-
-
- -
- MySQL Slow Queries
- 0
-
- 0
-
- mysql.slowqueries
- 60
- 7
- 365
- 0
- 3
- localhost
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- MySQL Threads
- 0
-
- 0
-
- mysql.threads
- 60
- 7
- 365
- 0
- 3
- localhost
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- MySQL update operations per second
- 0
-
- 0
-
- mysql.status[Com_update]
- 60
- 7
- 365
- 0
- 3
-
- qps
- 1
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- It requires user parameter mysql.status[*], which is defined in userparameter_mysql.conf.
- 0
-
-
- Database
-
-
-
-
- -
- MySQL uptime
- 0
-
- 0
-
- mysql.status[Uptime]
- 60
- 7
- 365
- 0
- 3
-
- uptime
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- It requires user parameter mysql.status, which is defined in userparameter_mysql.conf.
- 0
-
-
- Database
-
-
-
-
- -
- MySQL version
- 0
-
- 0
-
- mysql.version
- 3600
- 7
- 365
- 0
- 1
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- It requires user parameter mysql.version, which is defined in userparameter_mysql.conf.
- 0
-
-
- Database
-
-
-
-
- -
- Number of running processes mysqld
- 0
-
- 0
-
- proc.num[mysqld]
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Opened tables
- 0
-
- 0
-
- mysql.Opened_tables
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Open files
- 0
-
- 0
-
- mysql.Open_files
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Open files limit
- 0
-
- 0
-
- mysql.setting.open_files_limit
- 3600
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Open tables
- 0
-
- 0
-
- mysql.Open_tables
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- OS waits
- 0
-
- 0
-
- mysql.os_waits
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Page hash memory
- 0
-
- 0
-
- mysql.page_hash_memory
- 120
- 60
- 365
- 0
- 0
-
- B
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Pages created
- 0
-
- 0
-
- mysql.pages_created
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Pages read
- 0
-
- 0
-
- mysql.pages_read
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Pages written
- 0
-
- 0
-
- mysql.pages_written
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Pending AIO log ios
- 0
-
- 0
-
- mysql.pending_aio_log_ios
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Pending AIO sync ios
- 0
-
- 0
-
- mysql.pending_aio_sync_ios
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Pending buf pool flushes
- 0
-
- 0
-
- mysql.pending_buf_pool_flushes
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Pending chkp writes
- 0
-
- 0
-
- mysql.pending_chkp_writes
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Pending ibuf AIO reads
- 0
-
- 0
-
- mysql.pending_ibuf_aio_reads
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Pending log flushes
- 0
-
- 0
-
- mysql.pending_log_flushes
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Pending log writes
- 0
-
- 0
-
- mysql.pending_log_writes
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Pending normal AIO reads
- 0
-
- 0
-
- mysql.pending_normal_aio_reads
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Pending normal AIO writes
- 0
-
- 0
-
- mysql.pending_normal_aio_writes
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Pool size
- 0
-
- 0
-
- mysql.setting.pool_size
- 3600
- 60
- 365
- 0
- 0
-
- B
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Qcache free blocks
- 0
-
- 0
-
- mysql.Qcache_free_blocks
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Qcache free memory
- 0
-
- 0
-
- mysql.Qcache_free_memory
- 120
- 60
- 365
- 0
- 0
-
- B
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Qcache hits
- 0
-
- 0
-
- mysql.Qcache_hits
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Qcache inserts
- 0
-
- 0
-
- mysql.Qcache_inserts
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Qcache lowmem prunes
- 0
-
- 0
-
- mysql.Qcache_lowmem_prunes
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Qcache not cached
- 0
-
- 0
-
- mysql.Qcache_not_cached
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Qcache queries in cache
- 0
-
- 0
-
- mysql.Qcache_queries_in_cache
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Qcache total blocks
- 0
-
- 0
-
- mysql.Qcache_total_blocks
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Query cache size
- 0
-
- 0
-
- mysql.setting.query_cache_size
- 3600
- 60
- 365
- 0
- 0
-
- B
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Questions
- 0
-
- 0
-
- mysql.Questions
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Read views
- 0
-
- 0
-
- mysql.read_views
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Recovery system memory
- 0
-
- 0
-
- mysql.recovery_system_memory
- 120
- 60
- 365
- 0
- 0
-
- B
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Relay log space
- 0
-
- 0
-
- mysql.relay_log_space
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Rows deleted
- 0
-
- 0
-
- mysql.rows_deleted
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Rows inserted
- 0
-
- 0
-
- mysql.rows_inserted
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Rows read
- 0
-
- 0
-
- mysql.rows_read
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Rows updated
- 0
-
- 0
-
- mysql.rows_updated
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Select full join
- 0
-
- 0
-
- mysql.Select_full_join
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Select full range join
- 0
-
- 0
-
- mysql.Select_full_range_join
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Select range
- 0
-
- 0
-
- mysql.Select_range
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Select range check
- 0
-
- 0
-
- mysql.Select_range_check
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Select scan
- 0
-
- 0
-
- mysql.Select_scan
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Slave lag
- 0
-
- 0
-
- mysql.slave_lag
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Slave open temp tables
- 0
-
- 0
-
- mysql.Slave_open_temp_tables
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Slave retried transactions
- 0
-
- 0
-
- mysql.Slave_retried_transactions
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Slave running
- 0
-
- 0
-
- mysql.slave_running
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Slave stopped
- 0
-
- 0
-
- mysql.slave_stopped
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Slow launch threads
- 0
-
- 0
-
- mysql.Slow_launch_threads
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Slow queries
- 0
-
- 0
-
- mysql.Slow_queries
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Sort merge passes
- 0
-
- 0
-
- mysql.Sort_merge_passes
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Sort range
- 0
-
- 0
-
- mysql.Sort_range
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Sort rows
- 0
-
- 0
-
- mysql.Sort_rows
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Sort scan
- 0
-
- 0
-
- mysql.Sort_scan
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Spin rounds
- 0
-
- 0
-
- mysql.spin_rounds
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Spin waits
- 0
-
- 0
-
- mysql.spin_waits
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- State closing tables
- 0
-
- 0
-
- mysql.State_closing_tables
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- State copying to tmp table
- 0
-
- 0
-
- mysql.State_copying_to_tmp_table
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- State end
- 0
-
- 0
-
- mysql.State_end
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- State freeing items
- 0
-
- 0
-
- mysql.State_freeing_items
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- State init
- 0
-
- 0
-
- mysql.State_init
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- State locked
- 0
-
- 0
-
- mysql.State_locked
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- State login
- 0
-
- 0
-
- mysql.State_login
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- State none
- 0
-
- 0
-
- mysql.State_none
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- State other
- 0
-
- 0
-
- mysql.State_other
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- State preparing
- 0
-
- 0
-
- mysql.State_preparing
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- State reading from net
- 0
-
- 0
-
- mysql.State_reading_from_net
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- State sending data
- 0
-
- 0
-
- mysql.State_sending_data
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- State sorting result
- 0
-
- 0
-
- mysql.State_sorting_result
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- State statistics
- 0
-
- 0
-
- mysql.State_statistics
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- State updating
- 0
-
- 0
-
- mysql.State_updating
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- State writing to net
- 0
-
- 0
-
- mysql.State_writing_to_net
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Table cache
- 0
-
- 0
-
- mysql.setting.table_cache
- 3600
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Table locks immediate
- 0
-
- 0
-
- mysql.Table_locks_immediate
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Table locks waited
- 0
-
- 0
-
- mysql.Table_locks_waited
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Thread cache size
- 0
-
- 0
-
- mysql.setting.thread_cache_size
- 3600
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Thread hash memory
- 0
-
- 0
-
- mysql.thread_hash_memory
- 120
- 60
- 365
- 0
- 0
-
- B
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Threads cached
- 0
-
- 0
-
- mysql.Threads_cached
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Threads connected
- 0
-
- 0
-
- mysql.Threads_connected
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Threads created
- 0
-
- 0
-
- mysql.Threads_created
- 120
- 60
- 365
- 0
- 0
-
-
- 2
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Threads running
- 0
-
- 0
-
- mysql.Threads_running
- 120
- 60
- 365
- 0
- 0
-
-
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Total mem alloc
- 0
-
- 0
-
- mysql.total_mem_alloc
- 120
- 60
- 365
- 0
- 0
-
- B
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Uncheckpointed bytes
- 0
-
- 0
-
- mysql.uncheckpointed_bytes
- 120
- 60
- 365
- 0
- 0
-
- B
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
- -
- Unflushed log
- 0
-
- 0
-
- mysql.unflushed_log
- 120
- 60
- 365
- 0
- 0
-
- B
- 0
-
- 0
-
-
- 0
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Database
-
-
-
-
-
-
-
-
-
-
- A
- 1
- 1
-
-
-
-
-
-
-
- {Template App MySQL:mysql.innodb_lock_structs.delta(300)}>30
- InnoDB lock structures more than 30 in 5m on {HOSTNAME}
-
- 0
- 2
-
- 0
-
-
-
- {Template App MySQL:mysql.uncheckpointed_bytes.delta(600)}>25M
- InnoDB uncheckpointed bytes in the last 10m > 25MB on {HOSTNAME}
-
- 0
- 2
-
- 0
-
-
-
- {Template App MySQL:mysql.Threads_connected.last(0)}>500
- More than 500 threads on {HOSTNAME}
-
- 0
- 3
-
- 0
-
-
-
- {Template App MySQL:proc.num[mysqld].last(0)}=0
- Mysql is not running on {HOSTNAME}
-
- 0
- 5
-
- 0
-
-
-
- {Template App MySQL:mysql.connection.last(0)}>300
- Mysql too many connections {HOSTNAME}
-
- 0
- 4
-
- 0
-
-
-
- {Template App MySQL:mysql.Table_locks_waited.min(300)}>20
- Server {HOSTNAME} is waiting on table locks
-
- 0
- 3
-
- 0
-
-
-
- ({TRIGGER.VALUE}=0&{Template App MySQL:mysql.State_copying_to_tmp_table.count(360,1,"ge")}>2)|({TRIGGER.VALUE}=1&{Template App MySQL:mysql.State_copying_to_tmp_table.count(360,1,"ge")}>0)
- Thread in state Copying_to_tmp_table for more than 6min on {HOSTNAME}
-
- 0
- 3
-
- 0
-
-
-
- {Template App MySQL:mysql.version.diff(0)}>0
- Version of MySQL was changed on {HOSTNAME}
-
- 0
- 1
-
- 0
-
-
-
-
-
- InnoDB Active/Locked Transactions
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 1
- C0C0C0
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.active_transactions
-
-
-
- 0
- 0
- FF0000
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.locked_transactions
-
-
-
-
-
- InnoDB Adaptive Hash Index
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 1
- D9C7A3
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.hash_index_cells_used
-
-
-
- 0
- 1
- 0C4E5D
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.hash_index_cells_total
-
-
-
-
-
- InnoDB Buffer Pool
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 1
- 3D1500
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.setting.pool_size
-
-
-
- 0
- 5
- AA3B27
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.free_pages
-
-
-
- 0
- 1
- EDAA41
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.database_pages
-
-
-
- 0
- 0
- 13343B
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.modified_pages
-
-
-
-
-
- InnoDB Buffer Pool Activity
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 5
- E6D883
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.pages_read
-
-
-
- 0
- 1
- D6883A
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.pages_created
-
-
-
- 0
- 1
- 55AD84
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.pages_written
-
-
-
-
-
- InnoDB Checkpoint Age
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 0
- 661100
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.uncheckpointed_bytes
-
-
-
-
-
- InnoDB Current Lock Waits
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 0
- 201A33
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.innodb_lock_wait_secs
-
-
-
-
-
- InnoDB I/O
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 0
- 0ABFCC
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.file_fsyncs
-
-
-
- 0
- 0
- 402204
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.file_reads
-
-
-
- 0
- 0
- B3092B
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.file_writes
-
-
-
- 0
- 0
- FFBF00
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.log_writes
-
-
-
-
-
- InnoDB I/O Pending
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 0
- 4444FF
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.pending_log_flushes
-
-
-
- 0
- 0
- FFF200
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.pending_buf_pool_flushes
-
-
-
- 0
- 0
- FF7D00
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.pending_aio_sync_ios
-
-
-
- 0
- 0
- 8F9286
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.pending_normal_aio_writes
-
-
-
- 0
- 0
- 00A348
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.pending_chkp_writes
-
-
-
- 0
- 0
- 6DC8FE
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.pending_ibuf_aio_reads
-
-
-
- 0
- 0
- B90054
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.pending_normal_aio_reads
-
-
-
- 0
- 0
- FF0000
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.pending_aio_log_ios
-
-
-
- 0
- 0
- 55009D
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.pending_log_writes
-
-
-
-
-
- InnoDB Insert Buffer
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 0
- 862F2F
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.ibuf_merges
-
-
-
- 0
- 0
- 157419
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.ibuf_inserts
-
-
-
- 0
- 0
- 0000FF
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.ibuf_merged
-
-
-
-
-
- InnoDB Insert Buffer Usage
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 1
- 793A57
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.ibuf_cell_count
-
-
-
- 0
- 1
- 8C873E
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.ibuf_used_cells
-
-
-
- 0
- 5
- A38A5F
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.ibuf_free_cells
-
-
-
-
-
- InnoDB Internal Hash Memory Usage
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 5
- A38A5F
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.lock_system_memory
-
-
-
- 0
- 5
- 8C873E
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.page_hash_memory
-
-
-
- 0
- 5
- 23B0BA
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.thread_hash_memory
-
-
-
- 0
- 5
- E97F02
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.recovery_system_memory
-
-
-
- 0
- 1
- 793A57
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.adaptive_hash_memory
-
-
-
- 0
- 5
- 4D3339
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.file_system_memory
-
-
-
- 0
- 5
- D1C5A5
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.dictionary_cache_memory
-
-
-
-
-
- InnoDB Lock Structures
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 0
- 0C4E5D
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.innodb_lock_structs
-
-
-
-
-
- InnoDB Log
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 1
- AFECED
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.unflushed_log
-
-
-
- 0
- 1
- 5B8257
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.log_bytes_written
-
-
-
- 0
- 0
- AB4253
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.log_bytes_flushed
-
-
-
- 0
- 1
- 6E3803
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.innodb_log_buffer_size
-
-
-
-
-
- InnoDB Memory Allocation
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 1
- 53777A
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.total_mem_alloc
-
-
-
- 0
- 0
- C02942
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.additional_pool_alloc
-
-
-
-
-
- InnoDB Row Lock Time
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 1
- B11D03
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Innodb_row_lock_time
-
-
-
-
-
- InnoDB Row Lock Waits
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 1
- E84A5F
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Innodb_row_lock_waits
-
-
-
-
-
- InnoDB Row Operations
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 1
- AFECED
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.rows_read
-
-
-
- 0
- 5
- EA8F00
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.rows_updated
-
-
-
- 0
- 5
- 35962B
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.rows_inserted
-
-
-
- 0
- 5
- DA4725
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.rows_deleted
-
-
-
-
-
- InnoDB Semaphores
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 0
- 4444FF
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.spin_waits
-
-
-
- 0
- 0
- 157419
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.os_waits
-
-
-
- 0
- 0
- 306078
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.spin_rounds
-
-
-
-
-
- InnoDB Semaphore Waits
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 1
- 7020AF
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.innodb_sem_waits
-
-
-
-
-
- InnoDB Semaphore Wait Time
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 1
- 708226
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.innodb_sem_wait_time_ms
-
-
-
-
-
- InnoDB Tables In Use
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 0
- 663344
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.innodb_locked_tables
-
-
-
- 0
- 1
- D99362
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.innodb_tables_in_use
-
-
-
-
-
- InnoDB Transactions
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 0
- 8F005C
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.innodb_transactions
-
-
-
- 0
- 0
- 74C366
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.read_views
-
-
-
- 0
- 0
- 4444FF
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.current_transactions
-
-
-
- 0
- 0
- FF7D00
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.history_list
-
-
-
-
-
- MyISAM Indexes
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 1
- 157419
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Key_read_requests
-
-
-
- 0
- 0
- AFECED
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Key_reads
-
-
-
- 0
- 0
- F51D30
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Key_writes
-
-
-
- 0
- 1
- 862F2F
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Key_write_requests
-
-
-
-
-
- MyISAM Key Cache
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 1
- FECEA8
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Key_buf_bytes_unflushed
-
-
-
- 0
- 1
- 99B898
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.setting.key_buffer_size
-
-
-
- 0
- 1
- 2A363B
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Key_buf_bytes_used
-
-
-
-
-
- MySQL bandwidth
- 900
- 200
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 5
- 00AA00
- 0
- 2
- 0
- -
- Template App MySQL
- mysql.status[Bytes_received]
-
-
-
- 1
- 5
- 3333FF
- 0
- 2
- 0
- -
- Template App MySQL
- mysql.status[Bytes_sent]
-
-
-
-
-
- MySQL Binary/Relay Logs
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 0
- 8F005C
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.relay_log_space
-
-
-
- 0
- 0
- 35962B
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Binlog_cache_use
-
-
-
- 0
- 0
- FF0000
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Binlog_cache_disk_use
-
-
-
- 0
- 0
- 8D00BA
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.binary_log_space
-
-
-
-
-
- MySQL Command Counters
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 5
- D8ACE0
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Com_update_multi
-
-
-
- 0
- 1
- FFC3C0
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Questions
-
-
-
- 0
- 5
- 00B99B
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Com_replace_select
-
-
-
- 0
- 5
- 2175D9
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Com_replace
-
-
-
- 0
- 5
- FFF200
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Com_insert
-
-
-
- 0
- 5
- FF7D00
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Com_delete
-
-
-
- 0
- 1
- FF0000
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Com_select
-
-
-
- 0
- 5
- 00CF00
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Com_update
-
-
-
- 0
- 5
- 942D0C
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Com_delete_multi
-
-
-
- 0
- 5
- 55009D
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Com_load
-
-
-
- 0
- 5
- AAABA1
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Com_insert_select
-
-
-
-
-
- MySQL Connections
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 2
- FF7D00
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Threads_connected
-
-
-
- 0
- 1
- C0C0C0
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.setting.max_connections
-
-
-
- 0
- 0
- FF3932
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Aborted_clients
-
-
-
- 0
- 0
- 4444FF
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Connections
-
-
-
- 0
- 0
- 00FF00
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Aborted_connects
-
-
-
- 0
- 1
- FFD660
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Max_used_connections
-
-
-
-
-
- MySQL Files and Tables
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 0
- DE0056
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Opened_tables
-
-
-
- 0
- 0
- 4A6959
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Open_tables
-
-
-
- 0
- 0
- 1D1159
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Open_files
-
-
-
- 0
- 1
- D09887
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.setting.table_cache
-
-
-
-
-
- MySQL Handlers
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 5
- C02942
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Handler_read_next
-
-
-
- 0
- 5
- 8C286E
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Handler_read_first
-
-
-
- 0
- 5
- BDB8B3
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Handler_delete
-
-
-
- 0
- 5
- BAB27F
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Handler_read_key
-
-
-
- 0
- 5
- 5A3D31
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Handler_read_rnd
-
-
-
- 0
- 5
- 69D2E7
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Handler_read_rnd_next
-
-
-
- 0
- 5
- FA6900
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Handler_read_prev
-
-
-
- 0
- 1
- 4D4A47
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Handler_write
-
-
-
- 0
- 5
- C79F71
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Handler_update
-
-
-
-
-
- MySQL Network Traffic
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 1
- 4B2744
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Bytes_sent
-
-
-
- 0
- 1
- E4C576
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Bytes_received
-
-
-
-
-
- MySQL operations
- 900
- 200
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 0
- C80000
- 0
- 2
- 0
- -
- Template App MySQL
- mysql.status[Com_begin]
-
-
-
- 1
- 0
- 00C800
- 0
- 2
- 0
- -
- Template App MySQL
- mysql.status[Com_commit]
-
-
-
- 2
- 0
- 0000C8
- 0
- 2
- 0
- -
- Template App MySQL
- mysql.status[Com_delete]
-
-
-
- 3
- 0
- C800C8
- 0
- 2
- 0
- -
- Template App MySQL
- mysql.status[Com_insert]
-
-
-
- 4
- 0
- 00C8C8
- 0
- 2
- 0
- -
- Template App MySQL
- mysql.status[Com_rollback]
-
-
-
- 5
- 0
- C8C800
- 0
- 2
- 0
- -
- Template App MySQL
- mysql.status[Com_select]
-
-
-
- 6
- 0
- C8C8C8
- 0
- 2
- 0
- -
- Template App MySQL
- mysql.status[Com_update]
-
-
-
-
-
- MySQL Processlist
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 5
- D1642E
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.State_end
-
-
-
- 0
- 5
- 54382A
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.State_sending_data
-
-
-
- 0
- 5
- DE0056
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.State_locked
-
-
-
- 0
- 5
- 907890
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.State_init
-
-
-
- 0
- 5
- B56414
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.State_updating
-
-
-
- 0
- 5
- FF7F00
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.State_reading_from_net
-
-
-
- 0
- 5
- 487860
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.State_freeing_items
-
-
-
- 0
- 5
- B83A04
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.State_sorting_result
-
-
-
- 0
- 5
- 521808
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.State_none
-
-
-
- 0
- 5
- 6E3803
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.State_statistics
-
-
-
- 0
- 5
- 783030
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.State_preparing
-
-
-
- 0
- 5
- 1693A7
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.State_login
-
-
-
- 0
- 5
- 194240
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.State_other
-
-
-
- 0
- 5
- 784890
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.State_copying_to_tmp_table
-
-
-
- 0
- 1
- DE0056
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.State_closing_tables
-
-
-
- 0
- 5
- 6E645A
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.State_writing_to_net
-
-
-
-
-
- MySQL QPS
- 900
- 200
- 0.0000
- 100.0000
- 0
- 0
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 0
- 009900
- 0
- 2
- 0
- -
- Template App MySQL
- mysql.qps
-
-
-
-
-
- MySQL Query Cache
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 2
- 4444FF
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Qcache_queries_in_cache
-
-
-
- 0
- 0
- 00A0C1
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Qcache_not_cached
-
-
-
- 0
- 0
- FF0000
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Qcache_lowmem_prunes
-
-
-
- 0
- 0
- 157419
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Qcache_inserts
-
-
-
- 0
- 2
- EAAF00
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Qcache_hits
-
-
-
-
-
- MySQL Query Cache Memory
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 0
- 8D00BA
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Qcache_total_blocks
-
-
-
- 0
- 0
- 837C04
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Qcache_free_blocks
-
-
-
- 0
- 1
- FFC3C0
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Qcache_free_memory
-
-
-
- 0
- 1
- 74C366
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.setting.query_cache_size
-
-
-
-
-
- MySQL Select Types
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 5
- 13343B
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Select_range_check
-
-
-
- 0
- 5
- AA3B27
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Select_full_range_join
-
-
-
- 0
- 5
- EDAA41
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Select_range
-
-
-
- 0
- 1
- 3D1500
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Select_full_join
-
-
-
- 0
- 5
- 686240
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Select_scan
-
-
-
-
-
- MySQL Sorts
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 0
- 157419
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Sort_range
-
-
-
- 0
- 1
- FFAB00
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Sort_rows
-
-
-
- 0
- 0
- 4444FF
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Sort_scan
-
-
-
- 0
- 0
- DA4725
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Sort_merge_passes
-
-
-
-
-
- MySQL Table Locks
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 0
- 002A8F
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Table_locks_immediate
-
-
-
- 0
- 1
- D2D8F9
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Table_locks_immediate
-
-
-
- 0
- 1
- FF3932
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Table_locks_waited
-
-
-
- 0
- 0
- 35962B
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Slow_queries
-
-
-
-
-
- MySQL Temporary Objects
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 2
- 157419
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Created_tmp_files
-
-
-
- 0
- 0
- F51D30
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Created_tmp_disk_tables
-
-
-
- 0
- 0
- 837C04
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Created_tmp_tables
-
-
-
- 0
- 1
- FFAB00
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Created_tmp_tables
-
-
-
-
-
- MySQL Threads
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 2
- DE0056
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Threads_created
-
-
-
- 0
- 1
- D8ACE0
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.setting.thread_cache_size
-
-
-
-
-
- MySQL Transaction Handler
- 800
- 150
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 0
- 784890
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Handler_rollback
-
-
-
- 0
- 0
- D1642E
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Handler_savepoint
-
-
-
- 0
- 0
- DE0056
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Handler_commit
-
-
-
- 0
- 0
- 487860
- 1
- 2
- 0
- -
- Template App MySQL
- mysql.Handler_savepoint_rollback
-
-
-
-
-
-
diff --git a/templates/App_OpenVPN.xml b/templates/App_OpenVPN.xml
deleted file mode 100644
index fd0df57..0000000
--- a/templates/App_OpenVPN.xml
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
- 2.0
- 2013-04-10T14:27:54Z
-
-
- Templates
-
-
-
-
- Template App OpenVPN
- Template App OpenVPN
-
-
- Templates
-
-
-
-
- OpenVPN
-
-
-
- -
- OpenVPN service is running
- 0
-
- 0
-
- net.tcp.service[tcp,,1194]
- 90
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- OpenVPN
-
-
-
- Service state
-
-
- -
- OpenVPN service is running (full-push)
- 0
-
- 0
-
- net.tcp.service[tcp,,443]
- 90
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- OpenVPN
-
-
-
- Service state
-
-
-
-
-
-
-
-
-
-
-
- {Template App OpenVPN:net.tcp.service[tcp,,1194].sum(#3)}=0 | {Template App OpenVPN:net.tcp.service[tcp,,443].sum(#3)}=0
- OpenVPN service is down on {HOSTNAME}
-
- 0
- 3
-
- 0
-
-
-
-
diff --git a/templates/App_Solr.xml b/templates/App_Solr.xml
deleted file mode 100644
index 4473fea..0000000
--- a/templates/App_Solr.xml
+++ /dev/null
@@ -1,85 +0,0 @@
-
-
- 2.0
- 2013-04-10T14:27:49Z
-
-
- Templates
-
-
-
-
- Template App Solr
- Template App Solr
-
-
- Templates
-
-
-
-
- Solr
-
-
-
- -
- Solr service is running
- 0
-
- 0
-
- net.tcp.service[tcp,,8983]
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- Solr
-
-
-
- Service state
-
-
-
-
-
-
-
-
-
-
-
- {Template App Solr:net.tcp.service[tcp,,8983].sum(#3)}=0
- Solr service is down on {HOSTNAME}
-
- 0
- 4
-
- 0
-
-
-
-
diff --git a/templates/App_APC.xml b/templates/Template App APC.xml
similarity index 88%
rename from templates/App_APC.xml
rename to templates/Template App APC.xml
index 73db4fe..a816bc0 100644
--- a/templates/App_APC.xml
+++ b/templates/Template App APC.xml
@@ -1,8 +1,11 @@
2.0
- 2013-04-10T14:28:55Z
+ 2014-08-11T09:42:01Z
+
+ OS Linux
+
Templates
@@ -12,6 +15,9 @@
Template App APC
Template App APC
+
+ OS Linux
+
Templates
@@ -30,16 +36,19 @@
apc[hits]
60
- 7
+ 30
365
0
3
0
+
0
+ 0
+ 0
1
@@ -69,16 +78,19 @@
apc[entries]
60
- 7
+ 30
365
0
3
0
+
0
+ 0
+ 0
1
@@ -108,16 +120,19 @@
apc[hits_ratio]
60
- 7
+ 30
365
0
0
%
0
+
0
+ 0
+ 0
1
@@ -147,16 +162,19 @@
apc[mem.avail]
60
- 7
+ 30
365
0
3
B
0
+
0
+ 0
+ 0
1
@@ -186,16 +204,19 @@
apc[mem.pfree]
60
- 7
+ 30
365
0
0
%
0
+
0
+ 0
+ 0
1
@@ -225,16 +246,19 @@
apc[mem.used]
60
- 7
+ 30
365
0
3
B
0
+
0
+ 0
+ 0
1
@@ -264,16 +288,19 @@
apc[misses]
60
- 7
+ 30
365
0
3
0
+
0
+ 0
+ 0
1
@@ -303,16 +330,19 @@
apc[user.entries]
60
- 7
+ 30
365
0
3
0
+
0
+ 0
+ 0
1
@@ -344,10 +374,10 @@
{Template App APC:apc[mem.pfree].avg(#3)}<10
- Low APC file cache memory on {HOSTNAME}
+ Low APC file cache memory
0
- 3
+ 2
0
diff --git a/templates/App_PostgreSQL.xml b/templates/Template App OPcache.xml
similarity index 62%
rename from templates/App_PostgreSQL.xml
rename to templates/Template App OPcache.xml
index 5f89d3a..1ad52ef 100644
--- a/templates/App_PostgreSQL.xml
+++ b/templates/Template App OPcache.xml
@@ -1,34 +1,40 @@
2.0
- 2013-04-10T14:27:52Z
+ 2014-08-11T09:41:35Z
+
+ OS Linux
+
Templates
- Template App PostgreSQL
- Template App PostgreSQL
+ Template App OPcache
+ Template App OPcache
+
+ OS Linux
+
Templates
- PostgreSQL
+ OPcache
-
- >Number of disk block requests (cache) for table or index
+ [OPcache] Blacklist misses
0
0
- pg_stat_get_blocks_hitoid
+ opcache[blacklist_misses]
60
7
365
@@ -37,9 +43,12 @@
0
+
0
+ 0
+ 0
1
@@ -52,22 +61,64 @@
- Number of disk block requests found in cache for table or index
+
0
- PostgreSQL
+ OPcache
-
- Database size
+ [OPcache] Blacklist miss ratio
0
0
- psql.db_size
+ opcache[blacklist_miss_ratio]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] Buffer size
+ 0
+
+ 0
+
+ opcache[buffer_size]
60
7
365
@@ -76,9 +127,12 @@
B
0
+
0
+ 0
+ 0
1
@@ -95,18 +149,18 @@
0
- PostgreSQL
+ OPcache
-
- Number of active connections
+ [OPcache] Consistency checks
0
0
- psql.db_connections
+ opcache[consistency_checks]
60
7
365
@@ -115,9 +169,12 @@
0
+
0
+ 0
+ 0
1
@@ -134,29 +191,32 @@
0
- PostgreSQL
+ OPcache
-
- Number of active server procesess
+ [OPcache] Current wasted percentage
0
0
- psql.server_processes
+ opcache[current_wasted_percentage]
60
7
365
0
- 3
+ 0
-
+ %
0
+
0
+ 0
+ 0
1
@@ -173,291 +233,18 @@
0
- PostgreSQL
+ OPcache
-
- Number of active server processes
+ [OPcache] Dups fix
0
0
- pg_stat_get_db_numbackendsoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of active server processes for database
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of background writer's timed checkpoints
- 0
-
- 0
-
- pg_stat_get_bgwriter_timed_checkpoints
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of times the background writer has started timed checkpoints (because the checkpoint_timeout time has expired)
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of background writer interrupted cleanings
- 0
-
- 0
-
- pg_stat_get_bgwriter_maxwritten_clean
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of times the background writer has stopped its cleaning scan because it has written more buffers than specified in the bgwriter_lru_maxpages parameter
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of background writer requested checkpoints
- 0
-
- 0
-
- pg_stat_get_bgwriter_requested_checkpoints
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of times the background writer has started checkpoints based on requests from backends because the checkpoint_segments has been exceeded or because the CHECKPOINT command has been issued
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of buffers written by backends
- 0
-
- 0
-
- pg_stat_get_buf_written_backend
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of buffers written by backends because they needed to allocate a new buffer
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of buffers written by the background writer during checkpoints
- 0
-
- 0
-
- pg_stat_get_bgwriter_buf_written_checkpoints
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of buffers written by the background writer during checkpoints
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of buffers written by the background writer for routine cleaning of dirty pages
- 0
-
- 0
-
- pg_stat_get_bgwriter_buf_written_clean
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of buffers written by the background writer for routine cleaning of dirty pages
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of commited transactions
- 0
-
- 0
-
- psql.db_commited
+ opcache[dups_fix]
60
7
365
@@ -466,9 +253,12 @@
0
+
0
+ 0
+ 0
1
@@ -485,486 +275,18 @@
0
- PostgreSQL
+ OPcache
-
- Number of dead rows
+ [OPcache] Enable
0
0
- pg_stat_get_dead_tuplesoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of dead rows in table
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of disk block fetch requests (cache) for database
- 0
-
- 0
-
- pg_stat_get_db_blocks_hitoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of disk block fetch requests found in cache for database
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of disk block fetch requests (in current transaction)
- 0
-
- 0
-
- pg_stat_get_xact_blocks_fetchedoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of disk block fetch requests for table or index, in the current transaction
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of disk block fetch requests for database
- 0
-
- 0
-
- pg_stat_get_db_blocks_fetchedoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of disk block fetch requests for database
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of disk block fetch requests to table/index
- 0
-
- 0
-
- pg_stat_get_blocks_fetchedoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of disk block fetch requests for table or index
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of disk block requests (cache, in current transaction)
- 0
-
- 0
-
- pg_stat_get_xact_blocks_hitoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of disk block requests found in cache for table or index, in the current transaction
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of live rowsNumber of live rows
- 0
-
- 0
-
- pg_stat_get_live_tuplesoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of live rows in table
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of queries canceled (deadlocks)
- 0
-
- 0
-
- pg_stat_get_db_conflict_startup_deadlockoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of queries canceled because of recovery conflict with deadlocks in database
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of queries canceled (dropped tablespaces)
- 0
-
- 0
-
- pg_stat_get_db_conflict_tablespaceoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of queries canceled because of recovery conflict with dropped tablespaces in database
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of queries canceled (locks)
- 0
-
- 0
-
- pg_stat_get_db_conflict_lockoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of queries canceled because of recovery conflict with locks in database
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of queries canceled (old snapshots)
- 0
-
- 0
-
- pg_stat_get_db_conflict_snapshotoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of queries canceled because of recovery conflict with old snapshots in database
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of queries canceled (pinned buffers)
- 0
-
- 0
-
- pg_stat_get_db_conflict_bufferpinoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of queries canceled because of recovery conflict with pinned buffers in database
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of rolled back transactions
- 0
-
- 0
-
- psql.db_rolledback
+ opcache[enable]
60
7
365
@@ -973,9 +295,12 @@
0
+
0
+ 0
+ 0
1
@@ -992,408 +317,20 @@
0
- PostgreSQL
+ OPcache
-
+
+ Service state
+
-
- Number of rows deleted
+ [OPcache] Enable CLI
0
0
- pg_stat_get_tuples_deletedoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of rows deleted from table
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of rows deleted (in current transaction)
- 0
-
- 0
-
- pg_stat_get_xact_tuples_deletedoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of rows deleted from table, in the current transaction
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of rows HOT-updated
- 0
-
- 0
-
- pg_stat_get_tuples_hot_updatedoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of rows HOT-updated in table
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of rows HOT-updated (in current transaction)
- 0
-
- 0
-
- pg_stat_get_xact_tuples_hot_updatedoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of rows HOT-updated in table, in the current transaction
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of rows inserted
- 0
-
- 0
-
- pg_stat_get_tuples_insertedoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of rows inserted into table
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of rows inserted (in current transaction)
- 0
-
- 0
-
- pg_stat_get_xact_tuples_insertedoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of rows inserted into table, in the current transaction
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of rows read by sequential scans/index entries returned
- 0
-
- 0
-
- pg_stat_get_tuples_returnedoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of rows read by sequential scans when argument is a table, or number of index entries returned when argument is an index
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of rows read by sequential scans/index entries returned (in current transaction)
- 0
-
- 0
-
- pg_stat_get_xact_tuples_returnedoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of rows read by sequential scans when argument is a table, or number of index entries returned when argument is an index, in the current transaction
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of rows updated (includes HOT updates)
- 0
-
- 0
-
- pg_stat_get_tuples_updatedoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of rows updated in table (includes HOT updates)
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of rows updated (includes HOT updates, in current transaction)
- 0
-
- 0
-
- pg_stat_get_xact_tuples_updatedoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of rows updated in table (includes HOT updates), in the current transaction
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of running postgres processes
- 0
-
- 0
-
- proc.num[postmaster,postgres]
+ opcache[enable_cli]
60
7
365
@@ -1402,9 +339,12 @@
0
+
0
+ 0
+ 0
1
@@ -1421,408 +361,20 @@
0
- PostgreSQL
+ OPcache
-
+
+ Service state
+
-
- Number of sequential/index scans
+ [OPcache] Enable file override
0
0
- pg_stat_get_numscansoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of sequential scans done when argument is a table, or number of index scans done when argument is an index
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of sequential/index scans (in current transaction)
- 0
-
- 0
-
- pg_stat_get_xact_numscansoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of sequential scans done when argument is a table, or number of index scans done when argument is an index, in the current transaction
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of table rows fetched by bitmap/index scans
- 0
-
- 0
-
- pg_stat_get_tuples_fetchedoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of table rows fetched by bitmap scans when argument is a table, or table rows fetched by simple index scans using the index when argument is an index
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of table rows fetched by bitmap/index scans (in current transaction)
- 0
-
- 0
-
- pg_stat_get_xact_tuples_fetchedoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of table rows fetched by bitmap scans when argument is a table, or table rows fetched by simple index scans using the index when argument is an index, in the current transaction
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of times table has been non-FULL vacuumed manually
- 0
-
- 0
-
- pg_stat_get_vacuum_countoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- The number of times this table has been non-FULL vacuumed manually
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of times this table has been analyzed by the autovacuum daemon
- 0
-
- 0
-
- pg_stat_get_autoanalyze_countoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- The number of times this table has been analyzed by the autovacuum daemon
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of times this table has been analyzed manually
- 0
-
- 0
-
- pg_stat_get_analyze_countoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- The number of times this table has been analyzed manually
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of times this table has been vacuumed by the autovacuum daemon
- 0
-
- 0
-
- pg_stat_get_autovacuum_countoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- The number of times this table has been vacuumed by the autovacuum daemon
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of transactions committed
- 0
-
- 0
-
- pg_stat_get_db_xact_commitoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of transactions committed in database
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of transactions rolled back
- 0
-
- 0
-
- pg_stat_get_db_xact_rollbackoid
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Number of transactions rolled back in databasec
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Number of tuples deleted
- 0
-
- 0
-
- psql.db_deleted
+ opcache[enable_file_override]
60
7
365
@@ -1831,9 +383,12 @@
0
+
0
+ 0
+ 0
1
@@ -1850,18 +405,18 @@
0
- PostgreSQL
+ OPcache
-
- Number of tuples fetched
+ [OPcache] Fast shutdown
0
0
- psql.db_fetched
+ opcache[fast_shutdown]
60
7
365
@@ -1870,9 +425,12 @@
0
+
0
+ 0
+ 0
1
@@ -1889,18 +447,18 @@
0
- PostgreSQL
+ OPcache
-
- Number of tuples inserted
+ [OPcache] Force restart timeout
0
0
- psql.db_inserted
+ opcache[force_restart_timeout]
60
7
365
@@ -1909,9 +467,12 @@
0
+
0
+ 0
+ 0
1
@@ -1928,29 +489,32 @@
0
- PostgreSQL
+ OPcache
-
- Number of tuples returned
+ [OPcache] Free memory
0
0
- psql.db_returned
+ opcache[free_memory]
60
7
365
0
3
-
+ B
0
+
0
+ 0
+ 0
1
@@ -1967,18 +531,18 @@
0
- PostgreSQL
+ OPcache
-
- Number of tuples updated
+ [OPcache] Hash restart
0
0
- psql.db_updated
+ opcache[hash_restart]
60
7
365
@@ -1987,9 +551,12 @@
0
+
0
+ 0
+ 0
1
@@ -2006,29 +573,1124 @@
0
- PostgreSQL
+ OPcache
-
- PostgreSQL server version
+ [OPcache] Hit rate
0
0
- psql.version
+ opcache[opcache_hit_rate]
+ 60
+ 7
+ 365
+ 0
+ 0
+
+ %
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] Hits
+ 0
+
+ 0
+
+ opcache[hits]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] Inherited hack
+ 0
+
+ 0
+
+ opcache[inherited_hack]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] ISU free memory
+ 0
+
+ 0
+
+ opcache[isu.free_memory]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] ISU used memory
+ 0
+
+ 0
+
+ opcache[isu.used_memory]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] Load comments
+ 0
+
+ 0
+
+ opcache[load_comments]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] Log verbosity level
+ 0
+
+ 0
+
+ opcache[log_verbosity_level]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] Manual restarts
+ 0
+
+ 0
+
+ opcache[manual_restarts]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] Max accelerated files
+ 0
+
+ 0
+
+ opcache[max_accelerated_files]
+ 60
+ 1800
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] Max cached keys
+ 0
+
+ 0
+
+ opcache[max_cached_keys]
+ 60
+ 1800
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] Max file size
+ 0
+
+ 0
+
+ opcache[max_file_size]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] Max wasted percentage
+ 0
+
+ 0
+
+ opcache[max_wasted_percentage]
+ 60
+ 7
+ 365
+ 0
+ 0
+
+ %
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] Memory consumption
+ 0
+
+ 0
+
+ opcache[memory_consumption]
+ 1800
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] Misses
+ 0
+
+ 0
+
+ opcache[misses]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] Number of cached keys
+ 0
+
+ 0
+
+ opcache[num_cached_keys]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] Number of cached scripts
+ 0
+
+ 0
+
+ opcache[num_cached_scripts]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] Number of strings
+ 0
+
+ 0
+
+ opcache[number_of_strings]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] Optimization level
+ 0
+
+ 0
+
+ opcache[optimization_level]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] Protect memory
+ 0
+
+ 0
+
+ opcache[protect_memory]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] Restarts
+ 0
+
+ 0
+
+ opcache[oom_restarts]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] Revalidate freq
+ 0
+
+ 0
+
+ opcache[revalidate_freq]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] Revalidate PATH
+ 0
+
+ 0
+
+ opcache[revalidate_path]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] Save comments
+ 0
+
+ 0
+
+ opcache[save_comments]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] Use CWD
+ 0
+
+ 0
+
+ opcache[use_cwd]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] Used memory
+ 0
+
+ 0
+
+ opcache[used_memory]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] Validate timestamps
+ 0
+
+ 0
+
+ opcache[validate_timestamps]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ OPcache
+
+
+
+
+ -
+ [OPcache] Version
+ 0
+
+ 0
+
+ opcache[version]
3600
- 7
+ 30
365
0
- 1
+ 4
0
+
0
+ 0
+ 0
1
@@ -2045,68 +1707,32 @@
0
- PostgreSQL
+ OPcache
-
- Total number of buffer allocations
+ [OPcache] Wasted memory
0
0
- pg_stat_get_buf_alloc
+ opcache[wasted_memory]
60
7
365
0
3
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
- Total number of buffer allocations
- 0
-
-
- PostgreSQL
-
-
-
-
- -
- Total number of commited transactions
- 0
-
- 0
-
- psql.tx_commited
- 60
- 7
- 365
- 0
- 3
-
-
+ B
0
+
0
+ 0
+ 0
1
@@ -2123,46 +1749,7 @@
0
- PostgreSQL
-
-
-
-
- -
- Total number of rolled back transactions
- 0
-
- 0
-
- psql.tx_rolledback
- 60
- 7
- 365
- 0
- 3
-
-
- 0
-
- 0
-
-
- 1
-
-
-
- 0
- 0
-
-
-
-
-
-
- 0
-
-
- PostgreSQL
+ OPcache
@@ -2176,28 +1763,8 @@
- {Template App PostgreSQL:psql.db_connections.last(0)}>300
- Heavy PostgreSQL database use on {HOSTNAME}
-
- 0
- 3
-
- 0
-
-
-
- {Template App PostgreSQL:proc.num[postmaster,postgres].last(0)}=0
- Service PostgreSQL is not running on {HOSTNAME}
-
- 0
- 5
-
- 0
-
-
-
- {Template App PostgreSQL:psql.version.diff(0)}>0
- Version of PostgreSQL server(d) was changed on {HOSTNAME}
+ {Template App OPcache:opcache[version].diff(0)}>0
+ OPcache version has changed
0
1
@@ -2208,7 +1775,7 @@
- PostgreSQL connections (active)
+ [OPcache] Hits & Misses
900
200
0.0000
@@ -2227,178 +1794,158 @@
0
- 1
- C80000
- 0
- 2
- 0
- -
- Template App PostgreSQL
- psql.db_connections
-
-
-
-
-
- PostgreSQL database size
- 900
- 200
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 1
- C80000
- 0
- 2
- 0
- -
- Template App PostgreSQL
- psql.db_size
-
-
-
-
-
- PostgreSQL transactions (main db)
- 900
- 200
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 1
- 00AA00
- 0
- 2
- 0
- -
- Template App PostgreSQL
- psql.db_commited
-
-
-
- 1
- 1
- EE0000
- 0
- 2
- 0
- -
- Template App PostgreSQL
- psql.db_rolledback
-
-
-
-
-
- PostgreSQL transactions (total)
- 900
- 200
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 1
- 00AA00
- 0
- 2
- 0
- -
- Template App PostgreSQL
- psql.tx_commited
-
-
-
- 1
- 1
- AA0000
- 0
- 2
- 0
- -
- Template App PostgreSQL
- psql.tx_rolledback
-
-
-
-
-
- PostgreSQL tuples statistics
- 900
- 200
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 0
- C80000
- 0
- 2
- 0
- -
- Template App PostgreSQL
- psql.db_deleted
-
-
-
- 1
0
00C800
0
2
0
-
- Template App PostgreSQL
- psql.db_fetched
+ Template App OPcache
+ opcache[hits]
+
+
+
+ 1
+ 0
+ C80000
+ 0
+ 2
+ 0
+ -
+ Template App OPcache
+ opcache[misses]
+
+
+
+
+
+ [OPcache] ISU memory usage
+ 900
+ 200
+ 0.0000
+ 100.0000
+ 1
+ 1
+ 1
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 0
+ 0
+ 0
+ 0
+
+
+ 0
+ 0
+ C80000
+ 0
+ 2
+ 0
+ -
+ Template App OPcache
+ opcache[isu.used_memory]
+
+
+
+ 1
+ 5
+ 00C800
+ 0
+ 2
+ 0
+ -
+ Template App OPcache
+ opcache[isu.free_memory]
+
+
+
+
+
+ [OPcache] Memory usage
+ 900
+ 200
+ 0.0000
+ 100.0000
+ 1
+ 1
+ 1
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 0
+ 0
+ 0
+ 0
+
+
+ 1
+ 5
+ 00C800
+ 0
+ 2
+ 0
+ -
+ Template App OPcache
+ opcache[free_memory]
+
+
+
+ 0
+ 0
+ C80000
+ 0
+ 2
+ 0
+ -
+ Template App OPcache
+ opcache[used_memory]
+
+
+
+
+
+ [OPcache] Number of items
+ 900
+ 200
+ 0.0000
+ 100.0000
+ 1
+ 1
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 0
+ 0
+ 0
+ 0
+
+
+ 0
+ 0
+ 00C800
+ 0
+ 2
+ 0
+ -
+ Template App OPcache
+ opcache[num_cached_keys]
+
+
+
+ 1
+ 0
+ C80000
+ 0
+ 2
+ 0
+ -
+ Template App OPcache
+ opcache[num_cached_scripts]
@@ -2409,8 +1956,8 @@
2
0
-
- Template App PostgreSQL
- psql.db_inserted
+ Template App OPcache
+ opcache[max_accelerated_files]
@@ -2421,8 +1968,8 @@
2
0
-
- Template App PostgreSQL
- psql.db_returned
+ Template App OPcache
+ opcache[max_cached_keys]
@@ -2433,8 +1980,64 @@
2
0
-
- Template App PostgreSQL
- psql.db_updated
+ Template App OPcache
+ opcache[number_of_strings]
+
+
+
+
+
+ [OPcache] Restarts
+ 900
+ 200
+ 0.0000
+ 100.0000
+ 1
+ 1
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 0
+ 0
+ 0
+ 0
+
+
+ 0
+ 0
+ 0000C8
+ 0
+ 2
+ 0
+ -
+ Template App OPcache
+ opcache[hash_restart]
+
+
+
+ 1
+ 0
+ C800C8
+ 0
+ 2
+ 0
+ -
+ Template App OPcache
+ opcache[manual_restarts]
+
+
+
+ 2
+ 0
+ 00C8C8
+ 0
+ 2
+ 0
+ -
+ Template App OPcache
+ opcache[oom_restarts]
diff --git a/templates/Template App RabbitMQ.xml b/templates/Template App RabbitMQ.xml
new file mode 100644
index 0000000..afb0fa7
--- /dev/null
+++ b/templates/Template App RabbitMQ.xml
@@ -0,0 +1,3847 @@
+
+
+ 2.0
+ 2014-08-04T13:35:21Z
+
+
+ Templates
+
+
+
+
+ Template App RabbitMQ
+ Template App RabbitMQ
+
+
+ Templates
+
+
+
+
+ Adobe Policy Server
+
+
+ RabbitMQ
+
+
+
+ -
+ RabbitMQ is enabled in autostart
+ 0
+
+ 0
+
+ chkconfig[rabbitmq-server]
+ 3600
+ 7
+ 1
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 3
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] AMQP Client
+ 0
+
+ 0
+
+ amqp_client
+ 1800
+ 7
+ 365
+ 0
+ 1
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] AMQP RMQ main port
+ 0
+
+ 0
+
+ net.tcp.port[127.0.0.1,5672]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+ Service state
+
+
+ -
+ [RabbitMQ] AMQP RMQ SSL main port
+ 0
+
+ 0
+
+ net.tcp.port[127.0.0.1,5671]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+ Service state
+
+
+ -
+ [RabbitMQ] bindings_count
+ 0
+
+ 0
+
+ rabbitmq[bindings_count]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] channels_confirm_count
+ 0
+
+ 0
+
+ rabbitmq[channels_confirm_count]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] channels_count
+ 0
+
+ 0
+
+ rabbitmq[channels_count]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] channels_transactional_count
+ 0
+
+ 0
+
+ rabbitmq[channels_transactional_count]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] connections_blocked
+ 0
+
+ 0
+
+ rabbitmq[connections_blocked]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] connections_blocking
+ 0
+
+ 0
+
+ rabbitmq[connections_blocking]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] connections_closed
+ 0
+
+ 0
+
+ rabbitmq[connections_closed]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] connections_closing
+ 0
+
+ 0
+
+ rabbitmq[connections_closing]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] connections_count
+ 0
+
+ 0
+
+ rabbitmq[connections_count]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] connections_opening
+ 0
+
+ 0
+
+ rabbitmq[connections_opening]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] connections_running
+ 0
+
+ 0
+
+ rabbitmq[connections_running]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] connections_starting
+ 0
+
+ 0
+
+ rabbitmq[connections_starting]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] connections_tuning
+ 0
+
+ 0
+
+ rabbitmq[connections_tuning]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] disk_free
+ 0
+
+ 0
+
+ disk_free
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] disk_free_limit
+ 0
+
+ 0
+
+ disk_free_limit
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] Embedded Rabbit Stomp Adapter
+ 0
+
+ 0
+
+ stomp
+ 1800
+ 7
+ 365
+ 1
+ 1
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] Erlang/OTP SSL application
+ 0
+
+ 0
+
+ erlang-ssl
+ 1800
+ 7
+ 365
+ 0
+ 1
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] exchanges_auto_delete_count
+ 0
+
+ 0
+
+ rabbitmq[exchanges_auto_delete_count]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] exchanges_count
+ 0
+
+ 0
+
+ rabbitmq[exchanges_count]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] exchanges_direct_count
+ 0
+
+ 0
+
+ rabbitmq[exchanges_direct_count]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] exchanges_durable_count
+ 0
+
+ 0
+
+ rabbitmq[exchanges_durable_count]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] exchanges_fanout_count
+ 0
+
+ 0
+
+ rabbitmq[exchanges_fanout_count]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] exchanges_headers_count
+ 0
+
+ 0
+
+ rabbitmq[exchanges_headers_count]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] exchanges_topic_count
+ 0
+
+ 0
+
+ rabbitmq[exchanges_topic_count]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] file_descriptors.total_limit
+ 0
+
+ 0
+
+ file_descriptors.total_limit
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] file_descriptors.total_used
+ 0
+
+ 0
+
+ file_descriptors.total_used
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] flashpolicyd.py
+ 0
+
+ 0
+
+ net.tcp.port[127.0.0.1,843]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ Adobe Policy Server
+
+
+
+ Service state
+
+
+ -
+ [RabbitMQ] Management Agent
+ 0
+
+ 0
+
+ rabbitmq_management_agent
+ 1800
+ 7
+ 365
+ 1
+ 1
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] Management Console
+ 0
+
+ 0
+
+ rabbitmq_management
+ 1800
+ 7
+ 365
+ 1
+ 1
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] Management Plugin
+ 0
+
+ 0
+
+ net.tcp.port[127.0.0.1,15672]
+ 60
+ 7
+ 365
+ 1
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+ Service state
+
+
+ -
+ [RabbitMQ] memory.atom
+ 0
+
+ 0
+
+ memory.atom
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] memory.binary
+ 0
+
+ 0
+
+ memory.binary
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] memory.code
+ 0
+
+ 0
+
+ memory.code
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] memory.connection_procs
+ 0
+
+ 0
+
+ memory.connection_procs
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] memory.mgmt_db
+ 0
+
+ 0
+
+ memory.mgmt_db
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] memory.mnesia
+ 0
+
+ 0
+
+ memory.mnesia
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] memory.msg_index
+ 0
+
+ 0
+
+ memory.msg_index
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] memory.other_ets
+ 0
+
+ 0
+
+ memory.other_ets
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] memory.other_proc
+ 0
+
+ 0
+
+ memory.other_proc
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] memory.other_system
+ 0
+
+ 0
+
+ memory.other_system
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] memory.plugins
+ 0
+
+ 0
+
+ memory.plugins
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] memory.queue_procs
+ 0
+
+ 0
+
+ memory.queue_procs
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] memory.total
+ 0
+
+ 0
+
+ memory.total
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] messages_count
+ 0
+
+ 0
+
+ rabbitmq[messages_count]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] messages_ready_count
+ 0
+
+ 0
+
+ rabbitmq[messages_ready_count]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] messages_unacknowledged_count
+ 0
+
+ 0
+
+ rabbitmq[messages_unacknowledged_count]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] MochiMedia Web Server
+ 0
+
+ 0
+
+ mochiweb
+ 1800
+ 7
+ 365
+ 1
+ 1
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] Port Mapper Daemon (epmd)
+ 0
+
+ 0
+
+ net.tcp.port[127.0.0.1,4369]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+ Service state
+
+
+ -
+ [RabbitMQ] processes.limit
+ 0
+
+ 0
+
+ processes.limit
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] processes.used
+ 0
+
+ 0
+
+ processes.used
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] queues_auto_delete_count
+ 0
+
+ 0
+
+ rabbitmq[queues_auto_delete_count]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] queues_durable_count
+ 0
+
+ 0
+
+ rabbitmq[queues_durable_count]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] queues_memory_allocated
+ 0
+
+ 0
+
+ rabbitmq[queues_memory_allocated]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] queue_consumers_count
+ 0
+
+ 0
+
+ rabbitmq[queue_consumers_count]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] Rabbit WEB-STOMP - WebSockets to Stomp adapter
+ 0
+
+ 0
+
+ web-stomp
+ 1800
+ 7
+ 365
+ 1
+ 1
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] run_queue
+ 0
+
+ 0
+
+ run_queue
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] sockets_limit
+ 0
+
+ 0
+
+ sockets_limit
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] sockets_used
+ 0
+
+ 0
+
+ sockets_used
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] Status
+ 0
+
+ 0
+
+ rabbitmq_status
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+ If 0 then ok, if different then bad
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] uptime
+ 0
+
+ 0
+
+ uptime
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] Version
+ 0
+
+ 0
+
+ rabbit
+ 1800
+ 7
+ 365
+ 0
+ 1
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] vm_memory_high_watermark
+ 0
+
+ 0
+
+ vm_memory_high_watermark
+ 60
+ 7
+ 365
+ 0
+ 0
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] vm_memory_limit
+ 0
+
+ 0
+
+ vm_memory_limit
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] Web Dispatcher
+ 0
+
+ 0
+
+ rabbitmq_web_dispatch
+ 1800
+ 7
+ 365
+ 1
+ 1
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+ -
+ [RabbitMQ] Webmachine
+ 0
+
+ 0
+
+ webmachine
+ 1800
+ 7
+ 365
+ 1
+ 1
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ RabbitMQ
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {Template App RabbitMQ:net.tcp.port[127.0.0.1,843].last(0)}=0
+ Adobe Policy Server is down
+
+ 0
+ 4
+
+ 0
+
+
+
+ {Template App RabbitMQ:net.tcp.port[127.0.0.1,5672].last(0)}=0
+ AMQP RMQ is down
+
+ 0
+ 4
+
+ 0
+
+
+
+ {Template App RabbitMQ:net.tcp.port[127.0.0.1,5671].last(0)}=0
+ AMQP RMQ SSL is down
+
+ 0
+ 4
+
+ 0
+
+
+
+ {Template App RabbitMQ:stomp.diff(0)}>0
+ Embedded Rabbit Stomp Adapter was changed
+
+ 1
+ 1
+
+ 0
+
+
+
+ {Template App RabbitMQ:erlang-ssl.diff(0)}>0
+ Erlang/OTP SSL application was changed
+
+ 0
+ 1
+
+ 0
+
+
+
+ {Template App RabbitMQ:net.tcp.port[127.0.0.1,15672].last(0)}=0
+ Management Plugin is down
+
+ 1
+ 2
+
+ 0
+
+
+
+ {Template App RabbitMQ:mochiweb.diff(0)}>0
+ MochiMedia Web Server was changed
+
+ 0
+ 1
+
+ 0
+
+
+
+ {Template App RabbitMQ:net.tcp.port[127.0.0.1,4369].last(0)}=0
+ Port Mapper Daemon (epmd) is down
+
+ 0
+ 4
+
+ 0
+
+
+
+ {Template App RabbitMQ:amqp_client.diff(0)}>0
+ RabbitMQ AMQP Client was changed
+
+ 0
+ 1
+
+ 0
+
+
+
+ {Template App RabbitMQ:rabbitmq_status.last()}#0
+ RabbitMQ is down
+
+ 0
+ 4
+
+ 0
+
+
+
+ {Template App RabbitMQ:chkconfig[rabbitmq-server].last(0)}=0
+ RabbitMQ is not enabled in autostart
+
+ 0
+ 2
+
+ 0
+
+
+
+ {Template App RabbitMQ:rabbitmq_management_agent.diff(0)}>0
+ RabbitMQ Management Agent was changed
+
+ 0
+ 1
+
+ 0
+
+
+
+ {Template App RabbitMQ:rabbitmq_management.diff(0)}>0
+ RabbitMQ Management Console was changed
+
+ 0
+ 1
+
+ 0
+
+
+
+ {Template App RabbitMQ:rabbit.diff(0)}>0
+ RabbitMQ was changed
+
+ 0
+ 1
+
+ 0
+
+
+
+ {Template App RabbitMQ:rabbitmq_web_dispatch.diff(0)}>0
+ RabbitMQ Web Dispatcher was changed
+
+ 0
+ 1
+
+ 0
+
+
+
+ {Template App RabbitMQ:webmachine.diff(0)}>0
+ Webmachine was changed
+
+ 0
+ 1
+
+ 0
+
+
+
+
+
+ [RabbitMQ] Channels
+ 900
+ 200
+ 0.0000
+ 100.0000
+ 1
+ 1
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 0
+ 0
+ 0
+ 0
+
+
+ 0
+ 0
+ C80000
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ rabbitmq[channels_confirm_count]
+
+
+
+ 1
+ 0
+ 00C800
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ rabbitmq[channels_count]
+
+
+
+ 2
+ 0
+ 0000C8
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ rabbitmq[channels_transactional_count]
+
+
+
+
+
+ [RabbitMQ] Connections
+ 900
+ 200
+ 0.0000
+ 100.0000
+ 1
+ 1
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 0
+ 0
+ 0
+ 0
+
+
+ 0
+ 0
+ C80000
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ rabbitmq[connections_blocked]
+
+
+
+ 1
+ 0
+ 00C800
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ rabbitmq[connections_blocking]
+
+
+
+ 2
+ 0
+ 0000C8
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ rabbitmq[connections_closed]
+
+
+
+ 3
+ 0
+ C800C8
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ rabbitmq[connections_closing]
+
+
+
+ 4
+ 0
+ 00C8C8
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ rabbitmq[connections_count]
+
+
+
+ 5
+ 0
+ C8C800
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ rabbitmq[connections_opening]
+
+
+
+ 6
+ 0
+ C8C8C8
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ rabbitmq[connections_running]
+
+
+
+ 7
+ 0
+ 960000
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ rabbitmq[connections_starting]
+
+
+
+ 8
+ 0
+ 009600
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ rabbitmq[connections_tuning]
+
+
+
+
+
+ [RabbitMQ] Disk usage
+ 900
+ 200
+ 0.0000
+ 100.0000
+ 1
+ 1
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 0
+ 0
+ 0
+ 0
+
+
+ 0
+ 5
+ 00C800
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ disk_free
+
+
+
+ 1
+ 0
+ C80000
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ disk_free_limit
+
+
+
+
+
+ [RabbitMQ] Exchanges
+ 900
+ 200
+ 0.0000
+ 100.0000
+ 1
+ 1
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 0
+ 0
+ 0
+ 0
+
+
+ 0
+ 0
+ C80000
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ rabbitmq[exchanges_auto_delete_count]
+
+
+
+ 1
+ 0
+ 00C800
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ rabbitmq[exchanges_count]
+
+
+
+ 2
+ 0
+ 0000C8
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ rabbitmq[exchanges_direct_count]
+
+
+
+ 3
+ 0
+ C800C8
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ rabbitmq[exchanges_durable_count]
+
+
+
+ 4
+ 0
+ 00C8C8
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ rabbitmq[exchanges_fanout_count]
+
+
+
+ 5
+ 0
+ C8C800
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ rabbitmq[exchanges_headers_count]
+
+
+
+ 6
+ 0
+ C8C8C8
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ rabbitmq[exchanges_topic_count]
+
+
+
+
+
+ [RabbitMQ] File descriptors
+ 900
+ 200
+ 0.0000
+ 100.0000
+ 1
+ 1
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 0
+ 0
+ 0
+ 0
+
+
+ 0
+ 0
+ C80000
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ file_descriptors.total_limit
+
+
+
+ 1
+ 5
+ 00C800
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ file_descriptors.total_used
+
+
+
+
+
+ [RabbitMQ] Memory usage
+ 900
+ 200
+ 0.0000
+ 100.0000
+ 1
+ 1
+ 1
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 0
+ 0
+ 0
+ 0
+
+
+ 0
+ 0
+ C80000
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ memory.atom
+
+
+
+ 1
+ 0
+ 00C800
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ memory.binary
+
+
+
+ 2
+ 0
+ 0000C8
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ memory.code
+
+
+
+ 3
+ 0
+ C800C8
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ memory.connection_procs
+
+
+
+ 4
+ 0
+ 00C8C8
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ memory.mgmt_db
+
+
+
+ 5
+ 0
+ C8C800
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ memory.mnesia
+
+
+
+ 6
+ 0
+ C8C8C8
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ memory.msg_index
+
+
+
+ 7
+ 0
+ 960000
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ memory.other_ets
+
+
+
+ 8
+ 0
+ 009600
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ memory.other_proc
+
+
+
+ 9
+ 0
+ 000096
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ memory.other_system
+
+
+
+ 10
+ 0
+ 960096
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ memory.plugins
+
+
+
+ 11
+ 0
+ 009696
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ memory.queue_procs
+
+
+
+
+
+ [RabbitMQ] Messages
+ 900
+ 200
+ 0.0000
+ 100.0000
+ 1
+ 1
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 0
+ 0
+ 0
+ 0
+
+
+ 0
+ 0
+ C80000
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ rabbitmq[messages_count]
+
+
+
+ 1
+ 0
+ 00C800
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ rabbitmq[messages_ready_count]
+
+
+
+ 2
+ 0
+ 0000C8
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ rabbitmq[messages_unacknowledged_count]
+
+
+
+
+
+ [RabbitMQ] Processes
+ 900
+ 200
+ 0.0000
+ 100.0000
+ 1
+ 1
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 0
+ 0
+ 0
+ 0
+
+
+ 0
+ 0
+ C80000
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ processes.limit
+
+
+
+ 1
+ 5
+ 00C800
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ processes.used
+
+
+
+
+
+ [RabbitMQ] Queues
+ 900
+ 200
+ 0.0000
+ 100.0000
+ 1
+ 1
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 0
+ 0
+ 0
+ 0
+
+
+ 0
+ 0
+ C80000
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ rabbitmq[queues_auto_delete_count]
+
+
+
+ 1
+ 0
+ 00C800
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ rabbitmq[queues_durable_count]
+
+
+
+ 2
+ 0
+ 0000C8
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ rabbitmq[queues_memory_allocated]
+
+
+
+
+
+ [RabbitMQ] Sockets
+ 900
+ 200
+ 0.0000
+ 100.0000
+ 1
+ 1
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 0
+ 0
+ 0
+ 0
+
+
+ 0
+ 0
+ C80000
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ sockets_limit
+
+
+
+ 1
+ 5
+ 00C800
+ 0
+ 2
+ 0
+ -
+ Template App RabbitMQ
+ sockets_used
+
+
+
+
+
+
diff --git a/templates/App_cPanel.xml b/templates/Template App cPanel.xml
similarity index 100%
rename from templates/App_cPanel.xml
rename to templates/Template App cPanel.xml
diff --git a/templates/Template Device BigIP F5.xml b/templates/Template Device BigIP F5.xml
new file mode 100644
index 0000000..b759b26
--- /dev/null
+++ b/templates/Template Device BigIP F5.xml
@@ -0,0 +1,3138 @@
+
+
+ 2.0
+ 2014-08-04T13:35:36Z
+
+
+ Templates
+
+
+
+
+ Template Device BigIP F5
+ Template Device BigIP F5
+
+
+ Templates
+
+
+
+
+ CPU
+
+
+ General
+
+
+ Interfaces
+
+
+ Network
+
+
+ Pool
+
+
+ Storage
+
+
+ Virtual Server
+
+
+
+ -
+ Chassis fan (first) speed
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.3.2.1.2.1.3.1
+ sysChassisFanSpeed.1
+ 60
+ 30
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ General
+
+
+
+
+ -
+ Chassis fan (first) status
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.3.2.1.2.1.2.1
+ sysChassisFanStatus.1
+ 60
+ 30
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ General
+
+
+
+
+ -
+ Chassis fan (second) speed
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.3.2.1.2.1.3.2
+ sysChassisFanSpeed.2
+ 60
+ 30
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ General
+
+
+
+
+ -
+ Chassis fan (second) status
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.3.2.1.2.1.2.2
+ sysChassisFanStatus.2
+ 60
+ 30
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ General
+
+
+
+
+ -
+ Chassis fan (third) speed
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.3.2.1.2.1.3.3
+ sysChassisFanSpeed.3
+ 60
+ 30
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ General
+
+
+
+
+ -
+ Chassis fan (third) status
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.3.2.1.2.1.2.3
+ sysChassisFanStatus.3
+ 60
+ 30
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ General
+
+
+
+
+ -
+ CPU fan speed
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.3.1.2.1.3.1
+ sysCpuFanSpeed
+ 60
+ 30
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ CPU
+
+
+
+
+ -
+ CPU iowait
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.1.2.20.28.0
+ sysGlobalHostCpuIowait1m
+ 60
+ 30
+ 365
+ 0
+ 3
+
+ %
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ CPU
+
+
+
+
+ -
+ CPU irq
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.1.2.20.26.0
+ sysGlobalHostCpuIrq1m
+ 60
+ 30
+ 365
+ 0
+ 3
+
+ %
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ CPU
+
+
+
+
+ -
+ CPU nice
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.1.2.20.23.0
+ sysGlobalHostCpuNice1m
+ 60
+ 30
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ CPU
+
+
+
+
+ -
+ CPU softirq
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.1.2.20.27.0
+ sysGlobalHostCpuSoftirq1m
+ 60
+ 30
+ 365
+ 0
+ 3
+
+ %
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ CPU
+
+
+
+
+ -
+ CPU stolen
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.1.2.20.40.0
+ sysGlobalHostCpuStolen1m
+ 60
+ 30
+ 365
+ 0
+ 3
+
+ %
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ CPU
+
+
+
+
+ -
+ CPU system
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.1.2.20.24.0
+ sysGlobalHostCpuSystem1m
+ 60
+ 30
+ 365
+ 0
+ 3
+
+ %
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+ 161
+
+ 0
+
+
+ CPU
+
+
+
+
+ -
+ CPU temperature
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.3.1.2.1.2.1
+ sysCpuTemperature
+ 60
+ 30
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ CPU
+
+
+
+
+ -
+ CPU usage ratio 1m
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.1.2.20.29.0
+ sysGlobalHostCpuUsageRatio1m
+ 60
+ 30
+ 365
+ 0
+ 3
+
+ %
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ CPU
+
+
+
+
+ -
+ CPU usage ratio 5m
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.1.2.20.37.0
+ sysGlobalHostCpuUsageRatio5m
+ 60
+ 30
+ 365
+ 0
+ 3
+
+ %
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ CPU
+
+
+
+
+ -
+ CPU usage ratio 5s
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.1.2.20.21.0
+ sysGlobalHostCpuUsageRatio5s
+ 10
+ 30
+ 365
+ 0
+ 3
+
+ %
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ CPU
+
+
+
+
+ -
+ CPU user
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.1.2.20.22.0
+ sysGlobalHostCpuUser1m
+ 60
+ 30
+ 365
+ 0
+ 3
+
+ %
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ CPU
+
+
+
+
+ -
+ ICMP In
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.1.2.5.3.0
+ sysIcmpStatRx
+ 60
+ 30
+ 365
+ 0
+ 3
+
+
+ 1
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+ The total number of ICMP messages which the entity
+received.
+ 0
+
+
+ Network
+
+
+
+
+ -
+ ICMP Out
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.1.2.5.2.0
+ sysIcmpStatTx
+ 60
+ 30
+ 365
+ 0
+ 3
+
+
+ 1
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+ The total number of ICMP messages which this entity attempted to send.
+ 0
+
+
+ Network
+
+
+
+
+ -
+ IP In
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.1.2.7.3.0
+ sysIpStatRx
+ 60
+ 30
+ 365
+ 0
+ 3
+
+
+ 1
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+ The total number of received datagrams from interfaces.
+ 0
+
+
+ Network
+
+
+
+
+ -
+ IP Out
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.1.2.7.2.0
+ sysIpStatTx
+ 60
+ 30
+ 365
+ 0
+ 3
+
+
+ 1
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+ The total number of transmitted datagrams to interfaces.
+ 0
+
+
+ Network
+
+
+
+
+ -
+ Memory Total
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.7.1.1.0
+ sysHostMemoryTotal
+ 3600
+ 30
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ General
+
+
+
+
+ -
+ Memory Used
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.7.1.2.0
+ sysHostMemoryUsed
+ 60
+ 30
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ General
+
+
+
+
+ -
+ Power supply (first) status
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.3.2.2.2.1.2.1
+ sysChassisPowerSupplyStatus.1
+ 60
+ 30
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ General
+
+
+
+
+ -
+ Power supply (second) status
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.3.2.2.2.1.2.2
+ sysChassisPowerSupplyStatus.2
+ 60
+ 30
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ General
+
+
+
+
+ -
+ System name
+ 4
+ public
+ 0
+ .1.3.6.1.2.1.1.5.0
+ sysName
+ 60
+ 30
+ 365
+ 0
+ 1
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 8
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ General
+
+
+
+
+ -
+ sysUpTime
+ 4
+ public
+ 1
+ 1.3.6.1.2.1.1.3.0
+ sysUpTimeInstance
+ 300
+ 30
+ 365
+ 0
+ 3
+
+ s
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 0.01
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ General
+
+
+
+
+ -
+ TMM Memory Total
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.1.2.1.44.0
+ sysStatMemoryTotal
+ 3600
+ 30
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ General
+
+
+
+
+ -
+ TMM Memory Used
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.3375.2.1.1.2.1.45.0
+ sysStatMemoryUsed
+ 60
+ 30
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ General
+
+
+
+
+ -
+ Total bytes in
+ 4
+ public
+ 1
+ .1.3.6.1.4.1.3375.2.1.1.2.21.4.0
+ sysGlobalTmmStatClientBytesIn
+ 15
+ 30
+ 365
+ 0
+ 3
+
+ bps
+ 1
+
+
+ 0
+ 0
+
+ 0
+
+ 8
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ Network
+
+
+
+
+ -
+ Total bytes out
+ 4
+ public
+ 1
+ .1.3.6.1.4.1.3375.2.1.1.2.21.6.0
+ sysGlobalTmmStatClientBytesOut
+ 15
+ 30
+ 365
+ 0
+ 3
+
+ bps
+ 1
+
+
+ 0
+ 0
+
+ 0
+
+ 8
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ Network
+
+
+
+
+
+
+
+ Interfaces
+ 4
+ {$SNMP_COMMUNITY}
+ .1.3.6.1.4.1.3375.2.1.2.4.3.2.1.2
+ sysIfName
+ 60
+ 1
+
+
+
+ 0
+ 0
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+ :
+ 14
+
+
+
+ $1 bytes in
+ 4
+ {$SNMP_COMMUNITY}
+ 1
+ .1.3.6.1.4.1.3375.2.1.2.4.5.3.1.6.{#SNMPINDEX}
+ sysInterfaceStatBytesIn.[{#SNMPVALUE}]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ bps
+ 1
+
+
+ 0
+ 0
+
+ 0
+
+ 8
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ Interfaces
+
+
+
+
+
+ $1 bytes out
+ 4
+ {$SNMP_COMMUNITY}
+ 1
+ .1.3.6.1.4.1.3375.2.1.2.4.5.3.1.10.{#SNMPINDEX}
+ sysInterfaceStatBytesOut.[{#SNMPVALUE}]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ bps
+ 1
+
+
+ 0
+ 0
+
+ 0
+
+ 8
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ Interfaces
+
+
+
+
+
+ $1 description
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ .1.3.6.1.4.1.3375.2.1.2.4.1.2.1.1.{#SNMPINDEX}
+ sysInterfaceName[{#SNMPVALUE}]
+ 3600
+ 7
+ 365
+ 0
+ 1
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ Interfaces
+
+
+
+
+
+ $1 interface status
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ .1.3.6.1.4.1.3375.2.1.2.4.1.2.1.17.{#SNMPINDEX}
+ sysInterfaceStatus[{#SNMPVALUE}]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+ The current operational state of the interface.
+ 0
+
+
+ Interfaces
+
+
+
+
+
+ $1 speed
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ .1.3.6.1.4.1.3375.2.1.2.4.1.2.1.4.{#SNMPINDEX}
+ sysInterfaceMediaActiveSpeed[{#SNMPVALUE}]
+ 3600
+ 1
+ 365
+ 0
+ 3
+
+ bps
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ Interfaces
+
+
+
+
+
+
+
+ {Template Device BigIP F5:sysInterfaceStatus[{#SNMPVALUE}].last(0)}#0
+ Interface down/malfunctioned on {#SNMPVALUE}
+
+ 0
+ 2
+
+ 0
+
+
+
+
+ Inteface {#SNMPVALUE} traffic
+ 900
+ 200
+ 0.0000
+ 100.0000
+ 1
+ 1
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 1
+ 0
+ 0
+ 0
+
+
+ 0
+ 5
+ C80000
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysInterfaceStatBytesIn.[{#SNMPVALUE}]
+
+
+
+ 1
+ 5
+ 00C800
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysInterfaceStatBytesOut.[{#SNMPVALUE}]
+
+
+
+
+
+
+
+
+ Pools
+ 4
+ {$SNMP_COMMUNITY}
+ .1.3.6.1.4.1.3375.2.2.5.1.2.1.1
+ ltmPoolName
+ 60
+ 0
+
+
+
+ 0
+ 0
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+ 161
+ :
+ 0
+
+
+
+ Connections on $1
+ 4
+ {$SNMP_COMMUNITY}
+ 1
+ .1.3.6.1.4.1.3375.2.2.5.2.3.1.7."{#SNMPVALUE}"
+ ltmPoolStatServerTotConns.["{#SNMPVALUE}"]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 1
+
+
+ 0
+ 0
+
+ 0
+
+ 8
+
+
+
+ 0
+ 0
+
+
+
+
+ 161
+
+ 0
+
+
+ Pool
+
+
+
+
+
+ Pool Active Member Count $1
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ .1.3.6.1.4.1.3375.2.2.5.1.2.1.8."{#SNMPVALUE}"
+ ltmPoolActiveMemberCnt.["{#SNMPVALUE}"]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+ 161
+
+ 0
+
+
+ Pool
+
+
+
+
+
+ Pool Availability Status $1
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ .1.3.6.1.4.1.3375.2.2.5.5.2.1.2."{#SNMPVALUE}"
+ ltmPoolStatusAvailState.["{#SNMPVALUE}"]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+ 161
+
+ 0
+
+
+ Pool
+
+
+
+ F5 ltmPoolStatusAvailState
+
+
+
+ Pool Availability Status Detail $1
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ .1.3.6.1.4.1.3375.2.2.5.5.2.1.5."{#SNMPVALUE}"
+ ltmPoolStatusDetailReason.["{#SNMPVALUE}"]
+ 60
+ 1
+ 365
+ 0
+ 4
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+ 50/1-7,00:00-24:00
+
+
+ 0
+ 0
+
+
+
+
+ 161
+
+ 0
+
+
+ Pool
+
+
+
+
+
+ Pool Bytes In $1
+ 4
+ {$SNMP_COMMUNITY}
+ 1
+ .1.3.6.1.4.1.3375.2.2.5.2.3.1.3."{#SNMPVALUE}"
+ ltmPoolStatServerBytesIn.["{#SNMPVALUE}"]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ bps
+ 1
+
+
+ 0
+ 0
+
+ 0
+
+ 8
+
+
+
+ 0
+ 0
+
+
+
+
+ 161
+
+ 0
+
+
+ Pool
+
+
+
+
+
+ Pool Bytes Out $1
+ 4
+ {$SNMP_COMMUNITY}
+ 1
+ .1.3.6.1.4.1.3375.2.2.5.2.3.1.5."{#SNMPVALUE}"
+ ltmPoolStatServerBytesOut.["{#SNMPVALUE}"]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ bps
+ 1
+
+
+ 0
+ 0
+
+ 0
+
+ 8
+
+
+
+ 0
+ 0
+
+
+
+
+ 161
+
+ 0
+
+
+ Pool
+
+
+
+
+
+ Pool Member Count $1
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ .1.3.6.1.4.1.3375.2.2.5.1.2.1.23."{#SNMPVALUE}"
+ ltmPoolMemberCnt.["{#SNMPVALUE}"]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+ 161
+
+ 0
+
+
+ Pool
+
+
+
+
+
+
+
+ {Template Device BigIP F5:ltmPoolActiveMemberCnt.["{#SNMPVALUE}"].last(0)}=0 & {Template Device BigIP F5:ltmPoolMemberCnt.["{#SNMPVALUE}"].last(0)}#0
+ Pool active member count is zero on {#SNMPVALUE}
+
+ 0
+ 3
+
+ 0
+
+
+ {Template Device BigIP F5:ltmPoolActiveMemberCnt.["{#SNMPVALUE}"].last()}#{Template Device BigIP F5:ltmPoolMemberCnt.["{#SNMPVALUE}"].last()}
+ Pool members disabled ({ITEM.LASTVALUE}/{ITEM.LASTVALUE2}) on {#SNMPVALUE}
+
+ 0
+ 2
+
+ 0
+
+
+ {Template Device BigIP F5:ltmPoolStatusAvailState.["{#SNMPVALUE}"].last()}#1
+ {ITEM.LASTVALUE}) on {#SNMPVALUE}
+
+ 0
+ 2
+
+ 0
+
+
+
+
+ Pool traffic - {#SNMPVALUE}
+ 900
+ 200
+ 0.0000
+ 100.0000
+ 1
+ 1
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 1
+ 0
+ 0
+ 0
+
+
+ 0
+ 5
+ C80000
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ ltmPoolStatServerBytesIn.["{#SNMPVALUE}"]
+
+
+
+ 1
+ 5
+ 6666FF
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ ltmPoolStatServerBytesOut.["{#SNMPVALUE}"]
+
+
+
+
+
+
+
+
+ Storage
+ 4
+ {$SNMP_COMMUNITY}
+ .1.3.6.1.4.1.3375.2.1.7.3.2.1.1
+ sysHostDiskPartition
+ 60
+ 0
+
+
+
+ 0
+ 0
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+ :
+ 14
+
+
+
+ $1 Storage free
+ 4
+ {$SNMP_COMMUNITY}
+ 1
+ .1.3.6.1.4.1.3375.2.1.7.3.2.1.4.{#SNMPINDEX}
+ sysHostDiskFreeBlocks[{#SNMPVALUE}]
+ 300
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1024
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ Storage
+
+
+
+
+
+ $1 Storage size
+ 4
+ {$SNMP_COMMUNITY}
+ 1
+ .1.3.6.1.4.1.3375.2.1.7.3.2.1.3.{#SNMPINDEX}
+ sysHostDiskTotalBlocks[{#SNMPVALUE}]
+ 3600
+ 7
+ 365
+ 0
+ 3
+
+ B
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1024
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ Storage
+
+
+
+
+
+ {#SNMPVALUE} Storage % free
+ 15
+
+ 1
+
+ hrStoragepFree
+ 300
+ 7
+ 365
+ 0
+ 0
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 100
+
+ {Template Device BigIP F5:sysHostDiskFreeBlocks[{#SNMPVALUE}].last()}/{Template Device BigIP F5:sysHostDiskTotalBlocks[{#SNMPVALUE}].last()}
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ Storage
+
+
+
+
+
+
+
+ {Template Device BigIP F5:hrStoragepFree.last()}<20
+ {#SNMPVALUE} free space less than 20%
+
+ 0
+ 2
+
+ 0
+
+
+
+
+ Storage usage - {#SNMPVALUE}
+ 900
+ 200
+ 0.0000
+ 100.0000
+ 1
+ 1
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 1
+ 2
+ 0
+
+ Template Device BigIP F5
+ sysHostDiskTotalBlocks[{#SNMPVALUE}]
+
+
+
+ 1
+ 1
+ DD0000
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysHostDiskFreeBlocks[{#SNMPVALUE}]
+
+
+
+ 0
+ 1
+ 00C800
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysHostDiskTotalBlocks[{#SNMPVALUE}]
+
+
+
+
+
+
+
+
+ Virtual Servers
+ 4
+ {$SNMP_COMMUNITY}
+ .1.3.6.1.4.1.3375.2.2.10.1.2.1.1
+ ltmVirtualServ
+ 3600
+ 1
+
+
+
+ 0
+ 0
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+ 161
+ :
+ 14
+
+
+
+ Virtual Sever Bytes In $1
+ 4
+ {$SNMP_COMMUNITY}
+ 1
+ .1.3.6.1.4.1.3375.2.2.10.2.3.1.7."{#SNMPVALUE}"
+ ltmVirtualServStatClientBytesIn.["{#SNMPVALUE}"]
+ 60
+ 90
+ 365
+ 0
+ 3
+
+ bit/s
+ 1
+
+
+ 0
+ 0
+
+ 0
+
+ 8
+
+
+
+ 0
+ 0
+
+
+
+
+ 161
+
+ 0
+
+
+ Virtual Server
+
+
+
+
+
+ Virtual Sever Bytes Out $1
+ 4
+ {$SNMP_COMMUNITY}
+ 1
+ .1.3.6.1.4.1.3375.2.2.10.2.3.1.9."{#SNMPVALUE}"
+ ltmVirtualServStatClientBytesOut.["{#SNMPVALUE}"]
+ 60
+ 90
+ 365
+ 0
+ 3
+
+ bit/s
+ 1
+
+
+ 0
+ 0
+
+ 0
+
+ 8
+
+
+
+ 0
+ 0
+
+
+
+
+ 161
+
+ 0
+
+
+ Virtual Server
+
+
+
+
+
+ Virtual Sever Connections $1
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ .1.3.6.1.4.1.3375.2.2.10.2.3.1.11."{#SNMPVALUE}"
+ ltmVirtualServStatClientTotConns.["{#SNMPVALUE}"]
+ 60
+ 90
+ 365
+ 0
+ 0
+
+ conn/s
+ 1
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+ 161
+
+ 0
+
+
+ Virtual Server
+
+
+
+
+
+
+
+
+ Virtual Server Connections {#SNMPVALUE}
+ 900
+ 200
+ 0.0000
+ 100.0000
+ 1
+ 1
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 0
+ 0
+ 0
+ 0
+
+
+ 0
+ 0
+ C800C8
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ ltmVirtualServStatClientTotConns.["{#SNMPVALUE}"]
+
+
+
+
+
+ Virtual Server Traffic {#SNMPVALUE}
+ 900
+ 200
+ 0.0000
+ 100.0000
+ 1
+ 1
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 0
+ 0
+ 0
+ 0
+
+
+ 0
+ 1
+ 33FF33
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ ltmVirtualServStatClientBytesIn.["{#SNMPVALUE}"]
+
+
+
+ 1
+ 2
+ 3333FF
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ ltmVirtualServStatClientBytesOut.["{#SNMPVALUE}"]
+
+
+
+
+
+
+
+
+
+
+ {$SNMP_COMMUNITY}
+ public
+
+
+
+
+
+
+
+
+ {Template Device BigIP F5:sysName.diff(0)}>0
+ Active Load Balancer has changed
+
+ 0
+ 4
+
+ 0
+
+
+
+ {Template Device BigIP F5:sysChassisFanStatus.1.last()}#1 | {Template Device BigIP F5:sysChassisFanStatus.2.last()}#1 | {Template Device BigIP F5:sysChassisFanStatus.3.last()}#1
+ Chassis fan malfunction
+
+ 0
+ 4
+
+ 0
+
+
+
+ {Template Device BigIP F5:sysCpuTemperature.last()}>50
+ High CPU temperature
+
+ 0
+ 4
+
+ 0
+
+
+
+ {Template Device BigIP F5:sysGlobalHostCpuUsageRatio1m.last()}>90
+ High CPU usage (>50%)
+
+ 0
+ 4
+
+ 0
+
+
+
+ {Template Device BigIP F5:sysName.diff(0)}>0
+ Hostname has changed
+
+ 0
+ 1
+
+ 0
+
+
+
+ {Template Device BigIP F5:sysChassisPowerSupplyStatus.1.last()}#1 | {Template Device BigIP F5:sysChassisPowerSupplyStatus.2.last()}#1
+ Power supply malfunction
+
+ 0
+ 2
+
+ 1
+
+
+
+ {Template Device BigIP F5:sysUpTimeInstance.last(0)}<600
+ Reloaded
+
+ 0
+ 1
+ {HOST.NAME} reloaded
+ 0
+
+
+
+ {Template Device BigIP F5:sysGlobalTmmStatClientBytesIn.last()}>314572800
+ Traffic In over 300Mbps
+
+ 0
+ 3
+
+ 1
+
+
+
+ {Template Device BigIP F5:sysGlobalTmmStatClientBytesIn.last()}>786432000
+ Traffic Out over 750Mbps
+
+ 0
+ 4
+
+ 1
+
+
+
+
+
+ CPU temperature
+ 900
+ 200
+ 0.0000
+ 100.0000
+ 1
+ 1
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 1
+ 0
+ 0
+ 0
+
+
+ 0
+ 5
+ EE0000
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysCpuTemperature
+
+
+
+
+
+ CPU usage ratio
+ 900
+ 200
+ 0.0000
+ 100.0000
+ 1
+ 1
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 0
+ 0
+ 0
+ 0
+
+
+ 0
+ 0
+ 009600
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysGlobalHostCpuUsageRatio1m
+
+
+
+ 1
+ 0
+ 000096
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysGlobalHostCpuUsageRatio5m
+
+
+
+ 2
+ 0
+ 960096
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysGlobalHostCpuUsageRatio5s
+
+
+
+
+
+ CPU utilization
+ 900
+ 200
+ 0.0000
+ 200.0000
+ 1
+ 1
+ 1
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 0
+ 0
+ 0
+ 0
+
+
+ 0
+ 0
+ DDDDDD
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysGlobalHostCpuIowait1m
+
+
+
+ 1
+ 0
+ 008888
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysGlobalHostCpuIrq1m
+
+
+
+ 2
+ 0
+ C800C8
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysGlobalHostCpuSoftirq1m
+
+
+
+ 3
+ 0
+ 00C8C8
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysGlobalHostCpuStolen1m
+
+
+
+ 4
+ 0
+ 0000EE
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysGlobalHostCpuSystem1m
+
+
+
+ 5
+ 0
+ DD0000
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysGlobalHostCpuUser1m
+
+
+
+ 6
+ 0
+ 960000
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysGlobalHostCpuNice1m
+
+
+
+
+
+ Fan speed
+ 900
+ 200
+ 0.0000
+ 100.0000
+ 1
+ 1
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 1
+ 0
+ 0
+ 0
+
+
+ 0
+ 2
+ C800C8
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysCpuFanSpeed
+
+
+
+ 1
+ 2
+ 00C800
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysChassisFanSpeed.1
+
+
+
+ 2
+ 2
+ 0000C8
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysChassisFanSpeed.2
+
+
+
+ 3
+ 2
+ C800C8
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysChassisFanSpeed.3
+
+
+
+
+
+ Memory usage (OS)
+ 900
+ 200
+ 0.0000
+ 200.0000
+ 1
+ 1
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 0
+ 2
+ 0
+
+ Template Device BigIP F5
+ sysHostMemoryTotal
+
+
+
+ 0
+ 1
+ 00DD00
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysHostMemoryTotal
+
+
+
+ 1
+ 1
+ EE0000
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysHostMemoryUsed
+
+
+
+
+
+ Memory usage (TMM)
+ 900
+ 200
+ 0.0000
+ 200.0000
+ 1
+ 1
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 0
+ 2
+ 0
+
+ Template Device BigIP F5
+ sysStatMemoryTotal
+
+
+
+ 0
+ 1
+ 00DD00
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysStatMemoryTotal
+
+
+
+ 1
+ 1
+ DD0000
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysStatMemoryUsed
+
+
+
+
+
+ [GLOBAL] ICMP Traffic
+ 900
+ 200
+ 0.0000
+ 100.0000
+ 1
+ 1
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 1
+ 0
+ 0
+ 0
+
+
+ 0
+ 0
+ 00C800
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysIcmpStatRx
+
+
+
+ 1
+ 0
+ 0000C8
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysIcmpStatTx
+
+
+
+
+
+ [GLOBAL] IP Traffic
+ 900
+ 200
+ 0.0000
+ 100.0000
+ 1
+ 1
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 1
+ 0
+ 0
+ 0
+
+
+ 0
+ 0
+ 0000C8
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysIpStatRx
+
+
+
+ 1
+ 0
+ C800C8
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysIpStatTx
+
+
+
+
+
+ [GLOBAL] Total Traffic
+ 900
+ 200
+ 0.0000
+ 100.0000
+ 1
+ 1
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 0
+ 0
+ 0
+ 0
+
+
+ 0
+ 5
+ 00C8C8
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysGlobalTmmStatClientBytesIn
+
+
+
+ 1
+ 5
+ C8C800
+ 0
+ 2
+ 0
+ -
+ Template Device BigIP F5
+ sysGlobalTmmStatClientBytesOut
+
+
+
+
+
+
diff --git a/templates/Template Device Cisco ASA.xml b/templates/Template Device Cisco ASA.xml
new file mode 100644
index 0000000..367e831
--- /dev/null
+++ b/templates/Template Device Cisco ASA.xml
@@ -0,0 +1,1713 @@
+
+
+ 2.0
+ 2014-08-04T13:35:52Z
+
+
+ Templates
+
+
+
+
+ Template Device Cisco ASA
+ Template Device Cisco ASA
+
+
+ Templates
+
+
+
+
+ General
+
+
+ Interfaces
+
+
+
+ -
+ Active IKE Peers
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ .1.3.6.1.4.1.9.9.171.1.2.1.1.0
+ ciscoIKEPeers
+ 60
+ 30
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ General
+
+
+
+
+ -
+ Chassis Serial Number
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ SNMPv2-SMI::mib-2.47.1.1.1.1.11.1
+ deviceSerialNum
+ 3600
+ 30
+ 365
+ 0
+ 4
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 8
+
+
+ General
+
+
+
+
+ -
+ Chassis Version
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ SNMPv2-SMI::mib-2.47.1.1.1.1.8.1
+ deviceChassis
+ 3600
+ 30
+ 365
+ 0
+ 4
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 28
+
+
+ General
+
+
+
+
+ -
+ CPU Utilization avg last 1 min
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.9.9.109.1.1.1.1.4.1
+ cpmCPUTotal1minRev
+ 60
+ 30
+ 365
+ 0
+ 3
+
+ %
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ General
+
+
+
+
+ -
+ CPU Utilization avg last 5 min
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.9.9.109.1.1.1.1.3.1
+ cpmCPUTotal5minRev
+ 60
+ 30
+ 365
+ 0
+ 3
+
+ %
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ General
+
+
+
+
+ -
+ CPU Utilization avg last 5 sec
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.9.9.109.1.1.1.1.5.1
+ cpmCPUMonIntervalValue
+ 60
+ 30
+ 365
+ 0
+ 3
+
+ %
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ General
+
+
+
+
+ -
+ Description
+ 4
+ public
+ 0
+ .1.3.6.1.2.1.1.1.0
+ sysDescr
+ 3600
+ 30
+ 365
+ 0
+ 4
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 5
+
+
+ General
+
+
+
+
+ -
+ Failover primary unit status
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.9.9.147.1.2.1.1.1.3.6
+ cfwHardwareStatusValue.primaryUnit
+ 60
+ 30
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ General
+
+
+
+ Cisco ASA Failover status
+
+
+ -
+ Failover secondary unit status
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.9.9.147.1.2.1.1.1.3.7
+ cfwHardwareStatusValue.secondaryUnit
+ 60
+ 30
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ General
+
+
+
+ Cisco ASA Failover status
+
+
+ -
+ IOS Version
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ SNMPv2-SMI::mib-2.47.1.1.1.1.10.1
+ ciscoIOS
+ 3600
+ 30
+ 365
+ 0
+ 4
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 6
+
+
+ General
+
+
+
+
+ -
+ Memory Free
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.9.9.48.1.1.1.6.1
+ ciscoMemoryPoolFree
+ 60
+ 30
+ 365
+ 0
+ 3
+
+ Byte
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ General
+
+
+
+
+ -
+ Memory Pool Largest Free
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.9.9.48.1.1.1.7.1
+ ciscoMemoryPoolLargestFree
+ 60
+ 30
+ 365
+ 0
+ 3
+
+ Byte
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ General
+
+
+
+
+ -
+ Memory Usage
+ 15
+
+ 0
+
+ ciscoMemUsage
+ 60
+ 30
+ 365
+ 0
+ 0
+
+ %
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+ 100*last("ciscoMemoryPoolUsed")/last("ciscoMemoryTotal")
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ General
+
+
+
+
+ -
+ Memory Used
+ 4
+ public
+ 0
+ .1.3.6.1.4.1.9.9.48.1.1.1.5.1
+ ciscoMemoryPoolUsed
+ 60
+ 30
+ 365
+ 0
+ 3
+
+ Byte
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ General
+
+
+
+
+ -
+ Memoty Total
+ 15
+
+ 0
+
+ ciscoMemoryTotal
+ 3600
+ 30
+ 365
+ 0
+ 0
+
+ Byte
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+ last("ciscoMemoryPoolUsed")+last("ciscoMemoryPoolFree")
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ General
+
+
+
+
+ -
+ Model Name
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ SNMPv2-SMI::mib-2.47.1.1.1.1.13.1
+ deviceModel
+ 3600
+ 30
+ 365
+ 0
+ 4
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 29
+
+
+ General
+
+
+
+
+ -
+ Number of network interfaces
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ IF-MIB::ifNumber.0
+ ifNumber
+ 3600
+ 30
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+ The number of network interfaces (regardless of their current state) present on this system.
+ 0
+
+
+ General
+
+
+ Interfaces
+
+
+
+
+ -
+ ROMMON Versoin
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ SNMPv2-SMI::mib-2.47.1.1.1.1.9.1
+ ciscoROMMON
+ 3600
+ 30
+ 365
+ 0
+ 4
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 7
+
+
+ General
+
+
+
+
+ -
+ sysUpTime
+ 4
+ public
+ 1
+ 1.3.6.1.2.1.1.3.0
+ sysUpTimeInstance
+ 300
+ 30
+ 365
+ 0
+ 3
+
+ s
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 0.01
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ General
+
+
+
+
+ -
+ Vendor Name
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ SNMPv2-SMI::mib-2.47.1.1.1.1.12.1
+ deviceVendor
+ 3600
+ 30
+ 365
+ 0
+ 4
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 31
+
+
+ General
+
+
+
+
+
+
+
+ ASA Interfaces discovery
+ 4
+ {$SNMP_COMMUNITY}
+ IF-MIB::ifDescr
+ ifDescr
+ 3600
+ 0
+
+
+
+ 0
+ 0
+
+ 0
+
+
+
+
+ 0
+
+
+
+
+
+ {#SNMPVALUE}:outside|inside|LANFAIL
+ 14
+
+
+
+ $1 AdminStatus
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ IF-MIB::ifAdminStatus.{#SNMPINDEX}
+ ifAdminStatus[{#SNMPVALUE}]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+ The desired state of the interface.
+ 0
+
+
+ Interfaces
+
+
+
+ Cisco Interface Status
+
+
+
+ $1 Description
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ IF-MIB::ifDescr.{#SNMPINDEX}
+ ifDescr[{#SNMPVALUE}]
+ 3600
+ 7
+ 365
+ 0
+ 1
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+ A textual string containing information about the interface. This string should include the name of the manufacturer, the product name and the version of the interface hardware/software.
+ 0
+
+
+ Interfaces
+
+
+
+
+
+ $1 InBroadcastPkts
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ IF-MIB::ifInBroadcastPkts.{#SNMPINDEX}
+ ifInBroadcastPkts[{#SNMPVALUE}]
+ 60
+ 6
+ 365
+ 1
+ 3
+
+ pps
+ 1
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ Interfaces
+
+
+
+
+
+ $1 InErrors
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ IF-MIB::ifInErrors.{#SNMPINDEX}
+ ifInErrors[{#SNMPVALUE}]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 1
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+ 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.
+ 0
+
+
+ Interfaces
+
+
+
+
+
+ $1 InMulticastPkts
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ IF-MIB::ifInMulticastPkts.{#SNMPINDEX}
+ ifInMulticastPkts[{#SNMPVALUE}]
+ 60
+ 7
+ 365
+ 1
+ 3
+
+ pps
+ 1
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ Interfaces
+
+
+
+
+
+ $1 InOctets
+ 4
+ {$SNMP_COMMUNITY}
+ 1
+ IF-MIB::ifInOctets.{#SNMPINDEX}
+ ifInOctets[{#SNMPVALUE}]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ bps
+ 1
+
+
+ 0
+ 0
+
+ 0
+
+ 8
+
+
+
+ 0
+ 0
+
+
+
+
+
+ The number of octets in valid MAC frames received on this interface, including the MAC header and FCS.
+ 0
+
+
+ Interfaces
+
+
+
+
+
+ $1 InUcastPkts
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ IF-MIB::ifInUcastPkts.{#SNMPINDEX}
+ ifInUcastPkts[{#SNMPVALUE}]
+ 60
+ 7
+ 365
+ 1
+ 3
+
+ pps
+ 1
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ Interfaces
+
+
+
+
+
+ $1 OperStatus
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ IF-MIB::ifOperStatus.{#SNMPINDEX}
+ ifOperStatus[{#SNMPVALUE}]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+ The current operational state of the interface.
+ 0
+
+
+ Interfaces
+
+
+
+ Cisco Interface Status
+
+
+
+ $1 OutBroadcastPkts
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ IF-MIB::ifOutBroadcastPkts.{#SNMPINDEX}
+ ifOutBroadcastPkts[{#SNMPVALUE}]
+ 60
+ 7
+ 365
+ 1
+ 3
+
+ pps
+ 1
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ Interfaces
+
+
+
+
+
+ $1 OutErrors
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ IF-MIB::ifOutErrors.{#SNMPINDEX}
+ ifOutErrors[{#SNMPVALUE}]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+
+ 1
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+ For packet-oriented interfaces, the number of outbound packets that could not be transmitted because of errors. For character-oriented or fixed-length interfaces, the number of outbound transmission units that could not be transmitted because of errors.
+ 0
+
+
+ Interfaces
+
+
+
+
+
+ $1 OutMulticastPkts
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ IF-MIB::ifOutMulticastPkts.{#SNMPINDEX}
+ ifOutMulticastPkts[{#SNMPVALUE}]
+ 60
+ 7
+ 365
+ 1
+ 3
+
+ pps
+ 1
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ Interfaces
+
+
+
+
+
+ $1 OutOctets
+ 4
+ {$SNMP_COMMUNITY}
+ 1
+ IF-MIB::ifOutOctets.{#SNMPINDEX}
+ ifOutOctets[{#SNMPVALUE}]
+ 60
+ 7
+ 365
+ 0
+ 3
+
+ bps
+ 1
+
+
+ 0
+ 0
+
+ 0
+
+ 8
+
+
+
+ 0
+ 0
+
+
+
+
+
+ The number of octets transmitted in MAC frames on this interface, including the MAC header and FCS.
+ 0
+
+
+ Interfaces
+
+
+
+
+
+ $1 OutUcastPkts
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ IF-MIB::ifOutUcastPkts.{#SNMPINDEX}
+ ifOutUcastPkts[{#SNMPVALUE}]
+ 60
+ 7
+ 365
+ 1
+ 3
+
+ pps
+ 1
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ Interfaces
+
+
+
+
+
+ $1 Speed
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ IF-MIB::ifSpeed.{#SNMPINDEX}
+ ifSpeed[{#SNMPVALUE}]
+ 3600
+ 7
+ 365
+ 0
+ 3
+
+ bps
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ Interfaces
+
+
+
+
+
+
+
+ {Template Device Cisco ASA:ifInErrors[{#SNMPVALUE}].last(0)}>100 | {Template Device Cisco ASA:ifOutErrors[{#SNMPVALUE}].last(0)}>100
+ Errors on {#SNMPVALUE}
+
+ 0
+ 2
+ More than 100 in/out errors detected on {#SNMPVALUE}
+ 0
+
+
+ {Template Device Cisco ASA:ifOperStatus[{#SNMPVALUE}].last(0)}#1
+ Interface down/malfunctioned on {#SNMPVALUE}
+
+ 0
+ 2
+
+ 0
+
+
+ {Template Device Cisco ASA:ifOperStatus[{#SNMPVALUE}].last(0)}#{Template Device Cisco ASA:ifAdminStatus[{#SNMPVALUE}].last(0)}
+ Interface Operational status not matching Admin status on {#SNMPVALUE}
+
+ 0
+ 2
+
+ 0
+
+
+
+
+ {#SNMPVALUE} Traffic
+ 900
+ 400
+ 0.0000
+ 100.0000
+ 0
+ 1
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 1
+ 0
+ 0
+ 0
+
+
+ 0
+ 5
+ 00AA00
+ 0
+ 2
+ 0
+ -
+ Template Device Cisco ASA
+ ifInOctets[{#SNMPVALUE}]
+
+
+
+ 1
+ 5
+ 3333FF
+ 0
+ 2
+ 0
+ -
+ Template Device Cisco ASA
+ ifOutOctets[{#SNMPVALUE}]
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {Template Device Cisco ASA:cfwHardwareStatusValue.primaryUnit.diff(0)}>0 | {Template Device Cisco ASA:cfwHardwareStatusValue.secondaryUnit.diff(0)}>0
+ Active Firewall has changed
+
+ 0
+ 4
+
+ 0
+
+
+
+ {Template Device Cisco ASA:cpmCPUTotal1minRev.last(0)}>80
+ CPU Over 85 %
+
+ 0
+ 4
+ {HOST.NAME} has had a CPU Utilization above 85 % for 3 samples taken in the last 1 minute 30 seconds.
+ 0
+
+
+
+ {Template Device Cisco ASA:sysDescr.diff(0)}>0 & {Template Device Cisco ASA:sysDescr.strlen()}#0
+ IOS version has changed
+
+ 0
+ 1
+
+ 0
+
+
+
+ {Template Device Cisco ASA:ciscoMemoryPoolFree.min(10)}/{Template Device Cisco ASA:ciscoMemoryTotal.last(0)}< 0.05
+ Memory Free < 5 %
+
+ 0
+ 3
+ Memory Free < 5 %
+ 0
+
+
+
+ {Template Device Cisco ASA:sysUpTimeInstance.last(0)}<600
+ Reloaded
+
+ 0
+ 1
+ {HOST.NAME} reloaded
+ 0
+
+
+
+ {Template Device Cisco ASA:cpmCPUMonIntervalValue.nodata(14400)}=1
+ SNMP Failed
+
+ 0
+ 4
+ {HOST.IP} SNMP Failed. Check configuration, ACL.
+ 0
+
+
+
+
+
+ CPU Load
+ 900
+ 400
+ 0.0000
+ 100.0000
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 1
+ 1
+ 0
+ 0
+
+
+ 0
+ 1
+ BB0000
+ 0
+ 2
+ 0
+ -
+ Template Device Cisco ASA
+ cpmCPUMonIntervalValue
+
+
+
+
+
+ Memory Usage
+ 900
+ 400
+ 0.0000
+ 100.0000
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0.0000
+ 0.0000
+ 1
+ 2
+ 0
+
+ Template Device Cisco ASA
+ ciscoMemoryTotal
+
+
+
+ 0
+ 2
+ 00AA00
+ 0
+ 2
+ 0
+ -
+ Template Device Cisco ASA
+ ciscoMemoryPoolUsed
+
+
+
+
+
+
diff --git a/templates/Template Device NetApp.xml b/templates/Template Device NetApp.xml
new file mode 100644
index 0000000..527cfba
--- /dev/null
+++ b/templates/Template Device NetApp.xml
@@ -0,0 +1,3378 @@
+
+
+ 2.0
+ 2014-08-04T13:36:08Z
+
+
+ Templates
+
+
+
+
+ Template Device NetApp
+ Template Device NetApp
+
+
+ Templates
+
+
+
+
+ CPU
+
+
+ File Serving
+
+
+ Lun
+
+
+ System
+
+
+ Volume
+
+
+
+ -
+ Autosupport Status
+ 4
+ {$SNMP_COMMUNITY}
+ 0
+ .1.3.6.1.4.1.789.1.2.7.1.0
+ netapp.autosupport
+ 300
+ 30
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ System
+
+
+
+
+ -
+ CFE Firmware
+ 1
+ {$SNMP_COMMUNITY}
+ 0
+ .1.3.6.1.4.1.789.1.1.6.0
+ netapp.cfe
+ 3600
+ 30
+ 365
+ 0
+ 1
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ System
+
+
+
+
+ -
+ CIFS connected users
+ 1
+ {$SNMP_COMMUNITY}
+ 0
+ .1.3.6.1.4.1.789.1.7.2.9.0
+ netapp.cifs.users.connected
+ 60
+ 30
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ File Serving
+
+
+
+
+ -
+ CIFS DirOps
+ 1
+ {$SNMP_COMMUNITY}
+ 0
+ .1.3.6.1.4.1.789.1.7.3.1.1.9.0
+ netapp.cifs.dirops
+ 60
+ 30
+ 365
+ 0
+ 3
+
+ ops
+ 2
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ File Serving
+
+
+
+
+ -
+ Cifs enabled
+ 1
+ {$SNMP_COMMUNITY}
+ 0
+ SNMPv2-SMI::enterprises.789.1.7.1.1.0
+ netapp.cifs.enabled
+ 60
+ 30
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ File Serving
+
+
+
+
+ -
+ CIFS GettAttrs
+ 1
+ {$SNMP_COMMUNITY}
+ 0
+ .1.3.6.1.4.1.789.1.7.3.1.1.4.0
+ netapp.cifs.gettattrs
+ 60
+ 30
+ 365
+ 0
+ 3
+
+ ops
+ 2
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ File Serving
+
+
+
+
+ -
+ CIFS open files
+ 1
+ {$SNMP_COMMUNITY}
+ 0
+ .1.3.6.1.4.1.789.1.7.2.13.0
+ netapp.cifs.openfiles
+ 60
+ 30
+ 365
+ 0
+ 3
+
+
+ 0
+
+
+ 0
+ 0
+
+ 0
+
+ 1
+
+
+
+ 0
+ 0
+
+
+
+
+
+
+ 0
+
+
+ File Serving
+
+
+
+
+ -
+ CIFS Opens
+ 1
+ {$SNMP_COMMUNITY}
+ 0
+ .1.3.6.1.4.1.789.1.7.3.1.1.8.0
+ netapp.cifs.opens
+ 60
+ 30
+ 365
+ 0
+ 3
+
+
+ 2
+
+
+ 0
+ 0
+
+ 0
+
+ 1