# # win_watch.conf - configuration file for win_watch.ps1 # # ------------------------------------------------------------------- # Name of the ULS teststep where the script runtime information is found IDENTIFIER = _win_watch # ------------------------------------------------------------------- # Where to place log files and files with intermediate results WORK_DIRECTORY = C:\TEMP\WIN_TOOLS # ------------------------------------------------------------------- # Name and port of the ULS-Server ULS_SERVER = 10.1.2.3:11976 # ------------------------------------------------------------------- # Directory, where to write the ULS value file ULS_DIRECTORY = C:\TEMP\ULS # ------------------------------------------------------------------- # Enter the complete path to the send2uls.exe executable. # If not set, nothing is transferred to ULS. # The files are always placed in the ULS_DIRECTORY. # SEND2ULS = C:\ADMIN\WIN_TOOLS\send2uls.exe # for HTTPS connections use: SEND2ULS = C:\ADMIN\WIN_TOOLS\send2uls.exe -S # ------------------------------------------------------------------- # The name of the server to be used in ULS # You only need to set this, if you have a cluster and # you want to use a clustername instead of the real # computername, which is the default. # ULS_HOSTNAME = # ULS_HOSTNAME = WVXP3073B # ------------------------------------------------------------------- # Section to be used in the ULS ULS_SECTION = Windows # ------------------------------------------------------------------- # OPTIONS # # ----- # OPTION_NETWORK_DRIVES = yes # Attached disk shares will be checked for size and usage. # Local disks are always checked. NETWORK_DRIVES = yes # ----- # Set SERVICES=yes if you do want information or actions # concerning services. The default is NO. SERVICES = yes # ----- # Restart the automatic services if they do not run. # no (default) / yes AUTO_SERVICES_RESTART = yes # ----- # If AUTO_SERVICES_RESTART=yes is specified, you may exclude the list of # services (internal names!!! Dienstname) from being restarted. # Use the property / Eigenschaften to find the internal name of a service. # # Some services do have a start mode auto but terminate after some time/actions. # # Use show_services.ps1 to generate a list of all available services # on the destination computer. # # You may use wildcards in the , the comparison in the script # is done by using "-like". # # NEVER_RESTART_SERVICES = , , ... NEVER_RESTART_SERVICES = Browser,clr_optimization* # ----- # There will always be data sent to the ULS if a service is restarted. # Set this option to "yes", if you want to send all information about # all services to the ULS. SERVICE_INFOS_TO_ULS = yes # ------------------------------------------------------------------- # Performance Measurements # # Specify the categories, performance counters and, if applicable, # the instance filters for the performance measurements. Run the # script perf_counter_categories.ps1 to generate an html file with all # available performance categories and counters on the destination computer. # Currently supported counter types: # CountPerTimeInterval* # NumberOfItems* # RateOfCountsPerSecond* # Timer100Ns # Timer100NsInverse # PERFxxx = | [ , , , ...] [ | ] # The is applied thru a "if $instance -like " comparison. # PERF010 = Processor | % Idle Time, % Processor Time, % User Time, % Privileged Time, Interrupts/sec | _Total PERF020 = Network Interface | Bytes Received/sec, Bytes Sent/sec PERF030 = Server | Files Open, Server Sessions, Errors System, Errors Access Permissions PERF040 = LogicalDisk | Current Disk Queue Length, Disk Read Bytes/sec, Disk Write Bytes/sec # PERF042 = ... # PERF222 = ... # ------------------------------------------------------------------- # Formatting of teststep for ULS # Set up the format of the service teststeps in ULS # "__name__ (__displayname__)" is the default. # __name__ := the internal name of the service # __displayname__ := the name of the service as shown in the service # list to the user in the W*ndows' gui (localized). SERVICE_ULS_TESTSTEP_FORMAT = __name__ (__displayname__) # ------------------------------------------------------------------- # APACHE # # Monitor Apache Mod-Status and grep statistics like: # Total Accesses, Total kBytes, Uptime, ReqPerSec, BytesPerSec, # BytesPerReq, BusyWorkers, IdleWorkers # # Set APACHExx =
| http://:/ # e.g. # APACHE09 = Apache [PROJECT] | http://localhost:80/server-status?auto # # Define as much as you like. # Set to "yes" if used # APACHE_MOD-STATUS = yes # APACHE01 = Apache [VHOST1]|http://localhost:81/server-status?auto