Changeset 4059 for monitoring


Ignore:
Timestamp:
11/19/13 16:14:28 (11 years ago)
Author:
sanmai
Message:
  • Fix function calls in these plugins to also use the extra parameter 'scheme'.
Location:
monitoring/plugins/mpi
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • monitoring/plugins/mpi/check_clarin_comp_reg.py

    r4057 r4059  
    2424    results = \
    2525        map(lambda http_path : generic_tla_monitoring.check_condition(host                   = host,
    26                                                                    http_path                 = http_path,
    27                                                                    HTTP_method               = "GET",
    28                                                                    port_number               = port_number,
    29                                                                    authorize                 = True,
    30                                                                    validator                 = generic_tla_monitoring.check_HTML_wellformedness,
    31                                                                    special_plugin_file_name  = special_plugin_file_name),
     26                                                                      http_path                 = http_path,
     27                                                                      protocol                  = scheme,
     28                                                                      HTTP_method               = "GET",
     29                                                                      port_number               = port_number,
     30                                                                      authorize                 = True,
     31                                                                      validator                 = generic_tla_monitoring.check_HTML_wellformedness,
     32                                                                      special_plugin_file_name  = special_plugin_file_name),
    3233            http_paths)   
    3334   
  • monitoring/plugins/mpi/check_clarin_discojuice_html.py

    r4057 r4059  
    2222    ## Check status for all http_paths.
    2323    results = \
    24         map(lambda http_path : generic_tla_monitoring.check_condition(host                      = host,
    25                                                                       http_path                 = http_path,
    26                                                                       HTTP_method               = "GET",
     24        map(lambda http_path : generic_tla_monitoring.check_condition(host                      = host,
     25                                                                      http_path                 = http_path,
     26                                                                      protocol                  = scheme,
     27                                                                      HTTP_method               = "GET",
    2728                                                                      port_number               = port_number,
    2829                                                                      authorize                 = True,
  • monitoring/plugins/mpi/check_clarin_discojuice_json.py

    r4057 r4059  
    2222    results = \
    2323        map(lambda http_path : generic_tla_monitoring.check_condition(host                      = host,
    24                                                                       http_path                 = http_path,
     24                                                                      http_path                 = http_path,
     25                                                                      protocol                  = scheme,
    2526                                                                      HTTP_method               = "GET",
    2627                                                                      port_number               = port_number,
  • monitoring/plugins/mpi/check_lat_dobes.py

    r4057 r4059  
    2424        map(lambda http_path : generic_tla_monitoring.check_condition(host                      = host,
    2525                                                                      http_path                 = http_path,
     26                                                                      protocol                  = scheme,
    2627                                                                      HTTP_method               = "GET",
    2728                                                                      port_number               = port_number,
Note: See TracChangeset for help on using the changeset viewer.