Changeset 4047 for monitoring


Ignore:
Timestamp:
11/19/13 11:13:07 (11 years ago)
Author:
sanmai
Message:
  • Make port_number specified as command line parameter. For simplicity, there is no

default value anymore, for now.

Location:
monitoring/plugins/mpi
Files:
20 edited

Legend:

Unmodified
Added
Removed
  • monitoring/plugins/mpi/README

    r3043 r4047  
    1 These Nagios plugins to monitor services running on certain hosts can be run from the command line with:
    2 ./pluginname.py -h hostname
    3 
    4 The file plugins_hosts_services.tab is a small TAB-separated table that contains the applicable plugin name, the service it checks for, and the hostname of the hosts that it is supposed to check.
     1These are Nagios plugins to monitor services locally or remotely. For an overview of the the command line parameters and an example configuration, please see "plugins_hosts_services.tab". The file "plugins_hosts_services.tab" is a small TAB-separated table that contains the applicable plugin name, the service it checks for, and relevant parameters. "integration_test.R" tests all plugins with the parameter values specified in "plugins_hosts_services.tab" and outputs the results in "/tmp/Nagios_checks_test.tab".
  • monitoring/plugins/mpi/check_clarin_comp_reg.py

    r3555 r4047  
    99
    1010command_line_parameters = [("-h", "host",),
    11                            ("-u", "URL",)]
     11                           ("-u", "URL",),
     12                           ("-p", "port",)]
    1213
    1314
    14 def special_main_subroutine(host, http_path) :
     15def special_main_subroutine(host,
     16                            http_path,
     17                            port_number) :
     18
    1519    http_paths = (http_path,) # X- use frozenset
    1620   
    17     # Check status for all UP_URLs.
     21    ## Check status for all http_paths.
    1822    results = \
    19         map(lambda http_path : generic_tla_monitoring.check_condition(host                      = host,
    20                                                                    http_path                    = http_path,
     23        map(lambda http_path : generic_tla_monitoring.check_condition(host                   = host,
     24                                                                   http_path                 = http_path,
    2125                                                                   HTTP_method               = "GET",
    22                                                                    port_number               = 80,
     26                                                                   port_number               = port_number,
    2327                                                                   authorize                 = True,
    2428                                                                   validator                 = generic_tla_monitoring.check_HTML_wellformedness,
  • monitoring/plugins/mpi/check_clarin_discojuice_html.py

    r3555 r4047  
    77special_plugin_description = "Discojuice HTML"
    88special_plugin_file_name = os.path.basename(__file__)
    9 command_line_parameters = [("-h", "host",),
    10                            ("-u", "URL",)]
     9command_line_parameters = [("-h", "host",),
     10                           ("-u", "URL",),
     11                           ("-p", "port_number",)]
    1112
    1213
    13 def special_main_subroutine(host, http_path) :
     14def special_main_subroutine(host,
     15                            http_path,
     16                            port_number) :
    1417
    1518    http_paths = (http_path,)
    1619   
    17     # Check status for all http_path.
     20    ## Check status for all http_paths.
    1821    results = \
    1922        map(lambda http_path : generic_tla_monitoring.check_condition(host                      = host,
    2023                                                                      http_path                 = http_path,
    2124                                                                      HTTP_method               = "GET",
    22                                                                       port_number               = 80,
     25                                                                      port_number               = port_number,
    2326                                                                      authorize                 = True,
    2427                                                                      validator                 = generic_tla_monitoring.check_HTML_wellformedness,
  • monitoring/plugins/mpi/check_clarin_discojuice_json.py

    r3555 r4047  
    88special_plugin_file_name = os.path.basename(__file__)
    99command_line_parameters = [("-h", "host",),
    10                            ("-u", "http_path",)]
     10                           ("-u", "http_path",),
     11                           ("-p", "port_number",)]
    1112
    1213
    13 def special_main_subroutine(host, http_path) :
     14def special_main_subroutine(host,
     15                            http_path,
     16                            port_number) :
    1417
    1518    http_paths = (http_path,)
    1619   
    17     # Check status for all http_paths.
     20    ## Check status for all http_paths.
    1821    results = \
    1922        map(lambda http_path : generic_tla_monitoring.check_condition(host                      = host,
    2023                                                                      http_path                 = http_path,
    2124                                                                      HTTP_method               = "GET",
    22                                                                       port_number               = 80,
     25                                                                      port_number               = port_number,
    2326                                                                      authorize                 = True,
    2427                                                                      validator                 = generic_tla_monitoring.check_JSON_wellformedness,
  • monitoring/plugins/mpi/check_clarin_ldap.py

    r3318 r4047  
    2020
    2121def special_main_subroutine(host,
    22                             bind_DN) :
     22                            bind_DN) : 
    2323
    24     results = map(lambda host : generic_tla_monitoring.check_ldap(host = host,
     24    results = map(lambda host : generic_tla_monitoring.check_ldap(host    = host,
    2525                                                                  bind_DN = bind_DN),
    2626                                                                  #special_plugin_file_name = special_plugin_file_name), \
  • monitoring/plugins/mpi/check_clarin_saml.py

    r3313 r4047  
    1111
    1212DESCRIPTION = "SAML"
    13 command_line_parameters = [("-h", "host",),
    14                            ("-u", "URL"),
     13command_line_parameters = [("-h", "host",), 
     14                           ("-u", "http_path"),
    1515                           ("-d", "infra.clarin.eu root directory path",)]
    1616
     
    7878
    7979
    80 def check_condition(host, URL, CLARIN_server_root_directory_path) :
     80def check_condition(host,
     81                    http_path,
     82                    CLARIN_server_root_directory_path) :
    8183
    8284    conn    = httplib.HTTPSConnection(host)
    8385   
    8486    # Use exception handling.
    85     conn.request("GET", URL)
     87    conn.request("GET", http_path)
    8688   
    8789    r1      = conn.getresponse()
     
    104106                return {
    105107                        "code"      : "OK",
    106                         "message"   : 'Host %s, service %s is up and returns well-formed and valid XML data at %s.' % (host, DESCRIPTION, URL)
     108                        "message"   : 'Host %s, service %s is up and returns well-formed and valid XML data at %s.' % (host, DESCRIPTION, http_path)
    107109                       }
    108110            else :
    109111                return {
    110112                        "code"      : "CRITICAL",
    111                         "message"   : 'Host %s, service %s is up and returns well-formed, but invalid XML data at %s.' % (host, DESCRIPTION, URL)
     113                        "message"   : 'Host %s, service %s is up and returns well-formed, but invalid XML data at %s.' % (host, DESCRIPTION, http_path)
    112114                       }
    113115        else :
    114116            return {
    115117                        "code"      : "CRITICAL",
    116                         "message"   : 'Host %s, service %s is up but returns non-well-formed XML data %s.' % (host, DESCRIPTION, URL)
     118                        "message"   : 'Host %s, service %s is up but returns non-well-formed XML data %s.' % (host, DESCRIPTION, http_path)
    117119                    }
    118120    else :
    119121        return {
    120122                "code"      : "CRITICAL",
    121                 "message"   : 'Host %s, service %s, location %s has a problem.' % (host, DESCRIPTION, URL)
     123                "message"   : 'Host %s, service %s, location %s has a problem.' % (host, DESCRIPTION, http_path)
    122124               }
    123125
    124 def test_case(host, URL, CLARIN_server_root_directory_path) :
     126def test_case(host,
     127              http_path,
     128              CLARIN_server_root_directory_path) :
     129   
    125130    metadata_file       = open(os.path.join(CLARIN_server_root_directory_path, "aai/clarin-sp-metadata.xml"),
    126131              mode      = "r+",
     
    136141    valid       = interpretation_tuple[1]
    137142
    138     if well_formed :
    139         if valid :
     143    if well_formed : 
     144        if valid : 
    140145            return {
    141146                    "code"      : "OK",
    142                     "message"   : 'Host %s, service %s is up and returns well-formed and valid XML data at %s.' % (host, DESCRIPTION, URL)
     147                    "message"   : 'Host %s, service %s is up and returns well-formed and valid XML data at %s.' % (host, DESCRIPTION, http_path)
    143148                   }
    144149        else :
    145150            return {
    146151                    "code"      : "CRITICAL",
    147                     "message"   : 'Host %s, service %s is up and returns well-formed, but invalid XML data at %s.' % (host, DESCRIPTION, URL)
     152                    "message"   : 'Host %s, service %s is up and returns well-formed, but invalid XML data at %s.' % (host, DESCRIPTION, http_path)
    148153                   }
    149154    else :
    150155        return {
    151156                "code"      : "CRITICAL",
    152                 "message"   : 'Host %s, service %s is up, but returns non-well-formed XML data at %s.' % (host, DESCRIPTION, URL)
     157                "message"   : 'Host %s, service %s is up, but returns non-well-formed XML data at %s.' % (host, DESCRIPTION, http_path)
    153158               }
    154159
     
    157162
    158163def special_main_subroutine(host,
    159                             URL,
     164                            http_path,
    160165                            CLARIN_server_root_directory_path) :
    161166
    162167    result = check_condition(host = host,
    163                              URL = URL,
     168                             http_path = http_path,
    164169                             CLARIN_server_root_directory_path = CLARIN_server_root_directory_path)
    165170   
  • monitoring/plugins/mpi/check_clarin_vlo.py

    r3555 r4047  
    88
    99command_line_parameters = [("-h", "host",),
    10                            ("-u", "http_path",)]
     10                           ("-u", "http_path",),
     11                           ("-p", "port_number",)]
    1112
    12 def special_main_subroutine(host, http_path) :
    13     #result = test_case(host);
    14     #result = check_condition(host)
    15     #generic_tla_monitoring.nagios_return(result['code'], result['message'])
     13def special_main_subroutine(host,
     14                            http_path,
     15                            port_number) :
    1616
    1717    http_path = (http_path,) # X- use frozenset
    1818   
    19     # Check status for all http_path.
     19    ## Check status for all http_paths.
    2020    results = \
    2121        map(lambda http_path : generic_tla_monitoring.check_condition(host                      = host,
    2222                                                                      http_path                 = http_path,
    2323                                                                      HTTP_method               = "GET",
    24                                                                       port_number               = 80,
     24                                                                      port_number               = port_number,
    2525                                                                      authorize                 = True,
    2626                                                                      validator                 = generic_tla_monitoring.check_HTML_wellformedness,
  • monitoring/plugins/mpi/check_lat_annex.py

    r3555 r4047  
    88special_plugin_file_name = os.path.basename(__file__)
    99command_line_parameters = [("-h", "host",),
    10                            ("-u", "http_path",)]
     10                           ("-u", "http_path",),
     11                           ("-p", "port_number",)]
    1112
    1213
    1314def special_main_subroutine(host,
    14                             http_path) :
     15                            http_path,
     16                            port_number) :
    1517
    1618    http_paths = (http_path,) # X- use frozenset
    1719   
    18     # Check status for all http_paths.
     20    ## Check status for all http_paths.
    1921    results = \
    2022        map(lambda http_path : generic_tla_monitoring.check_condition(host                      = host,
    21                                                                       http_path                = http_path,
     23                                                                      http_path                 = http_path,
    2224                                                                      HTTP_method               = "GET",
    23                                                                       port_number               = 80,
     25                                                                      port_number               = port_number,
    2426                                                                      authorize                 = True,
    2527                                                                      validator                 = generic_tla_monitoring.check_HTML_wellformedness,
  • monitoring/plugins/mpi/check_lat_avatech_clam.py

    r3555 r4047  
    88special_plugin_file_name = os.path.basename(__file__)
    99command_line_parameters = [("-h", "host",),
    10                            ("-u", "http_path",)]
     10                           ("-u", "http_path",),
     11                           ("-p", "port_number",)]
    1112valid_root_element_tag = "clam"
    1213
    13 def special_main_subroutine(host, http_path) :
     14def special_main_subroutine(host,
     15                            http_path,
     16                            port_number) :
    1417
    1518    http_paths = (http_path,) # X- use frozenset
     
    1720    # Check status for all http_paths.
    1821    results = \
    19         map(lambda http_path : generic_tla_monitoring.check_condition(host                      = host,
     22        map(lambda http_path : generic_tla_monitoring.check_condition(host                   = host,
    2023                                                                   http_path                 = http_path,
    2124                                                                   HTTP_method               = "GET",
    22                                                                    port_number               = 80,
     25                                                                   port_number               = port_number,
    2326                                                                   authorize                 = True,
    2427                                                                   validator                 = generic_tla_monitoring.check_XML_validity,
  • monitoring/plugins/mpi/check_lat_cql_endpoint.py

    r4043 r4047  
    99CQL_namespace = "http://www.loc.gov/zing/srw/"
    1010command_line_parameters = [("-h", "host",),
    11                            ("-u", "http_path",)]
     11                           ("-u", "http_path",),
     12                           ("-p", "port_number",)]
    1213
    13 # Warning: check of validity of returned data relies on the XML namespace CQL_NAMESPACE of the returned XML markup.
    1414
    15 def special_main_subroutine(host,
    16                             http_path) :
     15def special_main_subroutine(host,
     16                            http_path,
     17                            port_number) :
    1718   
    1819    http_paths = (http_path,) # X- allow for multiple URLs?
    1920
     21    ## Warning: check of validity of returned data relies on the XML namespace CQL_NAMESPACE of the returned XML markup.
    2022    valid_root_element_tag = "{%s}explainResponse" % (CQL_namespace)
    2123   
    22     if host.count(':') == 1:
    23         host, port = host.split(':')
    24     else:
    25         port = 80
    26     # Check status for all http_paths.
     24    ## Check status for all http_paths.
    2725    results = \
    2826        map(lambda http_path : generic_tla_monitoring.check_condition(host                      = host,
    2927                                                                      http_path                 = http_path,
    3028                                                                      HTTP_method               = 'GET',
    31                                                                       port_number               = port,
     29                                                                      port_number               = port_number,
    3230                                                                      authorize                 = True,
    3331                                                                      validator                 = generic_tla_monitoring.check_XML_validity,
  • monitoring/plugins/mpi/check_lat_dobes.py

    r3555 r4047  
    88special_plugin_file_name = os.path.basename(__file__)
    99command_line_parameters = [("-h", "host",),
    10                            ("-u", "http_path",)]
     10                           ("-u", "http_path",),
     11                           ("-p", "port_number",)]
    1112
    1213
    13 def special_main_subroutine(host, http_path) :
     14def special_main_subroutine(host,
     15                            http_path,
     16                            port_number) :
    1417
    1518    http_paths = (http_path,)
    1619   
    17     # Check status for all UP_URLs.
     20    ## Check status for all http_paths.
    1821    results = \
    1922        map(lambda http_path : generic_tla_monitoring.check_condition(host                      = host,
    20                                                                    http_path                    = http_path,
    21                                                                    HTTP_method               = "GET",
    22                                                                    port_number               = 80,
    23                                                                    authorize                 = True,
    24                                                                    validator                 = generic_tla_monitoring.check_HTML_wellformedness,
    25                                                                    special_plugin_file_name  = special_plugin_file_name),
     23                                                                      http_path                 = http_path,
     24                                                                      HTTP_method               = "GET",
     25                                                                      port_number               = port_number,
     26                                                                      authorize                 = True,
     27                                                                      validator                 = generic_tla_monitoring.check_HTML_wellformedness,
     28                                                                      special_plugin_file_name  = special_plugin_file_name),
    2629                  http_paths)   
    2730   
  • monitoring/plugins/mpi/check_lat_handle.py

    r3555 r4047  
    88special_plugin_file_name = os.path.basename(__file__)
    99command_line_parameters = [("-h", "host",),
    10                            ("-u", "http_path",)]
     10                           ("-u", "http_path",),
     11                           ("-p", "port_number",)]
    1112IMDI_namespace = "http://www.mpi.nl/IMDI/Schema/IMDI"
    1213
    1314# Warning: old checking condition "if 300 <= r1.status and r1.status < 400:" X-
    1415
    15 def special_main_subroutine(host, http_path) :
    16     #result = test_case(host);
    17     #result = check_condition(host)
    18     #generic_tla_monitoring.nagios_return(result['code'], result['message'])
     16def special_main_subroutine(host,
     17                            http_path,
     18                            port_number) :
    1919
    2020    valid_root_element_tag = "{%s}METATRANSCRIPT" % (IMDI_namespace)
    2121
    2222    http_paths = (http_path,) # X- use frozenset
    23     # /1839/00-0000-0000-0000-0000-4
    24     # POST hdl=1839%2F00-0000-0000-0000-0009-4&auth=x&noredirect=
    2523   
    26     # Check status for all http_paths.
     24    ## Check status for all http_paths.
    2725    results = \
    28         map(lambda http_path : generic_tla_monitoring.check_condition(host                      = 'hdl.handle.net', # X- host
    29                                                                       http_path                 = http_path,
    30                                                                       HTTP_method               = 'POST',
    31                                                                       port_number               = 80,
    32                                                                       authorize                 = True,
     26        map(lambda http_path : generic_tla_monitoring.check_condition(host                      = host, ## Always hdl.handle.net
     27                                                                      http_path                 = http_path, 
     28                                                                      HTTP_method               = 'POST', 
     29                                                                      port_number               = port_number,
     30                                                                      authorize                 = True, 
    3331                                                                      validator                 = generic_tla_monitoring.check_XML_validity,
    3432                                                                      valid_root_element_tag    = valid_root_element_tag,                                                                 
  • monitoring/plugins/mpi/check_lat_imdi.py

    r3555 r4047  
    88special_plugin_file_name = os.path.basename(__file__)
    99command_line_parameters = [("-h", "host",),
    10                            ("-u", "http_path",)]
     10                           ("-u", "http_path",),
     11                           ("-p", "port_number",)]
    1112
    12 def special_main_subroutine(host, http_path) :
     13def special_main_subroutine(host,
     14                            http_path,
     15                            port_number) :
    1316
    1417    http_paths = (http_path,)
     
    1922    # new: /ds/imdi_browser/viewcontroller?request=view&nodeid=MPI299144%23
    2023
    21     # Check status for all http_paths.
     24    ## Check status for all http_paths.
    2225    results = \
    2326        map(lambda http_path : generic_tla_monitoring.check_condition(host                      = host,
    2427                                                                      http_path                 = http_path,
    2528                                                                      HTTP_method               = 'GET',
    26                                                                       port_number              = 80,
    27                                                                       authorize                = True,
    28                                                                       validator                = generic_tla_monitoring.check_HTML_wellformedness,
     29                                                                      port_number               = port_number,
     30                                                                      authorize                 = True,
     31                                                                      validator                 = generic_tla_monitoring.check_HTML_wellformedness,
    2932                                                                      special_plugin_file_name  = special_plugin_file_name),
    3033          http_paths)
  • monitoring/plugins/mpi/check_lat_lamus.py

    r3555 r4047  
    88special_plugin_file_name = os.path.basename(__file__)
    99command_line_parameters = [("-h", "host",),
    10                            ("-u", "http_path",)]
     10                           ("-u", "http_path",),
     11                           ("-p", "port_number",)]
    1112
    1213
    13 def special_main_subroutine(host, http_path) :
     14def special_main_subroutine(host,
     15                            http_path,
     16                            port_number) :
    1417
    1518    http_paths = (http_path,) # X- use frozenset
     
    2023                                                                      http_path                = http_path,
    2124                                                                      HTTP_method              = 'GET',
    22                                                                       port_number              = 80,
     25                                                                      port_number              = port_number,
    2326                                                                      authorize                = True,
    2427                                                                      validator                = generic_tla_monitoring.check_HTML_wellformedness,
  • monitoring/plugins/mpi/check_lat_lexus.py

    r3555 r4047  
    88special_plugin_file_name = os.path.basename(__file__)
    99command_line_parameters = [("-h", "host",),
    10                            ("-u", "http_path",)]
     10                           ("-u", "http_path",),
     11                           ("-p", "port_number",)]
    1112
    1213
    13 def special_main_subroutine(host, http_path) :
     14def special_main_subroutine(host,
     15                            http_path,
     16                            port_number) :
    1417
    1518    http_paths = (http_path,) # X- use frozenset
    1619   
    17     # Check status for all http_paths.
     20    ## Check status for all http_paths.
    1821    results = \
    1922        map(lambda http_path : generic_tla_monitoring.check_condition(host                     = host,
    2023                                                                      http_path                = http_path,
    2124                                                                      HTTP_method              = 'GET',
    22                                                                       port_number              = 80,
     25                                                                      port_number              = port_number,
    2326                                                                      authorize                = True,
    2427                                                                      validator                = generic_tla_monitoring.check_HTML_wellformedness,
  • monitoring/plugins/mpi/check_lat_oai_endpoint.py

    r4043 r4047  
    99OAI_namespace = "http://www.openarchives.org/OAI/2.0/"
    1010command_line_parameters = [("-h", "host",),
    11                            ("-u", "http_path",)]
     11                           ("-u", "http_path",),
     12                           ("-p", "port_number",)]
    1213
    13 # Warning: check of validity of returned data relies on the XML namespace OAI_NAMESPACE of the returned XML markup.
    1414
    1515def special_main_subroutine(host,
    16                             http_path) :
     16                            http_path,
     17                            port_number) :
    1718
    1819    http_paths = (http_path,) # X- use frozenset
    1920
     21    ## Warning: check of validity of returned data relies on the XML namespace OAI_NAMESPACE of the returned XML markup.
    2022    valid_root_element_tag  = "{%s}OAI-PMH" % (OAI_namespace)
    2123   
    22     if host.count(':') == 1:
    23         host, port = host.split(':')
    24     else:
    25         port = 80
    26     # Check status for all http_paths.
     24    ## Check status for all http_paths.
    2725    results = \
    2826        map(lambda http_path : generic_tla_monitoring.check_condition(host                      = host,
    2927                                                                      http_path                 = http_path,
    3028                                                                      HTTP_method               = 'GET',
    31                                                                       port_number               = port,
     29                                                                      port_number               = port_number,
    3230                                                                      authorize                 = True,
    3331                                                                      validator                 = generic_tla_monitoring.check_XML_validity,
     
    3634            http_paths)   
    3735   
    38     generic_tla_monitoring.nagios_return_complex(results, reporter = special_plugin_description)
     36    generic_tla_monitoring.nagios_return_complex(results,
     37                                                 reporter = special_plugin_description)
    3938
    4039if __name__ == "__main__" :
  • monitoring/plugins/mpi/check_lat_postgresql.py

    r3556 r4047  
    1414def special_main_subroutine(host,
    1515                            http_path,
    16                             port_number) :
     16                            port_number) : 
    1717
    1818    http_paths = (http_path,)
    1919   
    20     # Check status for all http_paths.
     20    ## Check status for all http_paths.
    2121    results = \
    2222        map(lambda http_path : generic_tla_monitoring.check_condition(host                      = host,
  • monitoring/plugins/mpi/check_lat_www.py

    r3556 r4047  
    88special_plugin_file_name = os.path.basename(__file__)
    99command_line_parameters = [("-h", "host",),
    10                            ("-u", "http_path",)]
     10                           ("-u", "http_path",),
     11                           ("-p", "port_number",)]
    1112
    1213
    13 def special_main_subroutine(host, http_path) :
     14def special_main_subroutine(host,
     15                            http_path,
     16                            port_number) :
    1417
    1518    http_paths = (http_path,)
    1619   
    17     # Check status for all http_paths.
     20    ## Check status for all http_paths.
    1821    results = \
    1922        map(lambda http_path : generic_tla_monitoring.check_condition(host                      = host,
    2023                                                                      http_path                 = http_path,
    2124                                                                      HTTP_method               = "GET",
    22                                                                       port_number               = 80,
     25                                                                      port_number               = port_number,
    2326                                                                      authorize                 = True,
    2427                                                                      validator                 = generic_tla_monitoring.check_HTML_wellformedness,
  • monitoring/plugins/mpi/generic_tla_monitoring.py

    r3568 r4047  
    371371def main(special_main_subroutine,
    372372         command_line_parameters) :
    373     #X- command_line_parameters = [("-h", "host",)]
    374     ##  Process plugin-specific command line parameters.
     373   
     374    ## Process plugin-specific command line parameters.
    375375    command_line_parameters_getopt_string = command_line_parameters_usage_string = "\\ \n"
    376376    for (parameter, description) in command_line_parameters :
  • monitoring/plugins/mpi/plugins_hosts_services.tab

    r3555 r4047  
    11file name       description     -h      protocol        -u      -b      -d      -p
    2 check_lat_cql_endpoint.py       CQL endpoint    cqlservlet.mpi.nl       http    '/'                     
    3 check_lat_avatech_clam.py       AVATecH CLAM    catalog.clarin.eu       http    '/avatech/avatech_iais_fine_segmentation'                       
    4 check_lat_lexus.py      Lexus   corpus1.mpi.nl  http    '/mpi/lexusDojo/'                       
    5 check_lat_lamus.py      Lamus   corpus1.mpi.nl  http    '/jkc/lamus/lamusstart.jsp'                     
    6 check_lat_imdi.py       IMDI browser [staging]  lux17.mpi.nl    http    '/ds/imdi_browser/viewcontroller?request=view&nodeid=MPI299144%23'                     
    7 check_lat_imdi.py       IMDI browser [production]       corpus1.mpi.nl  http    '/ds/imdi_browser/viewcontroller?request=view&nodeid=MPI299144%23'                     
    8 check_lat_handle.py     Handle  hdl.handle.net  http    '/?hdl=1839%2F00-0000-0000-0000-0000-4&auth=x'                 
    9 check_lat_annex.py      Annex   corpus1.mpi.nl  http    '/ds/annex/runLoader?nodeid=MPI600401%23'                       
    10 check_lat_oai_endpoint.py       OAI-PMH corpus1.mpi.nl  http    '/ds/oaiprovider/oai2?verb=Identify'                   
    11 check_clarin_saml.py    SAML    infra.clarin.eu https   '/aai/clarin-sp-metadata.xml'           /srv/www/infra.clarin.eu/       
    12 check_clarin_discojuice_html.py Discojuice HTML 1       catalog.clarin.eu       http    '/mw1/sds/discojuice'                   
     2check_lat_cql_endpoint.py       CQL endpoint    cqlservlet.mpi.nl       http    '/'                     80
     3check_lat_avatech_clam.py       AVATecH CLAM    catalog.clarin.eu       http    '/avatech/avatech_iais_fine_segmentation'                       80
     4check_lat_lexus.py      Lexus   corpus1.mpi.nl  http    '/mpi/lexusDojo/'                       80
     5check_lat_lamus.py      Lamus   corpus1.mpi.nl  http    '/jkc/lamus/lamusstart.jsp'                     80
     6check_lat_imdi.py       IMDI browser [staging]  lux17.mpi.nl    http    '/ds/imdi_browser/viewcontroller?request=view&nodeid=MPI299144%23'                      80
     7check_lat_imdi.py       IMDI browser [production]       corpus1.mpi.nl  http    '/ds/imdi_browser/viewcontroller?request=view&nodeid=MPI299144%23'                      80
     8check_lat_handle.py     Handle  hdl.handle.net  http    '/?hdl=1839%2F00-0000-0000-0000-0000-4&auth=x'                  80
     9check_lat_annex.py      Annex   corpus1.mpi.nl  http    '/ds/annex/runLoader?nodeid=MPI600401%23'                       80
     10check_lat_oai_endpoint.py       OAI-PMH corpus1.mpi.nl  http    '/ds/oaiprovider/oai2?verb=Identify'                    80
     11check_clarin_saml.py    SAML    infra.clarin.eu https   '/aai/clarin-sp-metadata.xml'           /srv/www/infra.clarin.eu/       80
     12check_clarin_discojuice_html.py Discojuice HTML 1       catalog.clarin.eu       http    '/mw1/sds/discojuice'                   80
    1313check_clarin_discojuice_html.py Discojuice HTML 2       catalog.clarin.eu       http    '/mw2/sds/discojuice'                   
    14 check_clarin_discojuice_json.py Discojuice JSON 1       catalog.clarin.eu       http    '/discojuice/metadata_clarin1.json'                     
    15 check_clarin_discojuice_json.py Discojuice JSON 2       catalog.clarin.eu       http    '/discojuice/metadata_clarin2.json'                     
     14check_clarin_discojuice_json.py Discojuice JSON 1       catalog.clarin.eu       http    '/discojuice/metadata_clarin1.json'                     80
     15check_clarin_discojuice_json.py Discojuice JSON 2       catalog.clarin.eu       http    '/discojuice/metadata_clarin2.json'                     80
    1616check_clarin_vlo.py     Virtual Language Observatory    catalog.clarin.eu       http    '/vlo/'                 
    17 check_clarin_comp_reg.py        Component Registry      catalog.clarin.eu       http    '/ds/ComponentRegistry/'                       
    18 check_clarin_ldap.py    LDAP directory  user.clarin.eu  ldap            'cn=Directory Manager'         
    19 check_lat_dobes.py      DoBeS   dobes.mpi.nl    http    '/'                     
     17check_clarin_comp_reg.py        Component Registry      catalog.clarin.eu       http    '/ds/ComponentRegistry/'                        80
     18check_clarin_ldap.py    LDAP directory  user.clarin.eu  ldap            'cn=Directory Manager'          80
     19check_lat_dobes.py      DoBeS   dobes.mpi.nl    http    '/'                     80
    2020check_lat_postgresql.py LAT PostgreSQL database server  lux08.mpi.nl    http    '/rest/'                        8984
Note: See TracChangeset for help on using the changeset viewer.