Puppet Class: profile::query_service::monitor::wikidata_internal_main
- Defined in:
- modules/profile/manifests/query_service/monitor/wikidata_internal_main.pp
Overview
SPDX-License-Identifier: Apache-2.0
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'modules/profile/manifests/query_service/monitor/wikidata_internal_main.pp', line 2
class profile::query_service::monitor::wikidata_internal_main {
nrpe::monitor_service { 'Query_Service_Internal_Main_HTTP_endpoint':
description => 'Internal query service (main) HTTP Port 80',
nrpe_command => '/usr/lib/nagios/plugins/check_http -H 127.0.0.1 -p 80 -w 10 -u /readiness-probe',
notes_url => 'https://wikitech.wikimedia.org/wiki/Wikidata_query_service',
migration_task => 'T358029',
}
profile::query_service::monitor::sparql_endpoint {
default:
server_name => 'wdqs-internal-main.discovery.wmnet';
'wdqs_internal_main_sre':
team => 'data-platform';
'wdqs_internal_main_search':
team => 'search-platform',
}
}
|