Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F9348138
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Subscribers
None
View Options
diff --git a/site-modules/profile/manifests/icinga2/objects/static_checks.pp b/site-modules/profile/manifests/icinga2/objects/static_checks.pp
index 9287de4a..3e037b29 100644
--- a/site-modules/profile/manifests/icinga2/objects/static_checks.pp
+++ b/site-modules/profile/manifests/icinga2/objects/static_checks.pp
@@ -1,70 +1,94 @@
# Static checks on the icinga master
class profile::icinga2::objects::static_checks {
$checks_file = '/etc/icinga2/conf.d/static-checks.conf'
::icinga2::object::host {'www.softwareheritage.org':
import => ['generic-host'],
check_command => 'hostalive4',
address => 'www.softwareheritage.org',
target => $checks_file,
vars => {
ping_wrta => 150,
ping_crta => 300,
},
}
+ ::icinga2::object::host {'softwareheritage.org':
+ import => ['generic-host'],
+ check_command => 'hostalive4',
+ address => 'softwareheritage.org',
+ target => $checks_file,
+ vars => {
+ ping_wrta => 150,
+ ping_crta => 300,
+ },
+ }
+
::icinga2::object::service {'Software Heritage Homepage':
import => ['generic-service'],
host_name => 'www.softwareheritage.org',
check_command => 'http',
target => $checks_file,
vars => {
http_vhost => 'www.softwareheritage.org',
http_uri => '/',
http_ssl => true,
http_sni => true,
http_string => '<title>Software Heritage</title>',
},
}
+ ::icinga2::object::service {'Software Heritage Homepage (redirect to www)':
+ import => ['generic-service'],
+ host_name => 'softwareheritage.org',
+ check_command => 'http',
+ target => $checks_file,
+ vars => {
+ http_vhost => 'softwareheritage.org',
+ http_uri => '/',
+ http_ssl => true,
+ http_sni => true,
+ },
+ }
+
::icinga2::object::host {'swh-logging-prod':
check_command => 'hostalive4',
address => '127.0.0.1',
target => $checks_file,
}
::icinga2::object::service {'swh-logging-prod cluster':
host_name => 'swh-logging-prod',
check_command => 'check_escluster',
target => $checks_file,
}
::icinga2::object::checkcommand {'check_escluster':
import => ['plugin-check-command'],
command => '/usr/lib/nagios/plugins/icinga_check_elasticsearch.sh',
target => $checks_file,
}
::icinga2::object::host {'DNS resolvers':
check_command => 'hostalive4',
address => '127.0.0.1',
target => $checks_file,
}
::icinga2::object::service {'SOA':
host_name => 'DNS resolvers',
check_command => 'check_resolvers',
target => $checks_file,
}
::icinga2::object::checkcommand {'check_resolvers':
import => ['plugin-check-command'],
command => [
'/usr/lib/nagios/plugins/dsa-nagios-checks_checks_dsa-check-soas.txt',
'internal.softwareheritage.org',
],
target => $checks_file,
}
}
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Jul 4 2025, 6:14 PM (4 w, 4 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3317748
Attached To
rSPSITE puppet-swh-site
Event Timeline
Log In to Comment