source: monitoring/plugins/mpi/check_lat_www.py @ 4057

Last change on this file since 4057 was 4057, checked in by sanmai, 11 years ago
  • Make protocol/scheme (http, https) a command-line parameter and an internal

parameter. Fixes redirects from http URLs to https URLs and vice versa.

  • Property svn:executable set to *
File size: 1.8 KB
Line 
1#!/usr/bin/python2
2
3import generic_tla_monitoring
4import os, pdb
5
6
7special_plugin_description = "TLA WWW"
8special_plugin_file_name = os.path.basename(__file__)
9command_line_parameters = [("-s", "scheme"), 
10                           ("-h", "host",),
11                           ("-u", "http_path",),
12                           ("-p", "port_number",)]
13
14
15def special_main_subroutine(scheme, 
16                            host, 
17                            http_path,
18                            port_number) : 
19
20    http_paths = (http_path,)
21   
22    ## Check status for all http_paths.
23    results = \
24        map(lambda http_path : generic_tla_monitoring.check_condition(host                      = host,
25                                                                      http_path                 = http_path,
26                                                                      protocol                  = scheme, 
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),
32                  http_paths)   
33   
34    generic_tla_monitoring.nagios_return_complex(results, 
35                                                 reporter = special_plugin_description)
36
37if __name__ == "__main__" :
38    generic_tla_monitoring.main(special_main_subroutine, 
39                                command_line_parameters)
Note: See TracBrowser for help on using the repository browser.