forked from zampat/icinga2-monitoring-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path5010a-st_cisco_snmp_hw.sh
132 lines (122 loc) · 2.88 KB
/
5010a-st_cisco_snmp_hw.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#
#Services (as template)
# HowTo Export:
# icingacli director service show generic_service --json --no-defaults
#
# Service Template for Service Template
RES=`icingacli director service exists "SNMP_Cisco_HW"`
if [[ $RES =~ "does not exist" ]]
then
echo "Service 'SNMP_Cisco_HW' does not exists"
icingacli director service create --json '
{
"check_command": "check_snmp_cisco_hw",
"imports": [
"generic_snmp"
],
"object_name": "SNMP_Cisco_HW",
"object_type": "template",
"vars": {
"snmp_community": "public"
}
}
'
fi
# Service Template for Service Template
RES=`icingacli director service exists "SNMP_Cisco_HW_Temperature"`
if [[ $RES =~ "does not exist" ]]
then
echo "Service 'SNMP_Cisco_HW_Temperature' does not exists"
icingacli director service create --json '
{
"imports": [
"SNMP_Cisco_HW"
],
"object_name": "SNMP_Cisco_HW_Temperature",
"object_type": "template",
"vars": {
"snmp_check_type": "temp",
"snmp_critical": "65",
"snmp_warning": "45"
}
}
'
fi
# Service Template for Service Template
RES=`icingacli director service exists "SNMP_Cisco_HW_Fans"`
if [[ $RES =~ "does not exist" ]]
then
echo "Service 'SNMP_Cisco_HW_Fans' does not exists"
icingacli director service create --json '
{
"imports": [
"SNMP_Cisco_HW"
],
"object_name": "SNMP_Cisco_HW_Fans",
"object_type": "template",
"vars": {
"snmp_check_type": "fan"
}
}
'
fi
# Service Template for Service Template
RES=`icingacli director service exists "SNMP_Cisco_HW_PowerSupply"`
if [[ $RES =~ "does not exist" ]]
then
echo "Service 'SNMP_Cisco_HW_PowerSupply' does not exists"
icingacli director service create --json '
{
"imports": [
"SNMP_Cisco_HW"
],
"object_name": "SNMP_Cisco_HW_PowerSupply",
"object_type": "template",
"vars": {
"snmp_check_type": "ps"
}
}
'
fi
# Service Template for Service Template
RES=`icingacli director service exists "SNMP_Cisco_HW_CPU"`
if [[ $RES =~ "does not exist" ]]
then
echo "Service 'SNMP_Cisco_HW_CPU' does not exists"
icingacli director service create --json '
{
"imports": [
"SNMP_Cisco_HW"
],
"object_name": "SNMP_Cisco_HW_CPU",
"object_type": "template",
"vars": {
"snmp_check_type": "cpu",
"snmp_critical": "95",
"snmp_warning": "85"
}
}
'
fi
# Service Template for Service Template
RES=`icingacli director service exists "SNMP_Cisco_HW_MEM"`
if [[ $RES =~ "does not exist" ]]
then
echo "Service 'SNMP_Cisco_HW_MEM' does not exists"
icingacli director service create --json '
{
"imports": [
"SNMP_Cisco_HW"
],
"object_name": "SNMP_Cisco_HW_MEM",
"object_type": "template",
"vars": {
"snmp_check_type": "mem",
"snmp_critical": "5",
"snmp_warning": "15"
}
}
'
fi
echo "SNMP Cisco Services created"
exit 0