-
-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathexample_service_mysql.pp
97 lines (89 loc) · 2.52 KB
/
example_service_mysql.pp
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
class { 'icinga2':
manage_repos => true,
confd => 'example.d',
}
file { '/etc/icinga2/example.d':
ensure => directory,
tag => 'icinga2::config::file',
purge => true,
recurse => true,
}
#
# MySQL
#
class { 'mysql::server':
root_password => 'secret',
remove_default_accounts => true,
}
mysql::db { 'icinga2':
user => 'icinga2',
password => 'icinga2',
host => 'localhost',
grant => [
'SELECT', 'INSERT', 'UPDATE', 'DELETE', 'DROP',
'CREATE VIEW', 'CREATE', 'INDEX', 'EXECUTE', 'ALTER',
],
}
#
# Hosts
#
::icinga2::object::host { 'generic-host':
template => true,
target => '/etc/icinga2/example.d/templates.conf',
check_interval => '1m',
retry_interval => '30s',
max_check_attempts => 3,
check_command => 'hostalive',
}
::icinga2::object::host { 'NodeName':
target => '/etc/icinga2/example.d/hosts.conf',
import => ['generic-host'],
address => '127.0.0.1',
address6 => '::1',
vars => {
client_endpoint => name,
mysql => {
db_connection => {
mysql_hostname => 'localhost',
mysql_username => 'icinga2',
mysql_password => 'icinga2',
},
},
mysql_health => {
db_size => {
mysql_health_mode => 'sql',
mysql_health_name => '-:"SELECT SUM(date_length + index_length) / 1024 / 1024 AS \'db size\' FROM information_schema.tables WHERE table_schema = \'+ db_name +\';"',
mysql_health_name2 => 'db_size',
mysql_health_units => 'MB',
mysql_health_username => 'icinga2',
mysql_health_password => 'icinga2',
},
},
},
}
#
# Services
#
::icinga2::object::service { 'generic-service':
template => true,
target => '/etc/icinga2/example.d/templates.conf',
check_interval => '1m',
retry_interval => '30s',
max_check_attempts => 5,
}
::icinga2::object::service { 'mysql':
target => '/etc/icinga2/example.d/services.conf',
apply => 'mysql => config in host.vars.mysql',
import => ['generic-service'],
check_command => '-:"mysql"',
assign => ['host.vars.mysql'],
vars => 'vars + config',
}
::icinga2::object::service { 'mysql_health':
target => '/etc/icinga2/example.d/services.conf',
apply => 'mysql_health => config in host.vars.mysql_health',
import => ['generic-service'],
check_command => '-:"mysql_health"',
assign => ['host.vars.mysql_health'],
vars => 'vars + config',
}