|
|
@@ -0,0 +1,1402 @@
|
|
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
|
+<zabbix_export>
|
|
|
+ <version>4.0</version>
|
|
|
+ <date>2019-01-15T12:48:48Z</date>
|
|
|
+ <groups>
|
|
|
+ <group>
|
|
|
+ <name>Templates/Applications</name>
|
|
|
+ </group>
|
|
|
+ </groups>
|
|
|
+ <templates>
|
|
|
+ <template>
|
|
|
+ <template>Template Yunohost</template>
|
|
|
+ <name>Template Yunohost</name>
|
|
|
+ <description>cat /etc/sudoers.d/zabbix
|
|
|
+zabbix ALL=(root) NOPASSWD: /etc/zabbix/zabbix_agentd.d/yunohost.sh
|
|
|
+
|
|
|
+cat /etc/zabbix/zabbix_agentd.d/userP_yunohost.conf
|
|
|
+UserParameter=yunohost.users.discover,sudo /etc/zabbix/zabbix_agentd.d/yunohost.sh yunohost.users.discover
|
|
|
+UserParameter=yunohost.user.quota[*],sudo /etc/zabbix/zabbix_agentd.d/yunohost.sh yunohost.user.quota "$1"
|
|
|
+UserParameter=yunohost.domains.discover,sudo /etc/zabbix/zabbix_agentd.d/yunohost.sh yunohost.domains.discover
|
|
|
+UserParameter=yunohost.domain.cert[*],sudo /etc/zabbix/zabbix_agentd.d/yunohost.sh yunohost.domain.cert "$1"
|
|
|
+UserParameter=yunohost.services.discover,sudo /etc/zabbix/zabbix_agentd.d/yunohost.sh yunohost.services.discover
|
|
|
+UserParameter=yunohost.service.status[*],sudo /etc/zabbix/zabbix_agentd.d/yunohost.sh yunohost.service.status "$1"
|
|
|
+UserParameter=yunohost.backups.number,sudo /etc/zabbix/zabbix_agentd.d/yunohost.sh yunohost.backups.number
|
|
|
+UserParameter=yunohost.backups.ageoflastbackup,sudo /etc/zabbix/zabbix_agentd.d/yunohost.sh yunohost.backups.ageoflastbackup
|
|
|
+UserParameter=yunohost.ports.tcp.discovery,sudo /etc/zabbix/zabbix_agentd.d/yunohost.sh yunohost.ports.tcp.discovery
|
|
|
+UserParameter=yunohost.ports.udp.discovery,sudo /etc/zabbix/zabbix_agentd.d/yunohost.sh yunohost.ports.udp.discovery
|
|
|
+UserParameter=yunohost.migrations.lastinstalled,sudo /etc/zabbix/zabbix_agentd.d/yunohost.sh yunohost.migrations.lastinstalled
|
|
|
+UserParameter=yunohost.migrations.lastavailable,sudo /etc/zabbix/zabbix_agentd.d/yunohost.sh yunohost.migrations.lastavailable
|
|
|
+
|
|
|
+cat /etc/zabbix/zabbix_agentd.d/yunohost.sh
|
|
|
+#!/bin/bash
|
|
|
+yunobin=$(which yunohost)
|
|
|
+
|
|
|
+
|
|
|
+if [ "$1" == "yunohost.users.discover" ];then
|
|
|
+ users=$($yunobin user list --fields 'uid' | awk -F ': ' '/username: / {print $2}');echo -n "{\"data\":[";for user in $users;do echo -n "{\"{#USERNAME}\":\"$user\"},";done | sed 's/,$//' ;echo "]}"
|
|
|
+fi
|
|
|
+
|
|
|
+if [ "$1" == "yunohost.user.quota" ] ;then
|
|
|
+ quota=$($yunobin user info "$2" | grep -Po "use:.*\(\K([0-9]{1,3})");if [ -z "$quota" ];then echo 0 ; else echo "$quota" ;fi
|
|
|
+fi
|
|
|
+
|
|
|
+if [ "$1" == "yunohost.domains.discover" ] ;then
|
|
|
+ domains=$($yunobin domain list --plain);echo -n "{\"data\":[";for domain in $domains;do echo -n "{\"{#DOMAIN}\":\"$domain\"},";done | sed 's/,$//' ;echo "]}"
|
|
|
+fi
|
|
|
+
|
|
|
+if [ "$1" == "yunohost.domain.cert" ] ;then
|
|
|
+ $yunobin domain cert-status "$2" --plain | awk '/#/{ next;} {printf "%s;",$0} END {print ""}'
|
|
|
+fi
|
|
|
+
|
|
|
+if [ "$1" == "yunohost.services.discover" ] ;then
|
|
|
+ services=$($yunobin service status | grep -Po '^([A-Za-z]+)(?=(:))');echo -n "{\"data\":[";for service in $services;do echo -n "{\"{#SERVICE}\":\"$service\"},";done | sed 's/,$//' ;echo "]}"
|
|
|
+fi
|
|
|
+
|
|
|
+if [ "$1" == "yunohost.service.status" ] ;then
|
|
|
+ $yunobin service status "$2" --plain | awk '/#/{ next;} {printf "%s;",$0} END {print ""}'
|
|
|
+fi
|
|
|
+
|
|
|
+if [ "$1" == "yunohost.backups.number" ] ;then
|
|
|
+ $yunobin backup list --plain | wc -l
|
|
|
+fi
|
|
|
+
|
|
|
+if [ "$1" == "yunohost.backups.ageoflastbackup" ] ;then
|
|
|
+ timestamp=$(date +"%d/%m/%Y %H:%M" -d"$($yunobin backup list -i | tail -n 4 | head -n 1 | grep -Po 'created_at: \K(.*)')")
|
|
|
+ echo $(( ($(date +%s) - $(date -d"$timestamp" +%s))/(60*60*24) ))
|
|
|
+fi
|
|
|
+
|
|
|
+
|
|
|
+if [ "$1" == "yunohost.ports.tcp.discovery" ] ;then
|
|
|
+ ports=$($yunobin firewall list -r --plain | awk '/#ipv4/{flag=1;next}/#uPnP/{flag=0}flag' | awk '/##TCP/{flag=1;next}/##TCP/{flag=0}flag');echo -n "{\"data\":[";for port in $ports;do echo -n "{\"{#PORT}\":\"$port\"},";done | sed 's/,$//' ;echo "]}"
|
|
|
+fi
|
|
|
+
|
|
|
+if [ "$1" == "yunohost.ports.udp.discovery" ] ;then
|
|
|
+ ports=$($yunobin firewall list -r --plain | awk '/#ipv4/{flag=1;next}/#uPnP/{flag=0}flag' | awk '/##UDP/{flag=1;next}/##TCP/{flag=0}flag');echo -n "{\"data\":[";for port in $ports;do echo -n "{\"{#PORT}\":\"$port\"},";done | sed 's/,$//' ;echo "]}"
|
|
|
+fi
|
|
|
+
|
|
|
+if [ "$1" == "yunohost.migrations.lastinstalled" ] ;then
|
|
|
+ $yunobin tools migrations state | grep -Po " number: \K(.*)"
|
|
|
+fi
|
|
|
+
|
|
|
+if [ "$1" == "yunohost.migrations.lastavailable" ] ;then
|
|
|
+ $yunobin tools migrations list | tail -n 1 | grep -Po " number: \K(.*)"
|
|
|
+fi</description>
|
|
|
+ <groups>
|
|
|
+ <group>
|
|
|
+ <name>Templates/Applications</name>
|
|
|
+ </group>
|
|
|
+ </groups>
|
|
|
+ <applications>
|
|
|
+ <application>
|
|
|
+ <name>Yunohost : Backups</name>
|
|
|
+ </application>
|
|
|
+ <application>
|
|
|
+ <name>Yunohost : Certificates</name>
|
|
|
+ </application>
|
|
|
+ <application>
|
|
|
+ <name>Yunohost : Certificates : Expiration</name>
|
|
|
+ </application>
|
|
|
+ <application>
|
|
|
+ <name>Yunohost : Certificates : State</name>
|
|
|
+ </application>
|
|
|
+ <application>
|
|
|
+ <name>Yunohost : Migrations</name>
|
|
|
+ </application>
|
|
|
+ <application>
|
|
|
+ <name>Yunohost : Ports</name>
|
|
|
+ </application>
|
|
|
+ <application>
|
|
|
+ <name>Yunohost : Services</name>
|
|
|
+ </application>
|
|
|
+ <application>
|
|
|
+ <name>Yunohost : Services : Status</name>
|
|
|
+ </application>
|
|
|
+ <application>
|
|
|
+ <name>Yunohost : Users</name>
|
|
|
+ </application>
|
|
|
+ </applications>
|
|
|
+ <items>
|
|
|
+ <item>
|
|
|
+ <name>Age of the last backup</name>
|
|
|
+ <type>0</type>
|
|
|
+ <snmp_community/>
|
|
|
+ <snmp_oid/>
|
|
|
+ <key>yunohost.backups.ageoflastbackup</key>
|
|
|
+ <delay>1d</delay>
|
|
|
+ <history>90d</history>
|
|
|
+ <trends>365d</trends>
|
|
|
+ <status>0</status>
|
|
|
+ <value_type>3</value_type>
|
|
|
+ <allowed_hosts/>
|
|
|
+ <units>days</units>
|
|
|
+ <snmpv3_contextname/>
|
|
|
+ <snmpv3_securityname/>
|
|
|
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
|
|
|
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
|
|
|
+ <snmpv3_authpassphrase/>
|
|
|
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
|
|
|
+ <snmpv3_privpassphrase/>
|
|
|
+ <params/>
|
|
|
+ <ipmi_sensor/>
|
|
|
+ <authtype>0</authtype>
|
|
|
+ <username/>
|
|
|
+ <password/>
|
|
|
+ <publickey/>
|
|
|
+ <privatekey/>
|
|
|
+ <port/>
|
|
|
+ <description/>
|
|
|
+ <inventory_link>0</inventory_link>
|
|
|
+ <applications>
|
|
|
+ <application>
|
|
|
+ <name>Yunohost : Backups</name>
|
|
|
+ </application>
|
|
|
+ </applications>
|
|
|
+ <valuemap/>
|
|
|
+ <logtimefmt/>
|
|
|
+ <preprocessing/>
|
|
|
+ <jmx_endpoint/>
|
|
|
+ <timeout>3s</timeout>
|
|
|
+ <url/>
|
|
|
+ <query_fields/>
|
|
|
+ <posts/>
|
|
|
+ <status_codes>200</status_codes>
|
|
|
+ <follow_redirects>1</follow_redirects>
|
|
|
+ <post_type>0</post_type>
|
|
|
+ <http_proxy/>
|
|
|
+ <headers/>
|
|
|
+ <retrieve_mode>0</retrieve_mode>
|
|
|
+ <request_method>0</request_method>
|
|
|
+ <output_format>0</output_format>
|
|
|
+ <allow_traps>0</allow_traps>
|
|
|
+ <ssl_cert_file/>
|
|
|
+ <ssl_key_file/>
|
|
|
+ <ssl_key_password/>
|
|
|
+ <verify_peer>0</verify_peer>
|
|
|
+ <verify_host>0</verify_host>
|
|
|
+ <master_item/>
|
|
|
+ </item>
|
|
|
+ <item>
|
|
|
+ <name>Number of Yunohost backups</name>
|
|
|
+ <type>0</type>
|
|
|
+ <snmp_community/>
|
|
|
+ <snmp_oid/>
|
|
|
+ <key>yunohost.backups.number</key>
|
|
|
+ <delay>1d</delay>
|
|
|
+ <history>90d</history>
|
|
|
+ <trends>365d</trends>
|
|
|
+ <status>0</status>
|
|
|
+ <value_type>3</value_type>
|
|
|
+ <allowed_hosts/>
|
|
|
+ <units/>
|
|
|
+ <snmpv3_contextname/>
|
|
|
+ <snmpv3_securityname/>
|
|
|
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
|
|
|
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
|
|
|
+ <snmpv3_authpassphrase/>
|
|
|
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
|
|
|
+ <snmpv3_privpassphrase/>
|
|
|
+ <params/>
|
|
|
+ <ipmi_sensor/>
|
|
|
+ <authtype>0</authtype>
|
|
|
+ <username/>
|
|
|
+ <password/>
|
|
|
+ <publickey/>
|
|
|
+ <privatekey/>
|
|
|
+ <port/>
|
|
|
+ <description/>
|
|
|
+ <inventory_link>0</inventory_link>
|
|
|
+ <applications>
|
|
|
+ <application>
|
|
|
+ <name>Yunohost : Backups</name>
|
|
|
+ </application>
|
|
|
+ </applications>
|
|
|
+ <valuemap/>
|
|
|
+ <logtimefmt/>
|
|
|
+ <preprocessing/>
|
|
|
+ <jmx_endpoint/>
|
|
|
+ <timeout>3s</timeout>
|
|
|
+ <url/>
|
|
|
+ <query_fields/>
|
|
|
+ <posts/>
|
|
|
+ <status_codes>200</status_codes>
|
|
|
+ <follow_redirects>1</follow_redirects>
|
|
|
+ <post_type>0</post_type>
|
|
|
+ <http_proxy/>
|
|
|
+ <headers/>
|
|
|
+ <retrieve_mode>0</retrieve_mode>
|
|
|
+ <request_method>0</request_method>
|
|
|
+ <output_format>0</output_format>
|
|
|
+ <allow_traps>0</allow_traps>
|
|
|
+ <ssl_cert_file/>
|
|
|
+ <ssl_key_file/>
|
|
|
+ <ssl_key_password/>
|
|
|
+ <verify_peer>0</verify_peer>
|
|
|
+ <verify_host>0</verify_host>
|
|
|
+ <master_item/>
|
|
|
+ </item>
|
|
|
+ <item>
|
|
|
+ <name>Id of the last migration available</name>
|
|
|
+ <type>0</type>
|
|
|
+ <snmp_community/>
|
|
|
+ <snmp_oid/>
|
|
|
+ <key>yunohost.migrations.lastavailable</key>
|
|
|
+ <delay>1d</delay>
|
|
|
+ <history>90d</history>
|
|
|
+ <trends>365d</trends>
|
|
|
+ <status>0</status>
|
|
|
+ <value_type>3</value_type>
|
|
|
+ <allowed_hosts/>
|
|
|
+ <units/>
|
|
|
+ <snmpv3_contextname/>
|
|
|
+ <snmpv3_securityname/>
|
|
|
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
|
|
|
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
|
|
|
+ <snmpv3_authpassphrase/>
|
|
|
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
|
|
|
+ <snmpv3_privpassphrase/>
|
|
|
+ <params/>
|
|
|
+ <ipmi_sensor/>
|
|
|
+ <authtype>0</authtype>
|
|
|
+ <username/>
|
|
|
+ <password/>
|
|
|
+ <publickey/>
|
|
|
+ <privatekey/>
|
|
|
+ <port/>
|
|
|
+ <description/>
|
|
|
+ <inventory_link>0</inventory_link>
|
|
|
+ <applications>
|
|
|
+ <application>
|
|
|
+ <name>Yunohost : Migrations</name>
|
|
|
+ </application>
|
|
|
+ </applications>
|
|
|
+ <valuemap/>
|
|
|
+ <logtimefmt/>
|
|
|
+ <preprocessing/>
|
|
|
+ <jmx_endpoint/>
|
|
|
+ <timeout>3s</timeout>
|
|
|
+ <url/>
|
|
|
+ <query_fields/>
|
|
|
+ <posts/>
|
|
|
+ <status_codes>200</status_codes>
|
|
|
+ <follow_redirects>1</follow_redirects>
|
|
|
+ <post_type>0</post_type>
|
|
|
+ <http_proxy/>
|
|
|
+ <headers/>
|
|
|
+ <retrieve_mode>0</retrieve_mode>
|
|
|
+ <request_method>0</request_method>
|
|
|
+ <output_format>0</output_format>
|
|
|
+ <allow_traps>0</allow_traps>
|
|
|
+ <ssl_cert_file/>
|
|
|
+ <ssl_key_file/>
|
|
|
+ <ssl_key_password/>
|
|
|
+ <verify_peer>0</verify_peer>
|
|
|
+ <verify_host>0</verify_host>
|
|
|
+ <master_item/>
|
|
|
+ </item>
|
|
|
+ <item>
|
|
|
+ <name>Id of the last migration installed</name>
|
|
|
+ <type>0</type>
|
|
|
+ <snmp_community/>
|
|
|
+ <snmp_oid/>
|
|
|
+ <key>yunohost.migrations.lastinstalled</key>
|
|
|
+ <delay>1d</delay>
|
|
|
+ <history>90d</history>
|
|
|
+ <trends>365d</trends>
|
|
|
+ <status>0</status>
|
|
|
+ <value_type>3</value_type>
|
|
|
+ <allowed_hosts/>
|
|
|
+ <units/>
|
|
|
+ <snmpv3_contextname/>
|
|
|
+ <snmpv3_securityname/>
|
|
|
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
|
|
|
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
|
|
|
+ <snmpv3_authpassphrase/>
|
|
|
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
|
|
|
+ <snmpv3_privpassphrase/>
|
|
|
+ <params/>
|
|
|
+ <ipmi_sensor/>
|
|
|
+ <authtype>0</authtype>
|
|
|
+ <username/>
|
|
|
+ <password/>
|
|
|
+ <publickey/>
|
|
|
+ <privatekey/>
|
|
|
+ <port/>
|
|
|
+ <description/>
|
|
|
+ <inventory_link>0</inventory_link>
|
|
|
+ <applications>
|
|
|
+ <application>
|
|
|
+ <name>Yunohost : Migrations</name>
|
|
|
+ </application>
|
|
|
+ </applications>
|
|
|
+ <valuemap/>
|
|
|
+ <logtimefmt/>
|
|
|
+ <preprocessing/>
|
|
|
+ <jmx_endpoint/>
|
|
|
+ <timeout>3s</timeout>
|
|
|
+ <url/>
|
|
|
+ <query_fields/>
|
|
|
+ <posts/>
|
|
|
+ <status_codes>200</status_codes>
|
|
|
+ <follow_redirects>1</follow_redirects>
|
|
|
+ <post_type>0</post_type>
|
|
|
+ <http_proxy/>
|
|
|
+ <headers/>
|
|
|
+ <retrieve_mode>0</retrieve_mode>
|
|
|
+ <request_method>0</request_method>
|
|
|
+ <output_format>0</output_format>
|
|
|
+ <allow_traps>0</allow_traps>
|
|
|
+ <ssl_cert_file/>
|
|
|
+ <ssl_key_file/>
|
|
|
+ <ssl_key_password/>
|
|
|
+ <verify_peer>0</verify_peer>
|
|
|
+ <verify_host>0</verify_host>
|
|
|
+ <master_item/>
|
|
|
+ </item>
|
|
|
+ </items>
|
|
|
+ <discovery_rules>
|
|
|
+ <discovery_rule>
|
|
|
+ <name>Yunohost domains</name>
|
|
|
+ <type>0</type>
|
|
|
+ <snmp_community/>
|
|
|
+ <snmp_oid/>
|
|
|
+ <key>yunohost.domains.discover</key>
|
|
|
+ <delay>1d</delay>
|
|
|
+ <status>0</status>
|
|
|
+ <allowed_hosts/>
|
|
|
+ <snmpv3_contextname/>
|
|
|
+ <snmpv3_securityname/>
|
|
|
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
|
|
|
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
|
|
|
+ <snmpv3_authpassphrase/>
|
|
|
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
|
|
|
+ <snmpv3_privpassphrase/>
|
|
|
+ <params/>
|
|
|
+ <ipmi_sensor/>
|
|
|
+ <authtype>0</authtype>
|
|
|
+ <username/>
|
|
|
+ <password/>
|
|
|
+ <publickey/>
|
|
|
+ <privatekey/>
|
|
|
+ <port/>
|
|
|
+ <filter>
|
|
|
+ <evaltype>0</evaltype>
|
|
|
+ <formula/>
|
|
|
+ <conditions/>
|
|
|
+ </filter>
|
|
|
+ <lifetime>30d</lifetime>
|
|
|
+ <description/>
|
|
|
+ <item_prototypes>
|
|
|
+ <item_prototype>
|
|
|
+ <name>Certificate {#DOMAIN} expiration</name>
|
|
|
+ <type>18</type>
|
|
|
+ <snmp_community/>
|
|
|
+ <snmp_oid/>
|
|
|
+ <key>yunohost.domain.cert.expiration[{#DOMAIN}]</key>
|
|
|
+ <delay>0</delay>
|
|
|
+ <history>180d</history>
|
|
|
+ <trends>365d</trends>
|
|
|
+ <status>0</status>
|
|
|
+ <value_type>3</value_type>
|
|
|
+ <allowed_hosts/>
|
|
|
+ <units>d</units>
|
|
|
+ <snmpv3_contextname/>
|
|
|
+ <snmpv3_securityname/>
|
|
|
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
|
|
|
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
|
|
|
+ <snmpv3_authpassphrase/>
|
|
|
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
|
|
|
+ <snmpv3_privpassphrase/>
|
|
|
+ <params/>
|
|
|
+ <ipmi_sensor/>
|
|
|
+ <authtype>0</authtype>
|
|
|
+ <username/>
|
|
|
+ <password/>
|
|
|
+ <publickey/>
|
|
|
+ <privatekey/>
|
|
|
+ <port/>
|
|
|
+ <description/>
|
|
|
+ <inventory_link>0</inventory_link>
|
|
|
+ <applications>
|
|
|
+ <application>
|
|
|
+ <name>Yunohost : Certificates</name>
|
|
|
+ </application>
|
|
|
+ <application>
|
|
|
+ <name>Yunohost : Certificates : Expiration</name>
|
|
|
+ </application>
|
|
|
+ </applications>
|
|
|
+ <valuemap/>
|
|
|
+ <logtimefmt/>
|
|
|
+ <preprocessing>
|
|
|
+ <step>
|
|
|
+ <type>5</type>
|
|
|
+ <params>(.*);(.*);(.*);(.*);(.*);(.*);(.*);(.*);
|
|
|
+\2</params>
|
|
|
+ </step>
|
|
|
+ </preprocessing>
|
|
|
+ <jmx_endpoint/>
|
|
|
+ <timeout>3s</timeout>
|
|
|
+ <url/>
|
|
|
+ <query_fields/>
|
|
|
+ <posts/>
|
|
|
+ <status_codes>200</status_codes>
|
|
|
+ <follow_redirects>1</follow_redirects>
|
|
|
+ <post_type>0</post_type>
|
|
|
+ <http_proxy/>
|
|
|
+ <headers/>
|
|
|
+ <retrieve_mode>0</retrieve_mode>
|
|
|
+ <request_method>0</request_method>
|
|
|
+ <output_format>0</output_format>
|
|
|
+ <allow_traps>0</allow_traps>
|
|
|
+ <ssl_cert_file/>
|
|
|
+ <ssl_key_file/>
|
|
|
+ <ssl_key_password/>
|
|
|
+ <verify_peer>0</verify_peer>
|
|
|
+ <verify_host>0</verify_host>
|
|
|
+ <application_prototypes/>
|
|
|
+ <master_item>
|
|
|
+ <key>yunohost.domain.cert[{#DOMAIN}]</key>
|
|
|
+ </master_item>
|
|
|
+ </item_prototype>
|
|
|
+ <item_prototype>
|
|
|
+ <name>Certificate {#DOMAIN} state</name>
|
|
|
+ <type>18</type>
|
|
|
+ <snmp_community/>
|
|
|
+ <snmp_oid/>
|
|
|
+ <key>yunohost.domain.cert.state[{#DOMAIN}]</key>
|
|
|
+ <delay>0</delay>
|
|
|
+ <history>180d</history>
|
|
|
+ <trends>0</trends>
|
|
|
+ <status>0</status>
|
|
|
+ <value_type>1</value_type>
|
|
|
+ <allowed_hosts/>
|
|
|
+ <units/>
|
|
|
+ <snmpv3_contextname/>
|
|
|
+ <snmpv3_securityname/>
|
|
|
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
|
|
|
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
|
|
|
+ <snmpv3_authpassphrase/>
|
|
|
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
|
|
|
+ <snmpv3_privpassphrase/>
|
|
|
+ <params/>
|
|
|
+ <ipmi_sensor/>
|
|
|
+ <authtype>0</authtype>
|
|
|
+ <username/>
|
|
|
+ <password/>
|
|
|
+ <publickey/>
|
|
|
+ <privatekey/>
|
|
|
+ <port/>
|
|
|
+ <description/>
|
|
|
+ <inventory_link>0</inventory_link>
|
|
|
+ <applications>
|
|
|
+ <application>
|
|
|
+ <name>Yunohost : Certificates</name>
|
|
|
+ </application>
|
|
|
+ <application>
|
|
|
+ <name>Yunohost : Certificates : State</name>
|
|
|
+ </application>
|
|
|
+ </applications>
|
|
|
+ <valuemap>
|
|
|
+ <name>Yunohost : certificates</name>
|
|
|
+ </valuemap>
|
|
|
+ <logtimefmt/>
|
|
|
+ <preprocessing>
|
|
|
+ <step>
|
|
|
+ <type>5</type>
|
|
|
+ <params>(.*);(.*);(.*);(.*);(.*);(.*);(.*);(.*);
|
|
|
+\3:unknown=0:critical=1:warning=2:attention=3:good=4;great=5</params>
|
|
|
+ </step>
|
|
|
+ <step>
|
|
|
+ <type>5</type>
|
|
|
+ <params>^(unknown|critical|warning|attention|good|great):(?=.*\1=(\d))
|
|
|
+\2</params>
|
|
|
+ </step>
|
|
|
+ </preprocessing>
|
|
|
+ <jmx_endpoint/>
|
|
|
+ <timeout>3s</timeout>
|
|
|
+ <url/>
|
|
|
+ <query_fields/>
|
|
|
+ <posts/>
|
|
|
+ <status_codes>200</status_codes>
|
|
|
+ <follow_redirects>1</follow_redirects>
|
|
|
+ <post_type>0</post_type>
|
|
|
+ <http_proxy/>
|
|
|
+ <headers/>
|
|
|
+ <retrieve_mode>0</retrieve_mode>
|
|
|
+ <request_method>0</request_method>
|
|
|
+ <output_format>0</output_format>
|
|
|
+ <allow_traps>0</allow_traps>
|
|
|
+ <ssl_cert_file/>
|
|
|
+ <ssl_key_file/>
|
|
|
+ <ssl_key_password/>
|
|
|
+ <verify_peer>0</verify_peer>
|
|
|
+ <verify_host>0</verify_host>
|
|
|
+ <application_prototypes/>
|
|
|
+ <master_item>
|
|
|
+ <key>yunohost.domain.cert[{#DOMAIN}]</key>
|
|
|
+ </master_item>
|
|
|
+ </item_prototype>
|
|
|
+ <item_prototype>
|
|
|
+ <name>Informations {#DOMAIN} full</name>
|
|
|
+ <type>0</type>
|
|
|
+ <snmp_community/>
|
|
|
+ <snmp_oid/>
|
|
|
+ <key>yunohost.domain.cert[{#DOMAIN}]</key>
|
|
|
+ <delay>1d</delay>
|
|
|
+ <history>180d</history>
|
|
|
+ <trends>0</trends>
|
|
|
+ <status>0</status>
|
|
|
+ <value_type>1</value_type>
|
|
|
+ <allowed_hosts/>
|
|
|
+ <units/>
|
|
|
+ <snmpv3_contextname/>
|
|
|
+ <snmpv3_securityname/>
|
|
|
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
|
|
|
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
|
|
|
+ <snmpv3_authpassphrase/>
|
|
|
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
|
|
|
+ <snmpv3_privpassphrase/>
|
|
|
+ <params/>
|
|
|
+ <ipmi_sensor/>
|
|
|
+ <authtype>0</authtype>
|
|
|
+ <username/>
|
|
|
+ <password/>
|
|
|
+ <publickey/>
|
|
|
+ <privatekey/>
|
|
|
+ <port/>
|
|
|
+ <description/>
|
|
|
+ <inventory_link>0</inventory_link>
|
|
|
+ <applications>
|
|
|
+ <application>
|
|
|
+ <name>Yunohost : Certificates</name>
|
|
|
+ </application>
|
|
|
+ </applications>
|
|
|
+ <valuemap/>
|
|
|
+ <logtimefmt/>
|
|
|
+ <preprocessing/>
|
|
|
+ <jmx_endpoint/>
|
|
|
+ <timeout>3s</timeout>
|
|
|
+ <url/>
|
|
|
+ <query_fields/>
|
|
|
+ <posts/>
|
|
|
+ <status_codes>200</status_codes>
|
|
|
+ <follow_redirects>1</follow_redirects>
|
|
|
+ <post_type>0</post_type>
|
|
|
+ <http_proxy/>
|
|
|
+ <headers/>
|
|
|
+ <retrieve_mode>0</retrieve_mode>
|
|
|
+ <request_method>0</request_method>
|
|
|
+ <output_format>0</output_format>
|
|
|
+ <allow_traps>0</allow_traps>
|
|
|
+ <ssl_cert_file/>
|
|
|
+ <ssl_key_file/>
|
|
|
+ <ssl_key_password/>
|
|
|
+ <verify_peer>0</verify_peer>
|
|
|
+ <verify_host>0</verify_host>
|
|
|
+ <application_prototypes/>
|
|
|
+ <master_item/>
|
|
|
+ </item_prototype>
|
|
|
+ </item_prototypes>
|
|
|
+ <trigger_prototypes/>
|
|
|
+ <graph_prototypes/>
|
|
|
+ <host_prototypes/>
|
|
|
+ <jmx_endpoint/>
|
|
|
+ <timeout>3s</timeout>
|
|
|
+ <url/>
|
|
|
+ <query_fields/>
|
|
|
+ <posts/>
|
|
|
+ <status_codes>200</status_codes>
|
|
|
+ <follow_redirects>1</follow_redirects>
|
|
|
+ <post_type>0</post_type>
|
|
|
+ <http_proxy/>
|
|
|
+ <headers/>
|
|
|
+ <retrieve_mode>0</retrieve_mode>
|
|
|
+ <request_method>0</request_method>
|
|
|
+ <allow_traps>0</allow_traps>
|
|
|
+ <ssl_cert_file/>
|
|
|
+ <ssl_key_file/>
|
|
|
+ <ssl_key_password/>
|
|
|
+ <verify_peer>0</verify_peer>
|
|
|
+ <verify_host>0</verify_host>
|
|
|
+ </discovery_rule>
|
|
|
+ <discovery_rule>
|
|
|
+ <name>TCP Ports opened</name>
|
|
|
+ <type>0</type>
|
|
|
+ <snmp_community/>
|
|
|
+ <snmp_oid/>
|
|
|
+ <key>yunohost.ports.tcp.discover</key>
|
|
|
+ <delay>1d</delay>
|
|
|
+ <status>0</status>
|
|
|
+ <allowed_hosts/>
|
|
|
+ <snmpv3_contextname/>
|
|
|
+ <snmpv3_securityname/>
|
|
|
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
|
|
|
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
|
|
|
+ <snmpv3_authpassphrase/>
|
|
|
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
|
|
|
+ <snmpv3_privpassphrase/>
|
|
|
+ <params/>
|
|
|
+ <ipmi_sensor/>
|
|
|
+ <authtype>0</authtype>
|
|
|
+ <username/>
|
|
|
+ <password/>
|
|
|
+ <publickey/>
|
|
|
+ <privatekey/>
|
|
|
+ <port/>
|
|
|
+ <filter>
|
|
|
+ <evaltype>0</evaltype>
|
|
|
+ <formula/>
|
|
|
+ <conditions/>
|
|
|
+ </filter>
|
|
|
+ <lifetime>7d</lifetime>
|
|
|
+ <description/>
|
|
|
+ <item_prototypes>
|
|
|
+ <item_prototype>
|
|
|
+ <name>Check TCP port {#PORT} responding</name>
|
|
|
+ <type>0</type>
|
|
|
+ <snmp_community/>
|
|
|
+ <snmp_oid/>
|
|
|
+ <key>net.tcp.service[tcp,127.0.0.1,{#PORT}]</key>
|
|
|
+ <delay>900s</delay>
|
|
|
+ <history>90d</history>
|
|
|
+ <trends>365d</trends>
|
|
|
+ <status>0</status>
|
|
|
+ <value_type>3</value_type>
|
|
|
+ <allowed_hosts/>
|
|
|
+ <units/>
|
|
|
+ <snmpv3_contextname/>
|
|
|
+ <snmpv3_securityname/>
|
|
|
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
|
|
|
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
|
|
|
+ <snmpv3_authpassphrase/>
|
|
|
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
|
|
|
+ <snmpv3_privpassphrase/>
|
|
|
+ <params/>
|
|
|
+ <ipmi_sensor/>
|
|
|
+ <authtype>0</authtype>
|
|
|
+ <username/>
|
|
|
+ <password/>
|
|
|
+ <publickey/>
|
|
|
+ <privatekey/>
|
|
|
+ <port/>
|
|
|
+ <description/>
|
|
|
+ <inventory_link>0</inventory_link>
|
|
|
+ <applications>
|
|
|
+ <application>
|
|
|
+ <name>Yunohost : Ports</name>
|
|
|
+ </application>
|
|
|
+ </applications>
|
|
|
+ <valuemap>
|
|
|
+ <name>Service state</name>
|
|
|
+ </valuemap>
|
|
|
+ <logtimefmt/>
|
|
|
+ <preprocessing/>
|
|
|
+ <jmx_endpoint/>
|
|
|
+ <timeout>3s</timeout>
|
|
|
+ <url/>
|
|
|
+ <query_fields/>
|
|
|
+ <posts/>
|
|
|
+ <status_codes>200</status_codes>
|
|
|
+ <follow_redirects>1</follow_redirects>
|
|
|
+ <post_type>0</post_type>
|
|
|
+ <http_proxy/>
|
|
|
+ <headers/>
|
|
|
+ <retrieve_mode>0</retrieve_mode>
|
|
|
+ <request_method>0</request_method>
|
|
|
+ <output_format>0</output_format>
|
|
|
+ <allow_traps>0</allow_traps>
|
|
|
+ <ssl_cert_file/>
|
|
|
+ <ssl_key_file/>
|
|
|
+ <ssl_key_password/>
|
|
|
+ <verify_peer>0</verify_peer>
|
|
|
+ <verify_host>0</verify_host>
|
|
|
+ <application_prototypes/>
|
|
|
+ <master_item/>
|
|
|
+ </item_prototype>
|
|
|
+ </item_prototypes>
|
|
|
+ <trigger_prototypes>
|
|
|
+ <trigger_prototype>
|
|
|
+ <expression>{Template Yunohost:net.tcp.service[tcp,127.0.0.1,{#PORT}].last()}=0</expression>
|
|
|
+ <recovery_mode>0</recovery_mode>
|
|
|
+ <recovery_expression/>
|
|
|
+ <name>TCP port {#PORT} not responding</name>
|
|
|
+ <correlation_mode>0</correlation_mode>
|
|
|
+ <correlation_tag/>
|
|
|
+ <url/>
|
|
|
+ <status>0</status>
|
|
|
+ <priority>4</priority>
|
|
|
+ <description/>
|
|
|
+ <type>0</type>
|
|
|
+ <manual_close>1</manual_close>
|
|
|
+ <dependencies/>
|
|
|
+ <tags/>
|
|
|
+ </trigger_prototype>
|
|
|
+ </trigger_prototypes>
|
|
|
+ <graph_prototypes/>
|
|
|
+ <host_prototypes/>
|
|
|
+ <jmx_endpoint/>
|
|
|
+ <timeout>3s</timeout>
|
|
|
+ <url/>
|
|
|
+ <query_fields/>
|
|
|
+ <posts/>
|
|
|
+ <status_codes>200</status_codes>
|
|
|
+ <follow_redirects>1</follow_redirects>
|
|
|
+ <post_type>0</post_type>
|
|
|
+ <http_proxy/>
|
|
|
+ <headers/>
|
|
|
+ <retrieve_mode>0</retrieve_mode>
|
|
|
+ <request_method>0</request_method>
|
|
|
+ <allow_traps>0</allow_traps>
|
|
|
+ <ssl_cert_file/>
|
|
|
+ <ssl_key_file/>
|
|
|
+ <ssl_key_password/>
|
|
|
+ <verify_peer>0</verify_peer>
|
|
|
+ <verify_host>0</verify_host>
|
|
|
+ </discovery_rule>
|
|
|
+ <discovery_rule>
|
|
|
+ <name>UDP Ports opened</name>
|
|
|
+ <type>0</type>
|
|
|
+ <snmp_community/>
|
|
|
+ <snmp_oid/>
|
|
|
+ <key>yunohost.ports.udp.discover</key>
|
|
|
+ <delay>1d</delay>
|
|
|
+ <status>0</status>
|
|
|
+ <allowed_hosts/>
|
|
|
+ <snmpv3_contextname/>
|
|
|
+ <snmpv3_securityname/>
|
|
|
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
|
|
|
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
|
|
|
+ <snmpv3_authpassphrase/>
|
|
|
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
|
|
|
+ <snmpv3_privpassphrase/>
|
|
|
+ <params/>
|
|
|
+ <ipmi_sensor/>
|
|
|
+ <authtype>0</authtype>
|
|
|
+ <username/>
|
|
|
+ <password/>
|
|
|
+ <publickey/>
|
|
|
+ <privatekey/>
|
|
|
+ <port/>
|
|
|
+ <filter>
|
|
|
+ <evaltype>0</evaltype>
|
|
|
+ <formula/>
|
|
|
+ <conditions/>
|
|
|
+ </filter>
|
|
|
+ <lifetime>0d</lifetime>
|
|
|
+ <description/>
|
|
|
+ <item_prototypes>
|
|
|
+ <item_prototype>
|
|
|
+ <name>Check UDP port {#PORT} listening</name>
|
|
|
+ <type>0</type>
|
|
|
+ <snmp_community/>
|
|
|
+ <snmp_oid/>
|
|
|
+ <key>net.udp.listen[{#PORT}]</key>
|
|
|
+ <delay>900s</delay>
|
|
|
+ <history>90d</history>
|
|
|
+ <trends>365d</trends>
|
|
|
+ <status>0</status>
|
|
|
+ <value_type>3</value_type>
|
|
|
+ <allowed_hosts/>
|
|
|
+ <units/>
|
|
|
+ <snmpv3_contextname/>
|
|
|
+ <snmpv3_securityname/>
|
|
|
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
|
|
|
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
|
|
|
+ <snmpv3_authpassphrase/>
|
|
|
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
|
|
|
+ <snmpv3_privpassphrase/>
|
|
|
+ <params/>
|
|
|
+ <ipmi_sensor/>
|
|
|
+ <authtype>0</authtype>
|
|
|
+ <username/>
|
|
|
+ <password/>
|
|
|
+ <publickey/>
|
|
|
+ <privatekey/>
|
|
|
+ <port/>
|
|
|
+ <description/>
|
|
|
+ <inventory_link>0</inventory_link>
|
|
|
+ <applications>
|
|
|
+ <application>
|
|
|
+ <name>Yunohost : Ports</name>
|
|
|
+ </application>
|
|
|
+ </applications>
|
|
|
+ <valuemap>
|
|
|
+ <name>Service state</name>
|
|
|
+ </valuemap>
|
|
|
+ <logtimefmt/>
|
|
|
+ <preprocessing/>
|
|
|
+ <jmx_endpoint/>
|
|
|
+ <timeout>3s</timeout>
|
|
|
+ <url/>
|
|
|
+ <query_fields/>
|
|
|
+ <posts/>
|
|
|
+ <status_codes>200</status_codes>
|
|
|
+ <follow_redirects>1</follow_redirects>
|
|
|
+ <post_type>0</post_type>
|
|
|
+ <http_proxy/>
|
|
|
+ <headers/>
|
|
|
+ <retrieve_mode>0</retrieve_mode>
|
|
|
+ <request_method>0</request_method>
|
|
|
+ <output_format>0</output_format>
|
|
|
+ <allow_traps>0</allow_traps>
|
|
|
+ <ssl_cert_file/>
|
|
|
+ <ssl_key_file/>
|
|
|
+ <ssl_key_password/>
|
|
|
+ <verify_peer>0</verify_peer>
|
|
|
+ <verify_host>0</verify_host>
|
|
|
+ <application_prototypes/>
|
|
|
+ <master_item/>
|
|
|
+ </item_prototype>
|
|
|
+ </item_prototypes>
|
|
|
+ <trigger_prototypes>
|
|
|
+ <trigger_prototype>
|
|
|
+ <expression>{Template Yunohost:net.udp.listen[{#PORT}].last()}=0</expression>
|
|
|
+ <recovery_mode>0</recovery_mode>
|
|
|
+ <recovery_expression/>
|
|
|
+ <name>UDP port {#PORT} not listening</name>
|
|
|
+ <correlation_mode>0</correlation_mode>
|
|
|
+ <correlation_tag/>
|
|
|
+ <url/>
|
|
|
+ <status>0</status>
|
|
|
+ <priority>4</priority>
|
|
|
+ <description/>
|
|
|
+ <type>0</type>
|
|
|
+ <manual_close>1</manual_close>
|
|
|
+ <dependencies/>
|
|
|
+ <tags/>
|
|
|
+ </trigger_prototype>
|
|
|
+ </trigger_prototypes>
|
|
|
+ <graph_prototypes/>
|
|
|
+ <host_prototypes/>
|
|
|
+ <jmx_endpoint/>
|
|
|
+ <timeout>3s</timeout>
|
|
|
+ <url/>
|
|
|
+ <query_fields/>
|
|
|
+ <posts/>
|
|
|
+ <status_codes>200</status_codes>
|
|
|
+ <follow_redirects>1</follow_redirects>
|
|
|
+ <post_type>0</post_type>
|
|
|
+ <http_proxy/>
|
|
|
+ <headers/>
|
|
|
+ <retrieve_mode>0</retrieve_mode>
|
|
|
+ <request_method>0</request_method>
|
|
|
+ <allow_traps>0</allow_traps>
|
|
|
+ <ssl_cert_file/>
|
|
|
+ <ssl_key_file/>
|
|
|
+ <ssl_key_password/>
|
|
|
+ <verify_peer>0</verify_peer>
|
|
|
+ <verify_host>0</verify_host>
|
|
|
+ </discovery_rule>
|
|
|
+ <discovery_rule>
|
|
|
+ <name>Yunohost services</name>
|
|
|
+ <type>0</type>
|
|
|
+ <snmp_community/>
|
|
|
+ <snmp_oid/>
|
|
|
+ <key>yunohost.services.discover</key>
|
|
|
+ <delay>1d</delay>
|
|
|
+ <status>0</status>
|
|
|
+ <allowed_hosts/>
|
|
|
+ <snmpv3_contextname/>
|
|
|
+ <snmpv3_securityname/>
|
|
|
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
|
|
|
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
|
|
|
+ <snmpv3_authpassphrase/>
|
|
|
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
|
|
|
+ <snmpv3_privpassphrase/>
|
|
|
+ <params/>
|
|
|
+ <ipmi_sensor/>
|
|
|
+ <authtype>0</authtype>
|
|
|
+ <username/>
|
|
|
+ <password/>
|
|
|
+ <publickey/>
|
|
|
+ <privatekey/>
|
|
|
+ <port/>
|
|
|
+ <filter>
|
|
|
+ <evaltype>0</evaltype>
|
|
|
+ <formula/>
|
|
|
+ <conditions/>
|
|
|
+ </filter>
|
|
|
+ <lifetime>7d</lifetime>
|
|
|
+ <description/>
|
|
|
+ <item_prototypes>
|
|
|
+ <item_prototype>
|
|
|
+ <name>Yunohost service {#SERVICE} status</name>
|
|
|
+ <type>18</type>
|
|
|
+ <snmp_community/>
|
|
|
+ <snmp_oid/>
|
|
|
+ <key>yunohost.service.statusrunp[{#SERVICE}]</key>
|
|
|
+ <delay>0</delay>
|
|
|
+ <history>7d</history>
|
|
|
+ <trends>365d</trends>
|
|
|
+ <status>0</status>
|
|
|
+ <value_type>3</value_type>
|
|
|
+ <allowed_hosts/>
|
|
|
+ <units/>
|
|
|
+ <snmpv3_contextname/>
|
|
|
+ <snmpv3_securityname/>
|
|
|
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
|
|
|
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
|
|
|
+ <snmpv3_authpassphrase/>
|
|
|
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
|
|
|
+ <snmpv3_privpassphrase/>
|
|
|
+ <params/>
|
|
|
+ <ipmi_sensor/>
|
|
|
+ <authtype>0</authtype>
|
|
|
+ <username/>
|
|
|
+ <password/>
|
|
|
+ <publickey/>
|
|
|
+ <privatekey/>
|
|
|
+ <port/>
|
|
|
+ <description/>
|
|
|
+ <inventory_link>0</inventory_link>
|
|
|
+ <applications>
|
|
|
+ <application>
|
|
|
+ <name>Yunohost : Services</name>
|
|
|
+ </application>
|
|
|
+ <application>
|
|
|
+ <name>Yunohost : Services : Status</name>
|
|
|
+ </application>
|
|
|
+ </applications>
|
|
|
+ <valuemap>
|
|
|
+ <name>Yunohost : services</name>
|
|
|
+ </valuemap>
|
|
|
+ <logtimefmt/>
|
|
|
+ <preprocessing>
|
|
|
+ <step>
|
|
|
+ <type>5</type>
|
|
|
+ <params>(.*);(.*);(.*);(.*);(.*);(.*);(.*);
|
|
|
+\6:inactive=0:active=1:unknown=2;disabled=3</params>
|
|
|
+ </step>
|
|
|
+ <step>
|
|
|
+ <type>5</type>
|
|
|
+ <params>^(inactive|active|unknown|disabled):(?=.*\1=(\d))
|
|
|
+\2</params>
|
|
|
+ </step>
|
|
|
+ </preprocessing>
|
|
|
+ <jmx_endpoint/>
|
|
|
+ <timeout>3s</timeout>
|
|
|
+ <url/>
|
|
|
+ <query_fields/>
|
|
|
+ <posts/>
|
|
|
+ <status_codes>200</status_codes>
|
|
|
+ <follow_redirects>1</follow_redirects>
|
|
|
+ <post_type>0</post_type>
|
|
|
+ <http_proxy/>
|
|
|
+ <headers/>
|
|
|
+ <retrieve_mode>0</retrieve_mode>
|
|
|
+ <request_method>0</request_method>
|
|
|
+ <output_format>0</output_format>
|
|
|
+ <allow_traps>0</allow_traps>
|
|
|
+ <ssl_cert_file/>
|
|
|
+ <ssl_key_file/>
|
|
|
+ <ssl_key_password/>
|
|
|
+ <verify_peer>0</verify_peer>
|
|
|
+ <verify_host>0</verify_host>
|
|
|
+ <application_prototypes/>
|
|
|
+ <master_item>
|
|
|
+ <key>yunohost.service.status[{#SERVICE}]</key>
|
|
|
+ </master_item>
|
|
|
+ </item_prototype>
|
|
|
+ <item_prototype>
|
|
|
+ <name>Yunohost service {#SERVICE} status (full)</name>
|
|
|
+ <type>0</type>
|
|
|
+ <snmp_community/>
|
|
|
+ <snmp_oid/>
|
|
|
+ <key>yunohost.service.status[{#SERVICE}]</key>
|
|
|
+ <delay>15m</delay>
|
|
|
+ <history>7d</history>
|
|
|
+ <trends>0</trends>
|
|
|
+ <status>0</status>
|
|
|
+ <value_type>1</value_type>
|
|
|
+ <allowed_hosts/>
|
|
|
+ <units/>
|
|
|
+ <snmpv3_contextname/>
|
|
|
+ <snmpv3_securityname/>
|
|
|
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
|
|
|
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
|
|
|
+ <snmpv3_authpassphrase/>
|
|
|
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
|
|
|
+ <snmpv3_privpassphrase/>
|
|
|
+ <params/>
|
|
|
+ <ipmi_sensor/>
|
|
|
+ <authtype>0</authtype>
|
|
|
+ <username/>
|
|
|
+ <password/>
|
|
|
+ <publickey/>
|
|
|
+ <privatekey/>
|
|
|
+ <port/>
|
|
|
+ <description/>
|
|
|
+ <inventory_link>0</inventory_link>
|
|
|
+ <applications>
|
|
|
+ <application>
|
|
|
+ <name>Yunohost : Services</name>
|
|
|
+ </application>
|
|
|
+ </applications>
|
|
|
+ <valuemap/>
|
|
|
+ <logtimefmt/>
|
|
|
+ <preprocessing/>
|
|
|
+ <jmx_endpoint/>
|
|
|
+ <timeout>3s</timeout>
|
|
|
+ <url/>
|
|
|
+ <query_fields/>
|
|
|
+ <posts/>
|
|
|
+ <status_codes>200</status_codes>
|
|
|
+ <follow_redirects>1</follow_redirects>
|
|
|
+ <post_type>0</post_type>
|
|
|
+ <http_proxy/>
|
|
|
+ <headers/>
|
|
|
+ <retrieve_mode>0</retrieve_mode>
|
|
|
+ <request_method>0</request_method>
|
|
|
+ <output_format>0</output_format>
|
|
|
+ <allow_traps>0</allow_traps>
|
|
|
+ <ssl_cert_file/>
|
|
|
+ <ssl_key_file/>
|
|
|
+ <ssl_key_password/>
|
|
|
+ <verify_peer>0</verify_peer>
|
|
|
+ <verify_host>0</verify_host>
|
|
|
+ <application_prototypes/>
|
|
|
+ <master_item/>
|
|
|
+ </item_prototype>
|
|
|
+ </item_prototypes>
|
|
|
+ <trigger_prototypes>
|
|
|
+ <trigger_prototype>
|
|
|
+ <expression>{Template Yunohost:yunohost.service.statusrunp[{#SERVICE}].last()}=3</expression>
|
|
|
+ <recovery_mode>0</recovery_mode>
|
|
|
+ <recovery_expression/>
|
|
|
+ <name>Service {#SERVICE} disabled</name>
|
|
|
+ <correlation_mode>0</correlation_mode>
|
|
|
+ <correlation_tag/>
|
|
|
+ <url/>
|
|
|
+ <status>0</status>
|
|
|
+ <priority>4</priority>
|
|
|
+ <description/>
|
|
|
+ <type>0</type>
|
|
|
+ <manual_close>1</manual_close>
|
|
|
+ <dependencies/>
|
|
|
+ <tags/>
|
|
|
+ </trigger_prototype>
|
|
|
+ <trigger_prototype>
|
|
|
+ <expression>{Template Yunohost:yunohost.service.statusrunp[{#SERVICE}].last()}=0</expression>
|
|
|
+ <recovery_mode>0</recovery_mode>
|
|
|
+ <recovery_expression/>
|
|
|
+ <name>Service {#SERVICE} state is inactive</name>
|
|
|
+ <correlation_mode>0</correlation_mode>
|
|
|
+ <correlation_tag/>
|
|
|
+ <url/>
|
|
|
+ <status>0</status>
|
|
|
+ <priority>4</priority>
|
|
|
+ <description/>
|
|
|
+ <type>0</type>
|
|
|
+ <manual_close>1</manual_close>
|
|
|
+ <dependencies/>
|
|
|
+ <tags/>
|
|
|
+ </trigger_prototype>
|
|
|
+ <trigger_prototype>
|
|
|
+ <expression>{Template Yunohost:yunohost.service.statusrunp[{#SERVICE}].last()}=2</expression>
|
|
|
+ <recovery_mode>0</recovery_mode>
|
|
|
+ <recovery_expression/>
|
|
|
+ <name>Service {#SERVICE} state is unknown</name>
|
|
|
+ <correlation_mode>0</correlation_mode>
|
|
|
+ <correlation_tag/>
|
|
|
+ <url/>
|
|
|
+ <status>0</status>
|
|
|
+ <priority>4</priority>
|
|
|
+ <description/>
|
|
|
+ <type>0</type>
|
|
|
+ <manual_close>1</manual_close>
|
|
|
+ <dependencies/>
|
|
|
+ <tags/>
|
|
|
+ </trigger_prototype>
|
|
|
+ </trigger_prototypes>
|
|
|
+ <graph_prototypes/>
|
|
|
+ <host_prototypes/>
|
|
|
+ <jmx_endpoint/>
|
|
|
+ <timeout>3s</timeout>
|
|
|
+ <url/>
|
|
|
+ <query_fields/>
|
|
|
+ <posts/>
|
|
|
+ <status_codes>200</status_codes>
|
|
|
+ <follow_redirects>1</follow_redirects>
|
|
|
+ <post_type>0</post_type>
|
|
|
+ <http_proxy/>
|
|
|
+ <headers/>
|
|
|
+ <retrieve_mode>0</retrieve_mode>
|
|
|
+ <request_method>0</request_method>
|
|
|
+ <allow_traps>0</allow_traps>
|
|
|
+ <ssl_cert_file/>
|
|
|
+ <ssl_key_file/>
|
|
|
+ <ssl_key_password/>
|
|
|
+ <verify_peer>0</verify_peer>
|
|
|
+ <verify_host>0</verify_host>
|
|
|
+ </discovery_rule>
|
|
|
+ <discovery_rule>
|
|
|
+ <name>Yunohost users</name>
|
|
|
+ <type>0</type>
|
|
|
+ <snmp_community/>
|
|
|
+ <snmp_oid/>
|
|
|
+ <key>yunohost.users.discover</key>
|
|
|
+ <delay>1d</delay>
|
|
|
+ <status>0</status>
|
|
|
+ <allowed_hosts/>
|
|
|
+ <snmpv3_contextname/>
|
|
|
+ <snmpv3_securityname/>
|
|
|
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
|
|
|
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
|
|
|
+ <snmpv3_authpassphrase/>
|
|
|
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
|
|
|
+ <snmpv3_privpassphrase/>
|
|
|
+ <params/>
|
|
|
+ <ipmi_sensor/>
|
|
|
+ <authtype>0</authtype>
|
|
|
+ <username/>
|
|
|
+ <password/>
|
|
|
+ <publickey/>
|
|
|
+ <privatekey/>
|
|
|
+ <port/>
|
|
|
+ <filter>
|
|
|
+ <evaltype>0</evaltype>
|
|
|
+ <formula/>
|
|
|
+ <conditions/>
|
|
|
+ </filter>
|
|
|
+ <lifetime>30d</lifetime>
|
|
|
+ <description/>
|
|
|
+ <item_prototypes>
|
|
|
+ <item_prototype>
|
|
|
+ <name>Quota percent for user {#USERNAME}</name>
|
|
|
+ <type>0</type>
|
|
|
+ <snmp_community/>
|
|
|
+ <snmp_oid/>
|
|
|
+ <key>yunohost.user.quota[{#USERNAME}]</key>
|
|
|
+ <delay>1h</delay>
|
|
|
+ <history>30d</history>
|
|
|
+ <trends>365d</trends>
|
|
|
+ <status>0</status>
|
|
|
+ <value_type>3</value_type>
|
|
|
+ <allowed_hosts/>
|
|
|
+ <units>%</units>
|
|
|
+ <snmpv3_contextname/>
|
|
|
+ <snmpv3_securityname/>
|
|
|
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
|
|
|
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
|
|
|
+ <snmpv3_authpassphrase/>
|
|
|
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
|
|
|
+ <snmpv3_privpassphrase/>
|
|
|
+ <params/>
|
|
|
+ <ipmi_sensor/>
|
|
|
+ <authtype>0</authtype>
|
|
|
+ <username/>
|
|
|
+ <password/>
|
|
|
+ <publickey/>
|
|
|
+ <privatekey/>
|
|
|
+ <port/>
|
|
|
+ <description/>
|
|
|
+ <inventory_link>0</inventory_link>
|
|
|
+ <applications>
|
|
|
+ <application>
|
|
|
+ <name>Yunohost : Users</name>
|
|
|
+ </application>
|
|
|
+ </applications>
|
|
|
+ <valuemap/>
|
|
|
+ <logtimefmt/>
|
|
|
+ <preprocessing/>
|
|
|
+ <jmx_endpoint/>
|
|
|
+ <timeout>3s</timeout>
|
|
|
+ <url/>
|
|
|
+ <query_fields/>
|
|
|
+ <posts/>
|
|
|
+ <status_codes>200</status_codes>
|
|
|
+ <follow_redirects>1</follow_redirects>
|
|
|
+ <post_type>0</post_type>
|
|
|
+ <http_proxy/>
|
|
|
+ <headers/>
|
|
|
+ <retrieve_mode>0</retrieve_mode>
|
|
|
+ <request_method>0</request_method>
|
|
|
+ <output_format>0</output_format>
|
|
|
+ <allow_traps>0</allow_traps>
|
|
|
+ <ssl_cert_file/>
|
|
|
+ <ssl_key_file/>
|
|
|
+ <ssl_key_password/>
|
|
|
+ <verify_peer>0</verify_peer>
|
|
|
+ <verify_host>0</verify_host>
|
|
|
+ <application_prototypes/>
|
|
|
+ <master_item/>
|
|
|
+ </item_prototype>
|
|
|
+ </item_prototypes>
|
|
|
+ <trigger_prototypes>
|
|
|
+ <trigger_prototype>
|
|
|
+ <expression>{Template Yunohost:yunohost.user.quota[{#USERNAME}].last()}>=80</expression>
|
|
|
+ <recovery_mode>0</recovery_mode>
|
|
|
+ <recovery_expression/>
|
|
|
+ <name>User {#USERNAME} quota exceed 80%</name>
|
|
|
+ <correlation_mode>0</correlation_mode>
|
|
|
+ <correlation_tag/>
|
|
|
+ <url/>
|
|
|
+ <status>0</status>
|
|
|
+ <priority>3</priority>
|
|
|
+ <description/>
|
|
|
+ <type>0</type>
|
|
|
+ <manual_close>1</manual_close>
|
|
|
+ <dependencies/>
|
|
|
+ <tags/>
|
|
|
+ </trigger_prototype>
|
|
|
+ <trigger_prototype>
|
|
|
+ <expression>{Template Yunohost:yunohost.user.quota[{#USERNAME}].last()}>=90</expression>
|
|
|
+ <recovery_mode>0</recovery_mode>
|
|
|
+ <recovery_expression/>
|
|
|
+ <name>User {#USERNAME} quota exceed 90%</name>
|
|
|
+ <correlation_mode>0</correlation_mode>
|
|
|
+ <correlation_tag/>
|
|
|
+ <url/>
|
|
|
+ <status>0</status>
|
|
|
+ <priority>4</priority>
|
|
|
+ <description/>
|
|
|
+ <type>0</type>
|
|
|
+ <manual_close>1</manual_close>
|
|
|
+ <dependencies/>
|
|
|
+ <tags/>
|
|
|
+ </trigger_prototype>
|
|
|
+ </trigger_prototypes>
|
|
|
+ <graph_prototypes/>
|
|
|
+ <host_prototypes/>
|
|
|
+ <jmx_endpoint/>
|
|
|
+ <timeout>3s</timeout>
|
|
|
+ <url/>
|
|
|
+ <query_fields/>
|
|
|
+ <posts/>
|
|
|
+ <status_codes>200</status_codes>
|
|
|
+ <follow_redirects>1</follow_redirects>
|
|
|
+ <post_type>0</post_type>
|
|
|
+ <http_proxy/>
|
|
|
+ <headers/>
|
|
|
+ <retrieve_mode>0</retrieve_mode>
|
|
|
+ <request_method>0</request_method>
|
|
|
+ <allow_traps>0</allow_traps>
|
|
|
+ <ssl_cert_file/>
|
|
|
+ <ssl_key_file/>
|
|
|
+ <ssl_key_password/>
|
|
|
+ <verify_peer>0</verify_peer>
|
|
|
+ <verify_host>0</verify_host>
|
|
|
+ </discovery_rule>
|
|
|
+ </discovery_rules>
|
|
|
+ <httptests/>
|
|
|
+ <macros/>
|
|
|
+ <templates/>
|
|
|
+ <screens/>
|
|
|
+ </template>
|
|
|
+ </templates>
|
|
|
+ <triggers>
|
|
|
+ <trigger>
|
|
|
+ <expression>{Template Yunohost:yunohost.migrations.lastavailable.last()}<>{Template Yunohost:yunohost.migrations.lastinstalled.last()}</expression>
|
|
|
+ <recovery_mode>0</recovery_mode>
|
|
|
+ <recovery_expression/>
|
|
|
+ <name>Yunhost has migration in pending state</name>
|
|
|
+ <correlation_mode>0</correlation_mode>
|
|
|
+ <correlation_tag/>
|
|
|
+ <url/>
|
|
|
+ <status>0</status>
|
|
|
+ <priority>1</priority>
|
|
|
+ <description/>
|
|
|
+ <type>0</type>
|
|
|
+ <manual_close>1</manual_close>
|
|
|
+ <dependencies/>
|
|
|
+ <tags/>
|
|
|
+ </trigger>
|
|
|
+ <trigger>
|
|
|
+ <expression>{Template Yunohost:yunohost.backups.ageoflastbackup.last()}>=7</expression>
|
|
|
+ <recovery_mode>0</recovery_mode>
|
|
|
+ <recovery_expression/>
|
|
|
+ <name>Yunhost hasn't backup since 7 days</name>
|
|
|
+ <correlation_mode>0</correlation_mode>
|
|
|
+ <correlation_tag/>
|
|
|
+ <url/>
|
|
|
+ <status>0</status>
|
|
|
+ <priority>4</priority>
|
|
|
+ <description/>
|
|
|
+ <type>0</type>
|
|
|
+ <manual_close>1</manual_close>
|
|
|
+ <dependencies/>
|
|
|
+ <tags/>
|
|
|
+ </trigger>
|
|
|
+ <trigger>
|
|
|
+ <expression>{Template Yunohost:yunohost.backups.number.last()}=0</expression>
|
|
|
+ <recovery_mode>0</recovery_mode>
|
|
|
+ <recovery_expression/>
|
|
|
+ <name>Yunhost hasn't backup yet</name>
|
|
|
+ <correlation_mode>0</correlation_mode>
|
|
|
+ <correlation_tag/>
|
|
|
+ <url/>
|
|
|
+ <status>0</status>
|
|
|
+ <priority>4</priority>
|
|
|
+ <description/>
|
|
|
+ <type>0</type>
|
|
|
+ <manual_close>1</manual_close>
|
|
|
+ <dependencies/>
|
|
|
+ <tags/>
|
|
|
+ </trigger>
|
|
|
+ </triggers>
|
|
|
+ <value_maps>
|
|
|
+ <value_map>
|
|
|
+ <name>Service state</name>
|
|
|
+ <mappings>
|
|
|
+ <mapping>
|
|
|
+ <value>0</value>
|
|
|
+ <newvalue>Down</newvalue>
|
|
|
+ </mapping>
|
|
|
+ <mapping>
|
|
|
+ <value>1</value>
|
|
|
+ <newvalue>Up</newvalue>
|
|
|
+ </mapping>
|
|
|
+ </mappings>
|
|
|
+ </value_map>
|
|
|
+ <value_map>
|
|
|
+ <name>Yunohost : certificates</name>
|
|
|
+ <mappings>
|
|
|
+ <mapping>
|
|
|
+ <value>0</value>
|
|
|
+ <newvalue>unknown</newvalue>
|
|
|
+ </mapping>
|
|
|
+ <mapping>
|
|
|
+ <value>1</value>
|
|
|
+ <newvalue>critical</newvalue>
|
|
|
+ </mapping>
|
|
|
+ <mapping>
|
|
|
+ <value>2</value>
|
|
|
+ <newvalue>warning</newvalue>
|
|
|
+ </mapping>
|
|
|
+ <mapping>
|
|
|
+ <value>3</value>
|
|
|
+ <newvalue>attention</newvalue>
|
|
|
+ </mapping>
|
|
|
+ <mapping>
|
|
|
+ <value>4</value>
|
|
|
+ <newvalue>good</newvalue>
|
|
|
+ </mapping>
|
|
|
+ <mapping>
|
|
|
+ <value>5</value>
|
|
|
+ <newvalue>great</newvalue>
|
|
|
+ </mapping>
|
|
|
+ </mappings>
|
|
|
+ </value_map>
|
|
|
+ <value_map>
|
|
|
+ <name>Yunohost : services</name>
|
|
|
+ <mappings>
|
|
|
+ <mapping>
|
|
|
+ <value>0</value>
|
|
|
+ <newvalue>inactive</newvalue>
|
|
|
+ </mapping>
|
|
|
+ <mapping>
|
|
|
+ <value>1</value>
|
|
|
+ <newvalue>active</newvalue>
|
|
|
+ </mapping>
|
|
|
+ <mapping>
|
|
|
+ <value>2</value>
|
|
|
+ <newvalue>unknow</newvalue>
|
|
|
+ </mapping>
|
|
|
+ <mapping>
|
|
|
+ <value>3</value>
|
|
|
+ <newvalue>disabled</newvalue>
|
|
|
+ </mapping>
|
|
|
+ </mappings>
|
|
|
+ </value_map>
|
|
|
+ </value_maps>
|
|
|
+</zabbix_export>
|